你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzTag
获取预定义的 Azure 标记 |获取资源或订阅上的整个标记集。
语法
Get-AzTag
[[-Name] <String>]
[-Detailed]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzTag
-ResourceId <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
GetPredefinedTagSet:Get-AzTag cmdlet 获取订阅中的预定义 Azure 标记。 此 cmdlet 返回有关标记的基本信息,或有关标记及其值的详细信息。 所有输出对象都包含一个 Count 属性,该属性表示已应用标记和值的资源和资源组的数量。 Get-AzTag 的 Azure 标记模块是可帮助管理预定义的 Azure 标记的一部分。 Azure 标记是一个名称值对,可用于按部门或成本中心对 Azure 资源和资源组进行分类,或者跟踪有关资源和组的笔记或注释。 可以在单个步骤中定义和应用标记,但预定义标记允许你为订阅中的标记建立标准、一致、可预测的名称和值。 若要创建预定义标记,请使用 New-AzTag cmdlet。 若要将预定义标记应用于资源组,请使用 New-AzTag cmdlet 的 Tag 参数。 若要搜索资源组中的特定标记名称或名称和值,请使用 Get-AzResourceGroup cmdlet 的 Tag 参数。
GetByResourceIdParameterSet:具有 ResourceId 的 get-AzTag cmdlet 获取资源或订阅上的整个标记集。
示例
示例 1:获取所有预定义标记
Get-AzTag
Name Count
======== =====
Department 5
FY2015 2
CostCenter 20
此命令获取订阅中的所有预定义标记。 Count 属性显示标记已应用于订阅中的资源和资源组的次数。
示例 2:按名称获取标记
Get-AzTag -Name "Department"
Name: Department
Count: 5
Values:
Name Count
========== =====
Finance 2
IT 3
此命令获取有关 Department 标记及其值的详细信息。 Count 属性显示标记及其每个值已应用于订阅中的资源和资源组的次数。
示例 3:获取所有标记的值
Get-AzTag -Detailed
Name: Department
Count: 5
Values:
Name Count
========== =====
Finance 2
IT 3
Name: FY2015
Count: 2
Name: CostCenter
Count: 20
Values:
Name Count
========== =====
0001 5
0002 10
0003 5
此命令使用 Detailed 参数获取有关订阅中所有预定义标记的详细信息。 使用 Detailed 参数等效于为每个标记使用 Name 参数。
示例 4:获取订阅上的整个标记集
Get-AzTag -ResourceId /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Id : {Id}
Name : {Name}
Type : {Type}
Properties :
Name Value
======= =========
tagKey1 tagValue1
tagKey2 tagValue2
此命令使用 {subId} 获取订阅上的整个标记集。
示例 5:获取资源上的整个标记集
Get-AzTag -ResourceId /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourcegroups/testrg/providers/Microsoft.Sql/servers/Server1
Id : {Id}
Name : {Name}
Type : {Type}
Properties :
Name Value
======= =========
Dept Finance
Status Normal
此命令使用 {resourceId} 获取资源上的整个标记集。
参数
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Detailed
指示此操作将有关标记值的信息添加到输出中。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Name
预定义标记的名称。 默认情况下,Get-AzTag 获取有关订阅中所有预定义标记的基本信息。 指定 Name 参数时,Detailed 参数无效。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-ResourceId
标记实体的资源标识符。 可以标记资源、资源组或订阅。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
输入
输出
Microsoft.Azure.Commands.ResourceManager.Common.Tags.PSTag | Microsoft.Azure.Commands.Tags.Model.PSTagResource