integration_service_environments
Creates, updates, deletes, gets or lists a integration_service_environments
resource.
Overview
Name | integration_service_environments |
Type | Resource |
Id | azure.logic_apps.integration_service_environments |
Fields
- vw_integration_service_environments
- integration_service_environments
Name | Datatype | Description |
---|---|---|
id | text | The resource id. |
name | text | Gets the resource name. |
encryption_configuration | text | field from the properties object |
endpoints_configuration | text | field from the properties object |
identity | text | Managed service identity properties. |
integrationServiceEnvironmentName | text | field from the properties object |
integration_service_environment_id | text | field from the properties object |
location | text | The resource location. |
network_configuration | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroup | text | field from the properties object |
sku | text | The integration service environment sku. |
state | 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. |
identity | object | Managed service identity properties. |
location | string | The resource location. |
properties | object | The integration service environment properties. |
sku | object | The integration service environment sku. |
tags | object | The resource tags. |
type | string | Gets the resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | integrationServiceEnvironmentName, resourceGroup, subscriptionId | Gets an integration service environment. |
list_by_resource_group | SELECT | resourceGroup, subscriptionId | Gets a list of integration service environments by resource group. |
list_by_subscription | SELECT | subscriptionId | Gets a list of integration service environments by subscription. |
create_or_update | INSERT | integrationServiceEnvironmentName, resourceGroup, subscriptionId | Creates or updates an integration service environment. |
delete | DELETE | integrationServiceEnvironmentName, resourceGroup, subscriptionId | Deletes an integration service environment. |
update | UPDATE | integrationServiceEnvironmentName, resourceGroup, subscriptionId | Updates an integration service environment. |
restart | EXEC | integrationServiceEnvironmentName, resourceGroup, subscriptionId | Restarts an integration service environment. |
SELECT
examples
Gets a list of integration service environments by subscription.
- vw_integration_service_environments
- integration_service_environments
SELECT
id,
name,
encryption_configuration,
endpoints_configuration,
identity,
integrationServiceEnvironmentName,
integration_service_environment_id,
location,
network_configuration,
provisioning_state,
resourceGroup,
sku,
state,
subscriptionId,
tags,
type
FROM azure.logic_apps.vw_integration_service_environments
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
identity,
location,
properties,
sku,
tags,
type
FROM azure.logic_apps.integration_service_environments
WHERE subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new integration_service_environments
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.logic_apps.integration_service_environments (
integrationServiceEnvironmentName,
resourceGroup,
subscriptionId,
properties,
sku,
identity,
location,
tags
)
SELECT
'{{ integrationServiceEnvironmentName }}',
'{{ resourceGroup }}',
'{{ subscriptionId }}',
'{{ properties }}',
'{{ sku }}',
'{{ identity }}',
'{{ location }}',
'{{ tags }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: provisioningState
value: []
- name: state
value: []
- name: integrationServiceEnvironmentId
value: string
- name: endpointsConfiguration
value:
- name: workflow
value:
- name: outgoingIpAddresses
value:
- - name: address
value: string
- name: accessEndpointIpAddresses
value:
- - name: address
value: string
- name: networkConfiguration
value:
- name: virtualNetworkAddressSpace
value: string
- name: accessEndpoint
value:
- name: type
value: []
- name: subnets
value:
- - name: id
value: string
- name: name
value: string
- name: type
value: string
- name: encryptionConfiguration
value:
- name: encryptionKeyReference
value:
- name: keyVault
value:
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: keyName
value: string
- name: keyVersion
value: string
- name: sku
value:
- name: name
value: []
- name: capacity
value: integer
- name: identity
value:
- name: type
value: string
- name: tenantId
value: string
- name: principalId
value: string
- name: userAssignedIdentities
value: object
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: location
value: string
- name: tags
value: object
UPDATE
example
Updates a integration_service_environments
resource.
/*+ update */
UPDATE azure.logic_apps.integration_service_environments
SET
properties = '{{ properties }}',
sku = '{{ sku }}',
identity = '{{ identity }}',
location = '{{ location }}',
tags = '{{ tags }}'
WHERE
integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}'
AND resourceGroup = '{{ resourceGroup }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified integration_service_environments
resource.
/*+ delete */
DELETE FROM azure.logic_apps.integration_service_environments
WHERE integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}'
AND resourceGroup = '{{ resourceGroup }}'
AND subscriptionId = '{{ subscriptionId }}';