import * as $dara from '@darabonba/typescript'; export declare class AttachPolicyToGroupRequest extends $dara.Model { /** * @remarks * The name of the RAM user group. * * @example * dev */ groupName?: string; /** * @remarks * The name of the policy. * * @example * OSS-Administrator */ policyName?: string; /** * @remarks * The type of the policy. Valid values: `System` and `Custom`. * * @example * Custom */ policyType?: string; resourceGroupId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }