@alicloud/ebs20210730 4.4.1 → 4.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist/client.d.ts +30 -0
  2. package/dist/client.js +123 -0
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/CreateDiagnoseReportRequest.d.ts +51 -0
  5. package/dist/models/CreateDiagnoseReportRequest.js +70 -0
  6. package/dist/models/CreateDiagnoseReportRequest.js.map +1 -0
  7. package/dist/models/CreateDiagnoseReportResponse.d.ts +19 -0
  8. package/dist/models/CreateDiagnoseReportResponse.js +69 -0
  9. package/dist/models/CreateDiagnoseReportResponse.js.map +1 -0
  10. package/dist/models/CreateDiagnoseReportResponseBody.d.ts +23 -0
  11. package/dist/models/CreateDiagnoseReportResponseBody.js +60 -0
  12. package/dist/models/CreateDiagnoseReportResponseBody.js.map +1 -0
  13. package/dist/models/DescribeDiagnoseReportRequest.d.ts +63 -0
  14. package/dist/models/DescribeDiagnoseReportRequest.js +82 -0
  15. package/dist/models/DescribeDiagnoseReportRequest.js.map +1 -0
  16. package/dist/models/DescribeDiagnoseReportResponse.d.ts +19 -0
  17. package/dist/models/DescribeDiagnoseReportResponse.js +69 -0
  18. package/dist/models/DescribeDiagnoseReportResponse.js.map +1 -0
  19. package/dist/models/DescribeDiagnoseReportResponseBody.d.ts +136 -0
  20. package/dist/models/DescribeDiagnoseReportResponseBody.js +142 -0
  21. package/dist/models/DescribeDiagnoseReportResponseBody.js.map +1 -0
  22. package/dist/models/model.d.ts +8 -0
  23. package/dist/models/model.js +22 -6
  24. package/dist/models/model.js.map +1 -1
  25. package/package.json +1 -1
  26. package/src/client.ts +144 -0
  27. package/src/models/CreateDiagnoseReportRequest.ts +76 -0
  28. package/src/models/CreateDiagnoseReportResponse.ts +40 -0
  29. package/src/models/CreateDiagnoseReportResponseBody.ts +38 -0
  30. package/src/models/DescribeDiagnoseReportRequest.ts +100 -0
  31. package/src/models/DescribeDiagnoseReportResponse.ts +40 -0
  32. package/src/models/DescribeDiagnoseReportResponseBody.ts +215 -0
  33. package/src/models/model.ts +8 -0
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { CreateDiagnoseReportResponseBody } from "./CreateDiagnoseReportResponseBody";
3
+ export declare class CreateDiagnoseReportResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: CreateDiagnoseReportResponseBody;
9
+ static names(): {
10
+ [key: string]: string;
11
+ };
12
+ static types(): {
13
+ [key: string]: any;
14
+ };
15
+ validate(): void;
16
+ constructor(map?: {
17
+ [key: string]: any;
18
+ });
19
+ }
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.CreateDiagnoseReportResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const CreateDiagnoseReportResponseBody_1 = require("./CreateDiagnoseReportResponseBody");
40
+ class CreateDiagnoseReportResponse extends $dara.Model {
41
+ static names() {
42
+ return {
43
+ headers: 'headers',
44
+ statusCode: 'statusCode',
45
+ body: 'body',
46
+ };
47
+ }
48
+ static types() {
49
+ return {
50
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
51
+ statusCode: 'number',
52
+ body: CreateDiagnoseReportResponseBody_1.CreateDiagnoseReportResponseBody,
53
+ };
54
+ }
55
+ validate() {
56
+ if (this.headers) {
57
+ $dara.Model.validateMap(this.headers);
58
+ }
59
+ if (this.body && typeof this.body.validate === 'function') {
60
+ this.body.validate();
61
+ }
62
+ super.validate();
63
+ }
64
+ constructor(map) {
65
+ super(map);
66
+ }
67
+ }
68
+ exports.CreateDiagnoseReportResponse = CreateDiagnoseReportResponse;
69
+ //# sourceMappingURL=CreateDiagnoseReportResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateDiagnoseReportResponse.js","sourceRoot":"","sources":["../../src/models/CreateDiagnoseReportResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,yFAAsF;AAGtF,MAAa,4BAA6B,SAAQ,KAAK,CAAC,KAAK;IAI3D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,mEAAgC;SACvC,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,oEAiCC"}
@@ -0,0 +1,23 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class CreateDiagnoseReportResponseBody extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * report-qe2s****
6
+ */
7
+ reportId?: string;
8
+ /**
9
+ * @example
10
+ * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
11
+ */
12
+ requestId?: string;
13
+ static names(): {
14
+ [key: string]: string;
15
+ };
16
+ static types(): {
17
+ [key: string]: any;
18
+ };
19
+ validate(): void;
20
+ constructor(map?: {
21
+ [key: string]: any;
22
+ });
23
+ }
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.CreateDiagnoseReportResponseBody = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class CreateDiagnoseReportResponseBody extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ reportId: 'ReportId',
43
+ requestId: 'RequestId',
44
+ };
45
+ }
46
+ static types() {
47
+ return {
48
+ reportId: 'string',
49
+ requestId: 'string',
50
+ };
51
+ }
52
+ validate() {
53
+ super.validate();
54
+ }
55
+ constructor(map) {
56
+ super(map);
57
+ }
58
+ }
59
+ exports.CreateDiagnoseReportResponseBody = CreateDiagnoseReportResponseBody;
60
+ //# sourceMappingURL=CreateDiagnoseReportResponseBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateDiagnoseReportResponseBody.js","sourceRoot":"","sources":["../../src/models/CreateDiagnoseReportResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,gCAAiC,SAAQ,KAAK,CAAC,KAAK;IAW/D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,UAAU;YACpB,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,QAAQ;YAClB,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAhCD,4EAgCC"}
@@ -0,0 +1,63 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class DescribeDiagnoseReportRequest extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * 123e4567-e89b-12d3-a456-42665544****
6
+ */
7
+ clientToken?: string;
8
+ /**
9
+ * @example
10
+ * Performance
11
+ */
12
+ diagnoseType?: string;
13
+ /**
14
+ * @example
15
+ * 2024-08-26T02:06:00Z
16
+ */
17
+ endTime?: string;
18
+ /**
19
+ * @example
20
+ * 10
21
+ */
22
+ maxResults?: number;
23
+ /**
24
+ * @example
25
+ * adf8a2534f1c0a23e0b5e8707e68181f
26
+ */
27
+ nextToken?: string;
28
+ /**
29
+ * @example
30
+ * cn-zhangjiakou
31
+ */
32
+ regionId?: string;
33
+ /**
34
+ * @example
35
+ * report-asb1s8***
36
+ */
37
+ reportIds?: string[];
38
+ /**
39
+ * @example
40
+ * d-asb1s8***
41
+ */
42
+ resourceIds?: string[];
43
+ /**
44
+ * @example
45
+ * 2024-08-26T01:00:00Z
46
+ */
47
+ startTime?: string;
48
+ /**
49
+ * @example
50
+ * Running
51
+ */
52
+ status?: string;
53
+ static names(): {
54
+ [key: string]: string;
55
+ };
56
+ static types(): {
57
+ [key: string]: any;
58
+ };
59
+ validate(): void;
60
+ constructor(map?: {
61
+ [key: string]: any;
62
+ });
63
+ }
@@ -0,0 +1,82 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.DescribeDiagnoseReportRequest = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class DescribeDiagnoseReportRequest extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ clientToken: 'ClientToken',
43
+ diagnoseType: 'DiagnoseType',
44
+ endTime: 'EndTime',
45
+ maxResults: 'MaxResults',
46
+ nextToken: 'NextToken',
47
+ regionId: 'RegionId',
48
+ reportIds: 'ReportIds',
49
+ resourceIds: 'ResourceIds',
50
+ startTime: 'StartTime',
51
+ status: 'Status',
52
+ };
53
+ }
54
+ static types() {
55
+ return {
56
+ clientToken: 'string',
57
+ diagnoseType: 'string',
58
+ endTime: 'string',
59
+ maxResults: 'number',
60
+ nextToken: 'string',
61
+ regionId: 'string',
62
+ reportIds: { 'type': 'array', 'itemType': 'string' },
63
+ resourceIds: { 'type': 'array', 'itemType': 'string' },
64
+ startTime: 'string',
65
+ status: 'string',
66
+ };
67
+ }
68
+ validate() {
69
+ if (Array.isArray(this.reportIds)) {
70
+ $dara.Model.validateArray(this.reportIds);
71
+ }
72
+ if (Array.isArray(this.resourceIds)) {
73
+ $dara.Model.validateArray(this.resourceIds);
74
+ }
75
+ super.validate();
76
+ }
77
+ constructor(map) {
78
+ super(map);
79
+ }
80
+ }
81
+ exports.DescribeDiagnoseReportRequest = DescribeDiagnoseReportRequest;
82
+ //# sourceMappingURL=DescribeDiagnoseReportRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescribeDiagnoseReportRequest.js","sourceRoot":"","sources":["../../src/models/DescribeDiagnoseReportRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,6BAA8B,SAAQ,KAAK,CAAC,KAAK;IAmD5D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,YAAY,EAAE,cAAc;YAC5B,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,SAAS,EAAE,WAAW;YACtB,QAAQ,EAAE,UAAU;YACpB,SAAS,EAAE,WAAW;YACtB,WAAW,EAAE,aAAa;YAC1B,SAAS,EAAE,WAAW;YACtB,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,QAAQ;YACrB,YAAY,EAAE,QAAQ;YACtB,OAAO,EAAE,QAAQ;YACjB,UAAU,EAAE,QAAQ;YACpB,SAAS,EAAE,QAAQ;YACnB,QAAQ,EAAE,QAAQ;YAClB,SAAS,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YACpD,WAAW,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YACtD,SAAS,EAAE,QAAQ;YACnB,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC;YACjC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAC5C,CAAC;QACD,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC;YACnC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC9C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA9FD,sEA8FC"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { DescribeDiagnoseReportResponseBody } from "./DescribeDiagnoseReportResponseBody";
3
+ export declare class DescribeDiagnoseReportResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: DescribeDiagnoseReportResponseBody;
9
+ static names(): {
10
+ [key: string]: string;
11
+ };
12
+ static types(): {
13
+ [key: string]: any;
14
+ };
15
+ validate(): void;
16
+ constructor(map?: {
17
+ [key: string]: any;
18
+ });
19
+ }
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.DescribeDiagnoseReportResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const DescribeDiagnoseReportResponseBody_1 = require("./DescribeDiagnoseReportResponseBody");
40
+ class DescribeDiagnoseReportResponse extends $dara.Model {
41
+ static names() {
42
+ return {
43
+ headers: 'headers',
44
+ statusCode: 'statusCode',
45
+ body: 'body',
46
+ };
47
+ }
48
+ static types() {
49
+ return {
50
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
51
+ statusCode: 'number',
52
+ body: DescribeDiagnoseReportResponseBody_1.DescribeDiagnoseReportResponseBody,
53
+ };
54
+ }
55
+ validate() {
56
+ if (this.headers) {
57
+ $dara.Model.validateMap(this.headers);
58
+ }
59
+ if (this.body && typeof this.body.validate === 'function') {
60
+ this.body.validate();
61
+ }
62
+ super.validate();
63
+ }
64
+ constructor(map) {
65
+ super(map);
66
+ }
67
+ }
68
+ exports.DescribeDiagnoseReportResponse = DescribeDiagnoseReportResponse;
69
+ //# sourceMappingURL=DescribeDiagnoseReportResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescribeDiagnoseReportResponse.js","sourceRoot":"","sources":["../../src/models/DescribeDiagnoseReportResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,6FAA0F;AAG1F,MAAa,8BAA+B,SAAQ,KAAK,CAAC,KAAK;IAI7D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,uEAAkC;SACzC,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,wEAiCC"}
@@ -0,0 +1,136 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class DescribeDiagnoseReportResponseBodyReportsEvents extends $dara.Model {
3
+ description?: string;
4
+ /**
5
+ * @example
6
+ * DiskIOPSExceedDiskMaxLimit
7
+ */
8
+ eventName?: string;
9
+ /**
10
+ * @example
11
+ * ResizeDisk
12
+ */
13
+ recommendAction?: string;
14
+ /**
15
+ * @example
16
+ * 4096
17
+ */
18
+ recommendParams?: string;
19
+ /**
20
+ * @example
21
+ * Warn
22
+ */
23
+ severity?: string;
24
+ startTime?: number;
25
+ static names(): {
26
+ [key: string]: string;
27
+ };
28
+ static types(): {
29
+ [key: string]: any;
30
+ };
31
+ validate(): void;
32
+ constructor(map?: {
33
+ [key: string]: any;
34
+ });
35
+ }
36
+ export declare class DescribeDiagnoseReportResponseBodyReports extends $dara.Model {
37
+ /**
38
+ * @example
39
+ * 196380451****
40
+ */
41
+ aliUid?: number;
42
+ /**
43
+ * @example
44
+ * 1727239294
45
+ */
46
+ creationTime?: number;
47
+ /**
48
+ * @example
49
+ * 1727239294
50
+ */
51
+ diagnoseEndTime?: number;
52
+ /**
53
+ * @example
54
+ * 1727229294
55
+ */
56
+ diagnoseStartTime?: number;
57
+ /**
58
+ * @example
59
+ * Performance
60
+ */
61
+ diagnoseType?: string;
62
+ events?: DescribeDiagnoseReportResponseBodyReportsEvents[];
63
+ /**
64
+ * @example
65
+ * 1727239295
66
+ */
67
+ finishedTime?: number;
68
+ /**
69
+ * @example
70
+ * cn-zhangjiakou
71
+ */
72
+ regionId?: string;
73
+ /**
74
+ * @example
75
+ * report-sag8d****
76
+ */
77
+ reportId?: string;
78
+ /**
79
+ * @example
80
+ * d-wz95ycu****
81
+ */
82
+ resourceId?: string;
83
+ /**
84
+ * @example
85
+ * Disk
86
+ */
87
+ resourceType?: string;
88
+ /**
89
+ * @example
90
+ * Warn
91
+ */
92
+ severity?: string;
93
+ /**
94
+ * @example
95
+ * Success
96
+ */
97
+ status?: string;
98
+ static names(): {
99
+ [key: string]: string;
100
+ };
101
+ static types(): {
102
+ [key: string]: any;
103
+ };
104
+ validate(): void;
105
+ constructor(map?: {
106
+ [key: string]: any;
107
+ });
108
+ }
109
+ export declare class DescribeDiagnoseReportResponseBody extends $dara.Model {
110
+ /**
111
+ * @example
112
+ * f07b150eadfa1d7a
113
+ */
114
+ nextToken?: string;
115
+ reports?: DescribeDiagnoseReportResponseBodyReports[];
116
+ /**
117
+ * @example
118
+ * AAA478A0-BEE6-1D42-BEB6-A9CFEAD6****
119
+ */
120
+ requestId?: string;
121
+ /**
122
+ * @example
123
+ * 10
124
+ */
125
+ totalCount?: number;
126
+ static names(): {
127
+ [key: string]: string;
128
+ };
129
+ static types(): {
130
+ [key: string]: any;
131
+ };
132
+ validate(): void;
133
+ constructor(map?: {
134
+ [key: string]: any;
135
+ });
136
+ }