integration_account_partners_content_callback_urls
Creates, updates, deletes, gets or lists an integration_account_partners_content_callback_urls resource.
Overview
| Name | integration_account_partners_content_callback_urls |
| Type | Resource |
| Id | azure.logic_apps.integration_account_partners_content_callback_urls |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
basePath | string | Gets the workflow trigger callback URL base path. |
method | string | Gets the workflow trigger callback URL HTTP method. |
queries | object | Gets the workflow trigger callback URL query parameters. |
relativePath | string | Gets the workflow trigger callback URL relative path. |
relativePathParameters | array | Gets the workflow trigger callback URL relative path parameters. |
value | string | Gets the workflow trigger callback URL. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, integrationAccountName, partnerName | api-version | Get the content callback url. |
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 |
|---|---|---|
integrationAccountName | string | The integration account name. |
partnerName | string | The integration account partner name. |
resourceGroupName | string | The resource group name. |
subscriptionId | string | The subscription id. |
api-version | string | The API version. |
SELECT examples
- list
Get the content callback url.
SELECT
basePath,
method,
queries,
relativePath,
relativePathParameters,
value
FROM azure.logic_apps.integration_account_partners_content_callback_urls
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND integrationAccountName = '{{ integrationAccountName }}' -- required
AND partnerName = '{{ partnerName }}' -- required
AND api-version = '{{ api-version }}'
;