Class: Google::Apis::ComputeBeta::MoveInstanceRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeBeta::MoveInstanceRequest
 
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
 generated/google/apis/compute_beta/representations.rb,
 generated/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #destination_zone  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The URL of the destination zone to move the instance. 
- 
  
    
      #target_instance  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The URL of the target instance to move. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MoveInstanceRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of MoveInstanceRequest. 
- 
  
    
      #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) ⇒ MoveInstanceRequest
Returns a new instance of MoveInstanceRequest
| 9401 9402 9403 | # File 'generated/google/apis/compute_beta/classes.rb', line 9401 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#destination_zone ⇒ String
The URL of the destination zone to move the instance. 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
| 9389 9390 9391 | # File 'generated/google/apis/compute_beta/classes.rb', line 9389 def destination_zone @destination_zone end | 
#target_instance ⇒ String
The URL of the target instance to move. This can be a full or partial URL. For example, the following are all valid URLs to an instance:
- https://www.googleapis.com/compute/v1/projects/project/zones/zone/instances/ instance
- projects/project/zones/zone/instances/instance
- zones/zone/instances/instance
Corresponds to the JSON property targetInstance
| 9399 9400 9401 | # File 'generated/google/apis/compute_beta/classes.rb', line 9399 def target_instance @target_instance end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 9406 9407 9408 9409 | # File 'generated/google/apis/compute_beta/classes.rb', line 9406 def update!(**args) @destination_zone = args[:destination_zone] if args.key?(:destination_zone) @target_instance = args[:target_instance] if args.key?(:target_instance) end |