Class: Google::Apis::ComputeBeta::SslCertificateManagedSslCertificate
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::SslCertificateManagedSslCertificate
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/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.
Constructor Details
#initialize(**args) ⇒ SslCertificateManagedSslCertificate
Returns a new instance of SslCertificateManagedSslCertificate.
43294 43295 43296 |
# File 'lib/google/apis/compute_beta/classes.rb', line 43294 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
43280 43281 43282 |
# File 'lib/google/apis/compute_beta/classes.rb', line 43280 def domain_status @domain_status end |
#domains ⇒ Array<String>
The domains for which a managed SSL certificate will be generated. Each Google-
managed SSL certificate supports up to the maximum number of domains per
Google-managed SSL certificate.
Corresponds to the JSON property domains
43287 43288 43289 |
# File 'lib/google/apis/compute_beta/classes.rb', line 43287 def domains @domains end |
#status ⇒ String
[Output only] Status of the managed certificate resource.
Corresponds to the JSON property status
43292 43293 43294 |
# File 'lib/google/apis/compute_beta/classes.rb', line 43292 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
43299 43300 43301 43302 43303 |
# File 'lib/google/apis/compute_beta/classes.rb', line 43299 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 |