Class: Google::Apis::ComputeAlpha::SslCertificateManagedSslCertificate
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeAlpha::SslCertificateManagedSslCertificate
 
- 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 managed SSL certificate.
Instance Attribute Summary collapse
- 
  
    
      #domain_status  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output only] Detailed statuses of the domains specified for managed certificate resource. 
- 
  
    
      #domains  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The domains for which a managed SSL certificate will be generated. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output only] Status of the managed certificate resource. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SslCertificateManagedSslCertificate 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SslCertificateManagedSslCertificate. 
- 
  
    
      #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) ⇒ SslCertificateManagedSslCertificate
Returns a new instance of SslCertificateManagedSslCertificate
| 22943 22944 22945 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22943 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#domain_status ⇒ Hash<String,String>
[Output only] Detailed statuses of the domains specified for managed
certificate resource.
Corresponds to the JSON property domainStatus
| 22930 22931 22932 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22930 def domain_status @domain_status end | 
#domains ⇒ Array<String>
The domains for which a managed SSL certificate will be generated. Currently
only single-domain certs are supported.
Corresponds to the JSON property domains
| 22936 22937 22938 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22936 def domains @domains end | 
#status ⇒ String
[Output only] Status of the managed certificate resource.
Corresponds to the JSON property status
| 22941 22942 22943 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22941 def status @status end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 22948 22949 22950 22951 22952 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22948 def update!(**args) @domain_status = args[:domain_status] if args.key?(:domain_status) @domains = args[:domains] if args.key?(:domains) @status = args[:status] if args.key?(:status) end |