Class: Google::Apis::ServiceconsumermanagementV1::AuthorizationConfig

Inherits:
Object
  • Object
show all
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

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AuthorizationConfig

Returns a new instance of AuthorizationConfig



428
429
430
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 428

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

Instance Attribute Details

#providerString

The name of the authorization provider, such as firebaserules.googleapis.com. Corresponds to the JSON property provider

Returns:

  • (String)


426
427
428
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 426

def provider
  @provider
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



433
434
435
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 433

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