Class: Google::Apis::SqlV1beta4::Tier
- Inherits:
-
Object
- Object
- Google::Apis::SqlV1beta4::Tier
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sql_v1beta4/classes.rb,
generated/google/apis/sql_v1beta4/representations.rb,
generated/google/apis/sql_v1beta4/representations.rb
Overview
A Google Cloud SQL service tier resource.
Instance Attribute Summary collapse
-
#disk_quota ⇒ Fixnum
The maximum disk size of this tier in bytes.
-
#kind ⇒ String
This is always
sql#tier
. -
#ram ⇒ Fixnum
The maximum RAM usage of this tier in bytes.
-
#region ⇒ Array<String>
The applicable regions for this tier.
-
#tier ⇒ String
An identifier for the machine type, for example, db-n1-standard-1.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Tier
constructor
A new instance of Tier.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Tier
Returns a new instance of Tier
2589 2590 2591 |
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 2589 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disk_quota ⇒ Fixnum
The maximum disk size of this tier in bytes.
Corresponds to the JSON property DiskQuota
2566 2567 2568 |
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 2566 def disk_quota @disk_quota end |
#kind ⇒ String
This is always sql#tier
.
Corresponds to the JSON property kind
2576 2577 2578 |
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 2576 def kind @kind end |
#ram ⇒ Fixnum
The maximum RAM usage of this tier in bytes.
Corresponds to the JSON property RAM
2571 2572 2573 |
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 2571 def ram @ram end |
#region ⇒ Array<String>
The applicable regions for this tier.
Corresponds to the JSON property region
2581 2582 2583 |
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 2581 def region @region end |
#tier ⇒ String
An identifier for the machine type, for example, db-n1-standard-1. For
related information, see Pricing.
Corresponds to the JSON property tier
2587 2588 2589 |
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 2587 def tier @tier end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2594 2595 2596 2597 2598 2599 2600 |
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 2594 def update!(**args) @disk_quota = args[:disk_quota] if args.key?(:disk_quota) @ram = args[:ram] if args.key?(:ram) @kind = args[:kind] if args.key?(:kind) @region = args[:region] if args.key?(:region) @tier = args[:tier] if args.key?(:tier) end |