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.



764
765
766
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 764

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

Instance Attribute Details

#passwordGoogle::Apis::BigqueryconnectionV1::ConnectorConfigurationSecret

Secret value parameter. Corresponds to the JSON property password



757
758
759
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 757

def password
  @password
end

#usernameString

Required. Username. Corresponds to the JSON property username

Returns:

  • (String)


762
763
764
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 762

def username
  @username
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



769
770
771
772
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 769

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