Class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationUsernamePassword

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

Overview

Username and Password authentication.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ConnectorConfigurationUsernamePassword

Returns a new instance of ConnectorConfigurationUsernamePassword.



841
842
843
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 841

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

Instance Attribute Details

#passwordGoogle::Apis::BigqueryconnectionV1::ConnectorConfigurationSecret

Secret value parameter. Corresponds to the JSON property password



834
835
836
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 834

def password
  @password
end

#usernameString

Required. Username. Corresponds to the JSON property username

Returns:

  • (String)


839
840
841
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 839

def username
  @username
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



846
847
848
849
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 846

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