entitlement_management_resource_requests_catalog_custom_workflow_extensions
Creates, updates, deletes, gets or lists an entitlement_management_resource_requests_catalog_custom_workflow_extensions resource.
Overview
| Name | entitlement_management_resource_requests_catalog_custom_workflow_extensions |
| Type | Resource |
| Id | entra_id.identity_governance.entitlement_management_resource_requests_catalog_custom_workflow_extensions |
Fields
The following fields are returned by SELECT queries:
- get
- list
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
authenticationConfiguration | | Configuration for securing the API call to the logic app. For example, using OAuth client credentials flow. |
clientConfiguration | | HTTP connection settings that define how long Microsoft Entra ID can wait for a connection to a logic app, how many times you can retry a timed-out connection and the exception scenarios when retries are allowed. |
description | string | Description for the customCalloutExtension object. |
displayName | string | Display name for the customCalloutExtension object. |
endpointConfiguration | | The type and details for configuring the endpoint to call the logic app's workflow. |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
authenticationConfiguration | | Configuration for securing the API call to the logic app. For example, using OAuth client credentials flow. |
clientConfiguration | | HTTP connection settings that define how long Microsoft Entra ID can wait for a connection to a logic app, how many times you can retry a timed-out connection and the exception scenarios when retries are allowed. |
description | string | Description for the customCalloutExtension object. |
displayName | string | Display name for the customCalloutExtension object. |
endpointConfiguration | | The type and details for configuring the endpoint to call the logic app's workflow. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | access_package_resource_request_id, custom_callout_extension_id | ||
list | select | access_package_resource_request_id | ||
insert | insert | access_package_resource_request_id | ||
update | update | access_package_resource_request_id, custom_callout_extension_id | ||
delete | delete | access_package_resource_request_id, custom_callout_extension_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 |
|---|---|---|
access_package_resource_request_id | string | The unique identifier of accessPackageResourceRequest |
custom_callout_extension_id | string | The unique identifier of customCalloutExtension |
If-Match | string | ETag |
SELECT examples
- get
- list
Retrieved navigation property
SELECT
id,
authenticationConfiguration,
clientConfiguration,
description,
displayName,
endpointConfiguration
FROM entra_id.identity_governance.entitlement_management_resource_requests_catalog_custom_workflow_extensions
WHERE access_package_resource_request_id = '{{ access_package_resource_request_id }}' -- required
AND custom_callout_extension_id = '{{ custom_callout_extension_id }}' -- required
;
Retrieved collection
SELECT
id,
authenticationConfiguration,
clientConfiguration,
description,
displayName,
endpointConfiguration
FROM entra_id.identity_governance.entitlement_management_resource_requests_catalog_custom_workflow_extensions
WHERE access_package_resource_request_id = '{{ access_package_resource_request_id }}' -- required
;
INSERT examples
- insert
- Manifest
No description available.
INSERT INTO entra_id.identity_governance.entitlement_management_resource_requests_catalog_custom_workflow_extensions (
id,
authenticationConfiguration,
clientConfiguration,
description,
displayName,
endpointConfiguration,
access_package_resource_request_id
)
SELECT
'{{ id }}',
'{{ authenticationConfiguration }}',
'{{ clientConfiguration }}',
'{{ description }}',
'{{ displayName }}',
'{{ endpointConfiguration }}',
'{{ access_package_resource_request_id }}'
RETURNING
id,
authenticationConfiguration,
clientConfiguration,
description,
displayName,
endpointConfiguration
;
# Description fields are for documentation purposes
- name: entitlement_management_resource_requests_catalog_custom_workflow_extensions
props:
- name: access_package_resource_request_id
value: "{{ access_package_resource_request_id }}"
description: Required parameter for the entitlement_management_resource_requests_catalog_custom_workflow_extensions resource.
- name: id
value: "{{ id }}"
description: |
The unique identifier for an entity. Read-only.
- name: authenticationConfiguration
value: "{{ authenticationConfiguration }}"
description: |
Configuration for securing the API call to the logic app. For example, using OAuth client credentials flow.
- name: clientConfiguration
value: "{{ clientConfiguration }}"
description: |
HTTP connection settings that define how long Microsoft Entra ID can wait for a connection to a logic app, how many times you can retry a timed-out connection and the exception scenarios when retries are allowed.
- name: description
value: "{{ description }}"
description: |
Description for the customCalloutExtension object.
- name: displayName
value: "{{ displayName }}"
description: |
Display name for the customCalloutExtension object.
- name: endpointConfiguration
value: "{{ endpointConfiguration }}"
description: |
The type and details for configuring the endpoint to call the logic app's workflow.
UPDATE examples
- update
No description available.
UPDATE entra_id.identity_governance.entitlement_management_resource_requests_catalog_custom_workflow_extensions
SET
id = '{{ id }}',
authenticationConfiguration = '{{ authenticationConfiguration }}',
clientConfiguration = '{{ clientConfiguration }}',
description = '{{ description }}',
displayName = '{{ displayName }}',
endpointConfiguration = '{{ endpointConfiguration }}'
WHERE
access_package_resource_request_id = '{{ access_package_resource_request_id }}' --required
AND custom_callout_extension_id = '{{ custom_callout_extension_id }}' --required
RETURNING
id,
authenticationConfiguration,
clientConfiguration,
description,
displayName,
endpointConfiguration;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.identity_governance.entitlement_management_resource_requests_catalog_custom_workflow_extensions
WHERE access_package_resource_request_id = '{{ access_package_resource_request_id }}' --required
AND custom_callout_extension_id = '{{ custom_callout_extension_id }}' --required
AND If-Match = '{{ If-Match }}'
;