Skip to main content

integration_account_partners_content_callback_urls

Creates, updates, deletes, gets or lists an integration_account_partners_content_callback_urls resource.

Overview

Nameintegration_account_partners_content_callback_urls
TypeResource
Idazure.logic_apps.integration_account_partners_content_callback_urls

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
basePathstringGets the workflow trigger callback URL base path.
methodstringGets the workflow trigger callback URL HTTP method.
queriesobjectGets the workflow trigger callback URL query parameters.
relativePathstringGets the workflow trigger callback URL relative path.
relativePathParametersarrayGets the workflow trigger callback URL relative path parameters.
valuestringGets the workflow trigger callback URL.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, integrationAccountName, partnerNameapi-versionGet 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.

NameDatatypeDescription
integrationAccountNamestringThe integration account name.
partnerNamestringThe integration account partner name.
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription id.
api-versionstringThe API version.

SELECT examples

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 }}'
;