Skip to main content

integration_account_partners

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

Overview

Nameintegration_account_partners
TypeResource
Idazure.logic.integration_account_partners

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource id.
namestringGets the resource name.
changedTimestring (date-time)The changed time.
contentobjectThe partner content. Required.
createdTimestring (date-time)The created time.
locationstringThe resource location.
metadataobjectThe metadata.
partnerTypestringThe partner type. Required. Known values are: "NotSpecified" and "B2B".
tagsobjectThe resource tags.
typestringGets the resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, integration_account_name, partner_name, subscription_idGets an integration account partner.
listselectresource_group_name, integration_account_name, subscription_id$top, $filterGets a list of integration account partners.
create_or_updateinsertresource_group_name, integration_account_name, partner_name, subscription_id, propertiesCreates or updates an integration account partner.
create_or_updatereplaceresource_group_name, integration_account_name, partner_name, subscription_id, propertiesCreates or updates an integration account partner.
deletedeleteresource_group_name, integration_account_name, partner_name, subscription_idDeletes an integration account partner.
list_content_callback_urlexecresource_group_name, integration_account_name, partner_name, subscription_idGet 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
integration_account_namestringThe integration account name. Required.
partner_namestringThe integration account partner name. Required.
resource_group_namestringThe resource group name. Required.
subscription_idstring
$filterstringThe filter to apply on the operation. Options for filters include: PartnerType. Default value is None.
$topintegerThe number of items to be included in the result. Default value is None.

SELECT examples

Gets an integration account partner.

SELECT
id,
name,
changedTime,
content,
createdTime,
location,
metadata,
partnerType,
tags,
type
FROM azure.logic.integration_account_partners
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND integration_account_name = '{{ integration_account_name }}' -- required
AND partner_name = '{{ partner_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

INSERT examples

Creates or updates an integration account partner.

INSERT INTO azure.logic.integration_account_partners (
location,
tags,
properties,
resource_group_name,
integration_account_name,
partner_name,
subscription_id
)
SELECT
'{{ location }}',
'{{ tags }}',
'{{ properties }}' /* required */,
'{{ resource_group_name }}',
'{{ integration_account_name }}',
'{{ partner_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
location,
properties,
tags,
type
;

REPLACE examples

Creates or updates an integration account partner.

REPLACE azure.logic.integration_account_partners
SET
location = '{{ location }}',
tags = '{{ tags }}',
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND integration_account_name = '{{ integration_account_name }}' --required
AND partner_name = '{{ partner_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
AND properties = '{{ properties }}' --required
RETURNING
id,
name,
location,
properties,
tags,
type;

DELETE examples

Deletes an integration account partner.

DELETE FROM azure.logic.integration_account_partners
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND integration_account_name = '{{ integration_account_name }}' --required
AND partner_name = '{{ partner_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;

Lifecycle Methods

Get the content callback url.

EXEC azure.logic.integration_account_partners.list_content_callback_url 
@resource_group_name='{{ resource_group_name }}' --required,
@integration_account_name='{{ integration_account_name }}' --required,
@partner_name='{{ partner_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
@@json=
'{
"notAfter": "{{ notAfter }}",
"keyType": "{{ keyType }}"
}'
;