Class: Google::Apis::PrivatecaV1beta1::ActivateCertificateAuthorityRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/privateca_v1beta1/classes.rb,
generated/google/apis/privateca_v1beta1/representations.rb,
generated/google/apis/privateca_v1beta1/representations.rb

Overview

Request message for CertificateAuthorityService.ActivateCertificateAuthority.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ActivateCertificateAuthorityRequest

Returns a new instance of ActivateCertificateAuthorityRequest.



82
83
84
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 82

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#pem_ca_certificateString

Required. The signed CA certificate issued from FetchCertificateAuthorityCsrResponse.pem_csr. Corresponds to the JSON property pemCaCertificate

Returns:

  • (String)


60
61
62
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 60

def pem_ca_certificate
  @pem_ca_certificate
end

#request_idString

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

Returns:

  • (String)


74
75
76
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 74

def request_id
  @request_id
end

#subordinate_configGoogle::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 'generated/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 'generated/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