Class: Google::Apis::PrivatecaV1beta1::SubordinateConfig

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

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SubordinateConfig

Returns a new instance of SubordinateConfig.



2358
2359
2360
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 2358

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

Instance Attribute Details

#certificate_authorityString

Required. This can refer to a CertificateAuthority in the same project 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/*/certificateAuthorities/*. Corresponds to the JSON property certificateAuthority

Returns:

  • (String)


2350
2351
2352
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 2350

def certificate_authority
  @certificate_authority
end

#pem_issuer_chainGoogle::Apis::PrivatecaV1beta1::SubordinateConfigChain

This message describes a subordinate CA's issuer certificate chain. This wrapper exists for compatibility reasons. Corresponds to the JSON property pemIssuerChain



2356
2357
2358
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 2356

def pem_issuer_chain
  @pem_issuer_chain
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2363
2364
2365
2366
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 2363

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