DeletePasswordMap

Trigger this action to remove an entry from the password map.

Use the HTTP POST method with the resource /mgmt/metadata/default, specifying a request payload with the following format:
{
  "DeletePasswordMap": {
    "AliasName": "filepath"
    }
}
AliasName
String

Identifies the entry to delete from the password map.

Example

To delete the password alias named "wills_password", post the following payload to https://yourhost:5554/mgmt/actionqueue/default:

{
  "DeletePasswordMap": {
    "AliasName": "wills_password`"
    }
}