integration_service_environment_network_health
Creates, updates, deletes, gets or lists an integration_service_environment_network_health
resource.
Overview
Name | integration_service_environment_network_health |
Type | Resource |
Id | azure.logic_apps.integration_service_environment_network_health |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroup , integrationServiceEnvironmentName | api-version | Gets the integration service environment network health. |
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
- get
Gets the integration service environment network health.
SELECT
*
FROM azure.logic_apps.integration_service_environment_network_health
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroup = '{{ resourceGroup }}' -- required
AND integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}' -- required
AND api-version = '{{ api-version }}'
;