<?xml version="1.0" encoding="utf-8"?> <Users> <User name="User ID" label = "Label" > <Password>Password</Password> <MailAddress>User's mail address</MailAddress> <Comment>"Comment 1"</Comment> <UserGroup>User Group Name</UserGroup> <Roles> <Role name="Role Name 1"> <Scopes> <Scope>Access Scope 1</Scope> <Scope>Access Scope 2</Scope> <Scope>Access Scope 3</Scope> </Scopes> </Role> <Role name="Role Name 2"> <Scopes> <Scope>Access Scope 1</Scope> <Scope>Access Scope 2</Scope> <Scope>Access Scope 3</Scope> </Scopes> </Role> </Roles> </User> </Users> |
Element Name | Description | Remarks (Possible Values, Examples) |
---|---|---|
User ID (User name) | Name of the user | Specify a character string beginning with an alphanumeric character and containing between 1 and 32 alphanumeric characters, underscores ("_"), hyphens ("-") and periods ("."). |
Label (User label) | Label for the user (optional) | Specify a character string of up to 32 alphanumeric characters or symbols. |
Password (Password) | Password for the user | Specify in the following cases, when changing to the setting that registers the user in the directory service with the directory service operation definition file:
Specify a character string that meets the following conditions:
|
E-mail address (MailAddress) | User's email address (optional) | Specify a character string of up to 64 alphanumeric characters or symbols. |
Description (Comment) | Comment for the user (optional) | Specify a character string of up to 256 alphanumeric characters or symbols. |
User group name (UserGroup) | Name of the user group the user belongs to (optional) | Specify the name of a user group. |
Role name (Role name) | Role name (optional) | Specify the role name to allocate to the access scope. If omitted, the role assigned to the user group will be assigned.
It is not possible to change the infrastructure administrative roles and the multiple roles to the tenant management roles or the tenant user role. |
Access scope (Scope) | Access scope for the specified role | Specify the scope of access to allow for the user.
|
Example
<?xml version="1.0" encoding="utf-8"?> <Users> <User name="test_user01" label="test_user01"> <Password>test_user01</Password> <Comment>test_user</Comment> <UserGroup>admin</UserGroup> </User> </Users> |