Class: Google::Apis::DataflowV1b3::DataDiskAssignment

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

Overview

Data disk assignment for a given VM instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DataDiskAssignment

Returns a new instance of DataDiskAssignment.



914
915
916
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 914

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

Instance Attribute Details

#data_disksArray<String>

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

Returns:

  • (Array<String>)


906
907
908
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 906

def data_disks
  @data_disks
end

#vm_instanceString

VM instance name the data disks mounted to, for example "myproject-1014-104817- 4c2-harness-0". Corresponds to the JSON property vmInstance

Returns:

  • (String)


912
913
914
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 912

def vm_instance
  @vm_instance
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



919
920
921
922
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 919

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