NSX Autonomous Edge REST API
Associated URIs:
| API Description | API Path |
|---|---|
List node usersReturns the list of users configured to log in to the NSX appliance. |
GET /api/v1/node/users
|
Read node userReturns information about a specified user who is configured to log in to the NSX appliance. The valid user IDs are: 0, 10000, 10002. |
GET /api/v1/node/users/<userid>
|
Update node userUpdates attributes of an existing NSX appliance user. This method
The specified password does not meet the following (default) complexity requirements:
the configured password complexity may vary as per defined Authentication and Password policies, which shall be available at: [GET]: /api/v1/node/aaa/auth-policy The valid user IDs are: 0, 10000, 10002.
|
PUT /api/v1/node/users/<userid>
|
List SSH keys from authorized_keys file for node userReturns a list of all SSH keys from authorized_keys file for node user |
GET /api/v1/node/users/<userid>/ssh-keys
|
Remove SSH public key from authorized_keys file for node user |
POST /api/v1/node/users/<userid>/ssh-keys?action=remove_ssh_key
|
Add SSH public key to authorized_keys file for node user |
POST /api/v1/node/users/<userid>/ssh-keys?action=add_ssh_key
|