Skip to main content

Approvalattributesrequest

Properties

NameTypeDescriptionNotes
AdditionalAttributesmap[string]StringAdditional attributes as key-value pairs that are not part of the standard schema but can be included for custom data.[optional]
CommentStringComment associated with the request.[optional]
RemoveAttributeKeys[]StringList of attribute keys to be removed.[optional]

Examples

  • Prepare the resource
$Approvalattributesrequest = Initialize-Approvalattributesrequest  -AdditionalAttributes {"additionalProp1":"string","additionalProp2":"string","additionalProp3":"string"} `
-Comment comment `
-RemoveAttributeKeys ["string"]
  • Convert the resource to JSON
$Approvalattributesrequest | ConvertTo-JSON

[Back to top]