Class: Google::Apis::AndroidenterpriseV1::ServiceAccountKey
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AndroidenterpriseV1::ServiceAccountKey
 
 
- 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
Credentials that can be used to authenticate as a service account.
Instance Attribute Summary collapse
- 
  
    
      #data  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The body of the private key credentials file, in string format.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An opaque, unique identifier for this ServiceAccountKey.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #public_data  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Public key data for the credentials file.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The file format of the generated key data.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ServiceAccountKey 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ServiceAccountKey.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ServiceAccountKey
Returns a new instance of ServiceAccountKey
      2372 2373 2374  | 
    
      # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2372 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#data ⇒ String
The body of the private key credentials file, in string format. This is only
populated when the ServiceAccountKey is created, and is not stored by Google.
Corresponds to the JSON property data
      2346 2347 2348  | 
    
      # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2346 def data @data end  | 
  
#id ⇒ String
An opaque, unique identifier for this ServiceAccountKey. Assigned by the
server.
Corresponds to the JSON property id
      2352 2353 2354  | 
    
      # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2352 def id @id end  | 
  
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
androidenterprise#serviceAccountKey".
Corresponds to the JSON property kind
      2358 2359 2360  | 
    
      # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2358 def kind @kind end  | 
  
#public_data ⇒ String
Public key data for the credentials file. This is an X.509 cert. If you are
using the googleCredentials key type, this is identical to the cert that can
be retrieved by using the X.509 cert url inside of the credentials file.
Corresponds to the JSON property publicData
      2365 2366 2367  | 
    
      # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2365 def public_data @public_data end  | 
  
#type ⇒ String
The file format of the generated key data.
Corresponds to the JSON property type
      2370 2371 2372  | 
    
      # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2370 def type @type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2377 2378 2379 2380 2381 2382 2383  | 
    
      # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2377 def update!(**args) @data = args[:data] if args.key?(:data) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @public_data = args[:public_data] if args.key?(:public_data) @type = args[:type] if args.key?(:type) end  |