watchers_available_providers
Creates, updates, deletes, gets or lists a watchers_available_providers
resource.
Overview
Name | watchers_available_providers |
Type | Resource |
Id | azure.network.watchers_available_providers |
Fields
The following fields are returned by SELECT
queries:
- list
Successful request for list of available providers.
Name | Datatype | Description |
---|---|---|
countries | array | List of available countries. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , networkWatcherName , subscriptionId | NOTE: This feature is currently in preview and still being tested for stability. Lists all available internet service providers for a specified Azure region. |
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
- list
NOTE: This feature is currently in preview and still being tested for stability. Lists all available internet service providers for a specified Azure region.
SELECT
countries
FROM azure.network.watchers_available_providers
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND networkWatcherName = '{{ networkWatcherName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;