Class: Google::Apis::ComputeAlpha::ManagedInstanceOverrideDiskOverride

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ManagedInstanceOverrideDiskOverride

Returns a new instance of ManagedInstanceOverrideDiskOverride



15437
15438
15439
# File 'generated/google/apis/compute_alpha/classes.rb', line 15437

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

Instance Attribute Details

#device_nameString

The name of the device on the VM Corresponds to the JSON property deviceName

Returns:

  • (String)


15424
15425
15426
# File 'generated/google/apis/compute_alpha/classes.rb', line 15424

def device_name
  @device_name
end

#modeString

The mode in which to attach this disk, either READ_WRITE or READ_ONLY. If not specified, the default is to attach the disk in READ_WRITE mode. Corresponds to the JSON property mode

Returns:

  • (String)


15430
15431
15432
# File 'generated/google/apis/compute_alpha/classes.rb', line 15430

def mode
  @mode
end

#sourceString

The disk that is/will be mounted Corresponds to the JSON property source

Returns:

  • (String)


15435
15436
15437
# File 'generated/google/apis/compute_alpha/classes.rb', line 15435

def source
  @source
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



15442
15443
15444
15445
15446
# File 'generated/google/apis/compute_alpha/classes.rb', line 15442

def update!(**args)
  @device_name = args[:device_name] if args.key?(:device_name)
  @mode = args[:mode] if args.key?(:mode)
  @source = args[:source] if args.key?(:source)
end