Skip to main content

integration_account_partners

Creates, updates, deletes, gets or lists a integration_account_partners resource.

Overview

Nameintegration_account_partners
TypeResource
Idazure.logic_apps.integration_account_partners

Fields

NameDatatypeDescription
idtextThe resource id.
nametextGets the resource name.
changed_timetextfield from the properties object
contenttextfield from the properties object
created_timetextfield from the properties object
integrationAccountNametextfield from the properties object
locationtextThe resource location.
metadatatextfield from the properties object
partnerNametextfield from the properties object
partner_typetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextThe resource tags.
typetextGets the resource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTintegrationAccountName, partnerName, resourceGroupName, subscriptionIdGets an integration account partner.
listSELECTintegrationAccountName, resourceGroupName, subscriptionIdGets a list of integration account partners.
create_or_updateINSERTintegrationAccountName, partnerName, resourceGroupName, subscriptionId, data__propertiesCreates or updates an integration account partner.
deleteDELETEintegrationAccountName, partnerName, resourceGroupName, subscriptionIdDeletes an integration account partner.

SELECT examples

Gets a list of integration account partners.

SELECT
id,
name,
changed_time,
content,
created_time,
integrationAccountName,
location,
metadata,
partnerName,
partner_type,
resourceGroupName,
subscriptionId,
tags,
type
FROM azure.logic_apps.vw_integration_account_partners
WHERE integrationAccountName = '{{ integrationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

INSERT example

Use the following StackQL query and manifest file to create a new integration_account_partners resource.

/*+ create */
INSERT INTO azure.logic_apps.integration_account_partners (
integrationAccountName,
partnerName,
resourceGroupName,
subscriptionId,
data__properties,
properties,
location,
tags
)
SELECT
'{{ integrationAccountName }}',
'{{ partnerName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}',
'{{ location }}',
'{{ tags }}'
;

DELETE example

Deletes the specified integration_account_partners resource.

/*+ delete */
DELETE FROM azure.logic_apps.integration_account_partners
WHERE integrationAccountName = '{{ integrationAccountName }}'
AND partnerName = '{{ partnerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';