network_status
Creates, updates, deletes, gets or lists a network_status
resource.
Overview
Name | network_status |
Type | Resource |
Id | azure.api_management.network_status |
Fields
Name | Datatype | Description |
---|---|---|
connectivityStatus | array | Gets the list of Connectivity Status to the Resources on which the service depends upon. |
dnsServers | array | Gets the list of DNS servers IPV4 addresses. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_location | SELECT | locationName, resourceGroupName, serviceName, subscriptionId | Gets the Connectivity Status to the external resources on which the Api Management service depends from inside the Cloud Service. This also returns the DNS Servers as visible to the CloudService. |
list_by_service | EXEC | resourceGroupName, serviceName, subscriptionId | Gets the Connectivity Status to the external resources on which the Api Management service depends from inside the Cloud Service. This also returns the DNS Servers as visible to the CloudService. |
SELECT
examples
Gets the Connectivity Status to the external resources on which the Api Management service depends from inside the Cloud Service. This also returns the DNS Servers as visible to the CloudService.
SELECT
connectivityStatus,
dnsServers
FROM azure.api_management.network_status
WHERE locationName = '{{ locationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';