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

15.8.2 Infrastructure Administrative Roles and Multiple Roles

<?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>
Table 15.16 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 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:

  • Creating of a user

  • Changing of the user password in the user information

Specify a character string that meets the following conditions:

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

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.
If omitted, the user group that the current user belongs to will be assigned. The same name as an existing name of the tenant cannot be specified.

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.

  • Infrastructure administrative roles

    • infra_admin (Infrastructure Administrator)

    • infra_operator (Infrastructure Operator)

  • Multiple roles

    • administrator (Administrator)

    • operator (Operator)

    • monitor (Infrastructure Monitor, Monitor)

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.

  • 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"?>
<Users>
  <User name="test_user01" label="test_user01">
    <Password>test_user01</Password>
    <Comment>test_user</Comment>
    <UserGroup>admin</UserGroup>
  </User>
</Users>