Class: Google::Apis::ComputeV1::SslCertificateManagedSslCertificate

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb

Overview

Configuration and status of a managed SSL certificate.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SslCertificateManagedSslCertificate

Returns a new instance of SslCertificateManagedSslCertificate.



28276
28277
28278
# File 'generated/google/apis/compute_v1/classes.rb', line 28276

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#domain_statusHash<String,String>

[Output only] Detailed statuses of the domains specified for managed certificate resource. Corresponds to the JSON property domainStatus

Returns:

  • (Hash<String,String>)


28263
28264
28265
# File 'generated/google/apis/compute_v1/classes.rb', line 28263

def domain_status
  @domain_status
end

#domainsArray<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

Returns:

  • (Array<String>)


28269
28270
28271
# File 'generated/google/apis/compute_v1/classes.rb', line 28269

def domains
  @domains
end

#statusString

[Output only] Status of the managed certificate resource. Corresponds to the JSON property status

Returns:

  • (String)


28274
28275
28276
# File 'generated/google/apis/compute_v1/classes.rb', line 28274

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



28281
28282
28283
28284
28285
# File 'generated/google/apis/compute_v1/classes.rb', line 28281

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