integration_account_batch_configurations
Creates, updates, deletes, gets or lists an integration_account_batch_configurations resource.
Overview
| Name | integration_account_batch_configurations |
| Type | Resource |
| Id | azure.logic.integration_account_batch_configurations |
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. |
batchGroupName | string | The name of the batch group. Required. |
changedTime | string (date-time) | The artifact changed time. |
createdTime | string (date-time) | The artifact creation time. |
location | string | The resource location. |
metadata | object | Anything. |
releaseCriteria | object | The batch release criteria. Required. |
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. |
batchGroupName | string | The name of the batch group. Required. |
changedTime | string (date-time) | The artifact changed time. |
createdTime | string (date-time) | The artifact creation time. |
location | string | The resource location. |
metadata | object | Anything. |
releaseCriteria | object | The batch release criteria. Required. |
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, batch_configuration_name, subscription_id | Get a batch configuration for an integration account. | |
list | select | resource_group_name, integration_account_name, subscription_id | List the batch configurations for an integration account. | |
create_or_update | insert | resource_group_name, integration_account_name, batch_configuration_name, subscription_id, properties | Create or update a batch configuration for an integration account. | |
create_or_update | replace | resource_group_name, integration_account_name, batch_configuration_name, subscription_id, properties | Create or update a batch configuration for an integration account. | |
delete | delete | resource_group_name, integration_account_name, batch_configuration_name, subscription_id | Delete a batch configuration for an integration account. |
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 |
|---|---|---|
batch_configuration_name | string | The batch configuration name. Required. |
integration_account_name | string | The integration account name. Required. |
resource_group_name | string | The resource group name. Required. |
subscription_id | string |
SELECT examples
- get
- list
Get a batch configuration for an integration account.
SELECT
id,
name,
batchGroupName,
changedTime,
createdTime,
location,
metadata,
releaseCriteria,
tags,
type
FROM azure.logic.integration_account_batch_configurations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND integration_account_name = '{{ integration_account_name }}' -- required
AND batch_configuration_name = '{{ batch_configuration_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
List the batch configurations for an integration account.
SELECT
id,
name,
batchGroupName,
changedTime,
createdTime,
location,
metadata,
releaseCriteria,
tags,
type
FROM azure.logic.integration_account_batch_configurations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND integration_account_name = '{{ integration_account_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
INSERT examples
- create_or_update
- Manifest
Create or update a batch configuration for an integration account.
INSERT INTO azure.logic.integration_account_batch_configurations (
location,
tags,
properties,
resource_group_name,
integration_account_name,
batch_configuration_name,
subscription_id
)
SELECT
'{{ location }}',
'{{ tags }}',
'{{ properties }}' /* required */,
'{{ resource_group_name }}',
'{{ integration_account_name }}',
'{{ batch_configuration_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
location,
properties,
tags,
type
;
# Description fields are for documentation purposes
- name: integration_account_batch_configurations
props:
- name: resource_group_name
value: "{{ resource_group_name }}"
description: Required parameter for the integration_account_batch_configurations resource.
- name: integration_account_name
value: "{{ integration_account_name }}"
description: Required parameter for the integration_account_batch_configurations resource.
- name: batch_configuration_name
value: "{{ batch_configuration_name }}"
description: Required parameter for the integration_account_batch_configurations resource.
- name: subscription_id
value: "{{ subscription_id }}"
description: Required parameter for the integration_account_batch_configurations resource.
- name: location
value: "{{ location }}"
description: |
The resource location.
- name: tags
value: "{{ tags }}"
description: |
The resource tags.
- name: properties
description: |
The batch configuration properties. Required.
value:
createdTime: "{{ createdTime }}"
changedTime: "{{ changedTime }}"
metadata: "{{ metadata }}"
batchGroupName: "{{ batchGroupName }}"
releaseCriteria:
messageCount: {{ messageCount }}
batchSize: {{ batchSize }}
recurrence:
frequency: "{{ frequency }}"
interval: {{ interval }}
startTime: "{{ startTime }}"
endTime: "{{ endTime }}"
timeZone: "{{ timeZone }}"
schedule:
minutes:
- {{ minutes }}
hours:
- {{ hours }}
weekDays:
- "{{ weekDays }}"
monthDays:
- {{ monthDays }}
monthlyOccurrences:
- day: "{{ day }}"
occurrence: {{ occurrence }}
REPLACE examples
- create_or_update
Create or update a batch configuration for an integration account.
REPLACE azure.logic.integration_account_batch_configurations
SET
location = '{{ location }}',
tags = '{{ tags }}',
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND integration_account_name = '{{ integration_account_name }}' --required
AND batch_configuration_name = '{{ batch_configuration_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
AND properties = '{{ properties }}' --required
RETURNING
id,
name,
location,
properties,
tags,
type;
DELETE examples
- delete
Delete a batch configuration for an integration account.
DELETE FROM azure.logic.integration_account_batch_configurations
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND integration_account_name = '{{ integration_account_name }}' --required
AND batch_configuration_name = '{{ batch_configuration_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;