Class: Google::Apis::ServiceconsumermanagementV1::Authentication
- Inherits:
-
Object
- Object
- Google::Apis::ServiceconsumermanagementV1::Authentication
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/serviceconsumermanagement_v1/classes.rb,
generated/google/apis/serviceconsumermanagement_v1/representations.rb,
generated/google/apis/serviceconsumermanagement_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
-
#providers ⇒ Array<Google::Apis::ServiceconsumermanagementV1::AuthProvider>
Defines a set of authentication providers that a service supports.
-
#rules ⇒ Array<Google::Apis::ServiceconsumermanagementV1::AuthenticationRule>
A list of authentication rules that apply to individual API methods.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Authentication
constructor
A new instance of Authentication.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Authentication
Returns a new instance of Authentication
343 344 345 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 343 def initialize(**args) update!(**args) end |
Instance Attribute Details
#providers ⇒ Array<Google::Apis::ServiceconsumermanagementV1::AuthProvider>
Defines a set of authentication providers that a service supports.
Corresponds to the JSON property providers
335 336 337 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 335 def providers @providers end |
#rules ⇒ Array<Google::Apis::ServiceconsumermanagementV1::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
341 342 343 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 341 def rules @rules end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
348 349 350 351 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 348 def update!(**args) @providers = args[:providers] if args.key?(:providers) @rules = args[:rules] if args.key?(:rules) end |