Class: Google::Apis::ComputeAlpha::PerInstanceConfig
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeAlpha::PerInstanceConfig
 
- 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  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The URL of the instance. 
- 
  
    
      #override  ⇒ Google::Apis::ComputeAlpha::ManagedInstanceOverride 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Overrides of stateful properties for a given instance Corresponds to the JSON property override.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PerInstanceConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of PerInstanceConfig. 
- 
  
    
      #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) ⇒ PerInstanceConfig
Returns a new instance of PerInstanceConfig
| 17962 17963 17964 | # File 'generated/google/apis/compute_alpha/classes.rb', line 17962 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#instance ⇒ String
The URL of the instance. Serves as a merge key during UpdatePerInstanceConfigs
operation.
Corresponds to the JSON property instance
| 17955 17956 17957 | # File 'generated/google/apis/compute_alpha/classes.rb', line 17955 def instance @instance end | 
#override ⇒ Google::Apis::ComputeAlpha::ManagedInstanceOverride
Overrides of stateful properties for a given instance
Corresponds to the JSON property override
| 17960 17961 17962 | # File 'generated/google/apis/compute_alpha/classes.rb', line 17960 def override @override end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 17967 17968 17969 17970 | # File 'generated/google/apis/compute_alpha/classes.rb', line 17967 def update!(**args) @instance = args[:instance] if args.key?(:instance) @override = args[:override] if args.key?(:override) end |