import * as $dara from '@darabonba/typescript'; export declare class DescribeDeployedApiRequest extends $dara.Model { /** * @remarks * The ID of the API. * * This parameter is required. * * @example * ab7c95a01a7e42f28718f34497bbf47c */ apiId?: string; /** * @remarks * The ID of the API group. This ID is generated by the system and globally unique. * * @example * 81750604ccff48c48f34d6c0165e09db */ groupId?: string; securityToken?: string; /** * @remarks * The name of the runtime environment. Valid values: * * * **RELEASE** * * **PRE: the pre-release environment** * * **TEST** * * This parameter is required. * * @example * RELEASE */ stageName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }