import * as $dara from '@darabonba/typescript'; export declare class CreateTrafficControlRequest extends $dara.Model { /** * @remarks * The default throttling value for each API. * * This parameter is required. * * @example * 10000 */ apiDefault?: number; /** * @remarks * The default throttling value for each app. * * @example * 10000 */ appDefault?: number; /** * @remarks * The description of the throttling policy. * * @example * ThrottlingTestDescription */ description?: string; securityToken?: string; /** * @remarks * The name of the throttling policy. The name must be 4 to 50 characters in length and can contain letters, digits, and underscores (_). It cannot start with an underscore. * * This parameter is required. * * @example * ThrottlingTest */ trafficControlName?: string; /** * @remarks * The unit to be used in the throttling policy. Valid values: * * * **SECOND** * * **MINUTE** * * **HOUR** * * **DAY** * * This parameter is required. * * @example * MINUTE */ trafficControlUnit?: string; /** * @remarks * The default throttling value for each user. * * @example * 10000 */ userDefault?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }