Tag Entity
- 16 Mar 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Tag Entity
- Updated on 16 Mar 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
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 {{variable.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 {{variable.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 |
Was this article helpful?