Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/AttributeRequest.md
2025-02-03 22:09:17 +00:00

973 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
attribute-request AttributeRequest AttributeRequest AttributeRequest powershellsdk
powershell
PowerShell
sdk
AttributeRequest
AttributeRequest
/tools/sdk/powershell/v3/models/attribute-request
SDK
Software Development Kit
AttributeRequest
AttributeRequest

AttributeRequest

Properties

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

Examples

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

[Back to top]