integration_account_sessions
Creates, updates, deletes, gets or lists a integration_account_sessions
resource.
Overview
Name | integration_account_sessions |
Type | Resource |
Id | azure.logic_apps.integration_account_sessions |
Fields
- vw_integration_account_sessions
- integration_account_sessions
Name | Datatype | Description |
---|---|---|
id | text | The resource id. |
name | text | Gets the resource name. |
changed_time | text | field from the properties object |
content | 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. |
resourceGroupName | text | field from the properties object |
sessionName | 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 integration account session properties. |
tags | object | The resource tags. |
type | string | Gets the resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | integrationAccountName, resourceGroupName, sessionName, subscriptionId | Gets an integration account session. |
list | SELECT | integrationAccountName, resourceGroupName, subscriptionId | Gets a list of integration account sessions. |
create_or_update | INSERT | integrationAccountName, resourceGroupName, sessionName, subscriptionId, data__properties | Creates or updates an integration account session. |
delete | DELETE | integrationAccountName, resourceGroupName, sessionName, subscriptionId | Deletes an integration account session. |
SELECT
examples
Gets a list of integration account sessions.
- vw_integration_account_sessions
- integration_account_sessions
SELECT
id,
name,
changed_time,
content,
created_time,
integrationAccountName,
location,
resourceGroupName,
sessionName,
subscriptionId,
tags,
type
FROM azure.logic_apps.vw_integration_account_sessions
WHERE integrationAccountName = '{{ integrationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.integration_account_sessions
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_sessions
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.logic_apps.integration_account_sessions (
integrationAccountName,
resourceGroupName,
sessionName,
subscriptionId,
data__properties,
properties,
location,
tags
)
SELECT
'{{ integrationAccountName }}',
'{{ resourceGroupName }}',
'{{ sessionName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}',
'{{ location }}',
'{{ tags }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: createdTime
value: string
- name: changedTime
value: string
- name: content
value: []
- 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_sessions
resource.
/*+ delete */
DELETE FROM azure.logic_apps.integration_account_sessions
WHERE integrationAccountName = '{{ integrationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND sessionName = '{{ sessionName }}'
AND subscriptionId = '{{ subscriptionId }}';