import * as $dara from '@darabonba/typescript'; export declare class ListEnvironmentKubeResourcesRequest extends $dara.Model { /** * @remarks * The environment ID. * * This parameter is required. * * @example * env-xxx */ environmentId?: string; /** * @remarks * The resource type. Valid values: Pod, Deployment, and Service. * * This parameter is required. * * @example * Pod */ kind?: string; /** * @remarks * The tags. */ labelSelectors?: { [key: string]: string; }; /** * @remarks * The namespace. * * @example * default */ namespace?: string; /** * @remarks * The region ID. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }