Top
ServerView Resource Orchestrator Cloud Edition V3.1.1 Reference Guide (Command/XML)
ServerView

15.16 User (for Basic mode)

The XML definition for users is shown below.

<?xml version="1.0" encoding="utf-8"?>
<User name="User ID" label = "Label" >
  <Password>Password</Password>
  <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>
Table 15.26 List of Items Specified in XML Definitions for 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 up to 32 alphanumeric characters, underscores ("_"), and hyphens ("-").

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:

  • Changing of the user password in the user information

  • Creating of a user when using internal authentication to manage user information in Basic mode

Specify a character string that meets the following conditions:

  • For single sign or user management using a directory service in Basic mode:

    A character string containing between 8 and 64 alphanumeric characters and symbols

  • For user management using internal authentication in Basic mode

    Character string of up to 16 alphanumeric characters or symbols

Comment

(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.

If omitted, the user group that the current user belongs to will be assigned.

Role name

(Role name)

Role name

(optional)

Specify the role name to allocate to the access scope.

For details on specifiable role names, refer to "5.1 Restricting Access Using Roles" in the "Design Guide CE".

Access scope

(Scope)

Access scope for the specified role

Specify the scope of access to allow for the user.

  • When restricting the access scope

Specify resource folder names or resource names.

  • When not restricting the access scope

Specify "all".

Example

<?xml version="1.0" encoding="utf-8"?>
<User name="test_user01" label="test_user01">
  <Password>test_user01</Password>
  <Comment>test_user</Comment>
  <UserGroup>admin</UserGroup>
</User>