"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); Object.defineProperty(exports, "__esModule", { value: true }); exports.AlertEvent = exports.AlertEventMetrics = void 0; // This file is auto-generated, don't edit it const $dara = __importStar(require("@darabonba/typescript")); /** */ class AlertEventMetrics extends $dara.Model { static names() { return { curValue: 'CurValue', metricName: 'MetricName', metricNameEn: 'MetricNameEn', metricNameZh: 'MetricNameZh', operator: 'Operator', statistics: 'Statistics', threshold: 'Threshold', unit: 'Unit', unitFactor: 'UnitFactor', }; } static types() { return { curValue: 'string', metricName: 'string', metricNameEn: 'string', metricNameZh: 'string', operator: 'string', statistics: 'string', threshold: 'string', unit: 'string', unitFactor: 'number', }; } validate() { super.validate(); } constructor(map) { super(map); } } exports.AlertEventMetrics = AlertEventMetrics; class AlertEvent extends $dara.Model { static names() { return { alertName: 'AlertName', alertStatus: 'AlertStatus', arn: 'Arn', content: 'Content', customLabels: 'CustomLabels', deDupId: 'DeDupId', details: 'Details', eventName: 'EventName', eventType: 'EventType', expression: 'Expression', metrics: 'Metrics', product: 'Product', resourceInfo: 'ResourceInfo', ruleName: 'RuleName', severity: 'Severity', source: 'Source', summary: 'Summary', timestamp: 'Timestamp', traceId: 'TraceId', userId: 'UserId', }; } static types() { return { alertName: 'string', alertStatus: 'string', arn: 'string', content: 'string', customLabels: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' }, deDupId: 'string', details: 'string', eventName: 'string', eventType: 'string', expression: 'string', metrics: { 'type': 'array', 'itemType': AlertEventMetrics }, product: 'string', resourceInfo: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' }, ruleName: 'string', severity: 'string', source: 'string', summary: 'string', timestamp: 'number', traceId: 'string', userId: 'string', }; } validate() { if (this.customLabels) { $dara.Model.validateMap(this.customLabels); } if (Array.isArray(this.metrics)) { $dara.Model.validateArray(this.metrics); } if (this.resourceInfo) { $dara.Model.validateMap(this.resourceInfo); } super.validate(); } constructor(map) { super(map); } } exports.AlertEvent = AlertEvent; //# sourceMappingURL=AlertEvent.js.map