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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/deploymentmanager_alpha/classes.rb,
lib/google/apis/deploymentmanager_alpha/representations.rb,
lib/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

Constructor Details

#initialize(**args) ⇒ Credential

Returns a new instance of Credential.



512
513
514
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 512

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



499
500
501
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 499

def basic_auth
  @basic_auth
end

#service_accountGoogle::Apis::DeploymentmanagerAlpha::ServiceAccount

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



504
505
506
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 504

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)


509
510
511
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 509

def use_project_default
  @use_project_default
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



517
518
519
520
521
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 517

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