watchers_azure_reachability_reports
Creates, updates, deletes, gets or lists a watchers_azure_reachability_reports
resource.
Overview
Name | watchers_azure_reachability_reports |
Type | Resource |
Id | azure.network.watchers_azure_reachability_reports |
Fields
The following fields are returned by SELECT
queries:
- get
Successful request for Azure reachability report.
Name | Datatype | Description |
---|---|---|
aggregationLevel | string | The aggregation level of Azure reachability report. Can be Country, State or City. |
providerLocation | object | Parameters that define a geographic location. |
reachabilityReport | array | List of Azure reachability report items. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , networkWatcherName , subscriptionId | NOTE: This feature is currently in preview and still being tested for stability. Gets the relative latency score for internet service providers from a specified location to Azure regions. |
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 |
---|---|---|
networkWatcherName | string | The name of the network watcher resource. |
resourceGroupName | string | The name of the network watcher resource group. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
NOTE: This feature is currently in preview and still being tested for stability. Gets the relative latency score for internet service providers from a specified location to Azure regions.
SELECT
aggregationLevel,
providerLocation,
reachabilityReport
FROM azure.network.watchers_azure_reachability_reports
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND networkWatcherName = '{{ networkWatcherName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;