integration_account_batch_configurations
Creates, updates, deletes, gets or lists a integration_account_batch_configurations
resource.
Overview
Name | integration_account_batch_configurations |
Type | Resource |
Id | azure.logic_apps.integration_account_batch_configurations |
Fields
- vw_integration_account_batch_configurations
- integration_account_batch_configurations
Name | Datatype | Description |
---|---|---|
id | text | The resource id. |
name | text | Gets the resource name. |
batchConfigurationName | text | field from the properties object |
batch_group_name | text | field from the properties object |
changed_time | text | field from the properties object |
created_time | text | field from the properties object |
integrationAccountName | text | field from the properties object |
location | text | The resource location. |
metadata | text | field from the properties object |
release_criteria | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | The resource tags. |
type | text | Gets the resource type. |
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
location | string | The resource location. |
properties | object | The batch configuration properties definition. |
tags | object | The resource tags. |
type | string | Gets the resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | batchConfigurationName, integrationAccountName, resourceGroupName, subscriptionId | Get a batch configuration for an integration account. |
list | SELECT | integrationAccountName, resourceGroupName, subscriptionId | List the batch configurations for an integration account. |
create_or_update | INSERT | batchConfigurationName, integrationAccountName, resourceGroupName, subscriptionId, data__properties | Create or update a batch configuration for an integration account. |
delete | DELETE | batchConfigurationName, integrationAccountName, resourceGroupName, subscriptionId | Delete a batch configuration for an integration account. |
SELECT
examples
List the batch configurations for an integration account.
- vw_integration_account_batch_configurations
- integration_account_batch_configurations
SELECT
id,
name,
batchConfigurationName,
batch_group_name,
changed_time,
created_time,
integrationAccountName,
location,
metadata,
release_criteria,
resourceGroupName,
subscriptionId,
tags,
type
FROM azure.logic_apps.vw_integration_account_batch_configurations
WHERE integrationAccountName = '{{ integrationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.integration_account_batch_configurations
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_batch_configurations
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.logic_apps.integration_account_batch_configurations (
batchConfigurationName,
integrationAccountName,
resourceGroupName,
subscriptionId,
data__properties,
properties,
location,
tags
)
SELECT
'{{ batchConfigurationName }}',
'{{ integrationAccountName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}',
'{{ location }}',
'{{ tags }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: batchGroupName
value: string
- name: releaseCriteria
value:
- name: messageCount
value: integer
- name: batchSize
value: integer
- name: recurrence
value:
- name: frequency
value: []
- name: interval
value: integer
- name: startTime
value: string
- name: endTime
value: string
- name: timeZone
value: string
- name: schedule
value:
- name: minutes
value:
- integer
- name: hours
value:
- integer
- name: weekDays
value:
- string
- name: monthDays
value:
- integer
- name: monthlyOccurrences
value:
- - name: day
value: []
- name: occurrence
value: integer
- name: createdTime
value: string
- name: changedTime
value: string
- name: metadata
value: string
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: location
value: string
- name: tags
value: object
DELETE
example
Deletes the specified integration_account_batch_configurations
resource.
/*+ delete */
DELETE FROM azure.logic_apps.integration_account_batch_configurations
WHERE batchConfigurationName = '{{ batchConfigurationName }}'
AND integrationAccountName = '{{ integrationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';