Class: Google::Apis::GenomicsV2alpha1::Pipeline
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV2alpha1::Pipeline
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v2alpha1/classes.rb,
generated/google/apis/genomics_v2alpha1/representations.rb,
generated/google/apis/genomics_v2alpha1/representations.rb
Overview
Specifies a series of actions to execute, expressed as Docker containers.
Instance Attribute Summary collapse
-
#actions ⇒ Array<Google::Apis::GenomicsV2alpha1::Action>
The list of actions to execute, in the order they are specified.
-
#environment ⇒ Hash<String,String>
The environment to pass into every action.
-
#resources ⇒ Google::Apis::GenomicsV2alpha1::Resources
The system resources for the pipeline run.
-
#timeout ⇒ String
The maximum amount of time to give the pipeline to complete.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Pipeline
constructor
A new instance of Pipeline.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Pipeline
Returns a new instance of Pipeline
934 935 936 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 934 def initialize(**args) update!(**args) end |
Instance Attribute Details
#actions ⇒ Array<Google::Apis::GenomicsV2alpha1::Action>
The list of actions to execute, in the order they are specified.
Corresponds to the JSON property actions
910 911 912 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 910 def actions @actions end |
#environment ⇒ Hash<String,String>
The environment to pass into every action. Each action can also specify
additional environment variables but cannot delete an entry from this map
(though they can overwrite it with a different value).
Corresponds to the JSON property environment
917 918 919 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 917 def environment @environment end |
#resources ⇒ Google::Apis::GenomicsV2alpha1::Resources
The system resources for the pipeline run.
At least one zone or region must be specified or the pipeline run will fail.
Corresponds to the JSON property resources
923 924 925 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 923 def resources @resources end |
#timeout ⇒ String
The maximum amount of time to give the pipeline to complete. This includes
the time spent waiting for a worker to be allocated. If the pipeline fails
to complete before the timeout, it will be cancelled and the error code
will be set to DEADLINE_EXCEEDED.
If unspecified, it will default to 7 days.
Corresponds to the JSON property timeout
932 933 934 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 932 def timeout @timeout end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
939 940 941 942 943 944 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 939 def update!(**args) @actions = args[:actions] if args.key?(:actions) @environment = args[:environment] if args.key?(:environment) @resources = args[:resources] if args.key?(:resources) @timeout = args[:timeout] if args.key?(:timeout) end |