import * as $dara from '@darabonba/typescript'; export declare 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; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }