AddPasswordMap

Trigger this action to add a password to the password map.

Use the HTTP POST method with the resource /mgmt/actionqueue/default, specifying a request payload with the following format:
{
  "AddPasswordMap": {
    "AliasName": "password_alias",
    "Password": "password"
  }
}
AliasName
String
The alias is a publicly known reference that is included in configuration files and exports. With an alias you keep the real password secret because the plain text value for the password is stored in an encrypted file. The password for the alias cannot be viewed or accessed by anyone. Only the appliance can extract the password that it uses internally.
Password
String
The plain text password to alias.

Example

To set the alias "wills_password" for the plain text password "abc_123_def_456", post the following payload to https://yourhost:5554/mgmt/actionqueue/default:
{
  "AddPasswordMap": {
    "AliasName": "wills_password",
    "Password": "abc_123_def_456"
  }
}