service_tags
Creates, updates, deletes, gets or lists a service_tags resource.
Overview
| Name | service_tags |
| Type | Resource |
| Id | azure.network.service_tags |
Fields
The following fields are returned by SELECT queries:
- list
Request successful. Returns a list of service tag information resources.
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the cloud. |
name | string | The name of the cloud. |
changeNumber | string | The iteration number. |
cloud | string | The name of the cloud. |
nextLink | string | The URL to get next page of service tag information resources. |
type | string | The azure resource type. |
values | array | The list of service tag information resources. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | location, subscriptionId | Gets a list of service tag information resources. |
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 |
|---|---|---|
location | string | The location that will be used as a reference for version (not as a filter based on location, you will get the list of service tags with prefix details across all regions but limited to the cloud that your subscription belongs to). |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- list
Gets a list of service tag information resources.
SELECT
id,
name,
changeNumber,
cloud,
nextLink,
type,
values
FROM azure.network.service_tags
WHERE location = '{{ location }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;