integration_account_partners
Creates, updates, deletes, gets or lists an integration_account_partners resource.
Overview
| Name | integration_account_partners |
| Type | Resource |
| Id | azure.logic.integration_account_partners |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
changedTime | string (date-time) | The changed time. |
content | object | The partner content. Required. |
createdTime | string (date-time) | The created time. |
location | string | The resource location. |
metadata | object | The metadata. |
partnerType | string | The partner type. Required. Known values are: "NotSpecified" and "B2B". |
tags | object | The resource tags. |
type | string | Gets the resource type. |
| Name | Datatype | Description |
|---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
changedTime | string (date-time) | The changed time. |
content | object | The partner content. Required. |
createdTime | string (date-time) | The created time. |
location | string | The resource location. |
metadata | object | The metadata. |
partnerType | string | The partner type. Required. Known values are: "NotSpecified" and "B2B". |
tags | object | The resource tags. |
type | string | Gets the resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, integration_account_name, partner_name, subscription_id | Gets an integration account partner. | |
list | select | resource_group_name, integration_account_name, subscription_id | $top, $filter | Gets a list of integration account partners. |
create_or_update | insert | resource_group_name, integration_account_name, partner_name, subscription_id, properties | Creates or updates an integration account partner. | |
create_or_update | replace | resource_group_name, integration_account_name, partner_name, subscription_id, properties | Creates or updates an integration account partner. | |
delete | delete | resource_group_name, integration_account_name, partner_name, subscription_id | Deletes an integration account partner. | |
list_content_callback_url | exec | resource_group_name, integration_account_name, partner_name, subscription_id | Get 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.
| Name | Datatype | Description |
|---|---|---|
integration_account_name | string | The integration account name. Required. |
partner_name | string | The integration account partner name. Required. |
resource_group_name | string | The resource group name. Required. |
subscription_id | string | |
$filter | string | The filter to apply on the operation. Options for filters include: PartnerType. Default value is None. |
$top | integer | The number of items to be included in the result. Default value is None. |
SELECT examples
- get
- list
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
;
Gets a list of integration account partners.
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 subscription_id = '{{ subscription_id }}' -- required
AND $top = '{{ $top }}'
AND $filter = '{{ $filter }}'
;
INSERT examples
- create_or_update
- Manifest
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
;
# Description fields are for documentation purposes
- name: integration_account_partners
props:
- name: resource_group_name
value: "{{ resource_group_name }}"
description: Required parameter for the integration_account_partners resource.
- name: integration_account_name
value: "{{ integration_account_name }}"
description: Required parameter for the integration_account_partners resource.
- name: partner_name
value: "{{ partner_name }}"
description: Required parameter for the integration_account_partners resource.
- name: subscription_id
value: "{{ subscription_id }}"
description: Required parameter for the integration_account_partners resource.
- name: location
value: "{{ location }}"
description: |
The resource location.
- name: tags
value: "{{ tags }}"
description: |
The resource tags.
- name: properties
value:
partnerType: "{{ partnerType }}"
metadata: "{{ metadata }}"
content:
b2b:
businessIdentities:
- qualifier: "{{ qualifier }}"
value: "{{ value }}"
REPLACE examples
- create_or_update
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
- delete
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
- list_content_callback_url
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 }}"
}'
;