import * as $dara from '@darabonba/typescript'; export declare class DescribeInstanceHttpCodeRequest extends $dara.Model { /** * @remarks * The end time. The time follows the ISO 8601 standard and UTC time is used. Format: YYYY-MM-DDThh:mm:ssZ * * This parameter is required. * * @example * 2022-07-21T06:05:52Z */ endTime?: string; /** * @remarks * The ID of the instance. * * This parameter is required. * * @example * apigateway-cn-m7r227yy2004 */ instanceId?: string; securityToken?: string; /** * @remarks * The environment in which the API is requested. Valid values: * * * **RELEASE**: the production environment * * **PRE**: the pre-release environment * * **TEST**: the test environment * * This parameter is required. * * @example * RELEASE */ stageName?: string; /** * @remarks * The start time. The time follows the ISO 8601 standard and UTC time is used. Format: YYYY-MM-DDThh:mm:ssZ * * This parameter is required. * * @example * 2022-04-14T02:12:10Z */ startTime?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }