"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.CreateHostAvailabilityRequest = exports.CreateHostAvailabilityRequestAlertConfigTargetList = exports.CreateHostAvailabilityRequestAlertConfigEscalationList = exports.CreateHostAvailabilityRequestTaskOption = exports.CreateHostAvailabilityRequestAlertConfig = void 0; // This file is auto-generated, don't edit it const $dara = __importStar(require("@darabonba/typescript")); class CreateHostAvailabilityRequestAlertConfig extends $dara.Model { static names() { return { endTime: 'EndTime', notifyType: 'NotifyType', silenceTime: 'SilenceTime', startTime: 'StartTime', webHook: 'WebHook', }; } static types() { return { endTime: 'number', notifyType: 'number', silenceTime: 'number', startTime: 'number', webHook: 'string', }; } validate() { super.validate(); } constructor(map) { super(map); } } exports.CreateHostAvailabilityRequestAlertConfig = CreateHostAvailabilityRequestAlertConfig; class CreateHostAvailabilityRequestTaskOption extends $dara.Model { static names() { return { httpHeader: 'HttpHeader', httpMethod: 'HttpMethod', httpNegative: 'HttpNegative', httpPostContent: 'HttpPostContent', httpResponseCharset: 'HttpResponseCharset', httpResponseMatchContent: 'HttpResponseMatchContent', httpURI: 'HttpURI', interval: 'Interval', telnetOrPingHost: 'TelnetOrPingHost', }; } static types() { return { httpHeader: 'string', httpMethod: 'string', httpNegative: 'boolean', httpPostContent: 'string', httpResponseCharset: 'string', httpResponseMatchContent: 'string', httpURI: 'string', interval: 'number', telnetOrPingHost: 'string', }; } validate() { super.validate(); } constructor(map) { super(map); } } exports.CreateHostAvailabilityRequestTaskOption = CreateHostAvailabilityRequestTaskOption; class CreateHostAvailabilityRequestAlertConfigEscalationList extends $dara.Model { static names() { return { aggregate: 'Aggregate', metricName: 'MetricName', operator: 'Operator', times: 'Times', value: 'Value', }; } static types() { return { aggregate: 'string', metricName: 'string', operator: 'string', times: 'number', value: 'string', }; } validate() { super.validate(); } constructor(map) { super(map); } } exports.CreateHostAvailabilityRequestAlertConfigEscalationList = CreateHostAvailabilityRequestAlertConfigEscalationList; class CreateHostAvailabilityRequestAlertConfigTargetList extends $dara.Model { static names() { return { arn: 'Arn', id: 'Id', jsonParams: 'JsonParams', level: 'Level', }; } static types() { return { arn: 'string', id: 'string', jsonParams: 'string', level: 'string', }; } validate() { super.validate(); } constructor(map) { super(map); } } exports.CreateHostAvailabilityRequestAlertConfigTargetList = CreateHostAvailabilityRequestAlertConfigTargetList; class CreateHostAvailabilityRequest extends $dara.Model { static names() { return { alertConfig: 'AlertConfig', taskOption: 'TaskOption', alertConfigEscalationList: 'AlertConfigEscalationList', alertConfigTargetList: 'AlertConfigTargetList', groupId: 'GroupId', instanceList: 'InstanceList', regionId: 'RegionId', taskName: 'TaskName', taskScope: 'TaskScope', taskType: 'TaskType', }; } static types() { return { alertConfig: CreateHostAvailabilityRequestAlertConfig, taskOption: CreateHostAvailabilityRequestTaskOption, alertConfigEscalationList: { 'type': 'array', 'itemType': CreateHostAvailabilityRequestAlertConfigEscalationList }, alertConfigTargetList: { 'type': 'array', 'itemType': CreateHostAvailabilityRequestAlertConfigTargetList }, groupId: 'number', instanceList: { 'type': 'array', 'itemType': 'string' }, regionId: 'string', taskName: 'string', taskScope: 'string', taskType: 'string', }; } validate() { if (this.alertConfig && typeof this.alertConfig.validate === 'function') { this.alertConfig.validate(); } if (this.taskOption && typeof this.taskOption.validate === 'function') { this.taskOption.validate(); } if (Array.isArray(this.alertConfigEscalationList)) { $dara.Model.validateArray(this.alertConfigEscalationList); } if (Array.isArray(this.alertConfigTargetList)) { $dara.Model.validateArray(this.alertConfigTargetList); } if (Array.isArray(this.instanceList)) { $dara.Model.validateArray(this.instanceList); } super.validate(); } constructor(map) { super(map); } } exports.CreateHostAvailabilityRequest = CreateHostAvailabilityRequest; //# sourceMappingURL=CreateHostAvailabilityRequest.js.map