Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1TlsInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb

Overview

TLS configuration information for virtual hosts and TargetServers.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1TlsInfo

Returns a new instance of GoogleCloudApigeeV1TlsInfo.



9192
9193
9194
# File 'lib/google/apis/apigee_v1/classes.rb', line 9192

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

Instance Attribute Details

#ciphersArray<String>

The SSL/TLS cipher suites to be used. For programmable proxies, it must be one of the cipher suite names listed in: http://docs.oracle.com/javase/8/docs/ technotes/guides/security/StandardNames.html#ciphersuites. For configurable proxies, it must follow the configuration specified in: https:// commondatastorage.googleapis.com/chromium-boringssl-docs/ssl.h.html#Cipher- suite-configuration. This setting has no effect for configurable proxies when negotiating TLS 1.3. Corresponds to the JSON property ciphers

Returns:

  • (Array<String>)


9140
9141
9142
# File 'lib/google/apis/apigee_v1/classes.rb', line 9140

def ciphers
  @ciphers
end

#client_auth_enabledBoolean Also known as: client_auth_enabled?

Optional. Enables two-way TLS. Corresponds to the JSON property clientAuthEnabled

Returns:

  • (Boolean)


9145
9146
9147
# File 'lib/google/apis/apigee_v1/classes.rb', line 9145

def client_auth_enabled
  @client_auth_enabled
end

#common_nameGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1TlsInfoCommonName

The TLS Common Name of the certificate. Corresponds to the JSON property commonName



9151
9152
9153
# File 'lib/google/apis/apigee_v1/classes.rb', line 9151

def common_name
  @common_name
end

#enabledBoolean Also known as: enabled?

Required. Enables TLS. If false, neither one-way nor two-way TLS will be enabled. Corresponds to the JSON property enabled

Returns:

  • (Boolean)


9157
9158
9159
# File 'lib/google/apis/apigee_v1/classes.rb', line 9157

def enabled
  @enabled
end

#ignore_validation_errorsBoolean Also known as: ignore_validation_errors?

If true, Edge ignores TLS certificate errors. Valid when configuring TLS for target servers and target endpoints, and when configuring virtual hosts that use 2-way TLS. When used with a target endpoint/target server, if the backend system uses SNI and returns a cert with a subject Distinguished Name (DN) that does not match the hostname, there is no way to ignore the error and the connection fails. Corresponds to the JSON property ignoreValidationErrors

Returns:

  • (Boolean)


9168
9169
9170
# File 'lib/google/apis/apigee_v1/classes.rb', line 9168

def ignore_validation_errors
  @ignore_validation_errors
end

#key_aliasString

Required if client_auth_enabled is true. The resource ID for the alias containing the private key and cert. Corresponds to the JSON property keyAlias

Returns:

  • (String)


9175
9176
9177
# File 'lib/google/apis/apigee_v1/classes.rb', line 9175

def key_alias
  @key_alias
end

#key_storeString

Required if client_auth_enabled is true. The resource ID of the keystore. Corresponds to the JSON property keyStore

Returns:

  • (String)


9180
9181
9182
# File 'lib/google/apis/apigee_v1/classes.rb', line 9180

def key_store
  @key_store
end

#protocolsArray<String>

The TLS versioins to be used. Corresponds to the JSON property protocols

Returns:

  • (Array<String>)


9185
9186
9187
# File 'lib/google/apis/apigee_v1/classes.rb', line 9185

def protocols
  @protocols
end

#trust_storeString

The resource ID of the truststore. Corresponds to the JSON property trustStore

Returns:

  • (String)


9190
9191
9192
# File 'lib/google/apis/apigee_v1/classes.rb', line 9190

def trust_store
  @trust_store
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9197
9198
9199
9200
9201
9202
9203
9204
9205
9206
9207
# File 'lib/google/apis/apigee_v1/classes.rb', line 9197

def update!(**args)
  @ciphers = args[:ciphers] if args.key?(:ciphers)
  @client_auth_enabled = args[:client_auth_enabled] if args.key?(:client_auth_enabled)
  @common_name = args[:common_name] if args.key?(:common_name)
  @enabled = args[:enabled] if args.key?(:enabled)
  @ignore_validation_errors = args[:ignore_validation_errors] if args.key?(:ignore_validation_errors)
  @key_alias = args[:key_alias] if args.key?(:key_alias)
  @key_store = args[:key_store] if args.key?(:key_store)
  @protocols = args[:protocols] if args.key?(:protocols)
  @trust_store = args[:trust_store] if args.key?(:trust_store)
end