Tag Entity
  • 16 Mar 2024
  • 1 Minute to read
  • Dark
    Light
  • PDF

Tag Entity

  • Dark
    Light
  • PDF

Article summary

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

NameValueDescriptionRequiredDefault 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.NoDefault

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

NameValueDescriptionRequiredDefault value
Tag<Tag>The tag to be unbound.Yes
Entity<Entity[]>The entity to be unbound.Yes
LiquitContext<LiquitContext>Determines the selected zone.NoDefault

Was this article helpful?

What's Next