Class: Google::Apis::BigqueryconnectionV1beta1::CloudSqlCredential
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryconnectionV1beta1::CloudSqlCredential
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigqueryconnection_v1beta1/classes.rb,
lib/google/apis/bigqueryconnection_v1beta1/representations.rb,
lib/google/apis/bigqueryconnection_v1beta1/representations.rb
Overview
Credential info for the Cloud SQL.
Instance Attribute Summary collapse
-
#password ⇒ String
The password for the credential.
-
#username ⇒ String
The username for the credential.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudSqlCredential
constructor
A new instance of CloudSqlCredential.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CloudSqlCredential
Returns a new instance of CloudSqlCredential.
211 212 213 |
# File 'lib/google/apis/bigqueryconnection_v1beta1/classes.rb', line 211 def initialize(**args) update!(**args) end |
Instance Attribute Details
#password ⇒ String
The password for the credential.
Corresponds to the JSON property password
204 205 206 |
# File 'lib/google/apis/bigqueryconnection_v1beta1/classes.rb', line 204 def password @password end |
#username ⇒ String
The username for the credential.
Corresponds to the JSON property username
209 210 211 |
# File 'lib/google/apis/bigqueryconnection_v1beta1/classes.rb', line 209 def username @username end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
216 217 218 219 |
# File 'lib/google/apis/bigqueryconnection_v1beta1/classes.rb', line 216 def update!(**args) @password = args[:password] if args.key?(:password) @username = args[:username] if args.key?(:username) end |