Class: Google::Apis::NetworksecurityV1beta1::ValidationCa
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1beta1::ValidationCa
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networksecurity_v1beta1/classes.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb
Overview
Specification of ValidationCA. Defines the mechanism to obtain the Certificate Authority certificate to validate the peer certificate.
Instance Attribute Summary collapse
-
#certificate_provider_instance ⇒ Google::Apis::NetworksecurityV1beta1::CertificateProviderInstance
Specification of a TLS certificate provider instance.
-
#grpc_endpoint ⇒ Google::Apis::NetworksecurityV1beta1::GoogleCloudNetworksecurityV1beta1GrpcEndpoint
Specification of the GRPC Endpoint.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ValidationCa
constructor
A new instance of ValidationCa.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ValidationCa
Returns a new instance of ValidationCa.
2474 2475 2476 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2474 def initialize(**args) update!(**args) end |
Instance Attribute Details
#certificate_provider_instance ⇒ Google::Apis::NetworksecurityV1beta1::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
2467 2468 2469 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2467 def certificate_provider_instance @certificate_provider_instance end |
#grpc_endpoint ⇒ Google::Apis::NetworksecurityV1beta1::GoogleCloudNetworksecurityV1beta1GrpcEndpoint
Specification of the GRPC Endpoint.
Corresponds to the JSON property grpcEndpoint
2472 2473 2474 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2472 def grpc_endpoint @grpc_endpoint end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2479 2480 2481 2482 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2479 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 |