Class: Google::Apis::ServicenetworkingV1beta::Authentication

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

Overview

Authentication defines the authentication configuration for an API. Example for an API targeted for external use: name: calendar.googleapis.com authentication: providers:

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Authentication

Returns a new instance of Authentication.



330
331
332
# File 'generated/google/apis/servicenetworking_v1beta/classes.rb', line 330

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

Instance Attribute Details

#providersArray<Google::Apis::ServicenetworkingV1beta::AuthProvider>

Defines a set of authentication providers that a service supports. Corresponds to the JSON property providers



322
323
324
# File 'generated/google/apis/servicenetworking_v1beta/classes.rb', line 322

def providers
  @providers
end

#rulesArray<Google::Apis::ServicenetworkingV1beta::AuthenticationRule>

A list of authentication rules that apply to individual API methods. NOTE: All service configuration rules follow "last one wins" order. Corresponds to the JSON property rules



328
329
330
# File 'generated/google/apis/servicenetworking_v1beta/classes.rb', line 328

def rules
  @rules
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



335
336
337
338
# File 'generated/google/apis/servicenetworking_v1beta/classes.rb', line 335

def update!(**args)
  @providers = args[:providers] if args.key?(:providers)
  @rules = args[:rules] if args.key?(:rules)
end