Class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1SslConfig
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1SslConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Overview
SSL Configuration of a connection
Instance Attribute Summary collapse
-
#additional_variables ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable>
Additional SSL related field values Corresponds to the JSON property
additionalVariables. -
#client_cert_type ⇒ String
Type of Client Cert (PEM/JKS/.. etc.) Corresponds to the JSON property
clientCertType. -
#client_certificate ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret
Secret provides a reference to entries in Secret Manager.
-
#client_private_key ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret
Secret provides a reference to entries in Secret Manager.
-
#client_private_key_pass ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret
Secret provides a reference to entries in Secret Manager.
-
#private_server_certificate ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret
Secret provides a reference to entries in Secret Manager.
-
#server_cert_type ⇒ String
Type of Server Cert (PEM/JKS/.. etc.) Corresponds to the JSON property
serverCertType. -
#trust_model ⇒ String
Trust Model of the SSL connection Corresponds to the JSON property
trustModel. -
#type ⇒ String
Controls the ssl type for the given connector version.
-
#use_ssl ⇒ Boolean
(also: #use_ssl?)
Bool for enabling SSL Corresponds to the JSON property
useSsl.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudConnectorsV1SslConfig
constructor
A new instance of GoogleCloudConnectorsV1SslConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudConnectorsV1SslConfig
Returns a new instance of GoogleCloudConnectorsV1SslConfig.
5438 5439 5440 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5438 def initialize(**args) update!(**args) end |
Instance Attribute Details
#additional_variables ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable>
Additional SSL related field values
Corresponds to the JSON property additionalVariables
5390 5391 5392 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5390 def additional_variables @additional_variables end |
#client_cert_type ⇒ String
Type of Client Cert (PEM/JKS/.. etc.)
Corresponds to the JSON property clientCertType
5395 5396 5397 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5395 def client_cert_type @client_cert_type end |
#client_certificate ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret
Secret provides a reference to entries in Secret Manager.
Corresponds to the JSON property clientCertificate
5400 5401 5402 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5400 def client_certificate @client_certificate end |
#client_private_key ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret
Secret provides a reference to entries in Secret Manager.
Corresponds to the JSON property clientPrivateKey
5405 5406 5407 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5405 def client_private_key @client_private_key end |
#client_private_key_pass ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret
Secret provides a reference to entries in Secret Manager.
Corresponds to the JSON property clientPrivateKeyPass
5410 5411 5412 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5410 def client_private_key_pass @client_private_key_pass end |
#private_server_certificate ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret
Secret provides a reference to entries in Secret Manager.
Corresponds to the JSON property privateServerCertificate
5415 5416 5417 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5415 def private_server_certificate @private_server_certificate end |
#server_cert_type ⇒ String
Type of Server Cert (PEM/JKS/.. etc.)
Corresponds to the JSON property serverCertType
5420 5421 5422 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5420 def server_cert_type @server_cert_type end |
#trust_model ⇒ String
Trust Model of the SSL connection
Corresponds to the JSON property trustModel
5425 5426 5427 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5425 def trust_model @trust_model end |
#type ⇒ String
Controls the ssl type for the given connector version.
Corresponds to the JSON property type
5430 5431 5432 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5430 def type @type end |
#use_ssl ⇒ Boolean Also known as: use_ssl?
Bool for enabling SSL
Corresponds to the JSON property useSsl
5435 5436 5437 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5435 def use_ssl @use_ssl end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5443 def update!(**args) @additional_variables = args[:additional_variables] if args.key?(:additional_variables) @client_cert_type = args[:client_cert_type] if args.key?(:client_cert_type) @client_certificate = args[:client_certificate] if args.key?(:client_certificate) @client_private_key = args[:client_private_key] if args.key?(:client_private_key) @client_private_key_pass = args[:client_private_key_pass] if args.key?(:client_private_key_pass) @private_server_certificate = args[:private_server_certificate] if args.key?(:private_server_certificate) @server_cert_type = args[:server_cert_type] if args.key?(:server_cert_type) @trust_model = args[:trust_model] if args.key?(:trust_model) @type = args[:type] if args.key?(:type) @use_ssl = args[:use_ssl] if args.key?(:use_ssl) end |