Class: Google::Apis::ComputeAlpha::SslCertificateSelfManagedSslCertificate
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeAlpha::SslCertificateSelfManagedSslCertificate
 
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
 generated/google/apis/compute_alpha/representations.rb,
 generated/google/apis/compute_alpha/representations.rb
Overview
Configuration and status of a self-managed SSL certificate.
Instance Attribute Summary collapse
- 
  
    
      #certificate  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A local certificate file. 
- 
  
    
      #private_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A write-only private key in PEM format. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SslCertificateSelfManagedSslCertificate 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SslCertificateSelfManagedSslCertificate. 
- 
  
    
      #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) ⇒ SslCertificateSelfManagedSslCertificate
Returns a new instance of SslCertificateSelfManagedSslCertificate
| 22972 22973 22974 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22972 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#certificate ⇒ String
A local certificate file. The certificate must be in PEM format. The
certificate chain must be no greater than 5 certs long. The chain must include
at least one intermediate cert.
Corresponds to the JSON property certificate
| 22964 22965 22966 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22964 def certificate @certificate end | 
#private_key ⇒ String
A write-only private key in PEM format. Only insert requests will include this
field.
Corresponds to the JSON property privateKey
| 22970 22971 22972 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22970 def private_key @private_key end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 22977 22978 22979 22980 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22977 def update!(**args) @certificate = args[:certificate] if args.key?(:certificate) @private_key = args[:private_key] if args.key?(:private_key) end |