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. * * The description can be up to 128 characters in length. * * @example * 测试团队 */ newComments?: string; /** * @remarks * The new display name of the RAM user group. * * The name can be up to 24 characters in length. * * @example * Test-Team */ newDisplayName?: string; /** * @remarks * The new name of the RAM user group. * * The name can be up to 64 characters in length and can contain letters, digits, periods (.), underscores (_), and hyphens (-). * * @example * Test-Team */ newGroupName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }