@aws-sdk/client-dax 3.51.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/DAXServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +354 -2
- package/dist-cjs/protocols/Aws_json1_1.js +306 -1058
- package/dist-es/index.js +1 -0
- package/dist-es/models/DAXServiceException.js +12 -0
- package/dist-es/models/models_0.js +326 -1
- package/dist-es/protocols/Aws_json1_1.js +592 -1089
- package/dist-types/DAXClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/DAXServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +191 -108
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/DAXClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/DAXServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +137 -108
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var DAXServiceException = (function (_super) {
|
|
4
|
+
__extends(DAXServiceException, _super);
|
|
5
|
+
function DAXServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, DAXServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return DAXServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { DAXServiceException };
|
|
@@ -1,4 +1,29 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { DAXServiceException as __BaseException } from "./DAXServiceException";
|
|
3
|
+
var ClusterAlreadyExistsFault = (function (_super) {
|
|
4
|
+
__extends(ClusterAlreadyExistsFault, _super);
|
|
5
|
+
function ClusterAlreadyExistsFault(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "ClusterAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "ClusterAlreadyExistsFault";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, ClusterAlreadyExistsFault.prototype);
|
|
10
|
+
return _this;
|
|
11
|
+
}
|
|
12
|
+
return ClusterAlreadyExistsFault;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { ClusterAlreadyExistsFault };
|
|
15
|
+
var ClusterQuotaForCustomerExceededFault = (function (_super) {
|
|
16
|
+
__extends(ClusterQuotaForCustomerExceededFault, _super);
|
|
17
|
+
function ClusterQuotaForCustomerExceededFault(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "ClusterQuotaForCustomerExceededFault", $fault: "client" }, opts)) || this;
|
|
19
|
+
_this.name = "ClusterQuotaForCustomerExceededFault";
|
|
20
|
+
_this.$fault = "client";
|
|
21
|
+
Object.setPrototypeOf(_this, ClusterQuotaForCustomerExceededFault.prototype);
|
|
22
|
+
return _this;
|
|
23
|
+
}
|
|
24
|
+
return ClusterQuotaForCustomerExceededFault;
|
|
25
|
+
}(__BaseException));
|
|
26
|
+
export { ClusterQuotaForCustomerExceededFault };
|
|
2
27
|
export var ClusterEndpointEncryptionType;
|
|
3
28
|
(function (ClusterEndpointEncryptionType) {
|
|
4
29
|
ClusterEndpointEncryptionType["NONE"] = "NONE";
|
|
@@ -48,6 +73,162 @@ export var CreateClusterResponse;
|
|
|
48
73
|
(function (CreateClusterResponse) {
|
|
49
74
|
CreateClusterResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
50
75
|
})(CreateClusterResponse || (CreateClusterResponse = {}));
|
|
76
|
+
var InsufficientClusterCapacityFault = (function (_super) {
|
|
77
|
+
__extends(InsufficientClusterCapacityFault, _super);
|
|
78
|
+
function InsufficientClusterCapacityFault(opts) {
|
|
79
|
+
var _this = _super.call(this, __assign({ name: "InsufficientClusterCapacityFault", $fault: "client" }, opts)) || this;
|
|
80
|
+
_this.name = "InsufficientClusterCapacityFault";
|
|
81
|
+
_this.$fault = "client";
|
|
82
|
+
Object.setPrototypeOf(_this, InsufficientClusterCapacityFault.prototype);
|
|
83
|
+
return _this;
|
|
84
|
+
}
|
|
85
|
+
return InsufficientClusterCapacityFault;
|
|
86
|
+
}(__BaseException));
|
|
87
|
+
export { InsufficientClusterCapacityFault };
|
|
88
|
+
var InvalidClusterStateFault = (function (_super) {
|
|
89
|
+
__extends(InvalidClusterStateFault, _super);
|
|
90
|
+
function InvalidClusterStateFault(opts) {
|
|
91
|
+
var _this = _super.call(this, __assign({ name: "InvalidClusterStateFault", $fault: "client" }, opts)) || this;
|
|
92
|
+
_this.name = "InvalidClusterStateFault";
|
|
93
|
+
_this.$fault = "client";
|
|
94
|
+
Object.setPrototypeOf(_this, InvalidClusterStateFault.prototype);
|
|
95
|
+
return _this;
|
|
96
|
+
}
|
|
97
|
+
return InvalidClusterStateFault;
|
|
98
|
+
}(__BaseException));
|
|
99
|
+
export { InvalidClusterStateFault };
|
|
100
|
+
var InvalidParameterCombinationException = (function (_super) {
|
|
101
|
+
__extends(InvalidParameterCombinationException, _super);
|
|
102
|
+
function InvalidParameterCombinationException(opts) {
|
|
103
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterCombinationException", $fault: "client" }, opts)) || this;
|
|
104
|
+
_this.name = "InvalidParameterCombinationException";
|
|
105
|
+
_this.$fault = "client";
|
|
106
|
+
Object.setPrototypeOf(_this, InvalidParameterCombinationException.prototype);
|
|
107
|
+
return _this;
|
|
108
|
+
}
|
|
109
|
+
return InvalidParameterCombinationException;
|
|
110
|
+
}(__BaseException));
|
|
111
|
+
export { InvalidParameterCombinationException };
|
|
112
|
+
var InvalidParameterGroupStateFault = (function (_super) {
|
|
113
|
+
__extends(InvalidParameterGroupStateFault, _super);
|
|
114
|
+
function InvalidParameterGroupStateFault(opts) {
|
|
115
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterGroupStateFault", $fault: "client" }, opts)) || this;
|
|
116
|
+
_this.name = "InvalidParameterGroupStateFault";
|
|
117
|
+
_this.$fault = "client";
|
|
118
|
+
Object.setPrototypeOf(_this, InvalidParameterGroupStateFault.prototype);
|
|
119
|
+
return _this;
|
|
120
|
+
}
|
|
121
|
+
return InvalidParameterGroupStateFault;
|
|
122
|
+
}(__BaseException));
|
|
123
|
+
export { InvalidParameterGroupStateFault };
|
|
124
|
+
var InvalidParameterValueException = (function (_super) {
|
|
125
|
+
__extends(InvalidParameterValueException, _super);
|
|
126
|
+
function InvalidParameterValueException(opts) {
|
|
127
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterValueException", $fault: "client" }, opts)) || this;
|
|
128
|
+
_this.name = "InvalidParameterValueException";
|
|
129
|
+
_this.$fault = "client";
|
|
130
|
+
Object.setPrototypeOf(_this, InvalidParameterValueException.prototype);
|
|
131
|
+
return _this;
|
|
132
|
+
}
|
|
133
|
+
return InvalidParameterValueException;
|
|
134
|
+
}(__BaseException));
|
|
135
|
+
export { InvalidParameterValueException };
|
|
136
|
+
var InvalidVPCNetworkStateFault = (function (_super) {
|
|
137
|
+
__extends(InvalidVPCNetworkStateFault, _super);
|
|
138
|
+
function InvalidVPCNetworkStateFault(opts) {
|
|
139
|
+
var _this = _super.call(this, __assign({ name: "InvalidVPCNetworkStateFault", $fault: "client" }, opts)) || this;
|
|
140
|
+
_this.name = "InvalidVPCNetworkStateFault";
|
|
141
|
+
_this.$fault = "client";
|
|
142
|
+
Object.setPrototypeOf(_this, InvalidVPCNetworkStateFault.prototype);
|
|
143
|
+
return _this;
|
|
144
|
+
}
|
|
145
|
+
return InvalidVPCNetworkStateFault;
|
|
146
|
+
}(__BaseException));
|
|
147
|
+
export { InvalidVPCNetworkStateFault };
|
|
148
|
+
var NodeQuotaForClusterExceededFault = (function (_super) {
|
|
149
|
+
__extends(NodeQuotaForClusterExceededFault, _super);
|
|
150
|
+
function NodeQuotaForClusterExceededFault(opts) {
|
|
151
|
+
var _this = _super.call(this, __assign({ name: "NodeQuotaForClusterExceededFault", $fault: "client" }, opts)) || this;
|
|
152
|
+
_this.name = "NodeQuotaForClusterExceededFault";
|
|
153
|
+
_this.$fault = "client";
|
|
154
|
+
Object.setPrototypeOf(_this, NodeQuotaForClusterExceededFault.prototype);
|
|
155
|
+
return _this;
|
|
156
|
+
}
|
|
157
|
+
return NodeQuotaForClusterExceededFault;
|
|
158
|
+
}(__BaseException));
|
|
159
|
+
export { NodeQuotaForClusterExceededFault };
|
|
160
|
+
var NodeQuotaForCustomerExceededFault = (function (_super) {
|
|
161
|
+
__extends(NodeQuotaForCustomerExceededFault, _super);
|
|
162
|
+
function NodeQuotaForCustomerExceededFault(opts) {
|
|
163
|
+
var _this = _super.call(this, __assign({ name: "NodeQuotaForCustomerExceededFault", $fault: "client" }, opts)) || this;
|
|
164
|
+
_this.name = "NodeQuotaForCustomerExceededFault";
|
|
165
|
+
_this.$fault = "client";
|
|
166
|
+
Object.setPrototypeOf(_this, NodeQuotaForCustomerExceededFault.prototype);
|
|
167
|
+
return _this;
|
|
168
|
+
}
|
|
169
|
+
return NodeQuotaForCustomerExceededFault;
|
|
170
|
+
}(__BaseException));
|
|
171
|
+
export { NodeQuotaForCustomerExceededFault };
|
|
172
|
+
var ParameterGroupNotFoundFault = (function (_super) {
|
|
173
|
+
__extends(ParameterGroupNotFoundFault, _super);
|
|
174
|
+
function ParameterGroupNotFoundFault(opts) {
|
|
175
|
+
var _this = _super.call(this, __assign({ name: "ParameterGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
176
|
+
_this.name = "ParameterGroupNotFoundFault";
|
|
177
|
+
_this.$fault = "client";
|
|
178
|
+
Object.setPrototypeOf(_this, ParameterGroupNotFoundFault.prototype);
|
|
179
|
+
return _this;
|
|
180
|
+
}
|
|
181
|
+
return ParameterGroupNotFoundFault;
|
|
182
|
+
}(__BaseException));
|
|
183
|
+
export { ParameterGroupNotFoundFault };
|
|
184
|
+
var ServiceLinkedRoleNotFoundFault = (function (_super) {
|
|
185
|
+
__extends(ServiceLinkedRoleNotFoundFault, _super);
|
|
186
|
+
function ServiceLinkedRoleNotFoundFault(opts) {
|
|
187
|
+
var _this = _super.call(this, __assign({ name: "ServiceLinkedRoleNotFoundFault", $fault: "client" }, opts)) || this;
|
|
188
|
+
_this.name = "ServiceLinkedRoleNotFoundFault";
|
|
189
|
+
_this.$fault = "client";
|
|
190
|
+
Object.setPrototypeOf(_this, ServiceLinkedRoleNotFoundFault.prototype);
|
|
191
|
+
return _this;
|
|
192
|
+
}
|
|
193
|
+
return ServiceLinkedRoleNotFoundFault;
|
|
194
|
+
}(__BaseException));
|
|
195
|
+
export { ServiceLinkedRoleNotFoundFault };
|
|
196
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
197
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
198
|
+
function ServiceQuotaExceededException(opts) {
|
|
199
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
200
|
+
_this.name = "ServiceQuotaExceededException";
|
|
201
|
+
_this.$fault = "client";
|
|
202
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
203
|
+
return _this;
|
|
204
|
+
}
|
|
205
|
+
return ServiceQuotaExceededException;
|
|
206
|
+
}(__BaseException));
|
|
207
|
+
export { ServiceQuotaExceededException };
|
|
208
|
+
var SubnetGroupNotFoundFault = (function (_super) {
|
|
209
|
+
__extends(SubnetGroupNotFoundFault, _super);
|
|
210
|
+
function SubnetGroupNotFoundFault(opts) {
|
|
211
|
+
var _this = _super.call(this, __assign({ name: "SubnetGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
212
|
+
_this.name = "SubnetGroupNotFoundFault";
|
|
213
|
+
_this.$fault = "client";
|
|
214
|
+
Object.setPrototypeOf(_this, SubnetGroupNotFoundFault.prototype);
|
|
215
|
+
return _this;
|
|
216
|
+
}
|
|
217
|
+
return SubnetGroupNotFoundFault;
|
|
218
|
+
}(__BaseException));
|
|
219
|
+
export { SubnetGroupNotFoundFault };
|
|
220
|
+
var TagQuotaPerResourceExceeded = (function (_super) {
|
|
221
|
+
__extends(TagQuotaPerResourceExceeded, _super);
|
|
222
|
+
function TagQuotaPerResourceExceeded(opts) {
|
|
223
|
+
var _this = _super.call(this, __assign({ name: "TagQuotaPerResourceExceeded", $fault: "client" }, opts)) || this;
|
|
224
|
+
_this.name = "TagQuotaPerResourceExceeded";
|
|
225
|
+
_this.$fault = "client";
|
|
226
|
+
Object.setPrototypeOf(_this, TagQuotaPerResourceExceeded.prototype);
|
|
227
|
+
return _this;
|
|
228
|
+
}
|
|
229
|
+
return TagQuotaPerResourceExceeded;
|
|
230
|
+
}(__BaseException));
|
|
231
|
+
export { TagQuotaPerResourceExceeded };
|
|
51
232
|
export var CreateParameterGroupRequest;
|
|
52
233
|
(function (CreateParameterGroupRequest) {
|
|
53
234
|
CreateParameterGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -60,6 +241,30 @@ export var CreateParameterGroupResponse;
|
|
|
60
241
|
(function (CreateParameterGroupResponse) {
|
|
61
242
|
CreateParameterGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
62
243
|
})(CreateParameterGroupResponse || (CreateParameterGroupResponse = {}));
|
|
244
|
+
var ParameterGroupAlreadyExistsFault = (function (_super) {
|
|
245
|
+
__extends(ParameterGroupAlreadyExistsFault, _super);
|
|
246
|
+
function ParameterGroupAlreadyExistsFault(opts) {
|
|
247
|
+
var _this = _super.call(this, __assign({ name: "ParameterGroupAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
248
|
+
_this.name = "ParameterGroupAlreadyExistsFault";
|
|
249
|
+
_this.$fault = "client";
|
|
250
|
+
Object.setPrototypeOf(_this, ParameterGroupAlreadyExistsFault.prototype);
|
|
251
|
+
return _this;
|
|
252
|
+
}
|
|
253
|
+
return ParameterGroupAlreadyExistsFault;
|
|
254
|
+
}(__BaseException));
|
|
255
|
+
export { ParameterGroupAlreadyExistsFault };
|
|
256
|
+
var ParameterGroupQuotaExceededFault = (function (_super) {
|
|
257
|
+
__extends(ParameterGroupQuotaExceededFault, _super);
|
|
258
|
+
function ParameterGroupQuotaExceededFault(opts) {
|
|
259
|
+
var _this = _super.call(this, __assign({ name: "ParameterGroupQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
260
|
+
_this.name = "ParameterGroupQuotaExceededFault";
|
|
261
|
+
_this.$fault = "client";
|
|
262
|
+
Object.setPrototypeOf(_this, ParameterGroupQuotaExceededFault.prototype);
|
|
263
|
+
return _this;
|
|
264
|
+
}
|
|
265
|
+
return ParameterGroupQuotaExceededFault;
|
|
266
|
+
}(__BaseException));
|
|
267
|
+
export { ParameterGroupQuotaExceededFault };
|
|
63
268
|
export var CreateSubnetGroupRequest;
|
|
64
269
|
(function (CreateSubnetGroupRequest) {
|
|
65
270
|
CreateSubnetGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -76,6 +281,66 @@ export var CreateSubnetGroupResponse;
|
|
|
76
281
|
(function (CreateSubnetGroupResponse) {
|
|
77
282
|
CreateSubnetGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
78
283
|
})(CreateSubnetGroupResponse || (CreateSubnetGroupResponse = {}));
|
|
284
|
+
var InvalidSubnet = (function (_super) {
|
|
285
|
+
__extends(InvalidSubnet, _super);
|
|
286
|
+
function InvalidSubnet(opts) {
|
|
287
|
+
var _this = _super.call(this, __assign({ name: "InvalidSubnet", $fault: "client" }, opts)) || this;
|
|
288
|
+
_this.name = "InvalidSubnet";
|
|
289
|
+
_this.$fault = "client";
|
|
290
|
+
Object.setPrototypeOf(_this, InvalidSubnet.prototype);
|
|
291
|
+
return _this;
|
|
292
|
+
}
|
|
293
|
+
return InvalidSubnet;
|
|
294
|
+
}(__BaseException));
|
|
295
|
+
export { InvalidSubnet };
|
|
296
|
+
var SubnetGroupAlreadyExistsFault = (function (_super) {
|
|
297
|
+
__extends(SubnetGroupAlreadyExistsFault, _super);
|
|
298
|
+
function SubnetGroupAlreadyExistsFault(opts) {
|
|
299
|
+
var _this = _super.call(this, __assign({ name: "SubnetGroupAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
300
|
+
_this.name = "SubnetGroupAlreadyExistsFault";
|
|
301
|
+
_this.$fault = "client";
|
|
302
|
+
Object.setPrototypeOf(_this, SubnetGroupAlreadyExistsFault.prototype);
|
|
303
|
+
return _this;
|
|
304
|
+
}
|
|
305
|
+
return SubnetGroupAlreadyExistsFault;
|
|
306
|
+
}(__BaseException));
|
|
307
|
+
export { SubnetGroupAlreadyExistsFault };
|
|
308
|
+
var SubnetGroupQuotaExceededFault = (function (_super) {
|
|
309
|
+
__extends(SubnetGroupQuotaExceededFault, _super);
|
|
310
|
+
function SubnetGroupQuotaExceededFault(opts) {
|
|
311
|
+
var _this = _super.call(this, __assign({ name: "SubnetGroupQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
312
|
+
_this.name = "SubnetGroupQuotaExceededFault";
|
|
313
|
+
_this.$fault = "client";
|
|
314
|
+
Object.setPrototypeOf(_this, SubnetGroupQuotaExceededFault.prototype);
|
|
315
|
+
return _this;
|
|
316
|
+
}
|
|
317
|
+
return SubnetGroupQuotaExceededFault;
|
|
318
|
+
}(__BaseException));
|
|
319
|
+
export { SubnetGroupQuotaExceededFault };
|
|
320
|
+
var SubnetQuotaExceededFault = (function (_super) {
|
|
321
|
+
__extends(SubnetQuotaExceededFault, _super);
|
|
322
|
+
function SubnetQuotaExceededFault(opts) {
|
|
323
|
+
var _this = _super.call(this, __assign({ name: "SubnetQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
324
|
+
_this.name = "SubnetQuotaExceededFault";
|
|
325
|
+
_this.$fault = "client";
|
|
326
|
+
Object.setPrototypeOf(_this, SubnetQuotaExceededFault.prototype);
|
|
327
|
+
return _this;
|
|
328
|
+
}
|
|
329
|
+
return SubnetQuotaExceededFault;
|
|
330
|
+
}(__BaseException));
|
|
331
|
+
export { SubnetQuotaExceededFault };
|
|
332
|
+
var ClusterNotFoundFault = (function (_super) {
|
|
333
|
+
__extends(ClusterNotFoundFault, _super);
|
|
334
|
+
function ClusterNotFoundFault(opts) {
|
|
335
|
+
var _this = _super.call(this, __assign({ name: "ClusterNotFoundFault", $fault: "client" }, opts)) || this;
|
|
336
|
+
_this.name = "ClusterNotFoundFault";
|
|
337
|
+
_this.$fault = "client";
|
|
338
|
+
Object.setPrototypeOf(_this, ClusterNotFoundFault.prototype);
|
|
339
|
+
return _this;
|
|
340
|
+
}
|
|
341
|
+
return ClusterNotFoundFault;
|
|
342
|
+
}(__BaseException));
|
|
343
|
+
export { ClusterNotFoundFault };
|
|
79
344
|
export var DecreaseReplicationFactorRequest;
|
|
80
345
|
(function (DecreaseReplicationFactorRequest) {
|
|
81
346
|
DecreaseReplicationFactorRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -84,6 +349,18 @@ export var DecreaseReplicationFactorResponse;
|
|
|
84
349
|
(function (DecreaseReplicationFactorResponse) {
|
|
85
350
|
DecreaseReplicationFactorResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
86
351
|
})(DecreaseReplicationFactorResponse || (DecreaseReplicationFactorResponse = {}));
|
|
352
|
+
var NodeNotFoundFault = (function (_super) {
|
|
353
|
+
__extends(NodeNotFoundFault, _super);
|
|
354
|
+
function NodeNotFoundFault(opts) {
|
|
355
|
+
var _this = _super.call(this, __assign({ name: "NodeNotFoundFault", $fault: "client" }, opts)) || this;
|
|
356
|
+
_this.name = "NodeNotFoundFault";
|
|
357
|
+
_this.$fault = "client";
|
|
358
|
+
Object.setPrototypeOf(_this, NodeNotFoundFault.prototype);
|
|
359
|
+
return _this;
|
|
360
|
+
}
|
|
361
|
+
return NodeNotFoundFault;
|
|
362
|
+
}(__BaseException));
|
|
363
|
+
export { NodeNotFoundFault };
|
|
87
364
|
export var DeleteClusterRequest;
|
|
88
365
|
(function (DeleteClusterRequest) {
|
|
89
366
|
DeleteClusterRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -108,6 +385,18 @@ export var DeleteSubnetGroupResponse;
|
|
|
108
385
|
(function (DeleteSubnetGroupResponse) {
|
|
109
386
|
DeleteSubnetGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
110
387
|
})(DeleteSubnetGroupResponse || (DeleteSubnetGroupResponse = {}));
|
|
388
|
+
var SubnetGroupInUseFault = (function (_super) {
|
|
389
|
+
__extends(SubnetGroupInUseFault, _super);
|
|
390
|
+
function SubnetGroupInUseFault(opts) {
|
|
391
|
+
var _this = _super.call(this, __assign({ name: "SubnetGroupInUseFault", $fault: "client" }, opts)) || this;
|
|
392
|
+
_this.name = "SubnetGroupInUseFault";
|
|
393
|
+
_this.$fault = "client";
|
|
394
|
+
Object.setPrototypeOf(_this, SubnetGroupInUseFault.prototype);
|
|
395
|
+
return _this;
|
|
396
|
+
}
|
|
397
|
+
return SubnetGroupInUseFault;
|
|
398
|
+
}(__BaseException));
|
|
399
|
+
export { SubnetGroupInUseFault };
|
|
111
400
|
export var DescribeClustersRequest;
|
|
112
401
|
(function (DescribeClustersRequest) {
|
|
113
402
|
DescribeClustersRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -176,6 +465,18 @@ export var IncreaseReplicationFactorResponse;
|
|
|
176
465
|
(function (IncreaseReplicationFactorResponse) {
|
|
177
466
|
IncreaseReplicationFactorResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
178
467
|
})(IncreaseReplicationFactorResponse || (IncreaseReplicationFactorResponse = {}));
|
|
468
|
+
var InvalidARNFault = (function (_super) {
|
|
469
|
+
__extends(InvalidARNFault, _super);
|
|
470
|
+
function InvalidARNFault(opts) {
|
|
471
|
+
var _this = _super.call(this, __assign({ name: "InvalidARNFault", $fault: "client" }, opts)) || this;
|
|
472
|
+
_this.name = "InvalidARNFault";
|
|
473
|
+
_this.$fault = "client";
|
|
474
|
+
Object.setPrototypeOf(_this, InvalidARNFault.prototype);
|
|
475
|
+
return _this;
|
|
476
|
+
}
|
|
477
|
+
return InvalidARNFault;
|
|
478
|
+
}(__BaseException));
|
|
479
|
+
export { InvalidARNFault };
|
|
179
480
|
export var ListTagsRequest;
|
|
180
481
|
(function (ListTagsRequest) {
|
|
181
482
|
ListTagsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -200,6 +501,18 @@ export var TagResourceResponse;
|
|
|
200
501
|
(function (TagResourceResponse) {
|
|
201
502
|
TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
202
503
|
})(TagResourceResponse || (TagResourceResponse = {}));
|
|
504
|
+
var TagNotFoundFault = (function (_super) {
|
|
505
|
+
__extends(TagNotFoundFault, _super);
|
|
506
|
+
function TagNotFoundFault(opts) {
|
|
507
|
+
var _this = _super.call(this, __assign({ name: "TagNotFoundFault", $fault: "client" }, opts)) || this;
|
|
508
|
+
_this.name = "TagNotFoundFault";
|
|
509
|
+
_this.$fault = "client";
|
|
510
|
+
Object.setPrototypeOf(_this, TagNotFoundFault.prototype);
|
|
511
|
+
return _this;
|
|
512
|
+
}
|
|
513
|
+
return TagNotFoundFault;
|
|
514
|
+
}(__BaseException));
|
|
515
|
+
export { TagNotFoundFault };
|
|
203
516
|
export var UntagResourceRequest;
|
|
204
517
|
(function (UntagResourceRequest) {
|
|
205
518
|
UntagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -228,6 +541,18 @@ export var UpdateParameterGroupResponse;
|
|
|
228
541
|
(function (UpdateParameterGroupResponse) {
|
|
229
542
|
UpdateParameterGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
230
543
|
})(UpdateParameterGroupResponse || (UpdateParameterGroupResponse = {}));
|
|
544
|
+
var SubnetInUse = (function (_super) {
|
|
545
|
+
__extends(SubnetInUse, _super);
|
|
546
|
+
function SubnetInUse(opts) {
|
|
547
|
+
var _this = _super.call(this, __assign({ name: "SubnetInUse", $fault: "client" }, opts)) || this;
|
|
548
|
+
_this.name = "SubnetInUse";
|
|
549
|
+
_this.$fault = "client";
|
|
550
|
+
Object.setPrototypeOf(_this, SubnetInUse.prototype);
|
|
551
|
+
return _this;
|
|
552
|
+
}
|
|
553
|
+
return SubnetInUse;
|
|
554
|
+
}(__BaseException));
|
|
555
|
+
export { SubnetInUse };
|
|
231
556
|
export var UpdateSubnetGroupRequest;
|
|
232
557
|
(function (UpdateSubnetGroupRequest) {
|
|
233
558
|
UpdateSubnetGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|