Skip to main content

azure_traffic_collectors_by_resource_groups

Creates, updates, deletes, gets or lists an azure_traffic_collectors_by_resource_groups resource.

Overview

Nameazure_traffic_collectors_by_resource_groups
TypeResource
Idazure.network_function.azure_traffic_collectors_by_resource_groups

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns a list of azure traffic collector resources.

NameDatatypeDescription
idstringResource ID.
namestringResource name.
etagstringA unique read-only string that changes whenever the resource is updated.
locationstringResource location.
propertiesobjectProperties of the Azure Traffic Collector.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
tagsobjectResource tags.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, subscriptionIdReturn list of Azure Traffic Collectors in a Resource Group

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
resourceGroupNamestringThe name of the resource group.
subscriptionIdstringAzure Subscription ID.

SELECT examples

Return list of Azure Traffic Collectors in a Resource Group

SELECT
id,
name,
etag,
location,
properties,
systemData,
tags,
type
FROM azure.network_function.azure_traffic_collectors_by_resource_groups
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;