integration_service_environment_skus
Creates, updates, deletes, gets or lists an integration_service_environment_skus
resource.
Overview
Name | integration_service_environment_skus |
Type | Resource |
Id | azure.logic_apps.integration_service_environment_skus |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
capacity | object | The sku capacity. |
resourceType | string | The resource type. |
sku | object | The sku. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroup , integrationServiceEnvironmentName | api-version | Gets a list of integration service environment Skus. |
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 |
---|---|---|
integrationServiceEnvironmentName | string | The integration service environment name. |
resourceGroup | string | The resource group. |
subscriptionId | string | The subscription id. |
api-version | string | The API version. |
SELECT
examples
- list
Gets a list of integration service environment Skus.
SELECT
capacity,
resourceType,
sku
FROM azure.logic_apps.integration_service_environment_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroup = '{{ resourceGroup }}' -- required
AND integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}' -- required
AND api-version = '{{ api-version }}'
;