Class: Google::Apis::ComputeBeta::SecuritySettings
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::SecuritySettings
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Overview
The authentication and authorization settings for a BackendService.
Instance Attribute Summary collapse
-
#authentication ⇒ String
[Deprecated] Use clientTlsPolicy instead.
-
#client_tls_policy ⇒ String
Optional.
-
#subject_alt_names ⇒ Array<String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SecuritySettings
constructor
A new instance of SecuritySettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SecuritySettings
Returns a new instance of SecuritySettings.
31696 31697 31698 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31696 def initialize(**args) update!(**args) end |
Instance Attribute Details
#authentication ⇒ String
[Deprecated] Use clientTlsPolicy instead.
Corresponds to the JSON property authentication
31667 31668 31669 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31667 def authentication @authentication end |
#client_tls_policy ⇒ String
Optional. A URL referring to a networksecurity.ClientTlsPolicy resource that
describes how clients should authenticate with this service's backends.
clientTlsPolicy only applies to a global BackendService with the
loadBalancingScheme set to INTERNAL_SELF_MANAGED.
If left blank, communications are not encrypted.
Note: This field currently has no impact.
Corresponds to the JSON property clientTlsPolicy
31677 31678 31679 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31677 def client_tls_policy @client_tls_policy end |
#subject_alt_names ⇒ Array<String>
Optional. A list of Subject Alternative Names (SANs) that the client verifies
during a mutual TLS handshake with an server/endpoint for this BackendService.
When the server presents its X.509 certificate to the client, the client
inspects the certificate's subjectAltName field. If the field contains one of
the specified values, the communication continues. Otherwise, it fails. This
additional check enables the client to verify that the server is authorized to
run the requested service.
Note that the contents of the server certificate's subjectAltName field are
configured by the Public Key Infrastructure which provisions server identities.
Only applies to a global BackendService with loadBalancingScheme set to
INTERNAL_SELF_MANAGED. Only applies when BackendService has an attached
clientTlsPolicy with clientCertificate (mTLS mode).
Note: This field currently has no impact.
Corresponds to the JSON property subjectAltNames
31694 31695 31696 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31694 def subject_alt_names @subject_alt_names end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31701 31702 31703 31704 31705 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31701 def update!(**args) @authentication = args[:authentication] if args.key?(:authentication) @client_tls_policy = args[:client_tls_policy] if args.key?(:client_tls_policy) @subject_alt_names = args[:subject_alt_names] if args.key?(:subject_alt_names) end |