Class: Google::Apis::CloudiotV1::X509CertificateDetails
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudiotV1::X509CertificateDetails
 
- Defined in:
- generated/google/apis/cloudiot_v1/classes.rb,
 generated/google/apis/cloudiot_v1/representations.rb,
 generated/google/apis/cloudiot_v1/representations.rb
Overview
Details of an X.509 certificate. For informational purposes only.
Instance Attribute Summary collapse
- 
  
    
      #expiry_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time the certificate becomes invalid. 
- 
  
    
      #issuer  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The entity that signed the certificate. 
- 
  
    
      #public_key_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of public key in the certificate. 
- 
  
    
      #signature_algorithm  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The algorithm used to sign the certificate. 
- 
  
    
      #start_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time the certificate becomes valid. 
- 
  
    
      #subject  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The entity the certificate and public key belong to. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ X509CertificateDetails 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of X509CertificateDetails. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ X509CertificateDetails
Returns a new instance of X509CertificateDetails
| 1017 1018 1019 | # File 'generated/google/apis/cloudiot_v1/classes.rb', line 1017 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#expiry_time ⇒ String
The time the certificate becomes invalid.
Corresponds to the JSON property expiryTime
| 990 991 992 | # File 'generated/google/apis/cloudiot_v1/classes.rb', line 990 def expiry_time @expiry_time end | 
#issuer ⇒ String
The entity that signed the certificate.
Corresponds to the JSON property issuer
| 995 996 997 | # File 'generated/google/apis/cloudiot_v1/classes.rb', line 995 def issuer @issuer end | 
#public_key_type ⇒ String
The type of public key in the certificate.
Corresponds to the JSON property publicKeyType
| 1000 1001 1002 | # File 'generated/google/apis/cloudiot_v1/classes.rb', line 1000 def public_key_type @public_key_type end | 
#signature_algorithm ⇒ String
The algorithm used to sign the certificate.
Corresponds to the JSON property signatureAlgorithm
| 1005 1006 1007 | # File 'generated/google/apis/cloudiot_v1/classes.rb', line 1005 def signature_algorithm @signature_algorithm end | 
#start_time ⇒ String
The time the certificate becomes valid.
Corresponds to the JSON property startTime
| 1010 1011 1012 | # File 'generated/google/apis/cloudiot_v1/classes.rb', line 1010 def start_time @start_time end | 
#subject ⇒ String
The entity the certificate and public key belong to.
Corresponds to the JSON property subject
| 1015 1016 1017 | # File 'generated/google/apis/cloudiot_v1/classes.rb', line 1015 def subject @subject end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1022 1023 1024 1025 1026 1027 1028 1029 | # File 'generated/google/apis/cloudiot_v1/classes.rb', line 1022 def update!(**args) @expiry_time = args[:expiry_time] if args.key?(:expiry_time) @issuer = args[:issuer] if args.key?(:issuer) @public_key_type = args[:public_key_type] if args.key?(:public_key_type) @signature_algorithm = args[:signature_algorithm] if args.key?(:signature_algorithm) @start_time = args[:start_time] if args.key?(:start_time) @subject = args[:subject] if args.key?(:subject) end |