Class: Google::Apis::ConnectorsV1::SslConfig

Inherits:
Object
  • Object
show all
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 Configuration of a connection

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SslConfig

Returns a new instance of SslConfig.



5975
5976
5977
# File 'lib/google/apis/connectors_v1/classes.rb', line 5975

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#additional_variablesArray<Google::Apis::ConnectorsV1::ConfigVariable>

Optional. Additional SSL related field values Corresponds to the JSON property additionalVariables



5927
5928
5929
# File 'lib/google/apis/connectors_v1/classes.rb', line 5927

def additional_variables
  @additional_variables
end

#client_cert_typeString

Optional. Type of Client Cert (PEM/JKS/.. etc.) Corresponds to the JSON property clientCertType

Returns:

  • (String)


5932
5933
5934
# File 'lib/google/apis/connectors_v1/classes.rb', line 5932

def client_cert_type
  @client_cert_type
end

#client_certificateGoogle::Apis::ConnectorsV1::Secret

Secret provides a reference to entries in Secret Manager. Corresponds to the JSON property clientCertificate



5937
5938
5939
# File 'lib/google/apis/connectors_v1/classes.rb', line 5937

def client_certificate
  @client_certificate
end

#client_private_keyGoogle::Apis::ConnectorsV1::Secret

Secret provides a reference to entries in Secret Manager. Corresponds to the JSON property clientPrivateKey



5942
5943
5944
# File 'lib/google/apis/connectors_v1/classes.rb', line 5942

def client_private_key
  @client_private_key
end

#client_private_key_passGoogle::Apis::ConnectorsV1::Secret

Secret provides a reference to entries in Secret Manager. Corresponds to the JSON property clientPrivateKeyPass



5947
5948
5949
# File 'lib/google/apis/connectors_v1/classes.rb', line 5947

def client_private_key_pass
  @client_private_key_pass
end

#private_server_certificateGoogle::Apis::ConnectorsV1::Secret

Secret provides a reference to entries in Secret Manager. Corresponds to the JSON property privateServerCertificate



5952
5953
5954
# File 'lib/google/apis/connectors_v1/classes.rb', line 5952

def private_server_certificate
  @private_server_certificate
end

#server_cert_typeString

Optional. Type of Server Cert (PEM/JKS/.. etc.) Corresponds to the JSON property serverCertType

Returns:

  • (String)


5957
5958
5959
# File 'lib/google/apis/connectors_v1/classes.rb', line 5957

def server_cert_type
  @server_cert_type
end

#trust_modelString

Optional. Trust Model of the SSL connection Corresponds to the JSON property trustModel

Returns:

  • (String)


5962
5963
5964
# File 'lib/google/apis/connectors_v1/classes.rb', line 5962

def trust_model
  @trust_model
end

#typeString

Optional. Controls the ssl type for the given connector version. Corresponds to the JSON property type

Returns:

  • (String)


5967
5968
5969
# File 'lib/google/apis/connectors_v1/classes.rb', line 5967

def type
  @type
end

#use_sslBoolean Also known as: use_ssl?

Optional. Bool for enabling SSL Corresponds to the JSON property useSsl

Returns:

  • (Boolean)


5972
5973
5974
# File 'lib/google/apis/connectors_v1/classes.rb', line 5972

def use_ssl
  @use_ssl
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
# File 'lib/google/apis/connectors_v1/classes.rb', line 5980

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