Kotlin: IamUtil.awaitCreateUser()
DESCRIPTION
Create an IAM user on device.
This function is meant to be used in a Kotlin coroutine to suspend execution until the operation has completed.
See https://docs.nabto.com/developer/guides/iam/intro.html for an intro to the concept of users and roles.
DECLARATION
suspend fun IamUtil.awaitCreateUser(
    connection: Connection,
    username: String,
    password: String,
    role: String,
)
PARAMETERS
- connection:
- An established connection to the device
- username:
- Username for the new user
- password:
- Password for the new user
- role:
- IAM role for the new user
THROWS EXCEPTIONS
- INVALID_INPUT:
- if username is not valid as per https://docs.nabto.com/developer/api-reference/coap/iam/post-users.html#request
- BLOCKED_BY_DEVICE_CONFIGURATION:
- if the device configuration does not allow the current user to create a new user (the IAM:CreateUseraction is not allowed for the requesting role)
- ROLE_DOES_NOT_EXIST:
- the specified role does not exist in the device IAM configuration
- IAM_NOT_SUPPORTED:
- if Nabto Edge IAM is not supported by the device