Skip to main content

azure_traffic_collectors_by_subscriptions

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

Overview

Nameazure_traffic_collectors_by_subscriptions
TypeResource
Idazure.network_function.azure_traffic_collectors_by_subscriptions

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
listselectsubscriptionIdReturn list of Azure Traffic Collectors in a subscription

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
subscriptionIdstringAzure Subscription ID.

SELECT examples

Return list of Azure Traffic Collectors in a subscription

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