import * as $dara from '@darabonba/typescript'; export declare class BatchDeployApisRequestApi extends $dara.Model { /** * @remarks * The API ID. * * This parameter is required. * * @example * 2b35dd68345b472f8051647306a16415 */ apiUid?: string; /** * @remarks * The API group ID. * * This parameter is required. * * @example * b4f5c342b8bc4ef88ccda0332402e0fa */ groupId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class BatchDeployApisRequest extends $dara.Model { /** * @remarks * The APIs that you want to publish. */ api?: BatchDeployApisRequestApi[]; /** * @remarks * The description. * * This parameter is required. * * @example * test */ description?: string; securityToken?: string; /** * @remarks * The name of the runtime environment. Valid values: * * * **RELEASE** * * **TEST** * * PRE: the pre-release environment * * 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; }); }