Class: Google::Apis::GenomicsV1alpha2::RunPipelineArgs
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1alpha2::RunPipelineArgs
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v1alpha2/classes.rb,
generated/google/apis/genomics_v1alpha2/representations.rb,
generated/google/apis/genomics_v1alpha2/representations.rb
Overview
The pipeline run arguments.
Instance Attribute Summary collapse
-
#client_id ⇒ String
This field is deprecated.
-
#inputs ⇒ Hash<String,String>
Pipeline input arguments; keys are defined in the pipeline documentation.
-
#keep_vm_alive_on_failure_duration ⇒ String
How long to keep the VM up after a failure (for example docker command failed, copying input or output files failed, etc).
-
#labels ⇒ Hash<String,String>
Labels to apply to this pipeline run.
-
#logging ⇒ Google::Apis::GenomicsV1alpha2::LoggingOptions
The logging options for the pipeline run.
-
#outputs ⇒ Hash<String,String>
Pipeline output arguments; keys are defined in the pipeline documentation.
-
#project_id ⇒ String
Required.
-
#resources ⇒ Google::Apis::GenomicsV1alpha2::PipelineResources
The system resources for the pipeline run.
-
#service_account ⇒ Google::Apis::GenomicsV1alpha2::ServiceAccount
A Google Cloud Service Account.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RunPipelineArgs
constructor
A new instance of RunPipelineArgs.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RunPipelineArgs
Returns a new instance of RunPipelineArgs
1160 1161 1162 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1160 def initialize(**args) update!(**args) end |
Instance Attribute Details
#client_id ⇒ String
This field is deprecated. Use labels
instead. Client-specified pipeline
operation identifier.
Corresponds to the JSON property clientId
1098 1099 1100 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1098 def client_id @client_id end |
#inputs ⇒ Hash<String,String>
Pipeline input arguments; keys are defined in the pipeline documentation.
All input parameters that do not have default values must be specified.
If parameters with defaults are specified here, the defaults will be
overridden.
Corresponds to the JSON property inputs
1106 1107 1108 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1106 def inputs @inputs end |
#keep_vm_alive_on_failure_duration ⇒ String
How long to keep the VM up after a failure (for example docker command
failed, copying input or output files failed, etc). While the VM is up, one
can ssh into the VM to debug. Default is 0; maximum allowed value is 1 day.
Corresponds to the JSON property keepVmAliveOnFailureDuration
1113 1114 1115 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1113 def keep_vm_alive_on_failure_duration @keep_vm_alive_on_failure_duration end |
#labels ⇒ Hash<String,String>
Labels to apply to this pipeline run. Labels will also be applied to
compute resources (VM, disks) created by this pipeline run. When listing
operations, operations can filtered by labels.
Label keys may not be empty; label values may be empty. Non-empty labels
must be 1-63 characters long, and comply with RFC1035.
Specifically, the name must be 1-63 characters long and match the regular
expression [a-z]([-a-z0-9]*[a-z0-9])?
which means the first
character must be a lowercase letter, and all following characters must be
a dash, lowercase letter, or digit, except the last character, which cannot
be a dash.
Corresponds to the JSON property labels
1128 1129 1130 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1128 def labels @labels end |
#logging ⇒ Google::Apis::GenomicsV1alpha2::LoggingOptions
The logging options for the pipeline run.
Corresponds to the JSON property logging
1133 1134 1135 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1133 def logging @logging end |
#outputs ⇒ Hash<String,String>
Pipeline output arguments; keys are defined in the pipeline
documentation. All output parameters of without default values
must be specified. If parameters with defaults are specified
here, the defaults will be overridden.
Corresponds to the JSON property outputs
1141 1142 1143 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1141 def outputs @outputs end |
#project_id ⇒ String
Required. The project in which to run the pipeline. The caller must have
WRITER access to all Google Cloud services and resources (e.g. Google
Compute Engine) will be used.
Corresponds to the JSON property projectId
1148 1149 1150 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1148 def project_id @project_id end |
#resources ⇒ Google::Apis::GenomicsV1alpha2::PipelineResources
The system resources for the pipeline run.
Corresponds to the JSON property resources
1153 1154 1155 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1153 def resources @resources end |
#service_account ⇒ Google::Apis::GenomicsV1alpha2::ServiceAccount
A Google Cloud Service Account.
Corresponds to the JSON property serviceAccount
1158 1159 1160 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1158 def service_account @service_account end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1165 def update!(**args) @client_id = args[:client_id] if args.key?(:client_id) @inputs = args[:inputs] if args.key?(:inputs) @keep_vm_alive_on_failure_duration = args[:keep_vm_alive_on_failure_duration] if args.key?(:keep_vm_alive_on_failure_duration) @labels = args[:labels] if args.key?(:labels) @logging = args[:logging] if args.key?(:logging) @outputs = args[:outputs] if args.key?(:outputs) @project_id = args[:project_id] if args.key?(:project_id) @resources = args[:resources] if args.key?(:resources) @service_account = args[:service_account] if args.key?(:service_account) end |