Class: Google::Apis::DeploymentmanagerAlpha::Credential

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

Overview

The credential used by Deployment Manager and TypeProvider. Only one of the options is permitted.

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

Returns a new instance of Credential



510
511
512
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 510

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

Instance Attribute Details

#basic_authGoogle::Apis::DeploymentmanagerAlpha::BasicAuth

Basic Auth used as a credential. Corresponds to the JSON property basicAuth



497
498
499
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 497

def basic_auth
  @basic_auth
end

#service_accountGoogle::Apis::DeploymentmanagerAlpha::ServiceAccount

Service Account used as a credential. Corresponds to the JSON property serviceAccount



502
503
504
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 502

def 
  @service_account
end

#use_project_defaultBoolean Also known as: use_project_default?

Specify to use the project default credential, only supported by Deployment. Corresponds to the JSON property useProjectDefault

Returns:

  • (Boolean)


507
508
509
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 507

def use_project_default
  @use_project_default
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



515
516
517
518
519
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 515

def update!(**args)
  @basic_auth = args[:basic_auth] if args.key?(:basic_auth)
  @service_account = args[:service_account] if args.key?(:service_account)
  @use_project_default = args[:use_project_default] if args.key?(:use_project_default)
end