class Google::Apis::PrivatecaV1::SubordinateConfig

Describes a subordinate CA's issuers. This is either a resource name to a known issuing CertificateAuthority, or a PEM issuer certificate chain.

Attributes

certificate_authority[RW]

Required. This can refer to a CertificateAuthority that was used to create a subordinate CertificateAuthority. This field is used for information and usability purposes only. The resource name is in the format `projects/*/ locations//caPools//certificateAuthorities/*`. Corresponds to the JSON property `certificateAuthority` @return [String]

pem_issuer_chain[RW]

This message describes a subordinate CA's issuer certificate chain. This wrapper exists for compatibility reasons. Corresponds to the JSON property `pemIssuerChain` @return [Google::Apis::PrivatecaV1::SubordinateConfigChain]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/privateca_v1/classes.rb, line 2500
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_v1/classes.rb, line 2505
def update!(**args)
  @certificate_authority = args[:certificate_authority] if args.key?(:certificate_authority)
  @pem_issuer_chain = args[:pem_issuer_chain] if args.key?(:pem_issuer_chain)
end