Class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2BlockingFunctionsConfig
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2BlockingFunctionsConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/identitytoolkit_v2/classes.rb,
lib/google/apis/identitytoolkit_v2/representations.rb,
lib/google/apis/identitytoolkit_v2/representations.rb
Overview
Configuration related to Blocking Functions.
Instance Attribute Summary collapse
-
#forward_inbound_credentials ⇒ Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2ForwardInboundCredentials
Indicates which credentials to pass to the registered Blocking Functions.
-
#triggers ⇒ Hash<String,Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2Trigger>
Map of Trigger to event type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitAdminV2BlockingFunctionsConfig
constructor
A new instance of GoogleCloudIdentitytoolkitAdminV2BlockingFunctionsConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitAdminV2BlockingFunctionsConfig
Returns a new instance of GoogleCloudIdentitytoolkitAdminV2BlockingFunctionsConfig.
85 86 87 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 85 def initialize(**args) update!(**args) end |
Instance Attribute Details
#forward_inbound_credentials ⇒ Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2ForwardInboundCredentials
Indicates which credentials to pass to the registered Blocking Functions.
Corresponds to the JSON property forwardInboundCredentials
77 78 79 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 77 def forward_inbound_credentials @forward_inbound_credentials end |
#triggers ⇒ Hash<String,Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2Trigger>
Map of Trigger to event type. Key should be one of the supported event types: "
beforeCreate", "beforeSignIn"
Corresponds to the JSON property triggers
83 84 85 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 83 def triggers @triggers end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
90 91 92 93 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 90 def update!(**args) @forward_inbound_credentials = args[:forward_inbound_credentials] if args.key?(:forward_inbound_credentials) @triggers = args[:triggers] if args.key?(:triggers) end |