Skip to main content

AttributeValueDTO

Properties

NameTypeDescriptionNotes
ValueStringTechnical name of the Attribute value. This is unique and cannot be changed after creation.[optional]
NameStringThe display name of the Attribute value.[optional]
StatusStringThe status of the Attribute value.[optional]

Examples

  • Prepare the resource
$AttributeValueDTO = Initialize-PSSailpoint.BetaAttributeValueDTO  -Value public `
-Name Public `
-Status active
  • Convert the resource to JSON
$AttributeValueDTO | ConvertTo-JSON

[Back to top]