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

15.9 User Groups

The XML definition for user groups is shown below.

<?xml version="1.0" encoding="utf-8"?>
<UserGroup name ="User Group name 1" label="label 1">
  <Comment>Comment 1</Comment>
   <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>
</UserGroup>
Table 15.17 List of Items Specified in XML Definitions for User Groups

Element Name

Description

Remarks (Possible Values, Examples)

User group name

(UserGroup name)

Name of the user group

Specify a Unicode character string beginning with an alphanumeric character and containing up to 32 alphanumeric characters, underscores ("_"), and hyphens ("-").

Label

(UserGroup label)

Label for the user group

(optional)

Specify a character string of up to 32 alphanumeric characters or symbols.

Comment

(Comment)

Comment for the user group

(optional)

Specify a character string of up to 256 alphanumeric characters or symbols.

Role Names

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

Role access scope

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"?>
<UserGroup name="admin" label="admin">
  <Comment>admin_group</Comment>
  <Roles>
    <Role name="administrator">
      <Scopes>
        <Scope>all</Scope>
      </Scopes>
    </Role>
  </Roles>
</UserGroup>