Class: Google::Apis::CertificatemanagerV1::CertificateAuthorityServiceConfig
- Inherits:
-
Object
- Object
- Google::Apis::CertificatemanagerV1::CertificateAuthorityServiceConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/certificatemanager_v1/classes.rb,
lib/google/apis/certificatemanager_v1/representations.rb,
lib/google/apis/certificatemanager_v1/representations.rb
Overview
Contains information required to contact CA service.
Instance Attribute Summary collapse
-
#ca_pool ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CertificateAuthorityServiceConfig
constructor
A new instance of CertificateAuthorityServiceConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CertificateAuthorityServiceConfig
Returns a new instance of CertificateAuthorityServiceConfig.
215 216 217 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 215 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ca_pool ⇒ String
Required. A CA pool resource used to issue a certificate. The CA pool string
has a relative resource path following the form "projects/project
/locations/
location
/caPools/ca_pool
".
Corresponds to the JSON property caPool
213 214 215 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 213 def ca_pool @ca_pool end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
220 221 222 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 220 def update!(**args) @ca_pool = args[:ca_pool] if args.key?(:ca_pool) end |