Skip to main content

BulkAddTaggedObject

Properties

NameTypeDescriptionNotes
ObjectRefs[]TaggedObjectDto[optional]
Tags[]StringLabel to be applied to an Object[optional]
OperationEnum [ "APPEND", "MERGE" ]If APPEND, tags are appended to the list of tags for the object. A 400 error is returned if this would add duplicate tags to the object. If MERGE, tags are merged with the existing tags. Duplicate tags are silently ignored.[optional] [default to "APPEND"]

Examples

  • Prepare the resource
$BulkAddTaggedObject = Initialize-PSSailpoint.V3BulkAddTaggedObject  -ObjectRefs null `
-Tags [BU_FINANCE, PCI] `
-Operation MERGE
  • Convert the resource to JSON
$BulkAddTaggedObject | ConvertTo-JSON

[Back to top]