service_tag_information
Creates, updates, deletes, gets or lists a service_tag_information resource.
Overview
| Name | service_tag_information |
| Type | Resource |
| Id | azure.network.service_tag_information |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of service tag. |
name | string | The name of service tag. |
addressPrefixes | array | The list of IP address prefixes. |
changeNumber | string | The iteration number of service tag. |
region | string | The region of service tag. |
serviceTagChangeNumber | string | The iteration number of service tag object for region. |
state | string | The state of the service tag. |
systemService | string | The name of system service. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | location, subscription_id | noAddressPrefixes, tagName | Gets a list of service tag information resources with pagination. |
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 | |
noAddressPrefixes | boolean | Do not return address prefixes for the tag(s). Default value is None. |
tagName | string | Return tag information for a particular tag. Default value is None. |
SELECT examples
- list
Gets a list of service tag information resources with pagination.
SELECT
id,
name,
addressPrefixes,
changeNumber,
region,
serviceTagChangeNumber,
state,
systemService
FROM azure.network.service_tag_information
WHERE location = '{{ location }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND noAddressPrefixes = '{{ noAddressPrefixes }}'
AND tagName = '{{ tagName }}'
;