Class: Google::Apis::AndroidenterpriseV1::ServiceAccount
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AndroidenterpriseV1::ServiceAccount
 
- 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
- 
  
    
      #key  ⇒ Google::Apis::AndroidenterpriseV1::ServiceAccountKey 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Credentials that can be used to authenticate as a service account. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The account name of the service account, in the form of an email address. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ServiceAccount 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ServiceAccount. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ServiceAccount
Returns a new instance of ServiceAccount
| 2222 2223 2224 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2222 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#key ⇒ Google::Apis::AndroidenterpriseV1::ServiceAccountKey
Credentials that can be used to authenticate as a service account.
Corresponds to the JSON property key
| 2208 2209 2210 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2208 def key @key end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
androidenterprise#serviceAccount".
Corresponds to the JSON property kind
| 2214 2215 2216 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2214 def kind @kind end | 
#name ⇒ String
The account name of the service account, in the form of an email address.
Assigned by the server.
Corresponds to the JSON property name
| 2220 2221 2222 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2220 def name @name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2227 2228 2229 2230 2231 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2227 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 |