Class: Google::Apis::AndroidenterpriseV1::ServiceAccount

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

Overview

A service account identity, including the name and credentials that can be used to authenticate as the service account.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ServiceAccount

Returns a new instance of ServiceAccount.



2386
2387
2388
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2386

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

Instance Attribute Details

#keyGoogle::Apis::AndroidenterpriseV1::ServiceAccountKey

Credentials that can be used to authenticate as a service account. Corresponds to the JSON property key



2378
2379
2380
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2378

def key
  @key
end

#nameString

The account name of the service account, in the form of an email address. Assigned by the server. Corresponds to the JSON property name

Returns:

  • (String)


2384
2385
2386
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2384

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2391
2392
2393
2394
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2391

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