class Google::Apis::DataflowV1b3::DataDiskAssignment

Data disk assignment for a given VM instance.

Attributes

data_disks[RW]

Mounted data disks. The order is important a data disk's 0-based index in this list defines which persistent directory the disk is mounted to, for example the list of ` “myproject-1014-104817-4c2-harness-0-disk-0” `, ` “myproject- 1014-104817-4c2-harness-0-disk-1” `. Corresponds to the JSON property `dataDisks` @return [Array<String>]

vm_instance[RW]

VM instance name the data disks mounted to, for example “myproject-1014-104817- 4c2-harness-0”. Corresponds to the JSON property `vmInstance` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataflow_v1b3/classes.rb, line 835
def update!(**args)
  @data_disks = args[:data_disks] if args.key?(:data_disks)
  @vm_instance = args[:vm_instance] if args.key?(:vm_instance)
end