Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/ContextAttributeDto.md
2025-04-01 09:23:12 -04:00

1.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-context-attribute-dto ContextAttributeDto ContextAttributeDto ContextAttributeDto powershellsdk
powershell
PowerShell
sdk
ContextAttributeDto
V2025ContextAttributeDto
/tools/sdk/powershell/v2025/models/context-attribute-dto
SDK
Software Development Kit
ContextAttributeDto
V2025ContextAttributeDto

ContextAttributeDto

Properties

Name Type Description Notes
Attribute String The name of the attribute [optional]
Value ContextAttributeDtoValue [optional]
Derived Boolean True if the attribute was derived. [optional] [default to $false]

Examples

  • Prepare the resource
$ContextAttributeDto = Initialize-PSSailpoint.V2025ContextAttributeDto  -Attribute location `
 -Value null `
 -Derived false
  • Convert the resource to JSON
$ContextAttributeDto | ConvertTo-JSON

[Back to top]