Class: Google::Apis::ConnectorsV1::SslConfigTemplate
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::SslConfigTemplate
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
Ssl config details of a connector version
Instance Attribute Summary collapse
-
#additional_variables ⇒ Array<Google::Apis::ConnectorsV1::ConfigVariableTemplate>
Any additional fields that need to be rendered Corresponds to the JSON property
additionalVariables
. -
#client_cert_type ⇒ Array<String>
List of supported Client Cert Types Corresponds to the JSON property
clientCertType
. -
#is_tls_mandatory ⇒ Boolean
(also: #is_tls_mandatory?)
Boolean for determining if the connector version mandates TLS.
-
#server_cert_type ⇒ Array<String>
List of supported Server Cert Types Corresponds to the JSON property
serverCertType
. -
#ssl_type ⇒ String
Controls the ssl type for the given connector version Corresponds to the JSON property
sslType
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SslConfigTemplate
constructor
A new instance of SslConfigTemplate.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SslConfigTemplate
Returns a new instance of SslConfigTemplate.
6024 6025 6026 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6024 def initialize(**args) update!(**args) end |
Instance Attribute Details
#additional_variables ⇒ Array<Google::Apis::ConnectorsV1::ConfigVariableTemplate>
Any additional fields that need to be rendered
Corresponds to the JSON property additionalVariables
6001 6002 6003 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6001 def additional_variables @additional_variables end |
#client_cert_type ⇒ Array<String>
List of supported Client Cert Types
Corresponds to the JSON property clientCertType
6006 6007 6008 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6006 def client_cert_type @client_cert_type end |
#is_tls_mandatory ⇒ Boolean Also known as: is_tls_mandatory?
Boolean for determining if the connector version mandates TLS.
Corresponds to the JSON property isTlsMandatory
6011 6012 6013 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6011 def is_tls_mandatory @is_tls_mandatory end |
#server_cert_type ⇒ Array<String>
List of supported Server Cert Types
Corresponds to the JSON property serverCertType
6017 6018 6019 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6017 def server_cert_type @server_cert_type end |
#ssl_type ⇒ String
Controls the ssl type for the given connector version
Corresponds to the JSON property sslType
6022 6023 6024 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6022 def ssl_type @ssl_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6029 6030 6031 6032 6033 6034 6035 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6029 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) @is_tls_mandatory = args[:is_tls_mandatory] if args.key?(:is_tls_mandatory) @server_cert_type = args[:server_cert_type] if args.key?(:server_cert_type) @ssl_type = args[:ssl_type] if args.key?(:ssl_type) end |