Class: Google::Apis::ComputeV1::MoveDiskRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeV1::MoveDiskRequest
 
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
 generated/google/apis/compute_v1/representations.rb,
 generated/google/apis/compute_v1/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #destination_zone  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The URL of the destination zone to move the disk. 
- 
  
    
      #target_disk  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The URL of the target disk to move. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MoveDiskRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of MoveDiskRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ MoveDiskRequest
Returns a new instance of MoveDiskRequest
| 3791 3792 3793 | # File 'generated/google/apis/compute_v1/classes.rb', line 3791 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#destination_zone ⇒ String
The URL of the destination zone to move the disk. This can be a full or partial URL. For example, the following are all valid URLs to a zone:
- https://www.googleapis.com/compute/v1/projects/project/zones/zone
- projects/project/zones/zone
- zones/zone
Corresponds to the JSON property destinationZone
| 3780 3781 3782 | # File 'generated/google/apis/compute_v1/classes.rb', line 3780 def destination_zone @destination_zone end | 
#target_disk ⇒ String
The URL of the target disk to move. This can be a full or partial URL. For example, the following are all valid URLs to a disk:
- https://www.googleapis.com/compute/v1/projects/project/zones/zone/disks/disk
- projects/project/zones/zone/disks/disk
- zones/zone/disks/disk
Corresponds to the JSON property targetDisk
| 3789 3790 3791 | # File 'generated/google/apis/compute_v1/classes.rb', line 3789 def target_disk @target_disk end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3796 3797 3798 3799 | # File 'generated/google/apis/compute_v1/classes.rb', line 3796 def update!(**args) @destination_zone = args[:destination_zone] if args.key?(:destination_zone) @target_disk = args[:target_disk] if args.key?(:target_disk) end |