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.
129 130 131 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 129 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
121 122 123 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 121 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
127 128 129 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 127 def triggers @triggers end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
134 135 136 137 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 134 def update!(**args) @forward_inbound_credentials = args[:forward_inbound_credentials] if args.key?(:forward_inbound_credentials) @triggers = args[:triggers] if args.key?(:triggers) end |