Get-LiquitTagEntity
Synopsis
This command displays a list of all the entities bound to a tag.
Syntax
Get-LiquitTagEntity
[-Tag] <Tag[]>
[-LiquitContext <LiquitContext>]
[<CommonParameters>]
Example
$tag = Get-LiquitTag -id 00000000-0000-0000-0000-000000000000
Get-LiquitTagEntity -Tag $tag
This command displays the entities bound to the selected tag.
Add-LiquitTagEntity
Synopsis
This command adds an entity to a tag.
Syntax
Add-LiquitTagEntity
[-Tag] <Tag>
[-Entity] <Entity[]>
[-LiquitContext <LiquitContext>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Example
$tag = Get-LiquitTag -ID 00000000-0000-0000-0000-000000000000
$package = Get-LiquitPackage -ID 00000000-0000-0000-0000-000000000000
Add-LiquitTagEntity -Tag $tag -Entity $package
This command associated a package with the specified tag.
Parameters
Name | Value | Description | Required | Default value |
---|---|---|---|---|
Tag | <Tag> |
The tag to which the the entity should be bound. | Yes | |
Entity | <Entity[]> |
The entity to be bound. | Yes | |
LiquitContext | <LiquitContext> |
Determines the selected zone. | No | Default |
Remove-LiquitTagEntity
Synopsis
This command lets you edit the properties of a tag.
Syntax
Remove-LiquitTagEntity
[-Tag] <Tag>
[-Entity] <Entity[]>
[-LiquitContext <LiquitContext>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Example
$tag = Get-LiquitTag -ID 00000000-0000-0000-0000-000000000000
$package = Get-LiquitPackage -ID 00000000-0000-0000-0000-000000000000
Remove-LiquitTagEntity -Tag $tag -Entity $package
This command disassociates the tag from the package.
Parameters
Name | Value | Description | Required | Default value |
---|---|---|---|---|
Tag | <Tag> |
The tag to be unbound. | Yes | |
Entity | <Entity[]> |
The entity to be unbound. | Yes | |
LiquitContext | <LiquitContext> |
Determines the selected zone. | No | Default |