import * as $dara from '@darabonba/typescript'; export declare class DescribeInstanceNewConnectionsRequest 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-10-08T02:08:00Z */ endTime?: string; /** * @remarks * The ID of the instance. * * This parameter is required. * * @example * apigateway-cn-2r426lavr001 */ instanceId?: string; /** * @remarks * The statistical metric. Valid values: * * * Maximum * * Minimum * * Average * * This parameter is required. * * @example * Maximum */ sbcName?: string; securityToken?: 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-10-01T02:08:00Z */ startTime?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }