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