Class: Google::Apis::ServicemanagementV1::AuthorizationConfig
- Inherits:
-
Object
- Object
- Google::Apis::ServicemanagementV1::AuthorizationConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicemanagement_v1/classes.rb,
generated/google/apis/servicemanagement_v1/representations.rb,
generated/google/apis/servicemanagement_v1/representations.rb
Overview
Configuration of authorization. This section determines the authorization provider, if unspecified, then no authorization check will be done. Example: experimental: authorization: provider: firebaserules.googleapis.com
Instance Attribute Summary collapse
-
#provider ⇒ String
The name of the authorization provider, such as firebaserules.googleapis.com.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AuthorizationConfig
constructor
A new instance of AuthorizationConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AuthorizationConfig
Returns a new instance of AuthorizationConfig
470 471 472 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 470 def initialize(**args) update!(**args) end |
Instance Attribute Details
#provider ⇒ String
The name of the authorization provider, such as
firebaserules.googleapis.com.
Corresponds to the JSON property provider
468 469 470 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 468 def provider @provider end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
475 476 477 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 475 def update!(**args) @provider = args[:provider] if args.key?(:provider) end |