Class: Google::Apis::AndroidenterpriseV1::ProductSigningCertificate
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AndroidenterpriseV1::ProductSigningCertificate
 
- 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
Instance Attribute Summary collapse
- 
  
    
      #certificate_hash_sha1  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The base64 urlsafe encoded SHA1 hash of the certificate. 
- 
  
    
      #certificate_hash_sha256  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The base64 urlsafe encoded SHA2-256 hash of the certificate. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ProductSigningCertificate 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ProductSigningCertificate. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ProductSigningCertificate
Returns a new instance of ProductSigningCertificate
| 2055 2056 2057 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2055 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#certificate_hash_sha1 ⇒ String
The base64 urlsafe encoded SHA1 hash of the certificate. (This field is
deprecated in favor of SHA2-256. It should not be used and may be removed at
any time.)
Corresponds to the JSON property certificateHashSha1
| 2048 2049 2050 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2048 def certificate_hash_sha1 @certificate_hash_sha1 end | 
#certificate_hash_sha256 ⇒ String
The base64 urlsafe encoded SHA2-256 hash of the certificate.
Corresponds to the JSON property certificateHashSha256
| 2053 2054 2055 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2053 def certificate_hash_sha256 @certificate_hash_sha256 end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2060 2061 2062 2063 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2060 def update!(**args) @certificate_hash_sha1 = args[:certificate_hash_sha1] if args.key?(:certificate_hash_sha1) @certificate_hash_sha256 = args[:certificate_hash_sha256] if args.key?(:certificate_hash_sha256) end |