Class: Google::Apis::ComputeV1::AutoscalerStatusDetails
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeV1::AutoscalerStatusDetails
 
- 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
- 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status message. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of error returned. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AutoscalerStatusDetails 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of AutoscalerStatusDetails. 
- 
  
    
      #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) ⇒ AutoscalerStatusDetails
Returns a new instance of AutoscalerStatusDetails
| 1534 1535 1536 | # File 'generated/google/apis/compute_v1/classes.rb', line 1534 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#message ⇒ String
The status message.
Corresponds to the JSON property message
| 1527 1528 1529 | # File 'generated/google/apis/compute_v1/classes.rb', line 1527 def @message end | 
#type ⇒ String
The type of error returned.
Corresponds to the JSON property type
| 1532 1533 1534 | # File 'generated/google/apis/compute_v1/classes.rb', line 1532 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1539 1540 1541 1542 | # File 'generated/google/apis/compute_v1/classes.rb', line 1539 def update!(**args) @message = args[:message] if args.key?(:message) @type = args[:type] if args.key?(:type) end |