Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1TlsInfoConfig

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1TlsInfoConfig

Returns a new instance of GoogleCloudApigeeV1TlsInfoConfig.



6110
6111
6112
# File 'generated/google/apis/apigee_v1/classes.rb', line 6110

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

Instance Attribute Details

#ciphersArray<String>

List of ciphers that are granted access. Corresponds to the JSON property ciphers

Returns:

  • (Array<String>)


6058
6059
6060
# File 'generated/google/apis/apigee_v1/classes.rb', line 6058

def ciphers
  @ciphers
end

#client_auth_enabledBoolean Also known as: client_auth_enabled?

Flag that specifies whether client-side authentication is enabled for the target server. Enables two-way TLS. Corresponds to the JSON property clientAuthEnabled

Returns:

  • (Boolean)


6064
6065
6066
# File 'generated/google/apis/apigee_v1/classes.rb', line 6064

def client_auth_enabled
  @client_auth_enabled
end

#common_nameGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1CommonNameConfig

Common name to validate the target server against. Corresponds to the JSON property commonName



6070
6071
6072
# File 'generated/google/apis/apigee_v1/classes.rb', line 6070

def common_name
  @common_name
end

#enabledBoolean Also known as: enabled?

Flag that specifies whether one-way TLS is enabled. Set to true to enable one-way TLS. Corresponds to the JSON property enabled

Returns:

  • (Boolean)


6076
6077
6078
# File 'generated/google/apis/apigee_v1/classes.rb', line 6076

def enabled
  @enabled
end

#ignore_validation_errorsBoolean Also known as: ignore_validation_errors?

Flag that specifies whether to ignore TLS certificate validation errors. Set to true to ignore errors. Corresponds to the JSON property ignoreValidationErrors

Returns:

  • (Boolean)


6083
6084
6085
# File 'generated/google/apis/apigee_v1/classes.rb', line 6083

def ignore_validation_errors
  @ignore_validation_errors
end

#key_aliasString

Name of the alias used for client-side authentication in the following format: organizations/org/environments/env/keystores/keystore/aliases/alias` Corresponds to the JSON propertykeyAlias`

Returns:

  • (String)


6090
6091
6092
# File 'generated/google/apis/apigee_v1/classes.rb', line 6090

def key_alias
  @key_alias
end

#key_alias_referenceGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1KeyAliasReference

Reference name and alias pair to use for client-side authentication. Corresponds to the JSON property keyAliasReference



6095
6096
6097
# File 'generated/google/apis/apigee_v1/classes.rb', line 6095

def key_alias_reference
  @key_alias_reference
end

#protocolsArray<String>

List of TLS protocols that are granted access. Corresponds to the JSON property protocols

Returns:

  • (Array<String>)


6100
6101
6102
# File 'generated/google/apis/apigee_v1/classes.rb', line 6100

def protocols
  @protocols
end

#trust_storeString

Name of the keystore or keystore reference containing trusted certificates for the server in the following format: organizations/org/environments/env/ keystores/keystoreor `organizations/`org`/environments/`env`/references/` reference Corresponds to the JSON property trustStore

Returns:

  • (String)


6108
6109
6110
# File 'generated/google/apis/apigee_v1/classes.rb', line 6108

def trust_store
  @trust_store
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
# File 'generated/google/apis/apigee_v1/classes.rb', line 6115

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_alias_reference = args[:key_alias_reference] if args.key?(:key_alias_reference)
  @protocols = args[:protocols] if args.key?(:protocols)
  @trust_store = args[:trust_store] if args.key?(:trust_store)
end