class Google::Apis::AndroidenterpriseV1::ServiceAccount

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

Attributes

key[RW]

Credentials that can be used to authenticate as a service account. Corresponds to the JSON property `key` @return [Google::Apis::AndroidenterpriseV1::ServiceAccountKey]

name[RW]

The account name of the service account, in the form of an email address. Assigned by the server. Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidenterprise_v1/classes.rb, line 2414
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/androidenterprise_v1/classes.rb, line 2419
def update!(**args)
  @key = args[:key] if args.key?(:key)
  @name = args[:name] if args.key?(:name)
end