Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/ContextAttributeDto.md
2025-01-28 13:29:29 -05: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
beta-context-attribute-dto ContextAttributeDto ContextAttributeDto ContextAttributeDto powershellsdk
powershell
PowerShell
sdk
ContextAttributeDto
BetaContextAttributeDto
/tools/sdk/powershell/beta/models/context-attribute-dto
SDK
Software Development Kit
ContextAttributeDto
BetaContextAttributeDto

ContextAttributeDto

Properties

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

Examples

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

[Back to top]