Class: Google::Apis::ComputeBeta::SslCertificateManagedSslCertificate

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

Overview

Configuration and status of a managed SSL certificate.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SslCertificateManagedSslCertificate

Returns a new instance of SslCertificateManagedSslCertificate



23067
23068
23069
# File 'generated/google/apis/compute_beta/classes.rb', line 23067

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>)


23054
23055
23056
# File 'generated/google/apis/compute_beta/classes.rb', line 23054

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>)


23060
23061
23062
# File 'generated/google/apis/compute_beta/classes.rb', line 23060

def domains
  @domains
end

#statusString

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

Returns:

  • (String)


23065
23066
23067
# File 'generated/google/apis/compute_beta/classes.rb', line 23065

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



23072
23073
23074
23075
23076
# File 'generated/google/apis/compute_beta/classes.rb', line 23072

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