@alicloud/polardb20170801 6.4.0 → 6.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.
- package/dist/client.d.ts +30 -0
- package/dist/client.js +126 -0
- package/dist/client.js.map +1 -1
- package/dist/models/DescribeAidbclusterTaskLogFilesRequest.d.ts +65 -0
- package/dist/models/DescribeAidbclusterTaskLogFilesRequest.js +72 -0
- package/dist/models/DescribeAidbclusterTaskLogFilesRequest.js.map +1 -0
- package/dist/models/DescribeAidbclusterTaskLogFilesResponse.d.ts +19 -0
- package/dist/models/DescribeAidbclusterTaskLogFilesResponse.js +69 -0
- package/dist/models/DescribeAidbclusterTaskLogFilesResponse.js.map +1 -0
- package/dist/models/DescribeAidbclusterTaskLogFilesResponseBody.d.ts +87 -0
- package/dist/models/DescribeAidbclusterTaskLogFilesResponseBody.js +118 -0
- package/dist/models/DescribeAidbclusterTaskLogFilesResponseBody.js.map +1 -0
- package/dist/models/DescribeAidbclusterTaskMetricsRequest.d.ts +62 -0
- package/dist/models/DescribeAidbclusterTaskMetricsRequest.js +72 -0
- package/dist/models/DescribeAidbclusterTaskMetricsRequest.js.map +1 -0
- package/dist/models/DescribeAidbclusterTaskMetricsResponse.d.ts +19 -0
- package/dist/models/DescribeAidbclusterTaskMetricsResponse.js +69 -0
- package/dist/models/DescribeAidbclusterTaskMetricsResponse.js.map +1 -0
- package/dist/models/DescribeAidbclusterTaskMetricsResponseBody.d.ts +124 -0
- package/dist/models/DescribeAidbclusterTaskMetricsResponseBody.js +135 -0
- package/dist/models/DescribeAidbclusterTaskMetricsResponseBody.js.map +1 -0
- package/dist/models/DescribeUserEncryptionKeyListRequest.d.ts +10 -0
- package/dist/models/DescribeUserEncryptionKeyListRequest.js +4 -0
- package/dist/models/DescribeUserEncryptionKeyListRequest.js.map +1 -1
- package/dist/models/DescribeUserEncryptionKeyListResponseBody.d.ts +20 -0
- package/dist/models/DescribeUserEncryptionKeyListResponseBody.js +8 -0
- package/dist/models/DescribeUserEncryptionKeyListResponseBody.js.map +1 -1
- package/dist/models/model.d.ts +10 -0
- package/dist/models/model.js +42 -22
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +148 -0
- package/src/models/DescribeAidbclusterTaskLogFilesRequest.ts +92 -0
- package/src/models/DescribeAidbclusterTaskLogFilesResponse.ts +40 -0
- package/src/models/DescribeAidbclusterTaskLogFilesResponseBody.ts +142 -0
- package/src/models/DescribeAidbclusterTaskMetricsRequest.ts +89 -0
- package/src/models/DescribeAidbclusterTaskMetricsResponse.ts +40 -0
- package/src/models/DescribeAidbclusterTaskMetricsResponseBody.ts +194 -0
- package/src/models/DescribeUserEncryptionKeyListRequest.ts +14 -0
- package/src/models/DescribeUserEncryptionKeyListResponseBody.ts +28 -0
- package/src/models/model.ts +10 -0
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DescribeAIDBClusterTaskMetricsResponseBodyItemsSlsMetricsItems extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* 21
|
|
6
|
+
*/
|
|
7
|
+
currentStep?: number;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* 0.23
|
|
11
|
+
*/
|
|
12
|
+
epoch?: number;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* 90
|
|
16
|
+
*/
|
|
17
|
+
globalStep?: number;
|
|
18
|
+
/**
|
|
19
|
+
* @example
|
|
20
|
+
* 2026-01-15T14:16:49.52140317Z
|
|
21
|
+
*/
|
|
22
|
+
logTime?: string;
|
|
23
|
+
/**
|
|
24
|
+
* @example
|
|
25
|
+
* {"memory(GiB)":"xxx"}
|
|
26
|
+
*/
|
|
27
|
+
metric?: {
|
|
28
|
+
[key: string]: any;
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* @example
|
|
32
|
+
* train
|
|
33
|
+
*/
|
|
34
|
+
metricType?: string;
|
|
35
|
+
/**
|
|
36
|
+
* @example
|
|
37
|
+
* 1742090703
|
|
38
|
+
*/
|
|
39
|
+
timestamp?: string;
|
|
40
|
+
static names(): {
|
|
41
|
+
[key: string]: string;
|
|
42
|
+
};
|
|
43
|
+
static types(): {
|
|
44
|
+
[key: string]: any;
|
|
45
|
+
};
|
|
46
|
+
validate(): void;
|
|
47
|
+
constructor(map?: {
|
|
48
|
+
[key: string]: any;
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
export declare class DescribeAIDBClusterTaskMetricsResponseBodyItems extends $dara.Model {
|
|
52
|
+
slsMetricsItems?: DescribeAIDBClusterTaskMetricsResponseBodyItemsSlsMetricsItems[];
|
|
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
|
+
}
|
|
64
|
+
export declare class DescribeAIDBClusterTaskMetricsResponseBody extends $dara.Model {
|
|
65
|
+
/**
|
|
66
|
+
* @example
|
|
67
|
+
* pm-2zejpr***
|
|
68
|
+
*/
|
|
69
|
+
DBClusterId?: string;
|
|
70
|
+
/**
|
|
71
|
+
* @example
|
|
72
|
+
* 2026-01-15T15:00:00Z
|
|
73
|
+
*/
|
|
74
|
+
endTime?: string;
|
|
75
|
+
items?: DescribeAIDBClusterTaskMetricsResponseBodyItems;
|
|
76
|
+
/**
|
|
77
|
+
* @example
|
|
78
|
+
* all
|
|
79
|
+
*/
|
|
80
|
+
metricType?: string;
|
|
81
|
+
/**
|
|
82
|
+
* @example
|
|
83
|
+
* 1
|
|
84
|
+
*/
|
|
85
|
+
pageNumber?: number;
|
|
86
|
+
/**
|
|
87
|
+
* @example
|
|
88
|
+
* 5
|
|
89
|
+
*/
|
|
90
|
+
pageRecordCount?: number;
|
|
91
|
+
/**
|
|
92
|
+
* @example
|
|
93
|
+
* 10
|
|
94
|
+
*/
|
|
95
|
+
pageSize?: number;
|
|
96
|
+
/**
|
|
97
|
+
* @example
|
|
98
|
+
* pc-2zejpr***
|
|
99
|
+
*/
|
|
100
|
+
relativeDbClusterId?: string;
|
|
101
|
+
/**
|
|
102
|
+
* @remarks
|
|
103
|
+
* Id of the request
|
|
104
|
+
*
|
|
105
|
+
* @example
|
|
106
|
+
* 5E71541A-6007-4DCC-A38A-F872C31FEB45
|
|
107
|
+
*/
|
|
108
|
+
requestId?: string;
|
|
109
|
+
/**
|
|
110
|
+
* @example
|
|
111
|
+
* 2026-01-15T14:00:00Z
|
|
112
|
+
*/
|
|
113
|
+
startTime?: string;
|
|
114
|
+
static names(): {
|
|
115
|
+
[key: string]: string;
|
|
116
|
+
};
|
|
117
|
+
static types(): {
|
|
118
|
+
[key: string]: any;
|
|
119
|
+
};
|
|
120
|
+
validate(): void;
|
|
121
|
+
constructor(map?: {
|
|
122
|
+
[key: string]: any;
|
|
123
|
+
});
|
|
124
|
+
}
|
|
@@ -0,0 +1,135 @@
|
|
|
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.DescribeAIDBClusterTaskMetricsResponseBody = exports.DescribeAIDBClusterTaskMetricsResponseBodyItems = exports.DescribeAIDBClusterTaskMetricsResponseBodyItemsSlsMetricsItems = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DescribeAIDBClusterTaskMetricsResponseBodyItemsSlsMetricsItems extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
currentStep: 'CurrentStep',
|
|
43
|
+
epoch: 'Epoch',
|
|
44
|
+
globalStep: 'GlobalStep',
|
|
45
|
+
logTime: 'LogTime',
|
|
46
|
+
metric: 'Metric',
|
|
47
|
+
metricType: 'MetricType',
|
|
48
|
+
timestamp: 'Timestamp',
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
static types() {
|
|
52
|
+
return {
|
|
53
|
+
currentStep: 'number',
|
|
54
|
+
epoch: 'number',
|
|
55
|
+
globalStep: 'number',
|
|
56
|
+
logTime: 'string',
|
|
57
|
+
metric: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
58
|
+
metricType: 'string',
|
|
59
|
+
timestamp: 'string',
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
validate() {
|
|
63
|
+
if (this.metric) {
|
|
64
|
+
$dara.Model.validateMap(this.metric);
|
|
65
|
+
}
|
|
66
|
+
super.validate();
|
|
67
|
+
}
|
|
68
|
+
constructor(map) {
|
|
69
|
+
super(map);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
exports.DescribeAIDBClusterTaskMetricsResponseBodyItemsSlsMetricsItems = DescribeAIDBClusterTaskMetricsResponseBodyItemsSlsMetricsItems;
|
|
73
|
+
class DescribeAIDBClusterTaskMetricsResponseBodyItems extends $dara.Model {
|
|
74
|
+
static names() {
|
|
75
|
+
return {
|
|
76
|
+
slsMetricsItems: 'SlsMetricsItems',
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
static types() {
|
|
80
|
+
return {
|
|
81
|
+
slsMetricsItems: { 'type': 'array', 'itemType': DescribeAIDBClusterTaskMetricsResponseBodyItemsSlsMetricsItems },
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
validate() {
|
|
85
|
+
if (Array.isArray(this.slsMetricsItems)) {
|
|
86
|
+
$dara.Model.validateArray(this.slsMetricsItems);
|
|
87
|
+
}
|
|
88
|
+
super.validate();
|
|
89
|
+
}
|
|
90
|
+
constructor(map) {
|
|
91
|
+
super(map);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
exports.DescribeAIDBClusterTaskMetricsResponseBodyItems = DescribeAIDBClusterTaskMetricsResponseBodyItems;
|
|
95
|
+
class DescribeAIDBClusterTaskMetricsResponseBody extends $dara.Model {
|
|
96
|
+
static names() {
|
|
97
|
+
return {
|
|
98
|
+
DBClusterId: 'DBClusterId',
|
|
99
|
+
endTime: 'EndTime',
|
|
100
|
+
items: 'Items',
|
|
101
|
+
metricType: 'MetricType',
|
|
102
|
+
pageNumber: 'PageNumber',
|
|
103
|
+
pageRecordCount: 'PageRecordCount',
|
|
104
|
+
pageSize: 'PageSize',
|
|
105
|
+
relativeDbClusterId: 'RelativeDbClusterId',
|
|
106
|
+
requestId: 'RequestId',
|
|
107
|
+
startTime: 'StartTime',
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
static types() {
|
|
111
|
+
return {
|
|
112
|
+
DBClusterId: 'string',
|
|
113
|
+
endTime: 'string',
|
|
114
|
+
items: DescribeAIDBClusterTaskMetricsResponseBodyItems,
|
|
115
|
+
metricType: 'string',
|
|
116
|
+
pageNumber: 'number',
|
|
117
|
+
pageRecordCount: 'number',
|
|
118
|
+
pageSize: 'number',
|
|
119
|
+
relativeDbClusterId: 'string',
|
|
120
|
+
requestId: 'string',
|
|
121
|
+
startTime: 'string',
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
validate() {
|
|
125
|
+
if (this.items && typeof this.items.validate === 'function') {
|
|
126
|
+
this.items.validate();
|
|
127
|
+
}
|
|
128
|
+
super.validate();
|
|
129
|
+
}
|
|
130
|
+
constructor(map) {
|
|
131
|
+
super(map);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
exports.DescribeAIDBClusterTaskMetricsResponseBody = DescribeAIDBClusterTaskMetricsResponseBody;
|
|
135
|
+
//# sourceMappingURL=DescribeAidbclusterTaskMetricsResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeAidbclusterTaskMetricsResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeAidbclusterTaskMetricsResponseBody.ts"],"names":[],"mappings":"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"}
|
|
@@ -12,6 +12,16 @@ export declare class DescribeUserEncryptionKeyListRequest extends $dara.Model {
|
|
|
12
12
|
DBClusterId?: string;
|
|
13
13
|
ownerAccount?: string;
|
|
14
14
|
ownerId?: number;
|
|
15
|
+
/**
|
|
16
|
+
* @example
|
|
17
|
+
* 1
|
|
18
|
+
*/
|
|
19
|
+
pageNumber?: number;
|
|
20
|
+
/**
|
|
21
|
+
* @example
|
|
22
|
+
* 30
|
|
23
|
+
*/
|
|
24
|
+
pageSize?: number;
|
|
15
25
|
/**
|
|
16
26
|
* @remarks
|
|
17
27
|
* The ID of the region.
|
|
@@ -42,6 +42,8 @@ class DescribeUserEncryptionKeyListRequest extends $dara.Model {
|
|
|
42
42
|
DBClusterId: 'DBClusterId',
|
|
43
43
|
ownerAccount: 'OwnerAccount',
|
|
44
44
|
ownerId: 'OwnerId',
|
|
45
|
+
pageNumber: 'PageNumber',
|
|
46
|
+
pageSize: 'PageSize',
|
|
45
47
|
regionId: 'RegionId',
|
|
46
48
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
47
49
|
resourceOwnerId: 'ResourceOwnerId',
|
|
@@ -53,6 +55,8 @@ class DescribeUserEncryptionKeyListRequest extends $dara.Model {
|
|
|
53
55
|
DBClusterId: 'string',
|
|
54
56
|
ownerAccount: 'string',
|
|
55
57
|
ownerId: 'number',
|
|
58
|
+
pageNumber: 'number',
|
|
59
|
+
pageSize: 'number',
|
|
56
60
|
regionId: 'string',
|
|
57
61
|
resourceOwnerAccount: 'string',
|
|
58
62
|
resourceOwnerId: 'number',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DescribeUserEncryptionKeyListRequest.js","sourceRoot":"","sources":["../../src/models/DescribeUserEncryptionKeyListRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oCAAqC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"DescribeUserEncryptionKeyListRequest.js","sourceRoot":"","sources":["../../src/models/DescribeUserEncryptionKeyListRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oCAAqC,SAAQ,KAAK,CAAC,KAAK;IA2CnE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,YAAY,EAAE,cAAc;YAC5B,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;YACpB,QAAQ,EAAE,UAAU;YACpB,oBAAoB,EAAE,sBAAsB;YAC5C,eAAe,EAAE,iBAAiB;YAClC,SAAS,EAAE,WAAW;SACvB,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,QAAQ,EAAE,QAAQ;YAClB,QAAQ,EAAE,QAAQ;YAClB,oBAAoB,EAAE,QAAQ;YAC9B,eAAe,EAAE,QAAQ;YACzB,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;AA9ED,oFA8EC"}
|
|
@@ -13,6 +13,21 @@ export declare class DescribeUserEncryptionKeyListResponseBody extends $dara.Mod
|
|
|
13
13
|
* Cluster key list.
|
|
14
14
|
*/
|
|
15
15
|
keyList?: string[];
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 1
|
|
19
|
+
*/
|
|
20
|
+
pageNumber?: number;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* 1
|
|
24
|
+
*/
|
|
25
|
+
pageRecordCount?: number;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* 30
|
|
29
|
+
*/
|
|
30
|
+
pageSize?: number;
|
|
16
31
|
/**
|
|
17
32
|
* @remarks
|
|
18
33
|
* The ID of the request.
|
|
@@ -21,6 +36,11 @@ export declare class DescribeUserEncryptionKeyListResponseBody extends $dara.Mod
|
|
|
21
36
|
* A7E6A8FD-C50B-46B2-BA85-D8B8D3******
|
|
22
37
|
*/
|
|
23
38
|
requestId?: string;
|
|
39
|
+
/**
|
|
40
|
+
* @example
|
|
41
|
+
* 1
|
|
42
|
+
*/
|
|
43
|
+
totalRecordCount?: number;
|
|
24
44
|
static names(): {
|
|
25
45
|
[key: string]: string;
|
|
26
46
|
};
|
|
@@ -41,14 +41,22 @@ class DescribeUserEncryptionKeyListResponseBody extends $dara.Model {
|
|
|
41
41
|
return {
|
|
42
42
|
DBClusterId: 'DBClusterId',
|
|
43
43
|
keyList: 'KeyList',
|
|
44
|
+
pageNumber: 'PageNumber',
|
|
45
|
+
pageRecordCount: 'PageRecordCount',
|
|
46
|
+
pageSize: 'PageSize',
|
|
44
47
|
requestId: 'RequestId',
|
|
48
|
+
totalRecordCount: 'TotalRecordCount',
|
|
45
49
|
};
|
|
46
50
|
}
|
|
47
51
|
static types() {
|
|
48
52
|
return {
|
|
49
53
|
DBClusterId: 'string',
|
|
50
54
|
keyList: { 'type': 'array', 'itemType': 'string' },
|
|
55
|
+
pageNumber: 'number',
|
|
56
|
+
pageRecordCount: 'number',
|
|
57
|
+
pageSize: 'number',
|
|
51
58
|
requestId: 'string',
|
|
59
|
+
totalRecordCount: 'number',
|
|
52
60
|
};
|
|
53
61
|
}
|
|
54
62
|
validate() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DescribeUserEncryptionKeyListResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeUserEncryptionKeyListResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,yCAA0C,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"DescribeUserEncryptionKeyListResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeUserEncryptionKeyListResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,yCAA0C,SAAQ,KAAK,CAAC,KAAK;IA0CxE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,eAAe,EAAE,iBAAiB;YAClC,QAAQ,EAAE,UAAU;YACpB,SAAS,EAAE,WAAW;YACtB,gBAAgB,EAAE,kBAAkB;SACrC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,QAAQ;YACrB,OAAO,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YAClD,UAAU,EAAE,QAAQ;YACpB,eAAe,EAAE,QAAQ;YACzB,QAAQ,EAAE,QAAQ;YAClB,SAAS,EAAE,QAAQ;YACnB,gBAAgB,EAAE,QAAQ;SAC3B,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC;YAC/B,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC1C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA5ED,8FA4EC"}
|
package/dist/models/model.d.ts
CHANGED
|
@@ -17,6 +17,10 @@ export { DescribeAIDBClusterAttributeResponseBodyEndpointList } from './Describe
|
|
|
17
17
|
export { DescribeAIDBClusterAttributeResponseBodyVolumes } from './DescribeAidbclusterAttributeResponseBody';
|
|
18
18
|
export { DescribeAIDBClusterPerformanceResponseBodyPerformanceKeysPoints } from './DescribeAidbclusterPerformanceResponseBody';
|
|
19
19
|
export { DescribeAIDBClusterPerformanceResponseBodyPerformanceKeys } from './DescribeAidbclusterPerformanceResponseBody';
|
|
20
|
+
export { DescribeAIDBClusterTaskLogFilesResponseBodyItemsSlsLogItems } from './DescribeAidbclusterTaskLogFilesResponseBody';
|
|
21
|
+
export { DescribeAIDBClusterTaskLogFilesResponseBodyItems } from './DescribeAidbclusterTaskLogFilesResponseBody';
|
|
22
|
+
export { DescribeAIDBClusterTaskMetricsResponseBodyItemsSlsMetricsItems } from './DescribeAidbclusterTaskMetricsResponseBody';
|
|
23
|
+
export { DescribeAIDBClusterTaskMetricsResponseBodyItems } from './DescribeAidbclusterTaskMetricsResponseBody';
|
|
20
24
|
export { DescribeAIDBClustersRequestTag } from './DescribeAidbclustersRequest';
|
|
21
25
|
export { DescribeAIDBClustersResponseBodyItemsDBClusterTagsTag } from './DescribeAidbclustersResponseBody';
|
|
22
26
|
export { DescribeAIDBClustersResponseBodyItemsDBClusterTags } from './DescribeAidbclustersResponseBody';
|
|
@@ -464,6 +468,12 @@ export { DescribeAIDBClusterAttributeResponse } from './DescribeAidbclusterAttri
|
|
|
464
468
|
export { DescribeAIDBClusterPerformanceRequest } from './DescribeAidbclusterPerformanceRequest';
|
|
465
469
|
export { DescribeAIDBClusterPerformanceResponseBody } from './DescribeAidbclusterPerformanceResponseBody';
|
|
466
470
|
export { DescribeAIDBClusterPerformanceResponse } from './DescribeAidbclusterPerformanceResponse';
|
|
471
|
+
export { DescribeAIDBClusterTaskLogFilesRequest } from './DescribeAidbclusterTaskLogFilesRequest';
|
|
472
|
+
export { DescribeAIDBClusterTaskLogFilesResponseBody } from './DescribeAidbclusterTaskLogFilesResponseBody';
|
|
473
|
+
export { DescribeAIDBClusterTaskLogFilesResponse } from './DescribeAidbclusterTaskLogFilesResponse';
|
|
474
|
+
export { DescribeAIDBClusterTaskMetricsRequest } from './DescribeAidbclusterTaskMetricsRequest';
|
|
475
|
+
export { DescribeAIDBClusterTaskMetricsResponseBody } from './DescribeAidbclusterTaskMetricsResponseBody';
|
|
476
|
+
export { DescribeAIDBClusterTaskMetricsResponse } from './DescribeAidbclusterTaskMetricsResponse';
|
|
467
477
|
export { DescribeAIDBClustersRequest } from './DescribeAidbclustersRequest';
|
|
468
478
|
export { DescribeAIDBClustersResponseBody } from './DescribeAidbclustersResponseBody';
|
|
469
479
|
export { DescribeAIDBClustersResponse } from './DescribeAidbclustersResponse';
|