Class: FinchAPI::Models::Sandbox::JobCreateParams
- Includes:
- Type::RequestParameters
- Defined in:
- lib/finch-api/models/sandbox/job_create_params.rb
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#type ⇒ Symbol, FinchAPI::Models::Sandbox::JobCreateParams::Type
The type of job to start.
Attributes included from Type::RequestParameters
Instance Method Summary collapse
-
#initialize(type:, request_options: {}) ⇒ JobCreateParams
constructor
A new instance of JobCreateParams.
Methods included from Type::RequestParameters
Constructor Details
#initialize(type:, request_options: {}) ⇒ JobCreateParams
Returns a new instance of JobCreateParams.
4 |
# File 'lib/finch-api/models/sandbox/job_create_params.rb', line 4 def initialize(type:, request_options: {}, **) = super |
Instance Attribute Details
#type ⇒ Symbol, FinchAPI::Models::Sandbox::JobCreateParams::Type
The type of job to start. Currently the only supported type is ‘data_sync_all`
15 |
# File 'lib/finch-api/models/sandbox/job_create_params.rb', line 15 required :type, enum: -> { FinchAPI::Models::Sandbox::JobCreateParams::Type } |