Class: Google::Apis::TpuV2::ServiceAccount

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

Overview

A service account.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ServiceAccount

Returns a new instance of ServiceAccount.



1374
1375
1376
# File 'lib/google/apis/tpu_v2/classes.rb', line 1374

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

Instance Attribute Details

#emailString

Email address of the service account. If empty, default Compute service account will be used. Corresponds to the JSON property email

Returns:

  • (String)


1366
1367
1368
# File 'lib/google/apis/tpu_v2/classes.rb', line 1366

def email
  @email
end

#scopeArray<String>

The list of scopes to be made available for this service account. If empty, access to all Cloud APIs will be allowed. Corresponds to the JSON property scope

Returns:

  • (Array<String>)


1372
1373
1374
# File 'lib/google/apis/tpu_v2/classes.rb', line 1372

def scope
  @scope
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1379
1380
1381
1382
# File 'lib/google/apis/tpu_v2/classes.rb', line 1379

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