Skip to main content

BulkTaggedObject

Properties

NameTypeDescriptionNotes
ObjectRefs[]TaggedObjectDto[optional]
Tags[]StringLabel to be applied to 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
$BulkTaggedObject = Initialize-PSSailpoint.BetaBulkTaggedObject  -ObjectRefs null `
-Tags [BU_FINANCE, PCI] `
-Operation MERGE
  • Convert the resource to JSON
$BulkTaggedObject | ConvertTo-JSON

[Back to top]