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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/bigqueryconnection_v1beta1/classes.rb,
generated/google/apis/bigqueryconnection_v1beta1/representations.rb,
generated/google/apis/bigqueryconnection_v1beta1/representations.rb

Overview

Credential info for the Cloud SQL.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CloudSqlCredential

Returns a new instance of CloudSqlCredential.



238
239
240
# File 'generated/google/apis/bigqueryconnection_v1beta1/classes.rb', line 238

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

Instance Attribute Details

#passwordString

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

Returns:

  • (String)


231
232
233
# File 'generated/google/apis/bigqueryconnection_v1beta1/classes.rb', line 231

def password
  @password
end

#usernameString

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

Returns:

  • (String)


236
237
238
# File 'generated/google/apis/bigqueryconnection_v1beta1/classes.rb', line 236

def username
  @username
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



243
244
245
246
# File 'generated/google/apis/bigqueryconnection_v1beta1/classes.rb', line 243

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