Skip to main content

watchers_flow_log_status

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

Overview

Namewatchers_flow_log_status
TypeResource
Idazure.network.watchers_flow_log_status

Fields

The following fields are returned by SELECT queries:

Successful request for query flow log and traffic analytics (optional) status.

NameDatatypeDescription
flowAnalyticsConfigurationobjectParameters that define the configuration of traffic analytics.
identityobjectFlowLog resource Managed Identity
propertiesobjectProperties of the flow log.
targetResourceIdstringThe ID of the resource to configure for flow log and traffic analytics (optional) .

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, networkWatcherName, subscriptionIdQueries 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.

NameDatatypeDescription
networkWatcherNamestringThe name of the network watcher resource.
resourceGroupNamestringThe name of the network watcher resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

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
;