Skip to main content

integration_account_agreements

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

Overview

Nameintegration_account_agreements
TypeResource
Idazure.logic_apps.integration_account_agreements

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource id.
namestringGets the resource name.
locationstringThe resource location.
propertiesobjectThe integration account agreement properties.
tagsobjectThe resource tags.
typestringGets the resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, integrationAccountName, agreementNameapi-versionGets an integration account agreement.
listselectsubscriptionId, resourceGroupName, integrationAccountNameapi-version, $top, $filterGets a list of integration account agreements.
create_or_updateinsertsubscriptionId, resourceGroupName, integrationAccountName, agreementName, data__propertiesapi-versionCreates or updates an integration account agreement.
deletedeletesubscriptionId, resourceGroupName, integrationAccountName, agreementNameapi-versionDeletes an integration account agreement.

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
agreementNamestringThe integration account agreement name.
integrationAccountNamestringThe integration account name.
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription id.
$filterstringThe filter to apply on the operation. Options for filters include: AgreementType.
$topinteger (int32)The number of items to be included in the result.
api-versionstringThe API version.

SELECT examples

Gets an integration account agreement.

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.integration_account_agreements
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND integrationAccountName = '{{ integrationAccountName }}' -- required
AND agreementName = '{{ agreementName }}' -- required
AND api-version = '{{ api-version }}'
;

INSERT examples

Creates or updates an integration account agreement.

INSERT INTO azure.logic_apps.integration_account_agreements (
data__properties,
data__location,
data__tags,
subscriptionId,
resourceGroupName,
integrationAccountName,
agreementName,
api-version
)
SELECT
'{{ properties }}' /* required */,
'{{ location }}',
'{{ tags }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ integrationAccountName }}',
'{{ agreementName }}',
'{{ api-version }}'
RETURNING
id,
name,
location,
properties,
tags,
type
;

DELETE examples

Deletes an integration account agreement.

DELETE FROM azure.logic_apps.integration_account_agreements
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND integrationAccountName = '{{ integrationAccountName }}' --required
AND agreementName = '{{ agreementName }}' --required
AND api-version = '{{ api-version }}'
;