Skip to main content

service_tag_information

Creates, updates, deletes, gets or lists a service_tag_information resource.

Overview

Nameservice_tag_information
TypeResource
Idazure.network.service_tag_information

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of service tag.
namestringThe name of service tag.
addressPrefixesarrayThe list of IP address prefixes.
changeNumberstringThe iteration number of service tag.
regionstringThe region of service tag.
serviceTagChangeNumberstringThe iteration number of service tag object for region.
statestringThe state of the service tag.
systemServicestringThe name of system service.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlocation, subscription_idnoAddressPrefixes, tagNameGets 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.

NameDatatypeDescription
locationstringThe location name. Required.
subscription_idstring
noAddressPrefixesbooleanDo not return address prefixes for the tag(s). Default value is None.
tagNamestringReturn tag information for a particular tag. Default value is None.

SELECT examples

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 }}'
;