import * as $dara from '@darabonba/typescript'; export declare class UpdateResourcesDeleteProtectionResponseBody extends $dara.Model { /** * @remarks * The namespace of the resource. * * @example * default */ namespace?: string; /** * @remarks * The deletion protection status of the resource. * * @example * enable */ protection?: string; /** * @remarks * The request ID. * * @example * 0527ac9a-c899-4341-a21a-xxxxxxxxx */ requestId?: string; /** * @remarks * The resource type. * * @example * namespaces */ resourceType?: string; /** * @remarks * The list of resources for which the deletion protection status is updated. */ resources?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }