class Google::Apis::GenomicsV2alpha1::RunPipelineRequest

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

Attributes

labels[RW]

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` @return [Hash<String,String>]

pipeline[RW]

Specifies a series of actions to execute, expressed as Docker containers. Corresponds to the JSON property `pipeline` @return [Google::Apis::GenomicsV2alpha1::Pipeline]

pub_sub_topic[RW]

The name of an existing Pub/Sub topic. The server will publish messages to this topic whenever the status of the operation changes. The Genomics Service Agent account must have publisher permissions to the specified topic or notifications will not be sent. Corresponds to the JSON property `pubSubTopic` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/genomics_v2alpha1/classes.rb, line 1013
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/genomics_v2alpha1/classes.rb, line 1018
def update!(**args)
  @labels = args[:labels] if args.key?(:labels)
  @pipeline = args[:pipeline] if args.key?(:pipeline)
  @pub_sub_topic = args[:pub_sub_topic] if args.key?(:pub_sub_topic)
end