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
1603 1604 1605 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1603 def initialize(**args) update!(**args) end |
Instance Attribute Details
#items ⇒ Array<Google::Apis::SqladminV1beta3::Tier>
List of tiers.
Corresponds to the JSON property items
1596 1597 1598 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1596 def items @items end |
#kind ⇒ String
This is always sql#tiersList.
Corresponds to the JSON property kind
1601 1602 1603 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1601 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1608 1609 1610 1611 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1608 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |