@aws-sdk/client-redshift-serverless 3.186.0 → 3.188.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 +8 -0
- package/dist-es/RedshiftServerless.js +150 -157
- package/dist-es/RedshiftServerlessClient.js +22 -28
- package/dist-es/commands/ConvertRecoveryPointToSnapshotCommand.js +21 -28
- package/dist-es/commands/CreateEndpointAccessCommand.js +21 -28
- package/dist-es/commands/CreateNamespaceCommand.js +21 -28
- package/dist-es/commands/CreateSnapshotCommand.js +21 -28
- package/dist-es/commands/CreateUsageLimitCommand.js +21 -28
- package/dist-es/commands/CreateWorkgroupCommand.js +21 -28
- package/dist-es/commands/DeleteEndpointAccessCommand.js +21 -28
- package/dist-es/commands/DeleteNamespaceCommand.js +21 -28
- package/dist-es/commands/DeleteResourcePolicyCommand.js +21 -28
- package/dist-es/commands/DeleteSnapshotCommand.js +21 -28
- package/dist-es/commands/DeleteUsageLimitCommand.js +21 -28
- package/dist-es/commands/DeleteWorkgroupCommand.js +21 -28
- package/dist-es/commands/GetCredentialsCommand.js +21 -28
- package/dist-es/commands/GetEndpointAccessCommand.js +21 -28
- package/dist-es/commands/GetNamespaceCommand.js +21 -28
- package/dist-es/commands/GetRecoveryPointCommand.js +21 -28
- package/dist-es/commands/GetResourcePolicyCommand.js +21 -28
- package/dist-es/commands/GetSnapshotCommand.js +21 -28
- package/dist-es/commands/GetUsageLimitCommand.js +21 -28
- package/dist-es/commands/GetWorkgroupCommand.js +21 -28
- package/dist-es/commands/ListEndpointAccessCommand.js +21 -28
- package/dist-es/commands/ListNamespacesCommand.js +21 -28
- package/dist-es/commands/ListRecoveryPointsCommand.js +21 -28
- package/dist-es/commands/ListSnapshotsCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListUsageLimitsCommand.js +21 -28
- package/dist-es/commands/ListWorkgroupsCommand.js +21 -28
- package/dist-es/commands/PutResourcePolicyCommand.js +21 -28
- package/dist-es/commands/RestoreFromRecoveryPointCommand.js +21 -28
- package/dist-es/commands/RestoreFromSnapshotCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateEndpointAccessCommand.js +21 -28
- package/dist-es/commands/UpdateNamespaceCommand.js +21 -28
- package/dist-es/commands/UpdateSnapshotCommand.js +21 -28
- package/dist-es/commands/UpdateUsageLimitCommand.js +21 -28
- package/dist-es/commands/UpdateWorkgroupCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/RedshiftServerlessServiceException.js +5 -10
- package/dist-es/models/models_0.js +392 -205
- package/dist-es/pagination/ListEndpointAccessPaginator.js +25 -68
- package/dist-es/pagination/ListNamespacesPaginator.js +25 -68
- package/dist-es/pagination/ListRecoveryPointsPaginator.js +25 -68
- package/dist-es/pagination/ListSnapshotsPaginator.js +25 -68
- package/dist-es/pagination/ListUsageLimitsPaginator.js +25 -68
- package/dist-es/pagination/ListWorkgroupsPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +2414 -3133
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,31 +1,30 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
2
|
import { RedshiftServerlessServiceException as __BaseException } from "./RedshiftServerlessServiceException";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
constructor(opts) {
|
|
5
|
+
super({
|
|
6
|
+
name: "AccessDeniedException",
|
|
7
|
+
$fault: "client",
|
|
8
|
+
...opts,
|
|
9
|
+
});
|
|
10
|
+
this.name = "AccessDeniedException";
|
|
11
|
+
this.$fault = "client";
|
|
12
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
+
this.code = opts.code;
|
|
13
14
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
15
|
+
}
|
|
16
|
+
export class ConflictException extends __BaseException {
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "ConflictException",
|
|
20
|
+
$fault: "client",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
this.name = "ConflictException";
|
|
24
|
+
this.$fault = "client";
|
|
25
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
25
26
|
}
|
|
26
|
-
|
|
27
|
-
}(__BaseException));
|
|
28
|
-
export { ConflictException };
|
|
27
|
+
}
|
|
29
28
|
export var SnapshotStatus;
|
|
30
29
|
(function (SnapshotStatus) {
|
|
31
30
|
SnapshotStatus["AVAILABLE"] = "AVAILABLE";
|
|
@@ -35,56 +34,56 @@ export var SnapshotStatus;
|
|
|
35
34
|
SnapshotStatus["DELETED"] = "DELETED";
|
|
36
35
|
SnapshotStatus["FAILED"] = "FAILED";
|
|
37
36
|
})(SnapshotStatus || (SnapshotStatus = {}));
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
37
|
+
export class InternalServerException extends __BaseException {
|
|
38
|
+
constructor(opts) {
|
|
39
|
+
super({
|
|
40
|
+
name: "InternalServerException",
|
|
41
|
+
$fault: "server",
|
|
42
|
+
...opts,
|
|
43
|
+
});
|
|
44
|
+
this.name = "InternalServerException";
|
|
45
|
+
this.$fault = "server";
|
|
46
|
+
this.$retryable = {};
|
|
47
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
47
48
|
}
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
49
|
+
}
|
|
50
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
51
|
+
constructor(opts) {
|
|
52
|
+
super({
|
|
53
|
+
name: "ResourceNotFoundException",
|
|
54
|
+
$fault: "client",
|
|
55
|
+
...opts,
|
|
56
|
+
});
|
|
57
|
+
this.name = "ResourceNotFoundException";
|
|
58
|
+
this.$fault = "client";
|
|
59
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
60
|
+
this.resourceName = opts.resourceName;
|
|
60
61
|
}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
62
|
+
}
|
|
63
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
64
|
+
constructor(opts) {
|
|
65
|
+
super({
|
|
66
|
+
name: "ServiceQuotaExceededException",
|
|
67
|
+
$fault: "client",
|
|
68
|
+
...opts,
|
|
69
|
+
});
|
|
70
|
+
this.name = "ServiceQuotaExceededException";
|
|
71
|
+
this.$fault = "client";
|
|
72
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
72
73
|
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
74
|
+
}
|
|
75
|
+
export class ValidationException extends __BaseException {
|
|
76
|
+
constructor(opts) {
|
|
77
|
+
super({
|
|
78
|
+
name: "ValidationException",
|
|
79
|
+
$fault: "client",
|
|
80
|
+
...opts,
|
|
81
|
+
});
|
|
82
|
+
this.name = "ValidationException";
|
|
83
|
+
this.$fault = "client";
|
|
84
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
84
85
|
}
|
|
85
|
-
|
|
86
|
-
}(__BaseException));
|
|
87
|
-
export { ValidationException };
|
|
86
|
+
}
|
|
88
87
|
export var LogExport;
|
|
89
88
|
(function (LogExport) {
|
|
90
89
|
LogExport["CONNECTION_LOG"] = "connectionlog";
|
|
@@ -97,19 +96,19 @@ export var NamespaceStatus;
|
|
|
97
96
|
NamespaceStatus["DELETING"] = "DELETING";
|
|
98
97
|
NamespaceStatus["MODIFYING"] = "MODIFYING";
|
|
99
98
|
})(NamespaceStatus || (NamespaceStatus = {}));
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
99
|
+
export class TooManyTagsException extends __BaseException {
|
|
100
|
+
constructor(opts) {
|
|
101
|
+
super({
|
|
102
|
+
name: "TooManyTagsException",
|
|
103
|
+
$fault: "client",
|
|
104
|
+
...opts,
|
|
105
|
+
});
|
|
106
|
+
this.name = "TooManyTagsException";
|
|
107
|
+
this.$fault = "client";
|
|
108
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
109
|
+
this.resourceName = opts.resourceName;
|
|
109
110
|
}
|
|
110
|
-
|
|
111
|
-
}(__BaseException));
|
|
112
|
-
export { TooManyTagsException };
|
|
111
|
+
}
|
|
113
112
|
export var UsageLimitBreachAction;
|
|
114
113
|
(function (UsageLimitBreachAction) {
|
|
115
114
|
UsageLimitBreachAction["DEACTIVATE"] = "deactivate";
|
|
@@ -134,129 +133,317 @@ export var WorkgroupStatus;
|
|
|
134
133
|
WorkgroupStatus["DELETING"] = "DELETING";
|
|
135
134
|
WorkgroupStatus["MODIFYING"] = "MODIFYING";
|
|
136
135
|
})(WorkgroupStatus || (WorkgroupStatus = {}));
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
136
|
+
export class InsufficientCapacityException extends __BaseException {
|
|
137
|
+
constructor(opts) {
|
|
138
|
+
super({
|
|
139
|
+
name: "InsufficientCapacityException",
|
|
140
|
+
$fault: "client",
|
|
141
|
+
...opts,
|
|
142
|
+
});
|
|
143
|
+
this.name = "InsufficientCapacityException";
|
|
144
|
+
this.$fault = "client";
|
|
145
|
+
this.$retryable = {};
|
|
146
|
+
Object.setPrototypeOf(this, InsufficientCapacityException.prototype);
|
|
146
147
|
}
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
148
|
+
}
|
|
149
|
+
export class InvalidPaginationException extends __BaseException {
|
|
150
|
+
constructor(opts) {
|
|
151
|
+
super({
|
|
152
|
+
name: "InvalidPaginationException",
|
|
153
|
+
$fault: "client",
|
|
154
|
+
...opts,
|
|
155
|
+
});
|
|
156
|
+
this.name = "InvalidPaginationException";
|
|
157
|
+
this.$fault = "client";
|
|
158
|
+
Object.setPrototypeOf(this, InvalidPaginationException.prototype);
|
|
158
159
|
}
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
160
|
+
}
|
|
161
|
+
export class ThrottlingException extends __BaseException {
|
|
162
|
+
constructor(opts) {
|
|
163
|
+
super({
|
|
164
|
+
name: "ThrottlingException",
|
|
165
|
+
$fault: "client",
|
|
166
|
+
...opts,
|
|
167
|
+
});
|
|
168
|
+
this.name = "ThrottlingException";
|
|
169
|
+
this.$fault = "client";
|
|
170
|
+
this.$retryable = {};
|
|
171
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
172
|
+
this.code = opts.code;
|
|
172
173
|
}
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
export
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
export
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
export
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
export
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
export
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
export
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
export
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
export
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
export
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
export
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
export
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
export
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
export
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
export
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
export
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
export
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
export
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
export
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
export
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
export
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
export
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
export
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
export
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
export
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
export
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
export
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
export
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
export
|
|
174
|
+
}
|
|
175
|
+
export const ConfigParameterFilterSensitiveLog = (obj) => ({
|
|
176
|
+
...obj,
|
|
177
|
+
});
|
|
178
|
+
export const ConvertRecoveryPointToSnapshotRequestFilterSensitiveLog = (obj) => ({
|
|
179
|
+
...obj,
|
|
180
|
+
});
|
|
181
|
+
export const SnapshotFilterSensitiveLog = (obj) => ({
|
|
182
|
+
...obj,
|
|
183
|
+
});
|
|
184
|
+
export const ConvertRecoveryPointToSnapshotResponseFilterSensitiveLog = (obj) => ({
|
|
185
|
+
...obj,
|
|
186
|
+
});
|
|
187
|
+
export const CreateEndpointAccessRequestFilterSensitiveLog = (obj) => ({
|
|
188
|
+
...obj,
|
|
189
|
+
});
|
|
190
|
+
export const NetworkInterfaceFilterSensitiveLog = (obj) => ({
|
|
191
|
+
...obj,
|
|
192
|
+
});
|
|
193
|
+
export const VpcEndpointFilterSensitiveLog = (obj) => ({
|
|
194
|
+
...obj,
|
|
195
|
+
});
|
|
196
|
+
export const VpcSecurityGroupMembershipFilterSensitiveLog = (obj) => ({
|
|
197
|
+
...obj,
|
|
198
|
+
});
|
|
199
|
+
export const EndpointAccessFilterSensitiveLog = (obj) => ({
|
|
200
|
+
...obj,
|
|
201
|
+
});
|
|
202
|
+
export const CreateEndpointAccessResponseFilterSensitiveLog = (obj) => ({
|
|
203
|
+
...obj,
|
|
204
|
+
});
|
|
205
|
+
export const TagFilterSensitiveLog = (obj) => ({
|
|
206
|
+
...obj,
|
|
207
|
+
});
|
|
208
|
+
export const CreateNamespaceRequestFilterSensitiveLog = (obj) => ({
|
|
209
|
+
...obj,
|
|
210
|
+
...(obj.adminUsername && { adminUsername: SENSITIVE_STRING }),
|
|
211
|
+
...(obj.adminUserPassword && { adminUserPassword: SENSITIVE_STRING }),
|
|
212
|
+
});
|
|
213
|
+
export const NamespaceFilterSensitiveLog = (obj) => ({
|
|
214
|
+
...obj,
|
|
215
|
+
...(obj.adminUsername && { adminUsername: SENSITIVE_STRING }),
|
|
216
|
+
});
|
|
217
|
+
export const CreateNamespaceResponseFilterSensitiveLog = (obj) => ({
|
|
218
|
+
...obj,
|
|
219
|
+
...(obj.namespace && { namespace: NamespaceFilterSensitiveLog(obj.namespace) }),
|
|
220
|
+
});
|
|
221
|
+
export const CreateSnapshotRequestFilterSensitiveLog = (obj) => ({
|
|
222
|
+
...obj,
|
|
223
|
+
});
|
|
224
|
+
export const CreateSnapshotResponseFilterSensitiveLog = (obj) => ({
|
|
225
|
+
...obj,
|
|
226
|
+
});
|
|
227
|
+
export const CreateUsageLimitRequestFilterSensitiveLog = (obj) => ({
|
|
228
|
+
...obj,
|
|
229
|
+
});
|
|
230
|
+
export const UsageLimitFilterSensitiveLog = (obj) => ({
|
|
231
|
+
...obj,
|
|
232
|
+
});
|
|
233
|
+
export const CreateUsageLimitResponseFilterSensitiveLog = (obj) => ({
|
|
234
|
+
...obj,
|
|
235
|
+
});
|
|
236
|
+
export const CreateWorkgroupRequestFilterSensitiveLog = (obj) => ({
|
|
237
|
+
...obj,
|
|
238
|
+
});
|
|
239
|
+
export const EndpointFilterSensitiveLog = (obj) => ({
|
|
240
|
+
...obj,
|
|
241
|
+
});
|
|
242
|
+
export const WorkgroupFilterSensitiveLog = (obj) => ({
|
|
243
|
+
...obj,
|
|
244
|
+
});
|
|
245
|
+
export const CreateWorkgroupResponseFilterSensitiveLog = (obj) => ({
|
|
246
|
+
...obj,
|
|
247
|
+
});
|
|
248
|
+
export const DeleteEndpointAccessRequestFilterSensitiveLog = (obj) => ({
|
|
249
|
+
...obj,
|
|
250
|
+
});
|
|
251
|
+
export const DeleteEndpointAccessResponseFilterSensitiveLog = (obj) => ({
|
|
252
|
+
...obj,
|
|
253
|
+
});
|
|
254
|
+
export const GetEndpointAccessRequestFilterSensitiveLog = (obj) => ({
|
|
255
|
+
...obj,
|
|
256
|
+
});
|
|
257
|
+
export const GetEndpointAccessResponseFilterSensitiveLog = (obj) => ({
|
|
258
|
+
...obj,
|
|
259
|
+
});
|
|
260
|
+
export const ListEndpointAccessRequestFilterSensitiveLog = (obj) => ({
|
|
261
|
+
...obj,
|
|
262
|
+
});
|
|
263
|
+
export const ListEndpointAccessResponseFilterSensitiveLog = (obj) => ({
|
|
264
|
+
...obj,
|
|
265
|
+
});
|
|
266
|
+
export const UpdateEndpointAccessRequestFilterSensitiveLog = (obj) => ({
|
|
267
|
+
...obj,
|
|
268
|
+
});
|
|
269
|
+
export const UpdateEndpointAccessResponseFilterSensitiveLog = (obj) => ({
|
|
270
|
+
...obj,
|
|
271
|
+
});
|
|
272
|
+
export const DeleteNamespaceRequestFilterSensitiveLog = (obj) => ({
|
|
273
|
+
...obj,
|
|
274
|
+
});
|
|
275
|
+
export const DeleteNamespaceResponseFilterSensitiveLog = (obj) => ({
|
|
276
|
+
...obj,
|
|
277
|
+
...(obj.namespace && { namespace: NamespaceFilterSensitiveLog(obj.namespace) }),
|
|
278
|
+
});
|
|
279
|
+
export const DeleteResourcePolicyRequestFilterSensitiveLog = (obj) => ({
|
|
280
|
+
...obj,
|
|
281
|
+
});
|
|
282
|
+
export const DeleteResourcePolicyResponseFilterSensitiveLog = (obj) => ({
|
|
283
|
+
...obj,
|
|
284
|
+
});
|
|
285
|
+
export const DeleteSnapshotRequestFilterSensitiveLog = (obj) => ({
|
|
286
|
+
...obj,
|
|
287
|
+
});
|
|
288
|
+
export const DeleteSnapshotResponseFilterSensitiveLog = (obj) => ({
|
|
289
|
+
...obj,
|
|
290
|
+
});
|
|
291
|
+
export const DeleteUsageLimitRequestFilterSensitiveLog = (obj) => ({
|
|
292
|
+
...obj,
|
|
293
|
+
});
|
|
294
|
+
export const DeleteUsageLimitResponseFilterSensitiveLog = (obj) => ({
|
|
295
|
+
...obj,
|
|
296
|
+
});
|
|
297
|
+
export const DeleteWorkgroupRequestFilterSensitiveLog = (obj) => ({
|
|
298
|
+
...obj,
|
|
299
|
+
});
|
|
300
|
+
export const DeleteWorkgroupResponseFilterSensitiveLog = (obj) => ({
|
|
301
|
+
...obj,
|
|
302
|
+
});
|
|
303
|
+
export const GetCredentialsRequestFilterSensitiveLog = (obj) => ({
|
|
304
|
+
...obj,
|
|
305
|
+
});
|
|
306
|
+
export const GetCredentialsResponseFilterSensitiveLog = (obj) => ({
|
|
307
|
+
...obj,
|
|
308
|
+
...(obj.dbUser && { dbUser: SENSITIVE_STRING }),
|
|
309
|
+
...(obj.dbPassword && { dbPassword: SENSITIVE_STRING }),
|
|
310
|
+
});
|
|
311
|
+
export const GetNamespaceRequestFilterSensitiveLog = (obj) => ({
|
|
312
|
+
...obj,
|
|
313
|
+
});
|
|
314
|
+
export const GetNamespaceResponseFilterSensitiveLog = (obj) => ({
|
|
315
|
+
...obj,
|
|
316
|
+
...(obj.namespace && { namespace: NamespaceFilterSensitiveLog(obj.namespace) }),
|
|
317
|
+
});
|
|
318
|
+
export const GetRecoveryPointRequestFilterSensitiveLog = (obj) => ({
|
|
319
|
+
...obj,
|
|
320
|
+
});
|
|
321
|
+
export const RecoveryPointFilterSensitiveLog = (obj) => ({
|
|
322
|
+
...obj,
|
|
323
|
+
});
|
|
324
|
+
export const GetRecoveryPointResponseFilterSensitiveLog = (obj) => ({
|
|
325
|
+
...obj,
|
|
326
|
+
});
|
|
327
|
+
export const GetResourcePolicyRequestFilterSensitiveLog = (obj) => ({
|
|
328
|
+
...obj,
|
|
329
|
+
});
|
|
330
|
+
export const ResourcePolicyFilterSensitiveLog = (obj) => ({
|
|
331
|
+
...obj,
|
|
332
|
+
});
|
|
333
|
+
export const GetResourcePolicyResponseFilterSensitiveLog = (obj) => ({
|
|
334
|
+
...obj,
|
|
335
|
+
});
|
|
336
|
+
export const GetSnapshotRequestFilterSensitiveLog = (obj) => ({
|
|
337
|
+
...obj,
|
|
338
|
+
});
|
|
339
|
+
export const GetSnapshotResponseFilterSensitiveLog = (obj) => ({
|
|
340
|
+
...obj,
|
|
341
|
+
});
|
|
342
|
+
export const GetUsageLimitRequestFilterSensitiveLog = (obj) => ({
|
|
343
|
+
...obj,
|
|
344
|
+
});
|
|
345
|
+
export const GetUsageLimitResponseFilterSensitiveLog = (obj) => ({
|
|
346
|
+
...obj,
|
|
347
|
+
});
|
|
348
|
+
export const GetWorkgroupRequestFilterSensitiveLog = (obj) => ({
|
|
349
|
+
...obj,
|
|
350
|
+
});
|
|
351
|
+
export const GetWorkgroupResponseFilterSensitiveLog = (obj) => ({
|
|
352
|
+
...obj,
|
|
353
|
+
});
|
|
354
|
+
export const ListNamespacesRequestFilterSensitiveLog = (obj) => ({
|
|
355
|
+
...obj,
|
|
356
|
+
});
|
|
357
|
+
export const ListNamespacesResponseFilterSensitiveLog = (obj) => ({
|
|
358
|
+
...obj,
|
|
359
|
+
...(obj.namespaces && { namespaces: obj.namespaces.map((item) => NamespaceFilterSensitiveLog(item)) }),
|
|
360
|
+
});
|
|
361
|
+
export const ListRecoveryPointsRequestFilterSensitiveLog = (obj) => ({
|
|
362
|
+
...obj,
|
|
363
|
+
});
|
|
364
|
+
export const ListRecoveryPointsResponseFilterSensitiveLog = (obj) => ({
|
|
365
|
+
...obj,
|
|
366
|
+
});
|
|
367
|
+
export const ListSnapshotsRequestFilterSensitiveLog = (obj) => ({
|
|
368
|
+
...obj,
|
|
369
|
+
});
|
|
370
|
+
export const ListSnapshotsResponseFilterSensitiveLog = (obj) => ({
|
|
371
|
+
...obj,
|
|
372
|
+
});
|
|
373
|
+
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
374
|
+
...obj,
|
|
375
|
+
});
|
|
376
|
+
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
377
|
+
...obj,
|
|
378
|
+
});
|
|
379
|
+
export const ListUsageLimitsRequestFilterSensitiveLog = (obj) => ({
|
|
380
|
+
...obj,
|
|
381
|
+
});
|
|
382
|
+
export const ListUsageLimitsResponseFilterSensitiveLog = (obj) => ({
|
|
383
|
+
...obj,
|
|
384
|
+
});
|
|
385
|
+
export const ListWorkgroupsRequestFilterSensitiveLog = (obj) => ({
|
|
386
|
+
...obj,
|
|
387
|
+
});
|
|
388
|
+
export const ListWorkgroupsResponseFilterSensitiveLog = (obj) => ({
|
|
389
|
+
...obj,
|
|
390
|
+
});
|
|
391
|
+
export const UpdateNamespaceRequestFilterSensitiveLog = (obj) => ({
|
|
392
|
+
...obj,
|
|
393
|
+
...(obj.adminUserPassword && { adminUserPassword: SENSITIVE_STRING }),
|
|
394
|
+
...(obj.adminUsername && { adminUsername: SENSITIVE_STRING }),
|
|
395
|
+
});
|
|
396
|
+
export const UpdateNamespaceResponseFilterSensitiveLog = (obj) => ({
|
|
397
|
+
...obj,
|
|
398
|
+
...(obj.namespace && { namespace: NamespaceFilterSensitiveLog(obj.namespace) }),
|
|
399
|
+
});
|
|
400
|
+
export const PutResourcePolicyRequestFilterSensitiveLog = (obj) => ({
|
|
401
|
+
...obj,
|
|
402
|
+
});
|
|
403
|
+
export const PutResourcePolicyResponseFilterSensitiveLog = (obj) => ({
|
|
404
|
+
...obj,
|
|
405
|
+
});
|
|
406
|
+
export const RestoreFromRecoveryPointRequestFilterSensitiveLog = (obj) => ({
|
|
407
|
+
...obj,
|
|
408
|
+
});
|
|
409
|
+
export const RestoreFromRecoveryPointResponseFilterSensitiveLog = (obj) => ({
|
|
410
|
+
...obj,
|
|
411
|
+
...(obj.namespace && { namespace: NamespaceFilterSensitiveLog(obj.namespace) }),
|
|
412
|
+
});
|
|
413
|
+
export const RestoreFromSnapshotRequestFilterSensitiveLog = (obj) => ({
|
|
414
|
+
...obj,
|
|
415
|
+
});
|
|
416
|
+
export const RestoreFromSnapshotResponseFilterSensitiveLog = (obj) => ({
|
|
417
|
+
...obj,
|
|
418
|
+
...(obj.namespace && { namespace: NamespaceFilterSensitiveLog(obj.namespace) }),
|
|
419
|
+
});
|
|
420
|
+
export const UpdateSnapshotRequestFilterSensitiveLog = (obj) => ({
|
|
421
|
+
...obj,
|
|
422
|
+
});
|
|
423
|
+
export const UpdateSnapshotResponseFilterSensitiveLog = (obj) => ({
|
|
424
|
+
...obj,
|
|
425
|
+
});
|
|
426
|
+
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
427
|
+
...obj,
|
|
428
|
+
});
|
|
429
|
+
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
430
|
+
...obj,
|
|
431
|
+
});
|
|
432
|
+
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
433
|
+
...obj,
|
|
434
|
+
});
|
|
435
|
+
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
436
|
+
...obj,
|
|
437
|
+
});
|
|
438
|
+
export const UpdateUsageLimitRequestFilterSensitiveLog = (obj) => ({
|
|
439
|
+
...obj,
|
|
440
|
+
});
|
|
441
|
+
export const UpdateUsageLimitResponseFilterSensitiveLog = (obj) => ({
|
|
442
|
+
...obj,
|
|
443
|
+
});
|
|
444
|
+
export const UpdateWorkgroupRequestFilterSensitiveLog = (obj) => ({
|
|
445
|
+
...obj,
|
|
446
|
+
});
|
|
447
|
+
export const UpdateWorkgroupResponseFilterSensitiveLog = (obj) => ({
|
|
448
|
+
...obj,
|
|
449
|
+
});
|