Get-CloudTag¶
SYNOPSIS¶
Gets resource tags or labels from a selected cloud provider.
SYNTAX¶
All¶
Get-CloudTag [-Provider <string>] [-ResourceId <string>] [-Project <string>] [-Resource <string>]
[-All] [<CommonParameters>]
ALIASES¶
This cmdlet has the following aliases, None
DESCRIPTION¶
Routes resource metadata requests to the matching provider backend for Azure, AWS, or GCP.
Use -All to query every provider that has an established session context, returning tags/labels from all connected clouds in one pipeline.
With -All, returns the subscription-scoped tags for Azure, the region-level tagged resources for AWS, and the project-scoped labels for GCP. For more specific tag queries, omit -All and pass -ResourceId/-Project/-Resource explicitly.
EXAMPLES¶
EXAMPLE 1¶
Get-CloudTag -Provider Azure -ResourceId '/subscriptions/.../virtualMachines/vm01'
Gets Azure tags for a resource identifier.
EXAMPLE 2¶
Get-CloudTag -Provider AWS -ResourceId 'i-0123456789abcdef0'
Gets AWS tags for a resource identifier.
EXAMPLE 3¶
Get-CloudTag -Provider GCP -Project 'my-project' -Resource 'instances/vm-01'
Gets GCP labels for a project-scoped resource.
EXAMPLE 4¶
Get-CloudTag -All
Gets tags/labels from all providers with an established session context. Returns subscription-scoped tags for Azure, region-level tagged resources for AWS, and project-scoped labels for GCP.
PARAMETERS¶
-All¶
Query all providers with an established session context.
Type: System.Management.Automation.SwitchParameter
DefaultValue: False
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: All
Position: Named
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
-Project¶
The GCP project containing the target resource.
Type: System.String
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
Position: Named
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
-Provider¶
The cloud provider to query.
Type: System.String
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
Position: Named
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
-Resource¶
The GCP resource path used to resolve labels.
Type: System.String
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
Position: Named
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
-ResourceId¶
The provider resource identifier for Azure or AWS.
Type: System.String
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
Position: Named
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
CommonParameters¶
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
INPUTS¶
OUTPUTS¶
System.Management.Automation.PSObject¶
See the command description and examples above.
NOTES¶
RELATED LINKS¶
None.