Skip to main content

integration_service_environment_network_health

Creates, updates, deletes, gets or lists an integration_service_environment_network_health resource.

Overview

Nameintegration_service_environment_network_health
TypeResource
Idazure.logic.integration_service_environment_network_health

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
networkDependencyHealthStatestringThe integration service environment network health state. Required. Known values are: "NotSpecified", "Unknown", "Available", and "NotAvailable".
outboundNetworkDependenciesarrayThe outbound network dependencies.
outboundNetworkHealthobjectThe integration service environment network health.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group, integration_service_environment_name, subscription_idGets 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.

NameDatatypeDescription
integration_service_environment_namestringThe integration service environment name. Required.
resource_groupstringThe resource group. Required.
subscription_idstring

SELECT examples

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
;