HP OneView REST API Reference

users
users.html[10/17/2013 10:35:59 AM]
maxLength: 39
roles: description: List of role names to be un-assigned to the user account, role names are case sensitive
type: array
UserAdd
description: The UserAdd is a data transfer object to add users to the appliance. Any user whose roles have the
{users,Create} authorization is allowed to create local users. Validations are performed to ensure
that no user with the same user name and full name already exist. When you create a user, you
should ensure that the password meets minimum requirements.
type: object
Properties
fullName: description: Full name of the user. Should contain only letters and the characters ' . - _ and space
type: string
pattern: ^[a-zA-Z0-9 ._'-]+$
searchable: true
minLength: 1
maxLength: 39
password: description: Password should not contain any of < > ; , \" ' & \\/ | + : = and space
type: string
pattern: ^[^<>;,\"'&\\\\/|+:= ]+$
required: true
minLength: 8
maxLength: 40
userName: description: User name of the user, should be unique in the appliance, should start only with a
letter and should contain only letters, digits and the characters _ -
type: string
pattern: ^[a-zA-Z]+?[0-9-_a-zA-Z]*$
searchable: true
required: true
minLength: 1
maxLength: 39
emailAddress: description: Email address of the user
type: string
pattern: ^[_A-Za-z0-9-]+(\\.[_A-Za-z0-9-]+)*@[A-Za-z0-9]+(\\.[A-Za-z0-9]+)*(\\.[A-Za-z]{2,})$