@alicloud/ebs20210730 4.5.1 → 5.0.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 +0 -49
  2. package/dist/client.js +0 -136
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/model.d.ts +0 -8
  5. package/dist/models/model.js +6 -22
  6. package/dist/models/model.js.map +1 -1
  7. package/package.json +1 -1
  8. package/src/client.ts +0 -155
  9. package/src/models/model.ts +0 -8
  10. package/dist/models/DescribeDiskEventsRequest.d.ts +0 -86
  11. package/dist/models/DescribeDiskEventsRequest.js +0 -72
  12. package/dist/models/DescribeDiskEventsRequest.js.map +0 -1
  13. package/dist/models/DescribeDiskEventsResponse.d.ts +0 -19
  14. package/dist/models/DescribeDiskEventsResponse.js +0 -69
  15. package/dist/models/DescribeDiskEventsResponse.js.map +0 -1
  16. package/dist/models/DescribeDiskEventsResponseBody.d.ts +0 -117
  17. package/dist/models/DescribeDiskEventsResponseBody.js +0 -98
  18. package/dist/models/DescribeDiskEventsResponseBody.js.map +0 -1
  19. package/dist/models/DescribeDiskMonitorDataListRequest.d.ts +0 -83
  20. package/dist/models/DescribeDiskMonitorDataListRequest.js +0 -70
  21. package/dist/models/DescribeDiskMonitorDataListRequest.js.map +0 -1
  22. package/dist/models/DescribeDiskMonitorDataListResponse.d.ts +0 -19
  23. package/dist/models/DescribeDiskMonitorDataListResponse.js +0 -69
  24. package/dist/models/DescribeDiskMonitorDataListResponse.js.map +0 -1
  25. package/dist/models/DescribeDiskMonitorDataListResponseBody.d.ts +0 -78
  26. package/dist/models/DescribeDiskMonitorDataListResponseBody.js +0 -90
  27. package/dist/models/DescribeDiskMonitorDataListResponseBody.js.map +0 -1
  28. package/src/models/DescribeDiskEventsRequest.ts +0 -113
  29. package/src/models/DescribeDiskEventsResponse.ts +0 -40
  30. package/src/models/DescribeDiskEventsResponseBody.ts +0 -161
  31. package/src/models/DescribeDiskMonitorDataListRequest.ts +0 -108
  32. package/src/models/DescribeDiskMonitorDataListResponse.ts +0 -40
  33. package/src/models/DescribeDiskMonitorDataListResponseBody.ts +0 -114
@@ -1,117 +0,0 @@
1
- import * as $dara from '@darabonba/typescript';
2
- export declare class DescribeDiskEventsResponseBodyDiskEvents extends $dara.Model {
3
- /**
4
- * @remarks
5
- * The description of the event.
6
- *
7
- * @example
8
- * This is description.
9
- */
10
- description?: string;
11
- /**
12
- * @remarks
13
- * The ID of the disk.
14
- *
15
- * @example
16
- * d-bp1bq5g3dxxo1x4o****
17
- */
18
- diskId?: string;
19
- /**
20
- * @remarks
21
- * The recommended action after the event occurred. Valid values:
22
- *
23
- * * Resize: resizes the disk.
24
- * * ModifyDiskSpec: changes the category of the disk.
25
- * * NoAction: performs no operation.
26
- *
27
- * @example
28
- * NoAction
29
- */
30
- recommendAction?: string;
31
- /**
32
- * @remarks
33
- * The region ID of the disk.
34
- *
35
- * @example
36
- * cn-hangzhou
37
- */
38
- regionId?: string;
39
- /**
40
- * @remarks
41
- * The state of the event. Valid values:
42
- *
43
- * * Solved
44
- * * UnSolved
45
- *
46
- * @example
47
- * Solved
48
- */
49
- status?: string;
50
- /**
51
- * @remarks
52
- * The time when the event occurred. The time follows the [ISO 8601](https://help.aliyun.com/document_detail/25696.html) standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
53
- *
54
- * @example
55
- * 2022-06-01T08:00:00Z
56
- */
57
- timestamp?: string;
58
- /**
59
- * @remarks
60
- * The type of the event. Only DataNeedProtect can be returned.
61
- *
62
- * @example
63
- * DataNeedProtect
64
- */
65
- type?: string;
66
- static names(): {
67
- [key: string]: string;
68
- };
69
- static types(): {
70
- [key: string]: any;
71
- };
72
- validate(): void;
73
- constructor(map?: {
74
- [key: string]: any;
75
- });
76
- }
77
- export declare class DescribeDiskEventsResponseBody extends $dara.Model {
78
- /**
79
- * @remarks
80
- * The risk events of the disk.
81
- */
82
- diskEvents?: DescribeDiskEventsResponseBodyDiskEvents[];
83
- /**
84
- * @remarks
85
- * A pagination token. It can be used in the next request to retrieve a new page of results.
86
- *
87
- * @example
88
- * caeba0bbb2be03f84eb48b699f0a****
89
- */
90
- nextToken?: string;
91
- /**
92
- * @remarks
93
- * The request ID.
94
- *
95
- * @example
96
- * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
97
- */
98
- requestId?: string;
99
- /**
100
- * @remarks
101
- * The total number of entries returned.
102
- *
103
- * @example
104
- * 20
105
- */
106
- totalCount?: number;
107
- static names(): {
108
- [key: string]: string;
109
- };
110
- static types(): {
111
- [key: string]: any;
112
- };
113
- validate(): void;
114
- constructor(map?: {
115
- [key: string]: any;
116
- });
117
- }
@@ -1,98 +0,0 @@
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.DescribeDiskEventsResponseBody = exports.DescribeDiskEventsResponseBodyDiskEvents = void 0;
37
- // This file is auto-generated, don't edit it
38
- const $dara = __importStar(require("@darabonba/typescript"));
39
- class DescribeDiskEventsResponseBodyDiskEvents extends $dara.Model {
40
- static names() {
41
- return {
42
- description: 'Description',
43
- diskId: 'DiskId',
44
- recommendAction: 'RecommendAction',
45
- regionId: 'RegionId',
46
- status: 'Status',
47
- timestamp: 'Timestamp',
48
- type: 'Type',
49
- };
50
- }
51
- static types() {
52
- return {
53
- description: 'string',
54
- diskId: 'string',
55
- recommendAction: 'string',
56
- regionId: 'string',
57
- status: 'string',
58
- timestamp: 'string',
59
- type: 'string',
60
- };
61
- }
62
- validate() {
63
- super.validate();
64
- }
65
- constructor(map) {
66
- super(map);
67
- }
68
- }
69
- exports.DescribeDiskEventsResponseBodyDiskEvents = DescribeDiskEventsResponseBodyDiskEvents;
70
- class DescribeDiskEventsResponseBody extends $dara.Model {
71
- static names() {
72
- return {
73
- diskEvents: 'DiskEvents',
74
- nextToken: 'NextToken',
75
- requestId: 'RequestId',
76
- totalCount: 'TotalCount',
77
- };
78
- }
79
- static types() {
80
- return {
81
- diskEvents: { 'type': 'array', 'itemType': DescribeDiskEventsResponseBodyDiskEvents },
82
- nextToken: 'string',
83
- requestId: 'string',
84
- totalCount: 'number',
85
- };
86
- }
87
- validate() {
88
- if (Array.isArray(this.diskEvents)) {
89
- $dara.Model.validateArray(this.diskEvents);
90
- }
91
- super.validate();
92
- }
93
- constructor(map) {
94
- super(map);
95
- }
96
- }
97
- exports.DescribeDiskEventsResponseBody = DescribeDiskEventsResponseBody;
98
- //# sourceMappingURL=DescribeDiskEventsResponseBody.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DescribeDiskEventsResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeDiskEventsResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,wCAAyC,SAAQ,KAAK,CAAC,KAAK;IAgEvE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,MAAM,EAAE,QAAQ;YAChB,eAAe,EAAE,iBAAiB;YAClC,QAAQ,EAAE,UAAU;YACpB,MAAM,EAAE,QAAQ;YAChB,SAAS,EAAE,WAAW;YACtB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,QAAQ;YACrB,MAAM,EAAE,QAAQ;YAChB,eAAe,EAAE,QAAQ;YACzB,QAAQ,EAAE,QAAQ;YAClB,MAAM,EAAE,QAAQ;YAChB,SAAS,EAAE,QAAQ;YACnB,IAAI,EAAE,QAAQ;SACf,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;AA/FD,4FA+FC;AAED,MAAa,8BAA+B,SAAQ,KAAK,CAAC,KAAK;IA8B7D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,YAAY;YACxB,SAAS,EAAE,WAAW;YACtB,SAAS,EAAE,WAAW;YACtB,UAAU,EAAE,YAAY;SACzB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,wCAAwC,EAAE;YACrF,SAAS,EAAE,QAAQ;YACnB,SAAS,EAAE,QAAQ;YACnB,UAAU,EAAE,QAAQ;SACrB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC;YAClC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QAC7C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA1DD,wEA0DC"}
@@ -1,83 +0,0 @@
1
- import * as $dara from '@darabonba/typescript';
2
- export declare class DescribeDiskMonitorDataListRequest extends $dara.Model {
3
- /**
4
- * @remarks
5
- * The IDs of the disks. The value is a JSON array that contains multiple disk IDs. Separate the IDs with commas (,).
6
- *
7
- * @example
8
- * ["d-bp67acfmxazb4p****","d-bp67acfmxazs5t****"]
9
- */
10
- diskIds?: string;
11
- /**
12
- * @remarks
13
- * The end of the time range during which you want to query the near real-time monitoring data of the disks. Specify the time in the [ISO 8601](https://help.aliyun.com/document_detail/25696.html) standard in the `yyyy-MM-ddTHH:mm:ssZ` format. The time must be in UTC.
14
- *
15
- * This parameter is required.
16
- *
17
- * @example
18
- * 2022-06-01T05:00:00Z
19
- */
20
- endTime?: string;
21
- /**
22
- * @remarks
23
- * The number of entries per page. If you specify this parameter, both `MaxResults` and `NextToken` are used for a paged query.
24
- *
25
- * Valid values: 1 to 100.
26
- *
27
- * Default value: 10.
28
- *
29
- * @example
30
- * 10
31
- */
32
- maxResults?: string;
33
- /**
34
- * @remarks
35
- * The pagination token that is used in this request to retrieve a new page of results. You do not need to specify this parameter for the first request. You must specify the token that is obtained from the previous query as the value of NextToken.
36
- *
37
- * @example
38
- * e71d8a535bd9c****
39
- */
40
- nextToken?: string;
41
- /**
42
- * @remarks
43
- * The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/354276.html) operation to query the list of regions that support CloudLens for EBS.
44
- *
45
- * This parameter is required.
46
- *
47
- * @example
48
- * cn-hangzhou
49
- */
50
- regionId?: string;
51
- /**
52
- * @remarks
53
- * The beginning of the time range during which you want to query the near real-time monitoring data of the disks. Specify the time in the [ISO 8601](https://help.aliyun.com/document_detail/25696.html) standard in the `yyyy-MM-ddTHH:mm:ssZ` format. The time must be in UTC.
54
- *
55
- * This parameter is required.
56
- *
57
- * @example
58
- * 2022-06-01T03:00:00Z
59
- */
60
- startTime?: string;
61
- /**
62
- * @remarks
63
- * The type of the monitoring data. Set the value to pro.
64
- *
65
- * pro: burst performance data, such as burst I/O operations.
66
- *
67
- * This parameter is required.
68
- *
69
- * @example
70
- * pro
71
- */
72
- type?: string;
73
- static names(): {
74
- [key: string]: string;
75
- };
76
- static types(): {
77
- [key: string]: any;
78
- };
79
- validate(): void;
80
- constructor(map?: {
81
- [key: string]: any;
82
- });
83
- }
@@ -1,70 +0,0 @@
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.DescribeDiskMonitorDataListRequest = void 0;
37
- // This file is auto-generated, don't edit it
38
- const $dara = __importStar(require("@darabonba/typescript"));
39
- class DescribeDiskMonitorDataListRequest extends $dara.Model {
40
- static names() {
41
- return {
42
- diskIds: 'DiskIds',
43
- endTime: 'EndTime',
44
- maxResults: 'MaxResults',
45
- nextToken: 'NextToken',
46
- regionId: 'RegionId',
47
- startTime: 'StartTime',
48
- type: 'Type',
49
- };
50
- }
51
- static types() {
52
- return {
53
- diskIds: 'string',
54
- endTime: 'string',
55
- maxResults: 'string',
56
- nextToken: 'string',
57
- regionId: 'string',
58
- startTime: 'string',
59
- type: 'string',
60
- };
61
- }
62
- validate() {
63
- super.validate();
64
- }
65
- constructor(map) {
66
- super(map);
67
- }
68
- }
69
- exports.DescribeDiskMonitorDataListRequest = DescribeDiskMonitorDataListRequest;
70
- //# sourceMappingURL=DescribeDiskMonitorDataListRequest.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DescribeDiskMonitorDataListRequest.js","sourceRoot":"","sources":["../../src/models/DescribeDiskMonitorDataListRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,kCAAmC,SAAQ,KAAK,CAAC,KAAK;IAuEjE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,SAAS,EAAE,WAAW;YACtB,QAAQ,EAAE,UAAU;YACpB,SAAS,EAAE,WAAW;YACtB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,QAAQ;YACjB,OAAO,EAAE,QAAQ;YACjB,UAAU,EAAE,QAAQ;YACpB,SAAS,EAAE,QAAQ;YACnB,QAAQ,EAAE,QAAQ;YAClB,SAAS,EAAE,QAAQ;YACnB,IAAI,EAAE,QAAQ;SACf,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;AAtGD,gFAsGC"}
@@ -1,19 +0,0 @@
1
- import * as $dara from '@darabonba/typescript';
2
- import { DescribeDiskMonitorDataListResponseBody } from "./DescribeDiskMonitorDataListResponseBody";
3
- export declare class DescribeDiskMonitorDataListResponse extends $dara.Model {
4
- headers?: {
5
- [key: string]: string;
6
- };
7
- statusCode?: number;
8
- body?: DescribeDiskMonitorDataListResponseBody;
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
- }
@@ -1,69 +0,0 @@
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.DescribeDiskMonitorDataListResponse = void 0;
37
- // This file is auto-generated, don't edit it
38
- const $dara = __importStar(require("@darabonba/typescript"));
39
- const DescribeDiskMonitorDataListResponseBody_1 = require("./DescribeDiskMonitorDataListResponseBody");
40
- class DescribeDiskMonitorDataListResponse 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: DescribeDiskMonitorDataListResponseBody_1.DescribeDiskMonitorDataListResponseBody,
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.DescribeDiskMonitorDataListResponse = DescribeDiskMonitorDataListResponse;
69
- //# sourceMappingURL=DescribeDiskMonitorDataListResponse.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DescribeDiskMonitorDataListResponse.js","sourceRoot":"","sources":["../../src/models/DescribeDiskMonitorDataListResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,uGAAoG;AAGpG,MAAa,mCAAoC,SAAQ,KAAK,CAAC,KAAK;IAIlE,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,iFAAuC;SAC9C,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,kFAiCC"}
@@ -1,78 +0,0 @@
1
- import * as $dara from '@darabonba/typescript';
2
- export declare class DescribeDiskMonitorDataListResponseBodyMonitorData extends $dara.Model {
3
- /**
4
- * @remarks
5
- * The number of burst I/O operations.
6
- *
7
- * @example
8
- * 2000
9
- */
10
- burstIOCount?: number;
11
- /**
12
- * @remarks
13
- * The ID of the disk.
14
- *
15
- * @example
16
- * d-bp67acfmxazb4p****
17
- */
18
- diskId?: string;
19
- /**
20
- * @remarks
21
- * The beginning of the time range during which the performance of the disk bursts. The time follows the [ISO 8601](https://help.aliyun.com/document_detail/25696.html) standard in the `yyyy-MM-ddTHH:mm:ssZ` format. The time is displayed in UTC.
22
- *
23
- * @example
24
- * 2022-06-01T08:00:00Z
25
- */
26
- timestamp?: string;
27
- static names(): {
28
- [key: string]: string;
29
- };
30
- static types(): {
31
- [key: string]: any;
32
- };
33
- validate(): void;
34
- constructor(map?: {
35
- [key: string]: any;
36
- });
37
- }
38
- export declare class DescribeDiskMonitorDataListResponseBody extends $dara.Model {
39
- /**
40
- * @remarks
41
- * The near real-time monitoring data of the disks.
42
- */
43
- monitorData?: DescribeDiskMonitorDataListResponseBodyMonitorData[];
44
- /**
45
- * @remarks
46
- * A pagination token. It can be used in the next request to retrieve a new page of results. If NextToken is empty, no next page exists.
47
- *
48
- * @example
49
- * e71d8a535bd9c****
50
- */
51
- nextToken?: string;
52
- /**
53
- * @remarks
54
- * The request ID.
55
- *
56
- * @example
57
- * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
58
- */
59
- requestId?: string;
60
- /**
61
- * @remarks
62
- * The total number of entries returned.
63
- *
64
- * @example
65
- * 3
66
- */
67
- totalCount?: number;
68
- static names(): {
69
- [key: string]: string;
70
- };
71
- static types(): {
72
- [key: string]: any;
73
- };
74
- validate(): void;
75
- constructor(map?: {
76
- [key: string]: any;
77
- });
78
- }
@@ -1,90 +0,0 @@
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.DescribeDiskMonitorDataListResponseBody = exports.DescribeDiskMonitorDataListResponseBodyMonitorData = void 0;
37
- // This file is auto-generated, don't edit it
38
- const $dara = __importStar(require("@darabonba/typescript"));
39
- class DescribeDiskMonitorDataListResponseBodyMonitorData extends $dara.Model {
40
- static names() {
41
- return {
42
- burstIOCount: 'BurstIOCount',
43
- diskId: 'DiskId',
44
- timestamp: 'Timestamp',
45
- };
46
- }
47
- static types() {
48
- return {
49
- burstIOCount: 'number',
50
- diskId: 'string',
51
- timestamp: 'string',
52
- };
53
- }
54
- validate() {
55
- super.validate();
56
- }
57
- constructor(map) {
58
- super(map);
59
- }
60
- }
61
- exports.DescribeDiskMonitorDataListResponseBodyMonitorData = DescribeDiskMonitorDataListResponseBodyMonitorData;
62
- class DescribeDiskMonitorDataListResponseBody extends $dara.Model {
63
- static names() {
64
- return {
65
- monitorData: 'MonitorData',
66
- nextToken: 'NextToken',
67
- requestId: 'RequestId',
68
- totalCount: 'TotalCount',
69
- };
70
- }
71
- static types() {
72
- return {
73
- monitorData: { 'type': 'array', 'itemType': DescribeDiskMonitorDataListResponseBodyMonitorData },
74
- nextToken: 'string',
75
- requestId: 'string',
76
- totalCount: 'number',
77
- };
78
- }
79
- validate() {
80
- if (Array.isArray(this.monitorData)) {
81
- $dara.Model.validateArray(this.monitorData);
82
- }
83
- super.validate();
84
- }
85
- constructor(map) {
86
- super(map);
87
- }
88
- }
89
- exports.DescribeDiskMonitorDataListResponseBody = DescribeDiskMonitorDataListResponseBody;
90
- //# sourceMappingURL=DescribeDiskMonitorDataListResponseBody.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DescribeDiskMonitorDataListResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeDiskMonitorDataListResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,kDAAmD,SAAQ,KAAK,CAAC,KAAK;IAyBjF,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,cAAc;YAC5B,MAAM,EAAE,QAAQ;YAChB,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,QAAQ;YACtB,MAAM,EAAE,QAAQ;YAChB,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;AAhDD,gHAgDC;AAED,MAAa,uCAAwC,SAAQ,KAAK,CAAC,KAAK;IA8BtE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,SAAS,EAAE,WAAW;YACtB,SAAS,EAAE,WAAW;YACtB,UAAU,EAAE,YAAY;SACzB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,kDAAkD,EAAE;YAChG,SAAS,EAAE,QAAQ;YACnB,SAAS,EAAE,QAAQ;YACnB,UAAU,EAAE,QAAQ;SACrB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,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;AA1DD,0FA0DC"}