Skip to main content

integration_account_assemblies_content_callback_urls

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

Overview

Nameintegration_account_assemblies_content_callback_urls
TypeResource
Idazure.logic_apps.integration_account_assemblies_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, assemblyArtifactNameapi-versionGet the content callback url for an integration account assembly.

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
assemblyArtifactNamestringThe assembly artifact name.
integrationAccountNamestringThe integration account name.
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription id.
api-versionstringThe API version.

SELECT examples

Get the content callback url for an integration account assembly.

SELECT
basePath,
method,
queries,
relativePath,
relativePathParameters,
value
FROM azure.logic_apps.integration_account_assemblies_content_callback_urls
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND integrationAccountName = '{{ integrationAccountName }}' -- required
AND assemblyArtifactName = '{{ assemblyArtifactName }}' -- required
AND api-version = '{{ api-version }}'
;