Class: Google::Apis::ComputeAlpha::TlsValidationContext
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::TlsValidationContext
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Overview
[Deprecated] Defines the mechanism to obtain the Certificate Authority certificate to validate the client/server certificate. validate the client/ server certificate.
Instance Attribute Summary collapse
-
#certificate_path ⇒ String
The path to the file holding the CA certificate to validate the client or server certificate.
-
#sds_config ⇒ Google::Apis::ComputeAlpha::SdsConfig
[Deprecated] The configuration to access the SDS server.
-
#validation_source ⇒ String
Defines how TLS certificates are obtained.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TlsValidationContext
constructor
A new instance of TlsValidationContext.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TlsValidationContext
Returns a new instance of TlsValidationContext.
40402 40403 40404 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 40402 def initialize(**args) update!(**args) end |
Instance Attribute Details
#certificate_path ⇒ String
The path to the file holding the CA certificate to validate the client or
server certificate.
Corresponds to the JSON property certificatePath
40389 40390 40391 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 40389 def certificate_path @certificate_path end |
#sds_config ⇒ Google::Apis::ComputeAlpha::SdsConfig
[Deprecated] The configuration to access the SDS server. The configuration to
access the SDS server.
Corresponds to the JSON property sdsConfig
40395 40396 40397 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 40395 def sds_config @sds_config end |
#validation_source ⇒ String
Defines how TLS certificates are obtained.
Corresponds to the JSON property validationSource
40400 40401 40402 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 40400 def validation_source @validation_source end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
40407 40408 40409 40410 40411 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 40407 def update!(**args) @certificate_path = args[:certificate_path] if args.key?(:certificate_path) @sds_config = args[:sds_config] if args.key?(:sds_config) @validation_source = args[:validation_source] if args.key?(:validation_source) end |