watchers_flow_log_status
Creates, updates, deletes, gets or lists a watchers_flow_log_status
resource.
Overview
Name | watchers_flow_log_status |
Type | Resource |
Id | azure.network.watchers_flow_log_status |
Fields
The following fields are returned by SELECT
queries:
- get
Successful request for query flow log and traffic analytics (optional) status.
Name | Datatype | Description |
---|---|---|
flowAnalyticsConfiguration | object | Parameters that define the configuration of traffic analytics. |
identity | object | FlowLog resource Managed Identity |
properties | object | Properties of the flow log. |
targetResourceId | string | The ID of the resource to configure for flow log and traffic analytics (optional) . |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , networkWatcherName , subscriptionId | Queries status of flow log and traffic analytics (optional) on a specified resource. |
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
Queries status of flow log and traffic analytics (optional) on a specified resource.
SELECT
flowAnalyticsConfiguration,
identity,
properties,
targetResourceId
FROM azure.network.watchers_flow_log_status
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND networkWatcherName = '{{ networkWatcherName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;