azure_traffic_collectors_by_resource_groups
Creates, updates, deletes, gets or lists an azure_traffic_collectors_by_resource_groups
resource.
Overview
Name | azure_traffic_collectors_by_resource_groups |
Type | Resource |
Id | azure.network_function.azure_traffic_collectors_by_resource_groups |
Fields
The following fields are returned by SELECT
queries:
- list
Request successful. The operation returns a list of azure traffic collector resources.
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
location | string | Resource location. |
properties | object | Properties of the Azure Traffic Collector. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | Resource tags. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , subscriptionId | Return 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.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | Azure Subscription ID. |
SELECT
examples
- list
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
;