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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ServiceAccount

Returns a new instance of ServiceAccount.



1845
1846
1847
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1845

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



1831
1832
1833
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1831

def key
  @key
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " androidenterprise#serviceAccount". Corresponds to the JSON property kind

Returns:

  • (String)


1837
1838
1839
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1837

def kind
  @kind
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)


1843
1844
1845
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1843

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1850
1851
1852
1853
1854
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1850

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