Class: Google::Apis::BigqueryconnectionV1beta1::CloudSqlCredential

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CloudSqlCredential

Returns a new instance of CloudSqlCredential.



186
187
188
# File 'lib/google/apis/bigqueryconnection_v1beta1/classes.rb', line 186

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#passwordString

The password for the credential. Corresponds to the JSON property password

Returns:

  • (String)


179
180
181
# File 'lib/google/apis/bigqueryconnection_v1beta1/classes.rb', line 179

def password
  @password
end

#usernameString

The username for the credential. Corresponds to the JSON property username

Returns:

  • (String)


184
185
186
# File 'lib/google/apis/bigqueryconnection_v1beta1/classes.rb', line 184

def username
  @username
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



191
192
193
194
# File 'lib/google/apis/bigqueryconnection_v1beta1/classes.rb', line 191

def update!(**args)
  @password = args[:password] if args.key?(:password)
  @username = args[:username] if args.key?(:username)
end