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.integration_service_environment_network_health |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
networkDependencyHealthState | string | The integration service environment network health state. Required. Known values are: "NotSpecified", "Unknown", "Available", and "NotAvailable". |
outboundNetworkDependencies | array | The outbound network dependencies. |
outboundNetworkHealth | object | The integration service environment network health. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group, integration_service_environment_name, subscription_id | 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 |
|---|---|---|
integration_service_environment_name | string | The integration service environment name. Required. |
resource_group | string | The resource group. Required. |
subscription_id | string |
SELECT examples
- get
Gets the integration service environment network health.
SELECT
networkDependencyHealthState,
outboundNetworkDependencies,
outboundNetworkHealth
FROM azure.logic.integration_service_environment_network_health
WHERE resource_group = '{{ resource_group }}' -- required
AND integration_service_environment_name = '{{ integration_service_environment_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;