b2x_user_flows_user_flow_identity_providers
Creates, updates, deletes, gets or lists a b2x_user_flows_user_flow_identity_providers resource.
Overview
| Name | b2x_user_flows_user_flow_identity_providers |
| Type | Resource |
| Id | entra_id.identity.b2x_user_flows_user_flow_identity_providers |
Fields
The following fields are returned by SELECT queries:
- list
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
displayName | string | The display name of the identity provider. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | b2x_identity_user_flow_id | ||
add_ref | insert | b2x_identity_user_flow_id | ||
remove_ref | delete | b2x_identity_user_flow_id, identity_provider_base_id | If-Match | |
remove_ref_2 | delete | b2x_identity_user_flow_id | If-Match |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
b2x_identity_user_flow_id | string | The unique identifier of b2xIdentityUserFlow |
identity_provider_base_id | string | The unique identifier of identityProviderBase |
If-Match | string | ETag |
SELECT examples
- list
Retrieved collection
SELECT
id,
displayName
FROM entra_id.identity.b2x_user_flows_user_flow_identity_providers
WHERE b2x_identity_user_flow_id = '{{ b2x_identity_user_flow_id }}' -- required
;
INSERT examples
- add_ref
- Manifest
No description available.
INSERT INTO entra_id.identity.b2x_user_flows_user_flow_identity_providers (
directoryObjectId,
b2x_identity_user_flow_id
)
SELECT
'{{ directoryObjectId }}',
'{{ b2x_identity_user_flow_id }}'
;
# Description fields are for documentation purposes
- name: b2x_user_flows_user_flow_identity_providers
props:
- name: b2x_identity_user_flow_id
value: "{{ b2x_identity_user_flow_id }}"
description: Required parameter for the b2x_user_flows_user_flow_identity_providers resource.
- name: directoryObjectId
value: "{{ directoryObjectId }}"
description: |
The id of the directory object to reference (a user, group, service principal, device, ...). Sent on the wire as '@odata.id': 'https://graph.microsoft.com/v1.0/directoryObjects/{id}'.
DELETE examples
- remove_ref
- remove_ref_2
No description available.
DELETE FROM entra_id.identity.b2x_user_flows_user_flow_identity_providers
WHERE b2x_identity_user_flow_id = '{{ b2x_identity_user_flow_id }}' --required
AND identity_provider_base_id = '{{ identity_provider_base_id }}' --required
AND If-Match = '{{ If-Match }}'
;
No description available.
DELETE FROM entra_id.identity.b2x_user_flows_user_flow_identity_providers
AND b2x_identity_user_flow_id = '{{ b2x_identity_user_flow_id }}' --required
AND If-Match = '{{ If-Match }}'
;