Class: GlobusJobSubmission
- Inherits:
-
Object
- Object
- GlobusJobSubmission
- Includes:
- Thrift::Struct, Thrift::Struct_Union
- Defined in:
- lib/compute_resource_model_types.rb
Constant Summary collapse
- JOBSUBMISSIONINTERFACEID =
1
- SECURITYPROTOCOL =
2
- GLOBUSGATEKEEPERENDPOINT =
3
- FIELDS =
{ JOBSUBMISSIONINTERFACEID => {:type => ::Thrift::Types::STRING, :name => 'jobSubmissionInterfaceId', :default => %q"DO_NOT_SET_AT_CLIENTS"}, SECURITYPROTOCOL => {:type => ::Thrift::Types::I32, :name => 'securityProtocol', :enum_class => ::SecurityProtocol}, GLOBUSGATEKEEPERENDPOINT => {:type => ::Thrift::Types::LIST, :name => 'globusGateKeeperEndPoint', :element => {:type => ::Thrift::Types::STRING}, :optional => true} }
Instance Method Summary collapse
Instance Method Details
#struct_fields ⇒ Object
272 |
# File 'lib/compute_resource_model_types.rb', line 272 def struct_fields; FIELDS; end |
#validate ⇒ Object
274 275 276 277 278 279 280 |
# File 'lib/compute_resource_model_types.rb', line 274 def validate raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field jobSubmissionInterfaceId is unset!') unless @jobSubmissionInterfaceId raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field securityProtocol is unset!') unless @securityProtocol unless @securityProtocol.nil? || ::SecurityProtocol::VALID_VALUES.include?(@securityProtocol) raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field securityProtocol!') end end |