class Google::Apis::PrivatecaV1beta1::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_url[RW]
The URL where this CertificateAuthority's CRLs are published. This will only be set for CAs that have been activated. Corresponds to the JSON property `crlAccessUrl` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/privateca_v1beta1/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_v1beta1/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_url = args[:crl_access_url] if args.key?(:crl_access_url) end