feat: 添加多项功能和修复
功能新增: - OSS 存储使用情况显示(文件页面) - OSS 当日流量统计(阿里云云监控API) - 分享页面路由修复(/s/xxx 格式支持) Bug修复: - 修复分享页面资源路径(相对路径改绝对路径) - 修复分享码获取逻辑(支持路径格式) - 修复OSS配额undefined显示问题 - 修复登录流程OSS配置检查 - 修复文件数为null时的显示问题 依赖更新: - 添加 @alicloud/cms20190101 云监控SDK - 添加 @alicloud/openapi-client Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
205
backend/node_modules/@alicloud/cms20190101/dist/models/CreateHostAvailabilityRequest.js
generated
vendored
Normal file
205
backend/node_modules/@alicloud/cms20190101/dist/models/CreateHostAvailabilityRequest.js
generated
vendored
Normal file
@@ -0,0 +1,205 @@
|
||||
"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
|
||||
Reference in New Issue
Block a user