import * as $dara from '@darabonba/typescript'; export declare class ListEnvironmentsRequestTag extends $dara.Model { /** * @remarks * The tag key. * * @example * env */ key?: string; /** * @remarks * The tag value. * * @example * gfn_web_outbound_add */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListEnvironmentsRequest extends $dara.Model { /** * @remarks * The add-on name. You must specify at least one of the AddonName and EnvironmentType parameters. * * @example * trace-java */ addonName?: string; /** * @remarks * The ID of the resource. * * @example * cff30f0d67d7542dfb05bd114b4b1d7af */ bindResourceId?: string; /** * @remarks * The environment type. You must specify at least one of the AddonName and EnvironmentType parameters. * * Valid values: * * * CS * * * * : * * * * Container Service for Kubernetes (ACK) * * * * * ECS * * * * : * * * * Elastic Compute Service (ECS) * * * * * Cloud * * * * : * * * * cloud service * * * * @example * CS */ environmentType?: string; /** * @remarks * The payable resource plan. * * * If the EnvironmentType parameter is set to CS, set the value to CS_Basic or CS_Pro. Default value: CS_Basic. * * Otherwise, leave the parameter empty. * * Valid values: * * * CS_Pro: Container Monitoring Pro * * CS_Basic: Container Monitoring Basic * * @example * CS_Pro */ feePackage?: string; /** * @remarks * The region IDs to be queried. * * @example * cn-beijing,cn-hangzhou */ filterRegionIds?: string; /** * @remarks * The region ID. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The ID of the resource group. * * @example * rg-aekzfurdatohtka */ resourceGroupId?: string; /** * @remarks * The tags. */ tag?: ListEnvironmentsRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }