Skip to main content

network_status

Creates, updates, deletes, gets or lists a network_status resource.

Overview

Namenetwork_status
TypeResource
Idazure.api_management.network_status

Fields

NameDatatypeDescription
connectivityStatusarrayGets the list of Connectivity Status to the Resources on which the service depends upon.
dnsServersarrayGets the list of DNS servers IPV4 addresses.

Methods

NameAccessible byRequired ParamsDescription
list_by_locationSELECTlocationName, resourceGroupName, serviceName, subscriptionIdGets 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_serviceEXECresourceGroupName, serviceName, subscriptionIdGets 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 }}';