// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class UpdateGroupRequest extends $dara.Model { /** * @remarks * The name of the RAM user group. * * @example * Dev-Team */ groupName?: string; /** * @remarks * The new description of the RAM user group. * * The new description must be 1 to 128 characters in length. * * @example * NewDev-Team */ newComments?: string; /** * @remarks * The new name of the RAM user group. * * The name must be 1 to 64 characters in length and can contain letters, digits, periods (.), hyphens (-), and underscores (_). * * @example * NewDev-Team */ newGroupName?: string; static names(): { [key: string]: string } { return { groupName: 'GroupName', newComments: 'NewComments', newGroupName: 'NewGroupName', }; } static types(): { [key: string]: any } { return { groupName: 'string', newComments: 'string', newGroupName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }