Class: Google::Apis::NetworksecurityV1::GoogleCloudNetworksecurityV1CertificateProvider
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1::GoogleCloudNetworksecurityV1CertificateProvider
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networksecurity_v1/classes.rb,
lib/google/apis/networksecurity_v1/representations.rb,
lib/google/apis/networksecurity_v1/representations.rb
Overview
Specification of certificate provider. Defines the mechanism to obtain the certificate and private key for peer to peer authentication.
Instance Attribute Summary collapse
-
#certificate_provider_instance ⇒ Google::Apis::NetworksecurityV1::CertificateProviderInstance
Specification of a TLS certificate provider instance.
-
#grpc_endpoint ⇒ Google::Apis::NetworksecurityV1::GoogleCloudNetworksecurityV1GrpcEndpoint
Specification of the GRPC Endpoint.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudNetworksecurityV1CertificateProvider
constructor
A new instance of GoogleCloudNetworksecurityV1CertificateProvider.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudNetworksecurityV1CertificateProvider
Returns a new instance of GoogleCloudNetworksecurityV1CertificateProvider.
1711 1712 1713 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 1711 def initialize(**args) update!(**args) end |
Instance Attribute Details
#certificate_provider_instance ⇒ Google::Apis::NetworksecurityV1::CertificateProviderInstance
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
1704 1705 1706 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 1704 def certificate_provider_instance @certificate_provider_instance end |
#grpc_endpoint ⇒ Google::Apis::NetworksecurityV1::GoogleCloudNetworksecurityV1GrpcEndpoint
Specification of the GRPC Endpoint.
Corresponds to the JSON property grpcEndpoint
1709 1710 1711 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 1709 def grpc_endpoint @grpc_endpoint end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1716 1717 1718 1719 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 1716 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 |