// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class GetPrometheusApiTokenRequest extends $dara.Model { /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string } { return { regionId: 'RegionId', }; } static types(): { [key: string]: any } { return { regionId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }