Class: Google::Apis::PrivatecaV1beta1::AccessUrls
- Inherits:
-
Object
- Object
- Google::Apis::PrivatecaV1beta1::AccessUrls
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/privateca_v1beta1/classes.rb,
lib/google/apis/privateca_v1beta1/representations.rb,
lib/google/apis/privateca_v1beta1/representations.rb
Overview
URLs where a CertificateAuthority will publish content.
Instance Attribute Summary collapse
-
#ca_certificate_access_url ⇒ String
The URL where this CertificateAuthority's CA certificate is published.
-
#crl_access_url ⇒ String
The URL where this CertificateAuthority's CRLs are published.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccessUrls
constructor
A new instance of AccessUrls.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AccessUrls
Returns a new instance of AccessUrls.
41 42 43 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 41 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ca_certificate_access_url ⇒ String
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
33 34 35 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 33 def ca_certificate_access_url @ca_certificate_access_url end |
#crl_access_url ⇒ String
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
39 40 41 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 39 def crl_access_url @crl_access_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
46 47 48 49 |
# 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 |