Class: Google::Apis::ComputeAlpha::SecuritySettings

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

Overview

The authentication and authorization settings for a BackendService.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SecuritySettings

Returns a new instance of SecuritySettings.



30737
30738
30739
# File 'generated/google/apis/compute_alpha/classes.rb', line 30737

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

Instance Attribute Details

#authentication_policyGoogle::Apis::ComputeAlpha::AuthenticationPolicy

The authentication settings for the backend service. Corresponds to the JSON property authenticationPolicy



30723
30724
30725
# File 'generated/google/apis/compute_alpha/classes.rb', line 30723

def authentication_policy
  @authentication_policy
end

#authorization_configGoogle::Apis::ComputeAlpha::AuthorizationConfig

Authorization configuration provides service-level and method-level access control for a service. Corresponds to the JSON property authorizationConfig



30729
30730
30731
# File 'generated/google/apis/compute_alpha/classes.rb', line 30729

def authorization_config
  @authorization_config
end

#client_tls_settingsGoogle::Apis::ComputeAlpha::ClientTlsSettings

The client side authentication settings for connection originating from the backend service. Corresponds to the JSON property clientTlsSettings



30735
30736
30737
# File 'generated/google/apis/compute_alpha/classes.rb', line 30735

def client_tls_settings
  @client_tls_settings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



30742
30743
30744
30745
30746
# File 'generated/google/apis/compute_alpha/classes.rb', line 30742

def update!(**args)
  @authentication_policy = args[:authentication_policy] if args.key?(:authentication_policy)
  @authorization_config = args[:authorization_config] if args.key?(:authorization_config)
  @client_tls_settings = args[:client_tls_settings] if args.key?(:client_tls_settings)
end