Class: Google::Apis::ServicenetworkingV1::Authentication

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/servicenetworking_v1/classes.rb,
generated/google/apis/servicenetworking_v1/representations.rb,
generated/google/apis/servicenetworking_v1/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: - id: google_calendar_auth jwks_uri: https://www. googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: - selector: "*" requirements: provider_id: google_calendar_auth

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Authentication

Returns a new instance of Authentication.



516
517
518
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 516

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

Instance Attribute Details

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

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



508
509
510
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 508

def providers
  @providers
end

#rulesArray<Google::Apis::ServicenetworkingV1::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



514
515
516
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 514

def rules
  @rules
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



521
522
523
524
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 521

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