Class: Google::Apis::ComputeBeta::BulkInsertInstanceResourcePerInstanceProperties
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::BulkInsertInstanceResourcePerInstanceProperties
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb 
Overview
Per-instance properties to be set on individual instances. To be extended in the future.
Instance Attribute Summary collapse
- 
  
    
      #hostname  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the hostname of the instance.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
This field is only temporary.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ BulkInsertInstanceResourcePerInstanceProperties 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of BulkInsertInstanceResourcePerInstanceProperties.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ BulkInsertInstanceResourcePerInstanceProperties
Returns a new instance of BulkInsertInstanceResourcePerInstanceProperties.
      5461 5462 5463  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 5461 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#hostname ⇒ String
Specifies the hostname of the instance. More details in: https://cloud.google.
com/compute/docs/instances/custom-hostname-vm#naming_convention
Corresponds to the JSON property hostname
      5454 5455 5456  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 5454 def hostname @hostname end  | 
  
#name ⇒ String
This field is only temporary. It will be removed. Do not use it.
Corresponds to the JSON property name
      5459 5460 5461  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 5459 def name @name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5466 5467 5468 5469  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 5466 def update!(**args) @hostname = args[:hostname] if args.key?(:hostname) @name = args[:name] if args.key?(:name) end  |