Skip to main content

BulkAddTaggedObject

Properties

NameTypeDescriptionNotes
object_refs[]TaggedObjectDto[optional]
tags[]strLabel 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']
}

Example

from sailpoint.v2024.models.bulk_add_tagged_object import BulkAddTaggedObject

bulk_add_tagged_object = BulkAddTaggedObject(
object_refs=[
sailpoint.v2024.models.tagged_object_dto.TaggedObjectDto(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'William Wilson', )
],
tags=[BU_FINANCE, PCI],
operation='APPEND'
)

[Back to top]