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
Request successful. Returns a list of service tag information resources.
Name | Datatype | Description |
---|---|---|
id | string | The ID of service tag. |
name | string | The name of service tag. |
properties | object | Properties of the service tag information. |
serviceTagChangeNumber | string | The iteration number of service tag object for region. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | location , subscriptionId | 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 that will be used as a reference for cloud (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. |
noAddressPrefixes | boolean | Do not return address prefixes for the tag(s). |
tagName | string | Return tag information for a particular tag. |
SELECT
examples
- list
Gets a list of service tag information resources with pagination.
SELECT
id,
name,
properties,
serviceTagChangeNumber
FROM azure.network.service_tag_information
WHERE location = '{{ location }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND noAddressPrefixes = '{{ noAddressPrefixes }}'
AND tagName = '{{ tagName }}'
;