Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/AttributeRequest.md
2025-02-18 21:09:13 +00:00

1006 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-attribute-request AttributeRequest AttributeRequest AttributeRequest powershellsdk
powershell
PowerShell
sdk
AttributeRequest
V2024AttributeRequest
/tools/sdk/powershell/v2024/models/attribute-request
SDK
Software Development Kit
AttributeRequest
V2024AttributeRequest

AttributeRequest

Properties

Name Type Description Notes
Name String Attribute name. [optional]
Op String Operation to perform on attribute. [optional]
Value AttributeRequestValue [optional]

Examples

  • Prepare the resource
$AttributeRequest = Initialize-PSSailpoint.V2024AttributeRequest  -Name groups `
 -Op Add `
 -Value null
  • Convert the resource to JSON
$AttributeRequest | ConvertTo-JSON

[Back to top]