class Google::Apis::GenomicsV1alpha2::DockerExecutor

The Docker execuctor specification.

Attributes

cmd[RW]

Required. The command or newline delimited script to run. The command string will be executed within a bash shell. If the command exits with a non-zero exit code, output parameter de-localization will be skipped and the pipeline operation's `error` field will be populated. Maximum command string length is 16384. Corresponds to the JSON property `cmd` @return [String]

image_name[RW]

Required. Image name from either Docker Hub or Google Container Registry. Users that run pipelines must have READ access to the image. Corresponds to the JSON property `imageName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/genomics_v1alpha2/classes.rb, line 351
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_v1alpha2/classes.rb, line 356
def update!(**args)
  @cmd = args[:cmd] if args.key?(:cmd)
  @image_name = args[:image_name] if args.key?(:image_name)
end