Summary

Gets information about Octopus TagSets

Parameters

Name DataType Description
TagSetName String[] TagSet name
ResourceOnly Switch If set to TRUE the cmdlet will return the basic Octopur resource. If not set or set to FALSE, the cmdlet will return a human friendly Octoposh output object

Syntax


Get-OctopusTagSet [[-TagSetName] <string[]>] [-ResourceOnly <SwitchParameter>] [<CommonParameters>]




Examples

EXAMPLE 1

Gets all the TagSets of the instance

 Get-OctopusTagSet

EXAMPLE 2

Gets the TagSet with the name "Upgrade Ring"

 Get-OctopusTagSet -name "Upgrade Ring"

EXAMPLE 3

Gets the TagSets with the names "Upgrade Ring" and "EAP"

 Get-OctopusTagSet -name "Upgrade Ring","EAP"

EXAMPLE 4

Gets all the TagSets whose name matches the pattern "*_Customers"

 Get-OctopustagSet -name "*_Customers"