Class: Google::Apis::ServicenetworkingV1beta::Authentication
- Inherits:
-
Object
- Object
- Google::Apis::ServicenetworkingV1beta::Authentication
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/servicenetworking_v1beta/classes.rb,
lib/google/apis/servicenetworking_v1beta/representations.rb,
lib/google/apis/servicenetworking_v1beta/representations.rb
Overview
Authentication
defines the authentication configuration for API methods
provided by an API service. Example: 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 - selector:
google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
auth/calendar.read
Instance Attribute Summary collapse
-
#providers ⇒ Array<Google::Apis::ServicenetworkingV1beta::AuthProvider>
Defines a set of authentication providers that a service supports.
-
#rules ⇒ Array<Google::Apis::ServicenetworkingV1beta::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.
Constructor Details
#initialize(**args) ⇒ Authentication
Returns a new instance of Authentication.
401 402 403 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 401 def initialize(**args) update!(**args) end |
Instance Attribute Details
#providers ⇒ Array<Google::Apis::ServicenetworkingV1beta::AuthProvider>
Defines a set of authentication providers that a service supports.
Corresponds to the JSON property providers
393 394 395 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 393 def providers @providers end |
#rules ⇒ Array<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
399 400 401 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 399 def rules @rules end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
406 407 408 409 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 406 def update!(**args) @providers = args[:providers] if args.key?(:providers) @rules = args[:rules] if args.key?(:rules) end |