// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeInstanceTrafficRequest 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-04-01T06:34:03Z */ endTime?: string; /** * @remarks * The ID of the instance. * * This parameter is required. * * @example * apigateway-cn-2r426lavr001 */ instanceId?: string; securityToken?: string; /** * @remarks * The environment in which the API runs. 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-03-31T03:42:00Z */ startTime?: string; static names(): { [key: string]: string } { return { endTime: 'EndTime', instanceId: 'InstanceId', securityToken: 'SecurityToken', stageName: 'StageName', startTime: 'StartTime', }; } static types(): { [key: string]: any } { return { endTime: 'string', instanceId: 'string', securityToken: 'string', stageName: 'string', startTime: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }