class Google::Apis::NetworksecurityV1::GoogleCloudNetworksecurityV1CertificateProvider

Specification of certificate provider. Defines the mechanism to obtain the certificate and private key for peer to peer authentication.

Attributes

certificate_provider_instance[RW]

Specification of a TLS certificate provider instance. Workloads may have one or more CertificateProvider instances (plugins) and one of them is enabled and configured by specifying this message. Workloads use the values from this message to locate and load the CertificateProvider instance configuration. Corresponds to the JSON property `certificateProviderInstance` @return [Google::Apis::NetworksecurityV1::CertificateProviderInstance]

grpc_endpoint[RW]

Specification of the GRPC Endpoint. Corresponds to the JSON property `grpcEndpoint` @return [Google::Apis::NetworksecurityV1::GoogleCloudNetworksecurityV1GrpcEndpoint]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/networksecurity_v1/classes.rb, line 323
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/networksecurity_v1/classes.rb, line 328
def update!(**args)
  @certificate_provider_instance = args[:certificate_provider_instance] if args.key?(:certificate_provider_instance)
  @grpc_endpoint = args[:grpc_endpoint] if args.key?(:grpc_endpoint)
end