Class: Google::Apis::BatchV1::ServiceAccount

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

Overview

Carries information about a Google Cloud service account.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ServiceAccount

Returns a new instance of ServiceAccount.



2029
2030
2031
# File 'lib/google/apis/batch_v1/classes.rb', line 2029

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

Instance Attribute Details

#emailString

Email address of the service account. If not specified, the default Compute Engine service account for the project will be used. If instance template is being used, the service account has to be specified in the instance template and it has to match the email field here. Corresponds to the JSON property email

Returns:

  • (String)


2021
2022
2023
# File 'lib/google/apis/batch_v1/classes.rb', line 2021

def email
  @email
end

#scopesArray<String>

List of scopes to be enabled for this service account on the VM, in addition to the cloud-platform API scope that will be added by default. Corresponds to the JSON property scopes

Returns:

  • (Array<String>)


2027
2028
2029
# File 'lib/google/apis/batch_v1/classes.rb', line 2027

def scopes
  @scopes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2034
2035
2036
2037
# File 'lib/google/apis/batch_v1/classes.rb', line 2034

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