Class: Google::Apis::PrivatecaV1beta1::ActivateCertificateAuthorityRequest
- Inherits:
-
Object
- Object
- Google::Apis::PrivatecaV1beta1::ActivateCertificateAuthorityRequest
- 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
Request message for CertificateAuthorityService.ActivateCertificateAuthority.
Instance Attribute Summary collapse
-
#pem_ca_certificate ⇒ String
Required.
-
#request_id ⇒ String
Optional.
-
#subordinate_config ⇒ Google::Apis::PrivatecaV1beta1::SubordinateConfig
Describes a subordinate CA's issuers.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ActivateCertificateAuthorityRequest
constructor
A new instance of ActivateCertificateAuthorityRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ActivateCertificateAuthorityRequest
Returns a new instance of ActivateCertificateAuthorityRequest.
82 83 84 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 82 def initialize(**args) update!(**args) end |
Instance Attribute Details
#pem_ca_certificate ⇒ String
Required. The signed CA certificate issued from
FetchCertificateAuthorityCsrResponse.pem_csr.
Corresponds to the JSON property pemCaCertificate
60 61 62 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 60 def pem_ca_certificate @pem_ca_certificate end |
#request_id ⇒ String
Optional. An ID to identify requests. Specify a unique request ID so that if
you must retry your request, the server will know to ignore the request if it
has already been completed. The server will guarantee that for at least 60
minutes since the first request. For example, consider a situation where you
make an initial request and t he request times out. If you make the request
again with the same request ID, the server can check if original operation
with the same request ID was received, and if so, will ignore the second
request. This prevents clients from accidentally creating duplicate
commitments. The request ID must be a valid UUID with the exception that zero
UUID is not supported (00000000-0000-0000-0000-000000000000).
Corresponds to the JSON property requestId
74 75 76 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 74 def request_id @request_id end |
#subordinate_config ⇒ Google::Apis::PrivatecaV1beta1::SubordinateConfig
Describes a subordinate CA's issuers. This is either a resource path to a
known issuing CertificateAuthority, or a PEM issuer certificate chain.
Corresponds to the JSON property subordinateConfig
80 81 82 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 80 def subordinate_config @subordinate_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
87 88 89 90 91 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 87 def update!(**args) @pem_ca_certificate = args[:pem_ca_certificate] if args.key?(:pem_ca_certificate) @request_id = args[:request_id] if args.key?(:request_id) @subordinate_config = args[:subordinate_config] if args.key?(:subordinate_config) end |