Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/AttributeRequest.md
2025-04-01 09:23:12 -04: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
v2025-attribute-request AttributeRequest AttributeRequest AttributeRequest powershellsdk
powershell
PowerShell
sdk
AttributeRequest
V2025AttributeRequest
/tools/sdk/powershell/v2025/models/attribute-request
SDK
Software Development Kit
AttributeRequest
V2025AttributeRequest

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.V2025AttributeRequest  -Name groups `
 -Op Add `
 -Value null
  • Convert the resource to JSON
$AttributeRequest | ConvertTo-JSON

[Back to top]