Files
vue-driven-cloud-storage/backend/node_modules/@alicloud/cms20190101/dist/models/DescribeAlertLogCountResponseBody.js
237899745 b135987fe8 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>
2026-01-22 21:04:22 +08:00

114 lines
3.7 KiB
JavaScript

"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.DescribeAlertLogCountResponseBody = exports.DescribeAlertLogCountResponseBodyAlertLogCount = exports.DescribeAlertLogCountResponseBodyAlertLogCountLogs = void 0;
// This file is auto-generated, don't edit it
const $dara = __importStar(require("@darabonba/typescript"));
class DescribeAlertLogCountResponseBodyAlertLogCountLogs extends $dara.Model {
static names() {
return {
name: 'Name',
value: 'Value',
};
}
static types() {
return {
name: 'string',
value: 'string',
};
}
validate() {
super.validate();
}
constructor(map) {
super(map);
}
}
exports.DescribeAlertLogCountResponseBodyAlertLogCountLogs = DescribeAlertLogCountResponseBodyAlertLogCountLogs;
class DescribeAlertLogCountResponseBodyAlertLogCount extends $dara.Model {
static names() {
return {
count: 'Count',
logs: 'Logs',
};
}
static types() {
return {
count: 'number',
logs: { 'type': 'array', 'itemType': DescribeAlertLogCountResponseBodyAlertLogCountLogs },
};
}
validate() {
if (Array.isArray(this.logs)) {
$dara.Model.validateArray(this.logs);
}
super.validate();
}
constructor(map) {
super(map);
}
}
exports.DescribeAlertLogCountResponseBodyAlertLogCount = DescribeAlertLogCountResponseBodyAlertLogCount;
class DescribeAlertLogCountResponseBody extends $dara.Model {
static names() {
return {
alertLogCount: 'AlertLogCount',
code: 'Code',
message: 'Message',
requestId: 'RequestId',
success: 'Success',
};
}
static types() {
return {
alertLogCount: { 'type': 'array', 'itemType': DescribeAlertLogCountResponseBodyAlertLogCount },
code: 'string',
message: 'string',
requestId: 'string',
success: 'boolean',
};
}
validate() {
if (Array.isArray(this.alertLogCount)) {
$dara.Model.validateArray(this.alertLogCount);
}
super.validate();
}
constructor(map) {
super(map);
}
}
exports.DescribeAlertLogCountResponseBody = DescribeAlertLogCountResponseBody;
//# sourceMappingURL=DescribeAlertLogCountResponseBody.js.map