Does anyone have an example of using the update-lifecyclestates cmdlet? I looked in github but I don’t see an example for value
Here is the code sample in git
$IdentityProfileId = "2b838de9-db9b-abcf-e646-d4f274ad4238" # String | Identity Profile ID
$LifecycleStateId = "ef38f94347e94562b5bb8424a56397d8" # String | Lifecycle State ID
$JsonPatchOperationValue = Initialize-JsonPatchOperationValue
$JsonPatchOperation = Initialize-JsonPatchOperation -Op "add" -Path "/description" -Value $JsonPatchOperationValue # JsonPatchOperation[] | A list of lifecycle state update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields can be updated: * enabled * description * accountActions * accessProfileIds * emailNotificationOption
I am doing a patch in postman, that works, using the following JSON
[
{
"op": "replace",
"path": "/accountActions/0",
"value": {
"action": "DISABLE",
"sourceIds":
[
"d04c2ea72a204fb5bf94d83ada723001",
"e89450d775e74a8bbb1d429b27c0b110"
]
}
}
]
How would this translate to the cmdlet?
Thank You.