Class: Google::Apis::LifesciencesV2beta::RunPipelineRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/lifesciences_v2beta/classes.rb,
generated/google/apis/lifesciences_v2beta/representations.rb,
generated/google/apis/lifesciences_v2beta/representations.rb

Overview

The arguments to the RunPipeline method. The requesting user must have the iam.serviceAccounts.actAs permission for the Cloud Life Sciences service account or the request will fail.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RunPipelineRequest

Returns a new instance of RunPipelineRequest.



1059
1060
1061
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 1059

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#labelsHash<String,String>

User-defined labels to associate with the returned operation. These labels are not propagated to any Google Cloud Platform resources used by the operation, and can be modified at any time. To associate labels with resources created while executing the operation, see the appropriate resource message (for example, VirtualMachine). Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


1052
1053
1054
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 1052

def labels
  @labels
end

#pipelineGoogle::Apis::LifesciencesV2beta::Pipeline

Specifies a series of actions to execute, expressed as Docker containers. Corresponds to the JSON property pipeline



1057
1058
1059
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 1057

def pipeline
  @pipeline
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1064
1065
1066
1067
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 1064

def update!(**args)
  @labels = args[:labels] if args.key?(:labels)
  @pipeline = args[:pipeline] if args.key?(:pipeline)
end