Class: Google::Apis::DeploymentmanagerV2beta::BasicAuth

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

Overview

Basic Auth used as a credential.

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) ⇒ BasicAuth

Returns a new instance of BasicAuth.



200
201
202
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 200

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

Instance Attribute Details

#passwordString

Corresponds to the JSON property password

Returns:

  • (String)


193
194
195
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 193

def password
  @password
end

#userString

Corresponds to the JSON property user

Returns:

  • (String)


198
199
200
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 198

def user
  @user
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



205
206
207
208
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 205

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