Class: Google::Apis::SqladminV1beta3::TiersListResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SqladminV1beta3::TiersListResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sqladmin_v1beta3/classes.rb,
 generated/google/apis/sqladmin_v1beta3/representations.rb,
 generated/google/apis/sqladmin_v1beta3/representations.rb
Overview
Tiers list response.
Instance Attribute Summary collapse
- 
  
    
      #items  ⇒ Array<Google::Apis::SqladminV1beta3::Tier> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of tiers. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This is always sql#tiersList. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TiersListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of TiersListResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TiersListResponse
Returns a new instance of TiersListResponse
| 1620 1621 1622 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1620 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#items ⇒ Array<Google::Apis::SqladminV1beta3::Tier>
List of tiers.
Corresponds to the JSON property items
| 1613 1614 1615 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1613 def items @items end | 
#kind ⇒ String
This is always sql#tiersList.
Corresponds to the JSON property kind
| 1618 1619 1620 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1618 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1625 1626 1627 1628 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1625 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |