watchers_troubleshooting_results
Creates, updates, deletes, gets or lists a watchers_troubleshooting_results
resource.
Overview
Name | watchers_troubleshooting_results |
Type | Resource |
Id | azure.network.watchers_troubleshooting_results |
Fields
Name | Datatype | Description |
---|---|---|
code | string | The result code of the troubleshooting. |
endTime | string | The end time of the troubleshooting. |
results | array | Information from troubleshooting. |
startTime | string | The start time of the troubleshooting. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | networkWatcherName, resourceGroupName, subscriptionId, data__targetResourceId | Get the last completed troubleshooting result on a specified resource. |
SELECT
examples
Get the last completed troubleshooting result on a specified resource.
SELECT
code,
endTime,
results,
startTime
FROM azure.network.watchers_troubleshooting_results
WHERE networkWatcherName = '{{ networkWatcherName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND data__targetResourceId = '{{ data__targetResourceId }}';