Interface SSHUsers
- All Known Implementing Classes:
SSHUsersImpl
public interface SSHUsers
Client interface for managing SSH users on Network Edge devices. Provides operations
to list, retrieve, and create SSH users, as well as check username availability.
- Version:
- $Id: $Id
- Author:
- ianjones
-
Method Summary
Modifier and TypeMethodDescriptioncheckUsernameAvailability(String username) Returns true if the username is available, otherwise returns 400 bad request.Returns an instance of SSHUserBuilder for defining a new SSH User.Gets the specified SSH User.list()Lists available SSH Users.list(RequestBuilder.SSHUser requestBuilder) Lists SSH Users based on the parameters provided.
-
Method Details
-
list
-
list
Lists SSH Users based on the parameters provided.- Parameters:
requestBuilder- the desired query parameters.- Returns:
PaginatedList
-
getByUuid
-
define
Returns an instance of SSHUserBuilder for defining a new SSH User.- Parameters:
username- the username for the new SSH User.password- the password for the new SSH User.deviceUuid- the unique identifier of the device to add the SSH User to.- Returns:
SSHUserOperator.SSHUserBuilder
-
checkUsernameAvailability
-