class Google::Apis::PrivatecaV1::AccessUrls
URLs where a CertificateAuthority
will publish content.
Attributes
ca_certificate_access_url[RW]
The URL where this CertificateAuthority's CA certificate is published. This will only be set for CAs that have been activated. Corresponds to the JSON property `caCertificateAccessUrl` @return [String]
crl_access_urls[RW]
The URLs where this CertificateAuthority's CRLs are published. This will only be set for CAs that have been activated. Corresponds to the JSON property `crlAccessUrls` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/privateca_v1/classes.rb, line 41 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/privateca_v1/classes.rb, line 46 def update!(**args) @ca_certificate_access_url = args[:ca_certificate_access_url] if args.key?(:ca_certificate_access_url) @crl_access_urls = args[:crl_access_urls] if args.key?(:crl_access_urls) end