class Google::Apis::GenomicsV1alpha2::LocalCopy

LocalCopy defines how a remote file should be copied to and from the VM.

Attributes

disk[RW]

Required. The name of the disk where this parameter is located. Can be the name of one of the disks specified in the Resources field, or “boot”, which represents the Docker instance's boot disk and has a mount point of `/`. Corresponds to the JSON property `disk` @return [String]

path[RW]

Required. The path within the user's docker container where this input should be localized to and from, relative to the specified disk's mount point. For example: file.txt, Corresponds to the JSON property `path` @return [String]

Public Class Methods

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