class Google::Apis::BigqueryconnectionV1beta1::CloudSqlCredential

Credential info for the Cloud SQL.

Attributes

password[RW]

The password for the credential. Corresponds to the JSON property `password` @return [String]

username[RW]

The username for the credential. Corresponds to the JSON property `username` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigqueryconnection_v1beta1/classes.rb, line 181
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/bigqueryconnection_v1beta1/classes.rb, line 186
def update!(**args)
  @password = args[:password] if args.key?(:password)
  @username = args[:username] if args.key?(:username)
end