Class: Google::Apis::FirebasedataconnectV1::CloudSqlInstance
- Inherits:
-
Object
- Object
- Google::Apis::FirebasedataconnectV1::CloudSqlInstance
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebasedataconnect_v1/classes.rb,
lib/google/apis/firebasedataconnect_v1/representations.rb,
lib/google/apis/firebasedataconnect_v1/representations.rb
Overview
Settings for CloudSQL instance configuration.
Instance Attribute Summary collapse
-
#edition ⇒ String
Output only.
-
#instance ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudSqlInstance
constructor
A new instance of CloudSqlInstance.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CloudSqlInstance
Returns a new instance of CloudSqlInstance.
91 92 93 |
# File 'lib/google/apis/firebasedataconnect_v1/classes.rb', line 91 def initialize(**args) update!(**args) end |
Instance Attribute Details
#edition ⇒ String
Output only. [Output only] The Cloud SQL instance edition.
Corresponds to the JSON property edition
83 84 85 |
# File 'lib/google/apis/firebasedataconnect_v1/classes.rb', line 83 def edition @edition end |
#instance ⇒ String
Required. Name of the CloudSQL instance, in the format: projects/`project`/
locations/`location`/instances/`instance`
Corresponds to the JSON property instance
89 90 91 |
# File 'lib/google/apis/firebasedataconnect_v1/classes.rb', line 89 def instance @instance end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
96 97 98 99 |
# File 'lib/google/apis/firebasedataconnect_v1/classes.rb', line 96 def update!(**args) @edition = args[:edition] if args.key?(:edition) @instance = args[:instance] if args.key?(:instance) end |