Class: Google::Apis::AlloydbV1beta::StorageDatabasecenterProtoCommonProduct
- Inherits:
-
Object
- Object
- Google::Apis::AlloydbV1beta::StorageDatabasecenterProtoCommonProduct
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/alloydb_v1beta/classes.rb,
lib/google/apis/alloydb_v1beta/representations.rb,
lib/google/apis/alloydb_v1beta/representations.rb
Overview
Product specification for Condor resources.
Instance Attribute Summary collapse
-
#engine ⇒ String
The specific engine that the underlying database is running.
-
#type ⇒ String
Type of specific database product.
-
#version ⇒ String
Version of the underlying database engine.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StorageDatabasecenterProtoCommonProduct
constructor
A new instance of StorageDatabasecenterProtoCommonProduct.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StorageDatabasecenterProtoCommonProduct
Returns a new instance of StorageDatabasecenterProtoCommonProduct.
3174 3175 3176 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3174 def initialize(**args) update!(**args) end |
Instance Attribute Details
#engine ⇒ String
The specific engine that the underlying database is running.
Corresponds to the JSON property engine
3161 3162 3163 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3161 def engine @engine end |
#type ⇒ String
Type of specific database product. It could be CloudSQL, AlloyDB etc..
Corresponds to the JSON property type
3166 3167 3168 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3166 def type @type end |
#version ⇒ String
Version of the underlying database engine. Example values: For MySQL, it could
be "8.0", "5.7" etc.. For Postgres, it could be "14", "15" etc..
Corresponds to the JSON property version
3172 3173 3174 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3172 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3179 3180 3181 3182 3183 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3179 def update!(**args) @engine = args[:engine] if args.key?(:engine) @type = args[:type] if args.key?(:type) @version = args[:version] if args.key?(:version) end |