// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class GetPrometheusMonitoringRequest extends $dara.Model { /** * @remarks * The ID of the Prometheus instance. * * This parameter is required. * * @example * cc7a37ee31aea4ed1a059eff8034b**** */ clusterId?: string; /** * @remarks * The name of the monitoring configuration. * * This parameter is required. * * @example * customJob1 */ monitoringName?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The type of the monitoring configuration. * Valid values for a Prometheus instance for Container Service: serviceMonitor, podMonitor, customJob, and probe. * Valid values for a Prometheus instance for ECS: customJob and probe. * * This parameter is required. * * @example * customJob */ type?: string; static names(): { [key: string]: string } { return { clusterId: 'ClusterId', monitoringName: 'MonitoringName', regionId: 'RegionId', type: 'Type', }; } static types(): { [key: string]: any } { return { clusterId: 'string', monitoringName: 'string', regionId: 'string', type: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }