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
| 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, subscription_id | 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 name. Required. |
subscription_id | string |
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 subscription_id = '{{ subscription_id }}' -- required
;