Class: Google::Apis::ServiceusageV1beta1::AuthorizationConfig
- Inherits:
-
Object
- Object
- Google::Apis::ServiceusageV1beta1::AuthorizationConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/serviceusage_v1beta1/classes.rb,
generated/google/apis/serviceusage_v1beta1/representations.rb,
generated/google/apis/serviceusage_v1beta1/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
333 334 335 |
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 333 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
331 332 333 |
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 331 def provider @provider end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
338 339 340 |
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 338 def update!(**args) @provider = args[:provider] if args.key?(:provider) end |