@aws-sdk/client-redshift-serverless 3.987.0 → 3.988.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-cjs/index.js +84 -2046
- package/dist-cjs/models/RedshiftServerlessServiceException.js +12 -0
- package/dist-cjs/models/errors.js +171 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1595 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +86 -80
- package/dist-types/schemas/schemas_0.d.ts +19 -12
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -12
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var RedshiftServerlessServiceException = require('./models/RedshiftServerlessServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1739 +113,6 @@ class RedshiftServerlessClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class RedshiftServerlessServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, RedshiftServerlessServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends RedshiftServerlessServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
code;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
this.code = opts.code;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class ConflictException extends RedshiftServerlessServiceException {
|
|
135
|
-
name = "ConflictException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "ConflictException",
|
|
140
|
-
$fault: "client",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
class InternalServerException extends RedshiftServerlessServiceException {
|
|
147
|
-
name = "InternalServerException";
|
|
148
|
-
$fault = "server";
|
|
149
|
-
$retryable = {};
|
|
150
|
-
constructor(opts) {
|
|
151
|
-
super({
|
|
152
|
-
name: "InternalServerException",
|
|
153
|
-
$fault: "server",
|
|
154
|
-
...opts,
|
|
155
|
-
});
|
|
156
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
class ResourceNotFoundException extends RedshiftServerlessServiceException {
|
|
160
|
-
name = "ResourceNotFoundException";
|
|
161
|
-
$fault = "client";
|
|
162
|
-
resourceName;
|
|
163
|
-
constructor(opts) {
|
|
164
|
-
super({
|
|
165
|
-
name: "ResourceNotFoundException",
|
|
166
|
-
$fault: "client",
|
|
167
|
-
...opts,
|
|
168
|
-
});
|
|
169
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
170
|
-
this.resourceName = opts.resourceName;
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
class ServiceQuotaExceededException extends RedshiftServerlessServiceException {
|
|
174
|
-
name = "ServiceQuotaExceededException";
|
|
175
|
-
$fault = "client";
|
|
176
|
-
constructor(opts) {
|
|
177
|
-
super({
|
|
178
|
-
name: "ServiceQuotaExceededException",
|
|
179
|
-
$fault: "client",
|
|
180
|
-
...opts,
|
|
181
|
-
});
|
|
182
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
class TooManyTagsException extends RedshiftServerlessServiceException {
|
|
186
|
-
name = "TooManyTagsException";
|
|
187
|
-
$fault = "client";
|
|
188
|
-
resourceName;
|
|
189
|
-
constructor(opts) {
|
|
190
|
-
super({
|
|
191
|
-
name: "TooManyTagsException",
|
|
192
|
-
$fault: "client",
|
|
193
|
-
...opts,
|
|
194
|
-
});
|
|
195
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
196
|
-
this.resourceName = opts.resourceName;
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
class ValidationException extends RedshiftServerlessServiceException {
|
|
200
|
-
name = "ValidationException";
|
|
201
|
-
$fault = "client";
|
|
202
|
-
constructor(opts) {
|
|
203
|
-
super({
|
|
204
|
-
name: "ValidationException",
|
|
205
|
-
$fault: "client",
|
|
206
|
-
...opts,
|
|
207
|
-
});
|
|
208
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
209
|
-
}
|
|
210
|
-
}
|
|
211
|
-
class ThrottlingException extends RedshiftServerlessServiceException {
|
|
212
|
-
name = "ThrottlingException";
|
|
213
|
-
$fault = "client";
|
|
214
|
-
$retryable = {};
|
|
215
|
-
code;
|
|
216
|
-
constructor(opts) {
|
|
217
|
-
super({
|
|
218
|
-
name: "ThrottlingException",
|
|
219
|
-
$fault: "client",
|
|
220
|
-
...opts,
|
|
221
|
-
});
|
|
222
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
223
|
-
this.code = opts.code;
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
class InsufficientCapacityException extends RedshiftServerlessServiceException {
|
|
227
|
-
name = "InsufficientCapacityException";
|
|
228
|
-
$fault = "client";
|
|
229
|
-
$retryable = {};
|
|
230
|
-
constructor(opts) {
|
|
231
|
-
super({
|
|
232
|
-
name: "InsufficientCapacityException",
|
|
233
|
-
$fault: "client",
|
|
234
|
-
...opts,
|
|
235
|
-
});
|
|
236
|
-
Object.setPrototypeOf(this, InsufficientCapacityException.prototype);
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
class Ipv6CidrBlockNotFoundException extends RedshiftServerlessServiceException {
|
|
240
|
-
name = "Ipv6CidrBlockNotFoundException";
|
|
241
|
-
$fault = "client";
|
|
242
|
-
constructor(opts) {
|
|
243
|
-
super({
|
|
244
|
-
name: "Ipv6CidrBlockNotFoundException",
|
|
245
|
-
$fault: "client",
|
|
246
|
-
...opts,
|
|
247
|
-
});
|
|
248
|
-
Object.setPrototypeOf(this, Ipv6CidrBlockNotFoundException.prototype);
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
|
-
class DryRunException extends RedshiftServerlessServiceException {
|
|
252
|
-
name = "DryRunException";
|
|
253
|
-
$fault = "client";
|
|
254
|
-
constructor(opts) {
|
|
255
|
-
super({
|
|
256
|
-
name: "DryRunException",
|
|
257
|
-
$fault: "client",
|
|
258
|
-
...opts,
|
|
259
|
-
});
|
|
260
|
-
Object.setPrototypeOf(this, DryRunException.prototype);
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
class InvalidPaginationException extends RedshiftServerlessServiceException {
|
|
264
|
-
name = "InvalidPaginationException";
|
|
265
|
-
$fault = "client";
|
|
266
|
-
constructor(opts) {
|
|
267
|
-
super({
|
|
268
|
-
name: "InvalidPaginationException",
|
|
269
|
-
$fault: "client",
|
|
270
|
-
...opts,
|
|
271
|
-
});
|
|
272
|
-
Object.setPrototypeOf(this, InvalidPaginationException.prototype);
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
const _A = "Association";
|
|
277
|
-
const _ADE = "AccessDeniedException";
|
|
278
|
-
const _AL = "AssociationList";
|
|
279
|
-
const _CCDA = "CreateCustomDomainAssociation";
|
|
280
|
-
const _CCDAR = "CreateCustomDomainAssociationRequest";
|
|
281
|
-
const _CCDARr = "CreateCustomDomainAssociationResponse";
|
|
282
|
-
const _CE = "ConflictException";
|
|
283
|
-
const _CEA = "CreateEndpointAccess";
|
|
284
|
-
const _CEAR = "CreateEndpointAccessRequest";
|
|
285
|
-
const _CEARr = "CreateEndpointAccessResponse";
|
|
286
|
-
const _CN = "CreateNamespace";
|
|
287
|
-
const _CNR = "CreateNamespaceRequest";
|
|
288
|
-
const _CNRr = "CreateNamespaceResponse";
|
|
289
|
-
const _CP = "ConfigParameter";
|
|
290
|
-
const _CPL = "ConfigParameterList";
|
|
291
|
-
const _CR = "CreateReservation";
|
|
292
|
-
const _CRPTS = "ConvertRecoveryPointToSnapshot";
|
|
293
|
-
const _CRPTSR = "ConvertRecoveryPointToSnapshotRequest";
|
|
294
|
-
const _CRPTSRo = "ConvertRecoveryPointToSnapshotResponse";
|
|
295
|
-
const _CRR = "CreateReservationRequest";
|
|
296
|
-
const _CRRr = "CreateReservationResponse";
|
|
297
|
-
const _CS = "CreateSnapshot";
|
|
298
|
-
const _CSA = "CreateScheduledAction";
|
|
299
|
-
const _CSAR = "CreateScheduledActionRequest";
|
|
300
|
-
const _CSARr = "CreateScheduledActionResponse";
|
|
301
|
-
const _CSCC = "CreateSnapshotCopyConfiguration";
|
|
302
|
-
const _CSCCR = "CreateSnapshotCopyConfigurationRequest";
|
|
303
|
-
const _CSCCRr = "CreateSnapshotCopyConfigurationResponse";
|
|
304
|
-
const _CSR = "CreateSnapshotRequest";
|
|
305
|
-
const _CSRr = "CreateSnapshotResponse";
|
|
306
|
-
const _CSSAP = "CreateSnapshotScheduleActionParameters";
|
|
307
|
-
const _CUL = "CreateUsageLimit";
|
|
308
|
-
const _CULR = "CreateUsageLimitRequest";
|
|
309
|
-
const _CULRr = "CreateUsageLimitResponse";
|
|
310
|
-
const _CW = "CreateWorkgroup";
|
|
311
|
-
const _CWR = "CreateWorkgroupRequest";
|
|
312
|
-
const _CWRr = "CreateWorkgroupResponse";
|
|
313
|
-
const _DCDA = "DeleteCustomDomainAssociation";
|
|
314
|
-
const _DCDAR = "DeleteCustomDomainAssociationRequest";
|
|
315
|
-
const _DCDARe = "DeleteCustomDomainAssociationResponse";
|
|
316
|
-
const _DEA = "DeleteEndpointAccess";
|
|
317
|
-
const _DEAR = "DeleteEndpointAccessRequest";
|
|
318
|
-
const _DEARe = "DeleteEndpointAccessResponse";
|
|
319
|
-
const _DN = "DeleteNamespace";
|
|
320
|
-
const _DNR = "DeleteNamespaceRequest";
|
|
321
|
-
const _DNRe = "DeleteNamespaceResponse";
|
|
322
|
-
const _DP = "DbPassword";
|
|
323
|
-
const _DRE = "DryRunException";
|
|
324
|
-
const _DRP = "DeleteResourcePolicy";
|
|
325
|
-
const _DRPR = "DeleteResourcePolicyRequest";
|
|
326
|
-
const _DRPRe = "DeleteResourcePolicyResponse";
|
|
327
|
-
const _DS = "DeleteSnapshot";
|
|
328
|
-
const _DSA = "DeleteScheduledAction";
|
|
329
|
-
const _DSAR = "DeleteScheduledActionRequest";
|
|
330
|
-
const _DSARe = "DeleteScheduledActionResponse";
|
|
331
|
-
const _DSCC = "DeleteSnapshotCopyConfiguration";
|
|
332
|
-
const _DSCCR = "DeleteSnapshotCopyConfigurationRequest";
|
|
333
|
-
const _DSCCRe = "DeleteSnapshotCopyConfigurationResponse";
|
|
334
|
-
const _DSR = "DeleteSnapshotRequest";
|
|
335
|
-
const _DSRe = "DeleteSnapshotResponse";
|
|
336
|
-
const _DU = "DbUser";
|
|
337
|
-
const _DUL = "DeleteUsageLimit";
|
|
338
|
-
const _DULR = "DeleteUsageLimitRequest";
|
|
339
|
-
const _DULRe = "DeleteUsageLimitResponse";
|
|
340
|
-
const _DW = "DeleteWorkgroup";
|
|
341
|
-
const _DWR = "DeleteWorkgroupRequest";
|
|
342
|
-
const _DWRe = "DeleteWorkgroupResponse";
|
|
343
|
-
const _E = "Endpoint";
|
|
344
|
-
const _EA = "EndpointAccess";
|
|
345
|
-
const _EAL = "EndpointAccessList";
|
|
346
|
-
const _ET = "ExpirationTime";
|
|
347
|
-
const _GC = "GetCredentials";
|
|
348
|
-
const _GCDA = "GetCustomDomainAssociation";
|
|
349
|
-
const _GCDAR = "GetCustomDomainAssociationRequest";
|
|
350
|
-
const _GCDARe = "GetCustomDomainAssociationResponse";
|
|
351
|
-
const _GCR = "GetCredentialsRequest";
|
|
352
|
-
const _GCRe = "GetCredentialsResponse";
|
|
353
|
-
const _GEA = "GetEndpointAccess";
|
|
354
|
-
const _GEAR = "GetEndpointAccessRequest";
|
|
355
|
-
const _GEARe = "GetEndpointAccessResponse";
|
|
356
|
-
const _GICAT = "GetIdentityCenterAuthToken";
|
|
357
|
-
const _GICATR = "GetIdentityCenterAuthTokenRequest";
|
|
358
|
-
const _GICATRe = "GetIdentityCenterAuthTokenResponse";
|
|
359
|
-
const _GN = "GetNamespace";
|
|
360
|
-
const _GNR = "GetNamespaceRequest";
|
|
361
|
-
const _GNRe = "GetNamespaceResponse";
|
|
362
|
-
const _GR = "GetReservation";
|
|
363
|
-
const _GRO = "GetReservationOffering";
|
|
364
|
-
const _GROR = "GetReservationOfferingRequest";
|
|
365
|
-
const _GRORe = "GetReservationOfferingResponse";
|
|
366
|
-
const _GRP = "GetRecoveryPoint";
|
|
367
|
-
const _GRPR = "GetRecoveryPointRequest";
|
|
368
|
-
const _GRPRe = "GetRecoveryPointResponse";
|
|
369
|
-
const _GRPRet = "GetResourcePolicyRequest";
|
|
370
|
-
const _GRPRete = "GetResourcePolicyResponse";
|
|
371
|
-
const _GRPe = "GetResourcePolicy";
|
|
372
|
-
const _GRR = "GetReservationRequest";
|
|
373
|
-
const _GRRe = "GetReservationResponse";
|
|
374
|
-
const _GS = "GetSnapshot";
|
|
375
|
-
const _GSA = "GetScheduledAction";
|
|
376
|
-
const _GSAR = "GetScheduledActionRequest";
|
|
377
|
-
const _GSARe = "GetScheduledActionResponse";
|
|
378
|
-
const _GSR = "GetSnapshotRequest";
|
|
379
|
-
const _GSRe = "GetSnapshotResponse";
|
|
380
|
-
const _GT = "GetTrack";
|
|
381
|
-
const _GTR = "GetTrackRequest";
|
|
382
|
-
const _GTRS = "GetTableRestoreStatus";
|
|
383
|
-
const _GTRSR = "GetTableRestoreStatusRequest";
|
|
384
|
-
const _GTRSRe = "GetTableRestoreStatusResponse";
|
|
385
|
-
const _GTRe = "GetTrackResponse";
|
|
386
|
-
const _GUL = "GetUsageLimit";
|
|
387
|
-
const _GULR = "GetUsageLimitRequest";
|
|
388
|
-
const _GULRe = "GetUsageLimitResponse";
|
|
389
|
-
const _GW = "GetWorkgroup";
|
|
390
|
-
const _GWR = "GetWorkgroupRequest";
|
|
391
|
-
const _GWRe = "GetWorkgroupResponse";
|
|
392
|
-
const _ICBNFE = "Ipv6CidrBlockNotFoundException";
|
|
393
|
-
const _ICE = "InsufficientCapacityException";
|
|
394
|
-
const _IPE = "InvalidPaginationException";
|
|
395
|
-
const _ISE = "InternalServerException";
|
|
396
|
-
const _LCDA = "ListCustomDomainAssociations";
|
|
397
|
-
const _LCDAR = "ListCustomDomainAssociationsRequest";
|
|
398
|
-
const _LCDARi = "ListCustomDomainAssociationsResponse";
|
|
399
|
-
const _LEA = "ListEndpointAccess";
|
|
400
|
-
const _LEAR = "ListEndpointAccessRequest";
|
|
401
|
-
const _LEARi = "ListEndpointAccessResponse";
|
|
402
|
-
const _LMW = "ListManagedWorkgroups";
|
|
403
|
-
const _LMWR = "ListManagedWorkgroupsRequest";
|
|
404
|
-
const _LMWRi = "ListManagedWorkgroupsResponse";
|
|
405
|
-
const _LN = "ListNamespaces";
|
|
406
|
-
const _LNR = "ListNamespacesRequest";
|
|
407
|
-
const _LNRi = "ListNamespacesResponse";
|
|
408
|
-
const _LR = "ListReservations";
|
|
409
|
-
const _LRO = "ListReservationOfferings";
|
|
410
|
-
const _LROR = "ListReservationOfferingsRequest";
|
|
411
|
-
const _LRORi = "ListReservationOfferingsResponse";
|
|
412
|
-
const _LRP = "ListRecoveryPoints";
|
|
413
|
-
const _LRPR = "ListRecoveryPointsRequest";
|
|
414
|
-
const _LRPRi = "ListRecoveryPointsResponse";
|
|
415
|
-
const _LRR = "ListReservationsRequest";
|
|
416
|
-
const _LRRi = "ListReservationsResponse";
|
|
417
|
-
const _LS = "ListSnapshots";
|
|
418
|
-
const _LSA = "ListScheduledActions";
|
|
419
|
-
const _LSAR = "ListScheduledActionsRequest";
|
|
420
|
-
const _LSARi = "ListScheduledActionsResponse";
|
|
421
|
-
const _LSCC = "ListSnapshotCopyConfigurations";
|
|
422
|
-
const _LSCCR = "ListSnapshotCopyConfigurationsRequest";
|
|
423
|
-
const _LSCCRi = "ListSnapshotCopyConfigurationsResponse";
|
|
424
|
-
const _LSR = "ListSnapshotsRequest";
|
|
425
|
-
const _LSRi = "ListSnapshotsResponse";
|
|
426
|
-
const _LT = "ListTracks";
|
|
427
|
-
const _LTFR = "ListTagsForResource";
|
|
428
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
429
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
430
|
-
const _LTR = "ListTracksRequest";
|
|
431
|
-
const _LTRS = "ListTableRestoreStatus";
|
|
432
|
-
const _LTRSR = "ListTableRestoreStatusRequest";
|
|
433
|
-
const _LTRSRi = "ListTableRestoreStatusResponse";
|
|
434
|
-
const _LTRi = "ListTracksResponse";
|
|
435
|
-
const _LUL = "ListUsageLimits";
|
|
436
|
-
const _LULR = "ListUsageLimitsRequest";
|
|
437
|
-
const _LULRi = "ListUsageLimitsResponse";
|
|
438
|
-
const _LW = "ListWorkgroups";
|
|
439
|
-
const _LWR = "ListWorkgroupsRequest";
|
|
440
|
-
const _LWRi = "ListWorkgroupsResponse";
|
|
441
|
-
const _MW = "ManagedWorkgroups";
|
|
442
|
-
const _MWLI = "ManagedWorkgroupListItem";
|
|
443
|
-
const _N = "Namespace";
|
|
444
|
-
const _NI = "NetworkInterface";
|
|
445
|
-
const _NIL = "NetworkInterfaceList";
|
|
446
|
-
const _NL = "NamespaceList";
|
|
447
|
-
const _PRP = "PutResourcePolicy";
|
|
448
|
-
const _PRPR = "PutResourcePolicyRequest";
|
|
449
|
-
const _PRPRu = "PutResourcePolicyResponse";
|
|
450
|
-
const _PT = "PerformanceTarget";
|
|
451
|
-
const _R = "Reservation";
|
|
452
|
-
const _RFRP = "RestoreFromRecoveryPoint";
|
|
453
|
-
const _RFRPR = "RestoreFromRecoveryPointRequest";
|
|
454
|
-
const _RFRPRe = "RestoreFromRecoveryPointResponse";
|
|
455
|
-
const _RFS = "RestoreFromSnapshot";
|
|
456
|
-
const _RFSR = "RestoreFromSnapshotRequest";
|
|
457
|
-
const _RFSRe = "RestoreFromSnapshotResponse";
|
|
458
|
-
const _RL = "ReservationsList";
|
|
459
|
-
const _RNFE = "ResourceNotFoundException";
|
|
460
|
-
const _RO = "ReservationOffering";
|
|
461
|
-
const _ROL = "ReservationOfferingsList";
|
|
462
|
-
const _RP = "RecoveryPoint";
|
|
463
|
-
const _RPL = "RecoveryPointList";
|
|
464
|
-
const _RPe = "ResourcePolicy";
|
|
465
|
-
const _RTFRP = "RestoreTableFromRecoveryPoint";
|
|
466
|
-
const _RTFRPR = "RestoreTableFromRecoveryPointRequest";
|
|
467
|
-
const _RTFRPRe = "RestoreTableFromRecoveryPointResponse";
|
|
468
|
-
const _RTFS = "RestoreTableFromSnapshot";
|
|
469
|
-
const _RTFSR = "RestoreTableFromSnapshotRequest";
|
|
470
|
-
const _RTFSRe = "RestoreTableFromSnapshotResponse";
|
|
471
|
-
const _S = "Snapshot";
|
|
472
|
-
const _SAA = "ScheduledActionAssociation";
|
|
473
|
-
const _SAL = "ScheduledActionsList";
|
|
474
|
-
const _SAR = "ScheduledActionResponse";
|
|
475
|
-
const _SCC = "SnapshotCopyConfiguration";
|
|
476
|
-
const _SCCn = "SnapshotCopyConfigurations";
|
|
477
|
-
const _SL = "SnapshotList";
|
|
478
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
479
|
-
const _ST = "ServerlessTrack";
|
|
480
|
-
const _Sc = "Schedule";
|
|
481
|
-
const _T = "Token";
|
|
482
|
-
const _TA = "TargetAction";
|
|
483
|
-
const _TE = "ThrottlingException";
|
|
484
|
-
const _TL = "TagList";
|
|
485
|
-
const _TLr = "TrackList";
|
|
486
|
-
const _TMTE = "TooManyTagsException";
|
|
487
|
-
const _TR = "TagResource";
|
|
488
|
-
const _TRR = "TagResourceRequest";
|
|
489
|
-
const _TRRa = "TagResourceResponse";
|
|
490
|
-
const _TRS = "TableRestoreStatus";
|
|
491
|
-
const _TRSL = "TableRestoreStatusList";
|
|
492
|
-
const _Ta = "Tag";
|
|
493
|
-
const _UCDA = "UpdateCustomDomainAssociation";
|
|
494
|
-
const _UCDAR = "UpdateCustomDomainAssociationRequest";
|
|
495
|
-
const _UCDARp = "UpdateCustomDomainAssociationResponse";
|
|
496
|
-
const _UEA = "UpdateEndpointAccess";
|
|
497
|
-
const _UEAR = "UpdateEndpointAccessRequest";
|
|
498
|
-
const _UEARp = "UpdateEndpointAccessResponse";
|
|
499
|
-
const _UL = "UsageLimit";
|
|
500
|
-
const _ULC = "UpdateLakehouseConfiguration";
|
|
501
|
-
const _ULCR = "UpdateLakehouseConfigurationRequest";
|
|
502
|
-
const _ULCRp = "UpdateLakehouseConfigurationResponse";
|
|
503
|
-
const _ULs = "UsageLimits";
|
|
504
|
-
const _UN = "UpdateNamespace";
|
|
505
|
-
const _UNR = "UpdateNamespaceRequest";
|
|
506
|
-
const _UNRp = "UpdateNamespaceResponse";
|
|
507
|
-
const _UR = "UntagResource";
|
|
508
|
-
const _URR = "UntagResourceRequest";
|
|
509
|
-
const _URRn = "UntagResourceResponse";
|
|
510
|
-
const _US = "UpdateSnapshot";
|
|
511
|
-
const _USA = "UpdateScheduledAction";
|
|
512
|
-
const _USAR = "UpdateScheduledActionRequest";
|
|
513
|
-
const _USARp = "UpdateScheduledActionResponse";
|
|
514
|
-
const _USCC = "UpdateSnapshotCopyConfiguration";
|
|
515
|
-
const _USCCR = "UpdateSnapshotCopyConfigurationRequest";
|
|
516
|
-
const _USCCRp = "UpdateSnapshotCopyConfigurationResponse";
|
|
517
|
-
const _USR = "UpdateSnapshotRequest";
|
|
518
|
-
const _USRp = "UpdateSnapshotResponse";
|
|
519
|
-
const _UT = "UpdateTarget";
|
|
520
|
-
const _UTL = "UpdateTargetsList";
|
|
521
|
-
const _UUL = "UpdateUsageLimit";
|
|
522
|
-
const _UULR = "UpdateUsageLimitRequest";
|
|
523
|
-
const _UULRp = "UpdateUsageLimitResponse";
|
|
524
|
-
const _UW = "UpdateWorkgroup";
|
|
525
|
-
const _UWR = "UpdateWorkgroupRequest";
|
|
526
|
-
const _UWRp = "UpdateWorkgroupResponse";
|
|
527
|
-
const _VE = "ValidationException";
|
|
528
|
-
const _VEL = "VpcEndpointList";
|
|
529
|
-
const _VEp = "VpcEndpoint";
|
|
530
|
-
const _VSGM = "VpcSecurityGroupMembership";
|
|
531
|
-
const _VSGML = "VpcSecurityGroupMembershipList";
|
|
532
|
-
const _W = "Workgroup";
|
|
533
|
-
const _WL = "WorkgroupList";
|
|
534
|
-
const _a = "amount";
|
|
535
|
-
const _aCSI = "activateCaseSensitiveIdentifier";
|
|
536
|
-
const _aIBSIMB = "actualIncrementalBackupSizeInMegaBytes";
|
|
537
|
-
const _aPSA = "adminPasswordSecretArn";
|
|
538
|
-
const _aPSKKI = "adminPasswordSecretKmsKeyId";
|
|
539
|
-
const _aU = "adminUsername";
|
|
540
|
-
const _aUP = "adminUserPassword";
|
|
541
|
-
const _aWPRA = "accountsWithProvisionedRestoreAccess";
|
|
542
|
-
const _aWRA = "accountsWithRestoreAccess";
|
|
543
|
-
const _aZ = "availabilityZone";
|
|
544
|
-
const _ad = "address";
|
|
545
|
-
const _as = "associations";
|
|
546
|
-
const _at = "at";
|
|
547
|
-
const _bA = "breachAction";
|
|
548
|
-
const _bC = "baseCapacity";
|
|
549
|
-
const _bPIMB = "backupProgressInMegaBytes";
|
|
550
|
-
const _c = "client";
|
|
551
|
-
const _cA = "catalogArn";
|
|
552
|
-
const _cAV = "crossAccountVpcs";
|
|
553
|
-
const _cBRIMBPS = "currentBackupRateInMegaBytesPerSecond";
|
|
554
|
-
const _cC = "currencyCode";
|
|
555
|
-
const _cD = "creationDate";
|
|
556
|
-
const _cDCA = "customDomainCertificateArn";
|
|
557
|
-
const _cDCET = "customDomainCertificateExpiryTime";
|
|
558
|
-
const _cDN = "customDomainName";
|
|
559
|
-
const _cN = "catalogName";
|
|
560
|
-
const _cP = "configParameters";
|
|
561
|
-
const _cS = "createSnapshot";
|
|
562
|
-
const _cT = "clientToken";
|
|
563
|
-
const _ca = "capacity";
|
|
564
|
-
const _co = "code";
|
|
565
|
-
const _cr = "cron";
|
|
566
|
-
const _d = "duration";
|
|
567
|
-
const _dIRA = "defaultIamRoleArn";
|
|
568
|
-
const _dKKI = "destinationKmsKeyId";
|
|
569
|
-
const _dN = "dbName";
|
|
570
|
-
const _dP = "dbPassword";
|
|
571
|
-
const _dR = "destinationRegion";
|
|
572
|
-
const _dRr = "dryRun";
|
|
573
|
-
const _dS = "durationSeconds";
|
|
574
|
-
const _dU = "dbUser";
|
|
575
|
-
const _e = "error";
|
|
576
|
-
const _eA = "endpointArn";
|
|
577
|
-
const _eCFAO = "extraComputeForAutomaticOptimization";
|
|
578
|
-
const _eCT = "endpointCreateTime";
|
|
579
|
-
const _eD = "endDate";
|
|
580
|
-
const _eN = "endpointName";
|
|
581
|
-
const _eS = "endpointStatus";
|
|
582
|
-
const _eSTC = "estimatedSecondsToCompletion";
|
|
583
|
-
const _eT = "endTime";
|
|
584
|
-
const _eTIS = "elapsedTimeInSeconds";
|
|
585
|
-
const _eTx = "expirationTime";
|
|
586
|
-
const _eVR = "enhancedVpcRouting";
|
|
587
|
-
const _en = "endpoint";
|
|
588
|
-
const _ena = "enabled";
|
|
589
|
-
const _end = "endpoints";
|
|
590
|
-
const _ex = "expiration";
|
|
591
|
-
const _fSN = "finalSnapshotName";
|
|
592
|
-
const _fSRP = "finalSnapshotRetentionPeriod";
|
|
593
|
-
const _hC = "hourlyCharge";
|
|
594
|
-
const _hE = "httpError";
|
|
595
|
-
const _hQ = "httpQuery";
|
|
596
|
-
const _iA = "ipv6Address";
|
|
597
|
-
const _iAT = "ipAddressType";
|
|
598
|
-
const _iR = "iamRoles";
|
|
599
|
-
const _jN = "jsonName";
|
|
600
|
-
const _k = "key";
|
|
601
|
-
const _kKI = "kmsKeyId";
|
|
602
|
-
const _l = "level";
|
|
603
|
-
const _lE = "logExports";
|
|
604
|
-
const _lIAA = "lakehouseIdcApplicationArn";
|
|
605
|
-
const _lIR = "lakehouseIdcRegistration";
|
|
606
|
-
const _lR = "lakehouseRegistration";
|
|
607
|
-
const _lRS = "lakehouseRegistrationStatus";
|
|
608
|
-
const _m = "message";
|
|
609
|
-
const _mAP = "manageAdminPassword";
|
|
610
|
-
const _mC = "maxCapacity";
|
|
611
|
-
const _mR = "maxResults";
|
|
612
|
-
const _mW = "managedWorkgroups";
|
|
613
|
-
const _mWI = "managedWorkgroupId";
|
|
614
|
-
const _mWN = "managedWorkgroupName";
|
|
615
|
-
const _n = "namespace";
|
|
616
|
-
const _nA = "namespaceArn";
|
|
617
|
-
const _nI = "namespaceId";
|
|
618
|
-
const _nII = "networkInterfaceId";
|
|
619
|
-
const _nIe = "nextInvocations";
|
|
620
|
-
const _nIet = "networkInterfaces";
|
|
621
|
-
const _nN = "namespaceName";
|
|
622
|
-
const _nRT = "nextRefreshTime";
|
|
623
|
-
const _nT = "nextToken";
|
|
624
|
-
const _nTN = "newTableName";
|
|
625
|
-
const _na = "namespaces";
|
|
626
|
-
const _o = "offering";
|
|
627
|
-
const _oA = "ownerAccount";
|
|
628
|
-
const _oI = "offeringId";
|
|
629
|
-
const _oT = "offeringType";
|
|
630
|
-
const _p = "period";
|
|
631
|
-
const _pA = "publiclyAccessible";
|
|
632
|
-
const _pIA = "privateIpAddress";
|
|
633
|
-
const _pIMB = "progressInMegaBytes";
|
|
634
|
-
const _pK = "parameterKey";
|
|
635
|
-
const _pPT = "pricePerformanceTarget";
|
|
636
|
-
const _pTN = "pendingTrackName";
|
|
637
|
-
const _pV = "parameterValue";
|
|
638
|
-
const _pVa = "patchVersion";
|
|
639
|
-
const _po = "port";
|
|
640
|
-
const _pol = "policy";
|
|
641
|
-
const _r = "reservation";
|
|
642
|
-
const _rA = "roleArn";
|
|
643
|
-
const _rAe = "resourceArn";
|
|
644
|
-
const _rAes = "reservationArn";
|
|
645
|
-
const _rI = "reservationId";
|
|
646
|
-
const _rIAA = "redshiftIdcApplicationArn";
|
|
647
|
-
const _rL = "reservationsList";
|
|
648
|
-
const _rN = "resourceName";
|
|
649
|
-
const _rO = "reservationOffering";
|
|
650
|
-
const _rOL = "reservationOfferingsList";
|
|
651
|
-
const _rP = "retentionPeriod";
|
|
652
|
-
const _rPCT = "recoveryPointCreateTime";
|
|
653
|
-
const _rPI = "recoveryPointId";
|
|
654
|
-
const _rPe = "recoveryPoint";
|
|
655
|
-
const _rPec = "recoveryPoints";
|
|
656
|
-
const _rPes = "resourcePolicy";
|
|
657
|
-
const _rT = "requestTime";
|
|
658
|
-
const _s = "snapshot";
|
|
659
|
-
const _sA = "scheduledAction";
|
|
660
|
-
const _sAD = "scheduledActionDescription";
|
|
661
|
-
const _sAN = "scheduledActionName";
|
|
662
|
-
const _sAU = "scheduledActionUuid";
|
|
663
|
-
const _sAc = "scheduledActions";
|
|
664
|
-
const _sAn = "snapshotArn";
|
|
665
|
-
const _sAo = "sourceArn";
|
|
666
|
-
const _sCC = "snapshotCopyConfiguration";
|
|
667
|
-
const _sCCA = "snapshotCopyConfigurationArn";
|
|
668
|
-
const _sCCI = "snapshotCopyConfigurationId";
|
|
669
|
-
const _sCCn = "snapshotCopyConfigurations";
|
|
670
|
-
const _sCT = "snapshotCreateTime";
|
|
671
|
-
const _sD = "startDate";
|
|
672
|
-
const _sDN = "sourceDatabaseName";
|
|
673
|
-
const _sGI = "securityGroupIds";
|
|
674
|
-
const _sI = "subnetIds";
|
|
675
|
-
const _sIu = "subnetId";
|
|
676
|
-
const _sN = "snapshotName";
|
|
677
|
-
const _sNP = "snapshotNamePrefix";
|
|
678
|
-
const _sRD = "snapshotRemainingDays";
|
|
679
|
-
const _sRP = "snapshotRetentionPeriod";
|
|
680
|
-
const _sRST = "snapshotRetentionStartTime";
|
|
681
|
-
const _sSN = "sourceSchemaName";
|
|
682
|
-
const _sT = "startTime";
|
|
683
|
-
const _sTN = "sourceTableName";
|
|
684
|
-
const _sc = "schedule";
|
|
685
|
-
const _se = "server";
|
|
686
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.redshiftserverless";
|
|
687
|
-
const _sn = "snapshots";
|
|
688
|
-
const _st = "status";
|
|
689
|
-
const _sta = "state";
|
|
690
|
-
const _t = "tags";
|
|
691
|
-
const _tA = "targetAction";
|
|
692
|
-
const _tBSIMB = "totalBackupSizeInMegaBytes";
|
|
693
|
-
const _tDIMB = "totalDataInMegaBytes";
|
|
694
|
-
const _tDN = "targetDatabaseName";
|
|
695
|
-
const _tK = "tagKeys";
|
|
696
|
-
const _tN = "trackName";
|
|
697
|
-
const _tRRI = "tableRestoreRequestId";
|
|
698
|
-
const _tRS = "tableRestoreStatus";
|
|
699
|
-
const _tRSa = "tableRestoreStatuses";
|
|
700
|
-
const _tSIMB = "totalSizeInMegaBytes";
|
|
701
|
-
const _tSN = "targetSchemaName";
|
|
702
|
-
const _to = "token";
|
|
703
|
-
const _tr = "track";
|
|
704
|
-
const _tra = "tracks";
|
|
705
|
-
const _uC = "upfrontCharge";
|
|
706
|
-
const _uL = "usageLimit";
|
|
707
|
-
const _uLA = "usageLimitArn";
|
|
708
|
-
const _uLI = "usageLimitId";
|
|
709
|
-
const _uLs = "usageLimits";
|
|
710
|
-
const _uT = "usageType";
|
|
711
|
-
const _uTp = "updateTargets";
|
|
712
|
-
const _v = "value";
|
|
713
|
-
const _vE = "vpcEndpoints";
|
|
714
|
-
const _vEI = "vpcEndpointId";
|
|
715
|
-
const _vEp = "vpcEndpoint";
|
|
716
|
-
const _vI = "vpcId";
|
|
717
|
-
const _vSG = "vpcSecurityGroups";
|
|
718
|
-
const _vSGI = "vpcSecurityGroupIds";
|
|
719
|
-
const _vSGIp = "vpcSecurityGroupId";
|
|
720
|
-
const _w = "workgroup";
|
|
721
|
-
const _wA = "workgroupArn";
|
|
722
|
-
const _wI = "workgroupId";
|
|
723
|
-
const _wN = "workgroupName";
|
|
724
|
-
const _wNo = "workgroupNames";
|
|
725
|
-
const _wV = "workgroupVersion";
|
|
726
|
-
const _wo = "workgroups";
|
|
727
|
-
const n0 = "com.amazonaws.redshiftserverless";
|
|
728
|
-
var DbPassword = [0, n0, _DP, 8, 0];
|
|
729
|
-
var DbUser = [0, n0, _DU, 8, 0];
|
|
730
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
731
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
732
|
-
[_co, _m],
|
|
733
|
-
[0, 0]
|
|
734
|
-
];
|
|
735
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
736
|
-
var Association$ = [3, n0, _A,
|
|
737
|
-
0,
|
|
738
|
-
[_cDCA, _cDCET, _cDN, _wN],
|
|
739
|
-
[0, 5, 0, 0]
|
|
740
|
-
];
|
|
741
|
-
var ConfigParameter$ = [3, n0, _CP,
|
|
742
|
-
0,
|
|
743
|
-
[_pK, _pV],
|
|
744
|
-
[0, 0]
|
|
745
|
-
];
|
|
746
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
747
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
748
|
-
[_m],
|
|
749
|
-
[0], 1
|
|
750
|
-
];
|
|
751
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
752
|
-
var ConvertRecoveryPointToSnapshotRequest$ = [3, n0, _CRPTSR,
|
|
753
|
-
0,
|
|
754
|
-
[_rPI, _sN, _rP, _t],
|
|
755
|
-
[0, 0, 1, () => TagList], 2
|
|
756
|
-
];
|
|
757
|
-
var ConvertRecoveryPointToSnapshotResponse$ = [3, n0, _CRPTSRo,
|
|
758
|
-
0,
|
|
759
|
-
[_s],
|
|
760
|
-
[() => Snapshot$]
|
|
761
|
-
];
|
|
762
|
-
var CreateCustomDomainAssociationRequest$ = [3, n0, _CCDAR,
|
|
763
|
-
0,
|
|
764
|
-
[_wN, _cDN, _cDCA],
|
|
765
|
-
[0, 0, 0], 3
|
|
766
|
-
];
|
|
767
|
-
var CreateCustomDomainAssociationResponse$ = [3, n0, _CCDARr,
|
|
768
|
-
0,
|
|
769
|
-
[_cDN, _wN, _cDCA, _cDCET],
|
|
770
|
-
[0, 0, 0, 5]
|
|
771
|
-
];
|
|
772
|
-
var CreateEndpointAccessRequest$ = [3, n0, _CEAR,
|
|
773
|
-
0,
|
|
774
|
-
[_eN, _sI, _wN, _vSGI, _oA],
|
|
775
|
-
[0, 64 | 0, 0, 64 | 0, 0], 3
|
|
776
|
-
];
|
|
777
|
-
var CreateEndpointAccessResponse$ = [3, n0, _CEARr,
|
|
778
|
-
0,
|
|
779
|
-
[_en],
|
|
780
|
-
[() => EndpointAccess$]
|
|
781
|
-
];
|
|
782
|
-
var CreateNamespaceRequest$ = [3, n0, _CNR,
|
|
783
|
-
0,
|
|
784
|
-
[_nN, _aU, _aUP, _dN, _kKI, _dIRA, _iR, _lE, _t, _mAP, _aPSKKI, _rIAA],
|
|
785
|
-
[0, [() => DbUser, 0], [() => DbPassword, 0], 0, 0, 0, 64 | 0, 64 | 0, () => TagList, 2, 0, 0], 1
|
|
786
|
-
];
|
|
787
|
-
var CreateNamespaceResponse$ = [3, n0, _CNRr,
|
|
788
|
-
0,
|
|
789
|
-
[_n],
|
|
790
|
-
[[() => Namespace$, 0]]
|
|
791
|
-
];
|
|
792
|
-
var CreateReservationRequest$ = [3, n0, _CRR,
|
|
793
|
-
0,
|
|
794
|
-
[_ca, _oI, _cT],
|
|
795
|
-
[1, 0, [0, 4]], 2
|
|
796
|
-
];
|
|
797
|
-
var CreateReservationResponse$ = [3, n0, _CRRr,
|
|
798
|
-
0,
|
|
799
|
-
[_r],
|
|
800
|
-
[() => Reservation$]
|
|
801
|
-
];
|
|
802
|
-
var CreateScheduledActionRequest$ = [3, n0, _CSAR,
|
|
803
|
-
0,
|
|
804
|
-
[_sAN, _tA, _sc, _rA, _nN, _ena, _sAD, _sT, _eT],
|
|
805
|
-
[0, () => TargetAction$, () => Schedule$, 0, 0, 2, 0, 4, 4], 5
|
|
806
|
-
];
|
|
807
|
-
var CreateScheduledActionResponse$ = [3, n0, _CSARr,
|
|
808
|
-
0,
|
|
809
|
-
[_sA],
|
|
810
|
-
[() => ScheduledActionResponse$]
|
|
811
|
-
];
|
|
812
|
-
var CreateSnapshotCopyConfigurationRequest$ = [3, n0, _CSCCR,
|
|
813
|
-
0,
|
|
814
|
-
[_nN, _dR, _sRP, _dKKI],
|
|
815
|
-
[0, 0, 1, 0], 2
|
|
816
|
-
];
|
|
817
|
-
var CreateSnapshotCopyConfigurationResponse$ = [3, n0, _CSCCRr,
|
|
818
|
-
0,
|
|
819
|
-
[_sCC],
|
|
820
|
-
[() => SnapshotCopyConfiguration$], 1
|
|
821
|
-
];
|
|
822
|
-
var CreateSnapshotRequest$ = [3, n0, _CSR,
|
|
823
|
-
0,
|
|
824
|
-
[_nN, _sN, _rP, _t],
|
|
825
|
-
[0, 0, 1, () => TagList], 2
|
|
826
|
-
];
|
|
827
|
-
var CreateSnapshotResponse$ = [3, n0, _CSRr,
|
|
828
|
-
0,
|
|
829
|
-
[_s],
|
|
830
|
-
[() => Snapshot$]
|
|
831
|
-
];
|
|
832
|
-
var CreateSnapshotScheduleActionParameters$ = [3, n0, _CSSAP,
|
|
833
|
-
0,
|
|
834
|
-
[_nN, _sNP, _rP, _t],
|
|
835
|
-
[0, 0, 1, () => TagList], 2
|
|
836
|
-
];
|
|
837
|
-
var CreateUsageLimitRequest$ = [3, n0, _CULR,
|
|
838
|
-
0,
|
|
839
|
-
[_rAe, _uT, _a, _p, _bA],
|
|
840
|
-
[0, 0, 1, 0, 0], 3
|
|
841
|
-
];
|
|
842
|
-
var CreateUsageLimitResponse$ = [3, n0, _CULRr,
|
|
843
|
-
0,
|
|
844
|
-
[_uL],
|
|
845
|
-
[() => UsageLimit$]
|
|
846
|
-
];
|
|
847
|
-
var CreateWorkgroupRequest$ = [3, n0, _CWR,
|
|
848
|
-
0,
|
|
849
|
-
[_wN, _nN, _bC, _eVR, _cP, _sGI, _sI, _pA, _t, _po, _mC, _pPT, _iAT, _tN, _eCFAO],
|
|
850
|
-
[0, 0, 1, 2, () => ConfigParameterList, 64 | 0, 64 | 0, 2, () => TagList, 1, 1, () => PerformanceTarget$, 0, 0, 2], 2
|
|
851
|
-
];
|
|
852
|
-
var CreateWorkgroupResponse$ = [3, n0, _CWRr,
|
|
853
|
-
0,
|
|
854
|
-
[_w],
|
|
855
|
-
[() => Workgroup$]
|
|
856
|
-
];
|
|
857
|
-
var DeleteCustomDomainAssociationRequest$ = [3, n0, _DCDAR,
|
|
858
|
-
0,
|
|
859
|
-
[_wN, _cDN],
|
|
860
|
-
[0, 0], 2
|
|
861
|
-
];
|
|
862
|
-
var DeleteCustomDomainAssociationResponse$ = [3, n0, _DCDARe,
|
|
863
|
-
0,
|
|
864
|
-
[],
|
|
865
|
-
[]
|
|
866
|
-
];
|
|
867
|
-
var DeleteEndpointAccessRequest$ = [3, n0, _DEAR,
|
|
868
|
-
0,
|
|
869
|
-
[_eN],
|
|
870
|
-
[0], 1
|
|
871
|
-
];
|
|
872
|
-
var DeleteEndpointAccessResponse$ = [3, n0, _DEARe,
|
|
873
|
-
0,
|
|
874
|
-
[_en],
|
|
875
|
-
[() => EndpointAccess$]
|
|
876
|
-
];
|
|
877
|
-
var DeleteNamespaceRequest$ = [3, n0, _DNR,
|
|
878
|
-
0,
|
|
879
|
-
[_nN, _fSN, _fSRP],
|
|
880
|
-
[0, 0, 1], 1
|
|
881
|
-
];
|
|
882
|
-
var DeleteNamespaceResponse$ = [3, n0, _DNRe,
|
|
883
|
-
0,
|
|
884
|
-
[_n],
|
|
885
|
-
[[() => Namespace$, 0]], 1
|
|
886
|
-
];
|
|
887
|
-
var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
|
|
888
|
-
0,
|
|
889
|
-
[_rAe],
|
|
890
|
-
[0], 1
|
|
891
|
-
];
|
|
892
|
-
var DeleteResourcePolicyResponse$ = [3, n0, _DRPRe,
|
|
893
|
-
0,
|
|
894
|
-
[],
|
|
895
|
-
[]
|
|
896
|
-
];
|
|
897
|
-
var DeleteScheduledActionRequest$ = [3, n0, _DSAR,
|
|
898
|
-
0,
|
|
899
|
-
[_sAN],
|
|
900
|
-
[0], 1
|
|
901
|
-
];
|
|
902
|
-
var DeleteScheduledActionResponse$ = [3, n0, _DSARe,
|
|
903
|
-
0,
|
|
904
|
-
[_sA],
|
|
905
|
-
[() => ScheduledActionResponse$]
|
|
906
|
-
];
|
|
907
|
-
var DeleteSnapshotCopyConfigurationRequest$ = [3, n0, _DSCCR,
|
|
908
|
-
0,
|
|
909
|
-
[_sCCI],
|
|
910
|
-
[0], 1
|
|
911
|
-
];
|
|
912
|
-
var DeleteSnapshotCopyConfigurationResponse$ = [3, n0, _DSCCRe,
|
|
913
|
-
0,
|
|
914
|
-
[_sCC],
|
|
915
|
-
[() => SnapshotCopyConfiguration$], 1
|
|
916
|
-
];
|
|
917
|
-
var DeleteSnapshotRequest$ = [3, n0, _DSR,
|
|
918
|
-
0,
|
|
919
|
-
[_sN],
|
|
920
|
-
[0], 1
|
|
921
|
-
];
|
|
922
|
-
var DeleteSnapshotResponse$ = [3, n0, _DSRe,
|
|
923
|
-
0,
|
|
924
|
-
[_s],
|
|
925
|
-
[() => Snapshot$]
|
|
926
|
-
];
|
|
927
|
-
var DeleteUsageLimitRequest$ = [3, n0, _DULR,
|
|
928
|
-
0,
|
|
929
|
-
[_uLI],
|
|
930
|
-
[0], 1
|
|
931
|
-
];
|
|
932
|
-
var DeleteUsageLimitResponse$ = [3, n0, _DULRe,
|
|
933
|
-
0,
|
|
934
|
-
[_uL],
|
|
935
|
-
[() => UsageLimit$]
|
|
936
|
-
];
|
|
937
|
-
var DeleteWorkgroupRequest$ = [3, n0, _DWR,
|
|
938
|
-
0,
|
|
939
|
-
[_wN],
|
|
940
|
-
[0], 1
|
|
941
|
-
];
|
|
942
|
-
var DeleteWorkgroupResponse$ = [3, n0, _DWRe,
|
|
943
|
-
0,
|
|
944
|
-
[_w],
|
|
945
|
-
[() => Workgroup$], 1
|
|
946
|
-
];
|
|
947
|
-
var DryRunException$ = [-3, n0, _DRE,
|
|
948
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
949
|
-
[_m],
|
|
950
|
-
[0], 1
|
|
951
|
-
];
|
|
952
|
-
schema.TypeRegistry.for(n0).registerError(DryRunException$, DryRunException);
|
|
953
|
-
var Endpoint$ = [3, n0, _E,
|
|
954
|
-
0,
|
|
955
|
-
[_ad, _po, _vE],
|
|
956
|
-
[0, 1, () => VpcEndpointList]
|
|
957
|
-
];
|
|
958
|
-
var EndpointAccess$ = [3, n0, _EA,
|
|
959
|
-
0,
|
|
960
|
-
[_eN, _eS, _wN, _eCT, _po, _ad, _sI, _vSG, _vEp, _eA],
|
|
961
|
-
[0, 0, 0, 5, 1, 0, 64 | 0, () => VpcSecurityGroupMembershipList, () => VpcEndpoint$, 0]
|
|
962
|
-
];
|
|
963
|
-
var GetCredentialsRequest$ = [3, n0, _GCR,
|
|
964
|
-
0,
|
|
965
|
-
[_dN, _dS, _wN, _cDN],
|
|
966
|
-
[0, 1, 0, 0]
|
|
967
|
-
];
|
|
968
|
-
var GetCredentialsResponse$ = [3, n0, _GCRe,
|
|
969
|
-
0,
|
|
970
|
-
[_dU, _dP, _ex, _nRT],
|
|
971
|
-
[[() => DbUser, 0], [() => DbPassword, 0], 4, 4]
|
|
972
|
-
];
|
|
973
|
-
var GetCustomDomainAssociationRequest$ = [3, n0, _GCDAR,
|
|
974
|
-
0,
|
|
975
|
-
[_cDN, _wN],
|
|
976
|
-
[0, 0], 2
|
|
977
|
-
];
|
|
978
|
-
var GetCustomDomainAssociationResponse$ = [3, n0, _GCDARe,
|
|
979
|
-
0,
|
|
980
|
-
[_cDN, _wN, _cDCA, _cDCET],
|
|
981
|
-
[0, 0, 0, 5]
|
|
982
|
-
];
|
|
983
|
-
var GetEndpointAccessRequest$ = [3, n0, _GEAR,
|
|
984
|
-
0,
|
|
985
|
-
[_eN],
|
|
986
|
-
[0], 1
|
|
987
|
-
];
|
|
988
|
-
var GetEndpointAccessResponse$ = [3, n0, _GEARe,
|
|
989
|
-
0,
|
|
990
|
-
[_en],
|
|
991
|
-
[() => EndpointAccess$]
|
|
992
|
-
];
|
|
993
|
-
var GetIdentityCenterAuthTokenRequest$ = [3, n0, _GICATR,
|
|
994
|
-
0,
|
|
995
|
-
[_wNo],
|
|
996
|
-
[64 | 0], 1
|
|
997
|
-
];
|
|
998
|
-
var GetIdentityCenterAuthTokenResponse$ = [3, n0, _GICATRe,
|
|
999
|
-
8,
|
|
1000
|
-
[_to, _eTx],
|
|
1001
|
-
[[0, { [_jN]: _T }], [5, { [_jN]: _ET }]]
|
|
1002
|
-
];
|
|
1003
|
-
var GetNamespaceRequest$ = [3, n0, _GNR,
|
|
1004
|
-
0,
|
|
1005
|
-
[_nN],
|
|
1006
|
-
[0], 1
|
|
1007
|
-
];
|
|
1008
|
-
var GetNamespaceResponse$ = [3, n0, _GNRe,
|
|
1009
|
-
0,
|
|
1010
|
-
[_n],
|
|
1011
|
-
[[() => Namespace$, 0]], 1
|
|
1012
|
-
];
|
|
1013
|
-
var GetRecoveryPointRequest$ = [3, n0, _GRPR,
|
|
1014
|
-
0,
|
|
1015
|
-
[_rPI],
|
|
1016
|
-
[0], 1
|
|
1017
|
-
];
|
|
1018
|
-
var GetRecoveryPointResponse$ = [3, n0, _GRPRe,
|
|
1019
|
-
0,
|
|
1020
|
-
[_rPe],
|
|
1021
|
-
[() => RecoveryPoint$]
|
|
1022
|
-
];
|
|
1023
|
-
var GetReservationOfferingRequest$ = [3, n0, _GROR,
|
|
1024
|
-
0,
|
|
1025
|
-
[_oI],
|
|
1026
|
-
[0], 1
|
|
1027
|
-
];
|
|
1028
|
-
var GetReservationOfferingResponse$ = [3, n0, _GRORe,
|
|
1029
|
-
0,
|
|
1030
|
-
[_rO],
|
|
1031
|
-
[() => ReservationOffering$], 1
|
|
1032
|
-
];
|
|
1033
|
-
var GetReservationRequest$ = [3, n0, _GRR,
|
|
1034
|
-
0,
|
|
1035
|
-
[_rI],
|
|
1036
|
-
[0], 1
|
|
1037
|
-
];
|
|
1038
|
-
var GetReservationResponse$ = [3, n0, _GRRe,
|
|
1039
|
-
0,
|
|
1040
|
-
[_r],
|
|
1041
|
-
[() => Reservation$], 1
|
|
1042
|
-
];
|
|
1043
|
-
var GetResourcePolicyRequest$ = [3, n0, _GRPRet,
|
|
1044
|
-
0,
|
|
1045
|
-
[_rAe],
|
|
1046
|
-
[0], 1
|
|
1047
|
-
];
|
|
1048
|
-
var GetResourcePolicyResponse$ = [3, n0, _GRPRete,
|
|
1049
|
-
0,
|
|
1050
|
-
[_rPes],
|
|
1051
|
-
[() => ResourcePolicy$]
|
|
1052
|
-
];
|
|
1053
|
-
var GetScheduledActionRequest$ = [3, n0, _GSAR,
|
|
1054
|
-
0,
|
|
1055
|
-
[_sAN],
|
|
1056
|
-
[0], 1
|
|
1057
|
-
];
|
|
1058
|
-
var GetScheduledActionResponse$ = [3, n0, _GSARe,
|
|
1059
|
-
0,
|
|
1060
|
-
[_sA],
|
|
1061
|
-
[() => ScheduledActionResponse$]
|
|
1062
|
-
];
|
|
1063
|
-
var GetSnapshotRequest$ = [3, n0, _GSR,
|
|
1064
|
-
0,
|
|
1065
|
-
[_sN, _oA, _sAn],
|
|
1066
|
-
[0, 0, 0]
|
|
1067
|
-
];
|
|
1068
|
-
var GetSnapshotResponse$ = [3, n0, _GSRe,
|
|
1069
|
-
0,
|
|
1070
|
-
[_s],
|
|
1071
|
-
[() => Snapshot$]
|
|
1072
|
-
];
|
|
1073
|
-
var GetTableRestoreStatusRequest$ = [3, n0, _GTRSR,
|
|
1074
|
-
0,
|
|
1075
|
-
[_tRRI],
|
|
1076
|
-
[0], 1
|
|
1077
|
-
];
|
|
1078
|
-
var GetTableRestoreStatusResponse$ = [3, n0, _GTRSRe,
|
|
1079
|
-
0,
|
|
1080
|
-
[_tRS],
|
|
1081
|
-
[() => TableRestoreStatus$]
|
|
1082
|
-
];
|
|
1083
|
-
var GetTrackRequest$ = [3, n0, _GTR,
|
|
1084
|
-
0,
|
|
1085
|
-
[_tN],
|
|
1086
|
-
[0], 1
|
|
1087
|
-
];
|
|
1088
|
-
var GetTrackResponse$ = [3, n0, _GTRe,
|
|
1089
|
-
0,
|
|
1090
|
-
[_tr],
|
|
1091
|
-
[() => ServerlessTrack$]
|
|
1092
|
-
];
|
|
1093
|
-
var GetUsageLimitRequest$ = [3, n0, _GULR,
|
|
1094
|
-
0,
|
|
1095
|
-
[_uLI],
|
|
1096
|
-
[0], 1
|
|
1097
|
-
];
|
|
1098
|
-
var GetUsageLimitResponse$ = [3, n0, _GULRe,
|
|
1099
|
-
0,
|
|
1100
|
-
[_uL],
|
|
1101
|
-
[() => UsageLimit$]
|
|
1102
|
-
];
|
|
1103
|
-
var GetWorkgroupRequest$ = [3, n0, _GWR,
|
|
1104
|
-
0,
|
|
1105
|
-
[_wN],
|
|
1106
|
-
[0], 1
|
|
1107
|
-
];
|
|
1108
|
-
var GetWorkgroupResponse$ = [3, n0, _GWRe,
|
|
1109
|
-
0,
|
|
1110
|
-
[_w],
|
|
1111
|
-
[() => Workgroup$], 1
|
|
1112
|
-
];
|
|
1113
|
-
var InsufficientCapacityException$ = [-3, n0, _ICE,
|
|
1114
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1115
|
-
[_m],
|
|
1116
|
-
[0], 1
|
|
1117
|
-
];
|
|
1118
|
-
schema.TypeRegistry.for(n0).registerError(InsufficientCapacityException$, InsufficientCapacityException);
|
|
1119
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
1120
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1121
|
-
[_m],
|
|
1122
|
-
[0], 1
|
|
1123
|
-
];
|
|
1124
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
1125
|
-
var InvalidPaginationException$ = [-3, n0, _IPE,
|
|
1126
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1127
|
-
[_m],
|
|
1128
|
-
[0], 1
|
|
1129
|
-
];
|
|
1130
|
-
schema.TypeRegistry.for(n0).registerError(InvalidPaginationException$, InvalidPaginationException);
|
|
1131
|
-
var Ipv6CidrBlockNotFoundException$ = [-3, n0, _ICBNFE,
|
|
1132
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1133
|
-
[_m],
|
|
1134
|
-
[0], 1
|
|
1135
|
-
];
|
|
1136
|
-
schema.TypeRegistry.for(n0).registerError(Ipv6CidrBlockNotFoundException$, Ipv6CidrBlockNotFoundException);
|
|
1137
|
-
var ListCustomDomainAssociationsRequest$ = [3, n0, _LCDAR,
|
|
1138
|
-
0,
|
|
1139
|
-
[_nT, _mR, _cDN, _cDCA],
|
|
1140
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], 0, 0]
|
|
1141
|
-
];
|
|
1142
|
-
var ListCustomDomainAssociationsResponse$ = [3, n0, _LCDARi,
|
|
1143
|
-
0,
|
|
1144
|
-
[_nT, _as],
|
|
1145
|
-
[0, () => AssociationList]
|
|
1146
|
-
];
|
|
1147
|
-
var ListEndpointAccessRequest$ = [3, n0, _LEAR,
|
|
1148
|
-
0,
|
|
1149
|
-
[_nT, _mR, _wN, _vI, _oA],
|
|
1150
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], 0, 0, 0]
|
|
1151
|
-
];
|
|
1152
|
-
var ListEndpointAccessResponse$ = [3, n0, _LEARi,
|
|
1153
|
-
0,
|
|
1154
|
-
[_end, _nT],
|
|
1155
|
-
[() => EndpointAccessList, 0], 1
|
|
1156
|
-
];
|
|
1157
|
-
var ListManagedWorkgroupsRequest$ = [3, n0, _LMWR,
|
|
1158
|
-
0,
|
|
1159
|
-
[_sAo, _nT, _mR],
|
|
1160
|
-
[0, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1161
|
-
];
|
|
1162
|
-
var ListManagedWorkgroupsResponse$ = [3, n0, _LMWRi,
|
|
1163
|
-
0,
|
|
1164
|
-
[_nT, _mW],
|
|
1165
|
-
[0, () => ManagedWorkgroups]
|
|
1166
|
-
];
|
|
1167
|
-
var ListNamespacesRequest$ = [3, n0, _LNR,
|
|
1168
|
-
0,
|
|
1169
|
-
[_nT, _mR],
|
|
1170
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1171
|
-
];
|
|
1172
|
-
var ListNamespacesResponse$ = [3, n0, _LNRi,
|
|
1173
|
-
0,
|
|
1174
|
-
[_na, _nT],
|
|
1175
|
-
[[() => NamespaceList, 0], 0], 1
|
|
1176
|
-
];
|
|
1177
|
-
var ListRecoveryPointsRequest$ = [3, n0, _LRPR,
|
|
1178
|
-
0,
|
|
1179
|
-
[_nT, _mR, _sT, _eT, _nN, _nA],
|
|
1180
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], 4, 4, 0, 0]
|
|
1181
|
-
];
|
|
1182
|
-
var ListRecoveryPointsResponse$ = [3, n0, _LRPRi,
|
|
1183
|
-
0,
|
|
1184
|
-
[_rPec, _nT],
|
|
1185
|
-
[() => RecoveryPointList, 0]
|
|
1186
|
-
];
|
|
1187
|
-
var ListReservationOfferingsRequest$ = [3, n0, _LROR,
|
|
1188
|
-
0,
|
|
1189
|
-
[_nT, _mR],
|
|
1190
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1191
|
-
];
|
|
1192
|
-
var ListReservationOfferingsResponse$ = [3, n0, _LRORi,
|
|
1193
|
-
0,
|
|
1194
|
-
[_rOL, _nT],
|
|
1195
|
-
[() => ReservationOfferingsList, 0], 1
|
|
1196
|
-
];
|
|
1197
|
-
var ListReservationsRequest$ = [3, n0, _LRR,
|
|
1198
|
-
0,
|
|
1199
|
-
[_nT, _mR],
|
|
1200
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1201
|
-
];
|
|
1202
|
-
var ListReservationsResponse$ = [3, n0, _LRRi,
|
|
1203
|
-
0,
|
|
1204
|
-
[_rL, _nT],
|
|
1205
|
-
[() => ReservationsList, 0], 1
|
|
1206
|
-
];
|
|
1207
|
-
var ListScheduledActionsRequest$ = [3, n0, _LSAR,
|
|
1208
|
-
0,
|
|
1209
|
-
[_nT, _mR, _nN],
|
|
1210
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], 0]
|
|
1211
|
-
];
|
|
1212
|
-
var ListScheduledActionsResponse$ = [3, n0, _LSARi,
|
|
1213
|
-
0,
|
|
1214
|
-
[_nT, _sAc],
|
|
1215
|
-
[0, () => ScheduledActionsList]
|
|
1216
|
-
];
|
|
1217
|
-
var ListSnapshotCopyConfigurationsRequest$ = [3, n0, _LSCCR,
|
|
1218
|
-
0,
|
|
1219
|
-
[_nN, _nT, _mR],
|
|
1220
|
-
[0, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1221
|
-
];
|
|
1222
|
-
var ListSnapshotCopyConfigurationsResponse$ = [3, n0, _LSCCRi,
|
|
1223
|
-
0,
|
|
1224
|
-
[_sCCn, _nT],
|
|
1225
|
-
[() => SnapshotCopyConfigurations, 0], 1
|
|
1226
|
-
];
|
|
1227
|
-
var ListSnapshotsRequest$ = [3, n0, _LSR,
|
|
1228
|
-
0,
|
|
1229
|
-
[_nT, _mR, _nN, _nA, _oA, _sT, _eT],
|
|
1230
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], 0, 0, 0, 4, 4]
|
|
1231
|
-
];
|
|
1232
|
-
var ListSnapshotsResponse$ = [3, n0, _LSRi,
|
|
1233
|
-
0,
|
|
1234
|
-
[_nT, _sn],
|
|
1235
|
-
[0, () => SnapshotList]
|
|
1236
|
-
];
|
|
1237
|
-
var ListTableRestoreStatusRequest$ = [3, n0, _LTRSR,
|
|
1238
|
-
0,
|
|
1239
|
-
[_nT, _mR, _nN, _wN],
|
|
1240
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], 0, 0]
|
|
1241
|
-
];
|
|
1242
|
-
var ListTableRestoreStatusResponse$ = [3, n0, _LTRSRi,
|
|
1243
|
-
0,
|
|
1244
|
-
[_nT, _tRSa],
|
|
1245
|
-
[0, () => TableRestoreStatusList]
|
|
1246
|
-
];
|
|
1247
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1248
|
-
0,
|
|
1249
|
-
[_rAe],
|
|
1250
|
-
[0], 1
|
|
1251
|
-
];
|
|
1252
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1253
|
-
0,
|
|
1254
|
-
[_t],
|
|
1255
|
-
[() => TagList]
|
|
1256
|
-
];
|
|
1257
|
-
var ListTracksRequest$ = [3, n0, _LTR,
|
|
1258
|
-
0,
|
|
1259
|
-
[_nT, _mR],
|
|
1260
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1261
|
-
];
|
|
1262
|
-
var ListTracksResponse$ = [3, n0, _LTRi,
|
|
1263
|
-
0,
|
|
1264
|
-
[_tra, _nT],
|
|
1265
|
-
[() => TrackList, 0]
|
|
1266
|
-
];
|
|
1267
|
-
var ListUsageLimitsRequest$ = [3, n0, _LULR,
|
|
1268
|
-
0,
|
|
1269
|
-
[_rAe, _uT, _nT, _mR],
|
|
1270
|
-
[0, 0, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1271
|
-
];
|
|
1272
|
-
var ListUsageLimitsResponse$ = [3, n0, _LULRi,
|
|
1273
|
-
0,
|
|
1274
|
-
[_uLs, _nT],
|
|
1275
|
-
[() => UsageLimits, 0]
|
|
1276
|
-
];
|
|
1277
|
-
var ListWorkgroupsRequest$ = [3, n0, _LWR,
|
|
1278
|
-
0,
|
|
1279
|
-
[_nT, _mR, _oA],
|
|
1280
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], 0]
|
|
1281
|
-
];
|
|
1282
|
-
var ListWorkgroupsResponse$ = [3, n0, _LWRi,
|
|
1283
|
-
0,
|
|
1284
|
-
[_wo, _nT],
|
|
1285
|
-
[() => WorkgroupList, 0], 1
|
|
1286
|
-
];
|
|
1287
|
-
var ManagedWorkgroupListItem$ = [3, n0, _MWLI,
|
|
1288
|
-
0,
|
|
1289
|
-
[_mWN, _mWI, _sAo, _st, _cD],
|
|
1290
|
-
[0, 0, 0, 0, 5]
|
|
1291
|
-
];
|
|
1292
|
-
var Namespace$ = [3, n0, _N,
|
|
1293
|
-
0,
|
|
1294
|
-
[_nA, _nI, _nN, _aU, _dN, _kKI, _dIRA, _iR, _lE, _st, _cD, _aPSA, _aPSKKI, _lRS, _cA],
|
|
1295
|
-
[0, 0, 0, [() => DbUser, 0], 0, 0, 0, 64 | 0, 64 | 0, 0, 5, 0, 0, 0, 0]
|
|
1296
|
-
];
|
|
1297
|
-
var NetworkInterface$ = [3, n0, _NI,
|
|
1298
|
-
0,
|
|
1299
|
-
[_nII, _sIu, _pIA, _aZ, _iA],
|
|
1300
|
-
[0, 0, 0, 0, 0]
|
|
1301
|
-
];
|
|
1302
|
-
var PerformanceTarget$ = [3, n0, _PT,
|
|
1303
|
-
0,
|
|
1304
|
-
[_st, _l],
|
|
1305
|
-
[0, 1]
|
|
1306
|
-
];
|
|
1307
|
-
var PutResourcePolicyRequest$ = [3, n0, _PRPR,
|
|
1308
|
-
0,
|
|
1309
|
-
[_rAe, _pol],
|
|
1310
|
-
[0, 0], 2
|
|
1311
|
-
];
|
|
1312
|
-
var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
|
|
1313
|
-
0,
|
|
1314
|
-
[_rPes],
|
|
1315
|
-
[() => ResourcePolicy$]
|
|
1316
|
-
];
|
|
1317
|
-
var RecoveryPoint$ = [3, n0, _RP,
|
|
1318
|
-
0,
|
|
1319
|
-
[_rPI, _rPCT, _tSIMB, _nN, _wN, _nA],
|
|
1320
|
-
[0, 5, 1, 0, 0, 0]
|
|
1321
|
-
];
|
|
1322
|
-
var Reservation$ = [3, n0, _R,
|
|
1323
|
-
0,
|
|
1324
|
-
[_rI, _rAes, _sD, _eD, _ca, _o, _st],
|
|
1325
|
-
[0, 0, 5, 5, 1, () => ReservationOffering$, 0]
|
|
1326
|
-
];
|
|
1327
|
-
var ReservationOffering$ = [3, n0, _RO,
|
|
1328
|
-
0,
|
|
1329
|
-
[_oI, _d, _uC, _hC, _cC, _oT],
|
|
1330
|
-
[0, 1, 1, 1, 0, 0]
|
|
1331
|
-
];
|
|
1332
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1333
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1334
|
-
[_m, _rN],
|
|
1335
|
-
[0, 0], 1
|
|
1336
|
-
];
|
|
1337
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1338
|
-
var ResourcePolicy$ = [3, n0, _RPe,
|
|
1339
|
-
0,
|
|
1340
|
-
[_rAe, _pol],
|
|
1341
|
-
[0, 0]
|
|
1342
|
-
];
|
|
1343
|
-
var RestoreFromRecoveryPointRequest$ = [3, n0, _RFRPR,
|
|
1344
|
-
0,
|
|
1345
|
-
[_rPI, _nN, _wN],
|
|
1346
|
-
[0, 0, 0], 3
|
|
1347
|
-
];
|
|
1348
|
-
var RestoreFromRecoveryPointResponse$ = [3, n0, _RFRPRe,
|
|
1349
|
-
0,
|
|
1350
|
-
[_rPI, _n],
|
|
1351
|
-
[0, [() => Namespace$, 0]]
|
|
1352
|
-
];
|
|
1353
|
-
var RestoreFromSnapshotRequest$ = [3, n0, _RFSR,
|
|
1354
|
-
0,
|
|
1355
|
-
[_nN, _wN, _sN, _sAn, _oA, _mAP, _aPSKKI],
|
|
1356
|
-
[0, 0, 0, 0, 0, 2, 0], 2
|
|
1357
|
-
];
|
|
1358
|
-
var RestoreFromSnapshotResponse$ = [3, n0, _RFSRe,
|
|
1359
|
-
0,
|
|
1360
|
-
[_sN, _oA, _n],
|
|
1361
|
-
[0, 0, [() => Namespace$, 0]]
|
|
1362
|
-
];
|
|
1363
|
-
var RestoreTableFromRecoveryPointRequest$ = [3, n0, _RTFRPR,
|
|
1364
|
-
0,
|
|
1365
|
-
[_nN, _wN, _rPI, _sDN, _sTN, _nTN, _sSN, _tDN, _tSN, _aCSI],
|
|
1366
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 2], 6
|
|
1367
|
-
];
|
|
1368
|
-
var RestoreTableFromRecoveryPointResponse$ = [3, n0, _RTFRPRe,
|
|
1369
|
-
0,
|
|
1370
|
-
[_tRS],
|
|
1371
|
-
[() => TableRestoreStatus$]
|
|
1372
|
-
];
|
|
1373
|
-
var RestoreTableFromSnapshotRequest$ = [3, n0, _RTFSR,
|
|
1374
|
-
0,
|
|
1375
|
-
[_nN, _wN, _sN, _sDN, _sTN, _nTN, _sSN, _tDN, _tSN, _aCSI],
|
|
1376
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 2], 6
|
|
1377
|
-
];
|
|
1378
|
-
var RestoreTableFromSnapshotResponse$ = [3, n0, _RTFSRe,
|
|
1379
|
-
0,
|
|
1380
|
-
[_tRS],
|
|
1381
|
-
[() => TableRestoreStatus$]
|
|
1382
|
-
];
|
|
1383
|
-
var ScheduledActionAssociation$ = [3, n0, _SAA,
|
|
1384
|
-
0,
|
|
1385
|
-
[_nN, _sAN],
|
|
1386
|
-
[0, 0]
|
|
1387
|
-
];
|
|
1388
|
-
var ScheduledActionResponse$ = [3, n0, _SAR,
|
|
1389
|
-
0,
|
|
1390
|
-
[_sAN, _sc, _sAD, _nIe, _rA, _sta, _sT, _eT, _tA, _nN, _sAU],
|
|
1391
|
-
[0, () => Schedule$, 0, 64 | 4, 0, 0, 4, 4, () => TargetAction$, 0, 0]
|
|
1392
|
-
];
|
|
1393
|
-
var ServerlessTrack$ = [3, n0, _ST,
|
|
1394
|
-
0,
|
|
1395
|
-
[_tN, _wV, _uTp],
|
|
1396
|
-
[0, 0, () => UpdateTargetsList]
|
|
1397
|
-
];
|
|
1398
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1399
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1400
|
-
[_m],
|
|
1401
|
-
[0], 1
|
|
1402
|
-
];
|
|
1403
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1404
|
-
var Snapshot$ = [3, n0, _S,
|
|
1405
|
-
0,
|
|
1406
|
-
[_nN, _nA, _sN, _sCT, _aU, _st, _kKI, _oA, _tBSIMB, _aIBSIMB, _bPIMB, _cBRIMBPS, _eSTC, _eTIS, _sRP, _sRD, _sRST, _sAn, _aWRA, _aWPRA, _aPSA, _aPSKKI],
|
|
1407
|
-
[0, 0, 0, 5, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 0, 64 | 0, 64 | 0, 0, 0]
|
|
1408
|
-
];
|
|
1409
|
-
var SnapshotCopyConfiguration$ = [3, n0, _SCC,
|
|
1410
|
-
0,
|
|
1411
|
-
[_sCCI, _sCCA, _nN, _dR, _sRP, _dKKI],
|
|
1412
|
-
[0, 0, 0, 0, 1, 0]
|
|
1413
|
-
];
|
|
1414
|
-
var TableRestoreStatus$ = [3, n0, _TRS,
|
|
1415
|
-
0,
|
|
1416
|
-
[_tRRI, _st, _m, _rT, _nN, _wN, _sN, _pIMB, _tDIMB, _sDN, _sSN, _sTN, _tDN, _tSN, _nTN, _rPI],
|
|
1417
|
-
[0, 0, 0, 4, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]
|
|
1418
|
-
];
|
|
1419
|
-
var Tag$ = [3, n0, _Ta,
|
|
1420
|
-
0,
|
|
1421
|
-
[_k, _v],
|
|
1422
|
-
[0, 0], 2
|
|
1423
|
-
];
|
|
1424
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1425
|
-
0,
|
|
1426
|
-
[_rAe, _t],
|
|
1427
|
-
[0, () => TagList], 2
|
|
1428
|
-
];
|
|
1429
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1430
|
-
0,
|
|
1431
|
-
[],
|
|
1432
|
-
[]
|
|
1433
|
-
];
|
|
1434
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1435
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1436
|
-
[_co, _m],
|
|
1437
|
-
[0, 0]
|
|
1438
|
-
];
|
|
1439
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1440
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
1441
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1442
|
-
[_m, _rN],
|
|
1443
|
-
[0, 0]
|
|
1444
|
-
];
|
|
1445
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
1446
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1447
|
-
0,
|
|
1448
|
-
[_rAe, _tK],
|
|
1449
|
-
[0, 64 | 0], 2
|
|
1450
|
-
];
|
|
1451
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1452
|
-
0,
|
|
1453
|
-
[],
|
|
1454
|
-
[]
|
|
1455
|
-
];
|
|
1456
|
-
var UpdateCustomDomainAssociationRequest$ = [3, n0, _UCDAR,
|
|
1457
|
-
0,
|
|
1458
|
-
[_wN, _cDN, _cDCA],
|
|
1459
|
-
[0, 0, 0], 3
|
|
1460
|
-
];
|
|
1461
|
-
var UpdateCustomDomainAssociationResponse$ = [3, n0, _UCDARp,
|
|
1462
|
-
0,
|
|
1463
|
-
[_cDN, _wN, _cDCA, _cDCET],
|
|
1464
|
-
[0, 0, 0, 5]
|
|
1465
|
-
];
|
|
1466
|
-
var UpdateEndpointAccessRequest$ = [3, n0, _UEAR,
|
|
1467
|
-
0,
|
|
1468
|
-
[_eN, _vSGI],
|
|
1469
|
-
[0, 64 | 0], 1
|
|
1470
|
-
];
|
|
1471
|
-
var UpdateEndpointAccessResponse$ = [3, n0, _UEARp,
|
|
1472
|
-
0,
|
|
1473
|
-
[_en],
|
|
1474
|
-
[() => EndpointAccess$]
|
|
1475
|
-
];
|
|
1476
|
-
var UpdateLakehouseConfigurationRequest$ = [3, n0, _ULCR,
|
|
1477
|
-
0,
|
|
1478
|
-
[_nN, _lR, _cN, _lIR, _lIAA, _dRr],
|
|
1479
|
-
[0, 0, 0, 0, 0, 2], 1
|
|
1480
|
-
];
|
|
1481
|
-
var UpdateLakehouseConfigurationResponse$ = [3, n0, _ULCRp,
|
|
1482
|
-
0,
|
|
1483
|
-
[_nN, _lIAA, _lRS, _cA],
|
|
1484
|
-
[0, 0, 0, 0]
|
|
1485
|
-
];
|
|
1486
|
-
var UpdateNamespaceRequest$ = [3, n0, _UNR,
|
|
1487
|
-
0,
|
|
1488
|
-
[_nN, _aUP, _aU, _kKI, _dIRA, _iR, _lE, _mAP, _aPSKKI],
|
|
1489
|
-
[0, [() => DbPassword, 0], [() => DbUser, 0], 0, 0, 64 | 0, 64 | 0, 2, 0], 1
|
|
1490
|
-
];
|
|
1491
|
-
var UpdateNamespaceResponse$ = [3, n0, _UNRp,
|
|
1492
|
-
0,
|
|
1493
|
-
[_n],
|
|
1494
|
-
[[() => Namespace$, 0]], 1
|
|
1495
|
-
];
|
|
1496
|
-
var UpdateScheduledActionRequest$ = [3, n0, _USAR,
|
|
1497
|
-
0,
|
|
1498
|
-
[_sAN, _tA, _sc, _rA, _ena, _sAD, _sT, _eT],
|
|
1499
|
-
[0, () => TargetAction$, () => Schedule$, 0, 2, 0, 4, 4], 1
|
|
1500
|
-
];
|
|
1501
|
-
var UpdateScheduledActionResponse$ = [3, n0, _USARp,
|
|
1502
|
-
0,
|
|
1503
|
-
[_sA],
|
|
1504
|
-
[() => ScheduledActionResponse$]
|
|
1505
|
-
];
|
|
1506
|
-
var UpdateSnapshotCopyConfigurationRequest$ = [3, n0, _USCCR,
|
|
1507
|
-
0,
|
|
1508
|
-
[_sCCI, _sRP],
|
|
1509
|
-
[0, 1], 1
|
|
1510
|
-
];
|
|
1511
|
-
var UpdateSnapshotCopyConfigurationResponse$ = [3, n0, _USCCRp,
|
|
1512
|
-
0,
|
|
1513
|
-
[_sCC],
|
|
1514
|
-
[() => SnapshotCopyConfiguration$], 1
|
|
1515
|
-
];
|
|
1516
|
-
var UpdateSnapshotRequest$ = [3, n0, _USR,
|
|
1517
|
-
0,
|
|
1518
|
-
[_sN, _rP],
|
|
1519
|
-
[0, 1], 1
|
|
1520
|
-
];
|
|
1521
|
-
var UpdateSnapshotResponse$ = [3, n0, _USRp,
|
|
1522
|
-
0,
|
|
1523
|
-
[_s],
|
|
1524
|
-
[() => Snapshot$]
|
|
1525
|
-
];
|
|
1526
|
-
var UpdateTarget$ = [3, n0, _UT,
|
|
1527
|
-
0,
|
|
1528
|
-
[_tN, _wV],
|
|
1529
|
-
[0, 0]
|
|
1530
|
-
];
|
|
1531
|
-
var UpdateUsageLimitRequest$ = [3, n0, _UULR,
|
|
1532
|
-
0,
|
|
1533
|
-
[_uLI, _a, _bA],
|
|
1534
|
-
[0, 1, 0], 1
|
|
1535
|
-
];
|
|
1536
|
-
var UpdateUsageLimitResponse$ = [3, n0, _UULRp,
|
|
1537
|
-
0,
|
|
1538
|
-
[_uL],
|
|
1539
|
-
[() => UsageLimit$]
|
|
1540
|
-
];
|
|
1541
|
-
var UpdateWorkgroupRequest$ = [3, n0, _UWR,
|
|
1542
|
-
0,
|
|
1543
|
-
[_wN, _bC, _eVR, _cP, _pA, _sI, _sGI, _po, _mC, _iAT, _pPT, _tN, _eCFAO],
|
|
1544
|
-
[0, 1, 2, () => ConfigParameterList, 2, 64 | 0, 64 | 0, 1, 1, 0, () => PerformanceTarget$, 0, 2], 1
|
|
1545
|
-
];
|
|
1546
|
-
var UpdateWorkgroupResponse$ = [3, n0, _UWRp,
|
|
1547
|
-
0,
|
|
1548
|
-
[_w],
|
|
1549
|
-
[() => Workgroup$], 1
|
|
1550
|
-
];
|
|
1551
|
-
var UsageLimit$ = [3, n0, _UL,
|
|
1552
|
-
0,
|
|
1553
|
-
[_uLI, _uLA, _rAe, _uT, _a, _p, _bA],
|
|
1554
|
-
[0, 0, 0, 0, 1, 0, 0]
|
|
1555
|
-
];
|
|
1556
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1557
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1558
|
-
[_m],
|
|
1559
|
-
[0], 1
|
|
1560
|
-
];
|
|
1561
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1562
|
-
var VpcEndpoint$ = [3, n0, _VEp,
|
|
1563
|
-
0,
|
|
1564
|
-
[_vEI, _vI, _nIet],
|
|
1565
|
-
[0, 0, () => NetworkInterfaceList]
|
|
1566
|
-
];
|
|
1567
|
-
var VpcSecurityGroupMembership$ = [3, n0, _VSGM,
|
|
1568
|
-
0,
|
|
1569
|
-
[_vSGIp, _st],
|
|
1570
|
-
[0, 0]
|
|
1571
|
-
];
|
|
1572
|
-
var Workgroup$ = [3, n0, _W,
|
|
1573
|
-
0,
|
|
1574
|
-
[_wI, _wA, _wN, _nN, _bC, _eVR, _cP, _sGI, _sI, _st, _en, _pA, _cD, _po, _cDN, _cDCA, _cDCET, _wV, _pVa, _mC, _cAV, _iAT, _pPT, _tN, _pTN, _eCFAO],
|
|
1575
|
-
[0, 0, 0, 0, 1, 2, () => ConfigParameterList, 64 | 0, 64 | 0, 0, () => Endpoint$, 2, 5, 1, 0, 0, 5, 0, 0, 1, 64 | 0, 0, () => PerformanceTarget$, 0, 0, 2]
|
|
1576
|
-
];
|
|
1577
|
-
var RedshiftServerlessServiceException$ = [-3, _sm, "RedshiftServerlessServiceException", 0, [], []];
|
|
1578
|
-
schema.TypeRegistry.for(_sm).registerError(RedshiftServerlessServiceException$, RedshiftServerlessServiceException);
|
|
1579
|
-
var AssociationList = [1, n0, _AL,
|
|
1580
|
-
0, () => Association$
|
|
1581
|
-
];
|
|
1582
|
-
var ConfigParameterList = [1, n0, _CPL,
|
|
1583
|
-
0, () => ConfigParameter$
|
|
1584
|
-
];
|
|
1585
|
-
var EndpointAccessList = [1, n0, _EAL,
|
|
1586
|
-
0, () => EndpointAccess$
|
|
1587
|
-
];
|
|
1588
|
-
var ManagedWorkgroups = [1, n0, _MW,
|
|
1589
|
-
0, () => ManagedWorkgroupListItem$
|
|
1590
|
-
];
|
|
1591
|
-
var NamespaceList = [1, n0, _NL,
|
|
1592
|
-
0, [() => Namespace$,
|
|
1593
|
-
0]
|
|
1594
|
-
];
|
|
1595
|
-
var NetworkInterfaceList = [1, n0, _NIL,
|
|
1596
|
-
0, () => NetworkInterface$
|
|
1597
|
-
];
|
|
1598
|
-
var RecoveryPointList = [1, n0, _RPL,
|
|
1599
|
-
0, () => RecoveryPoint$
|
|
1600
|
-
];
|
|
1601
|
-
var ReservationOfferingsList = [1, n0, _ROL,
|
|
1602
|
-
0, () => ReservationOffering$
|
|
1603
|
-
];
|
|
1604
|
-
var ReservationsList = [1, n0, _RL,
|
|
1605
|
-
0, () => Reservation$
|
|
1606
|
-
];
|
|
1607
|
-
var ScheduledActionsList = [1, n0, _SAL,
|
|
1608
|
-
0, () => ScheduledActionAssociation$
|
|
1609
|
-
];
|
|
1610
|
-
var SnapshotCopyConfigurations = [1, n0, _SCCn,
|
|
1611
|
-
0, () => SnapshotCopyConfiguration$
|
|
1612
|
-
];
|
|
1613
|
-
var SnapshotList = [1, n0, _SL,
|
|
1614
|
-
0, () => Snapshot$
|
|
1615
|
-
];
|
|
1616
|
-
var TableRestoreStatusList = [1, n0, _TRSL,
|
|
1617
|
-
0, () => TableRestoreStatus$
|
|
1618
|
-
];
|
|
1619
|
-
var TagList = [1, n0, _TL,
|
|
1620
|
-
0, () => Tag$
|
|
1621
|
-
];
|
|
1622
|
-
var TrackList = [1, n0, _TLr,
|
|
1623
|
-
0, () => ServerlessTrack$
|
|
1624
|
-
];
|
|
1625
|
-
var UpdateTargetsList = [1, n0, _UTL,
|
|
1626
|
-
0, () => UpdateTarget$
|
|
1627
|
-
];
|
|
1628
|
-
var UsageLimits = [1, n0, _ULs,
|
|
1629
|
-
0, () => UsageLimit$
|
|
1630
|
-
];
|
|
1631
|
-
var VpcEndpointList = [1, n0, _VEL,
|
|
1632
|
-
0, () => VpcEndpoint$
|
|
1633
|
-
];
|
|
1634
|
-
var VpcSecurityGroupMembershipList = [1, n0, _VSGML,
|
|
1635
|
-
0, () => VpcSecurityGroupMembership$
|
|
1636
|
-
];
|
|
1637
|
-
var WorkgroupList = [1, n0, _WL,
|
|
1638
|
-
0, () => Workgroup$
|
|
1639
|
-
];
|
|
1640
|
-
var Schedule$ = [4, n0, _Sc,
|
|
1641
|
-
0,
|
|
1642
|
-
[_at, _cr],
|
|
1643
|
-
[4, 0]
|
|
1644
|
-
];
|
|
1645
|
-
var TargetAction$ = [4, n0, _TA,
|
|
1646
|
-
0,
|
|
1647
|
-
[_cS],
|
|
1648
|
-
[() => CreateSnapshotScheduleActionParameters$]
|
|
1649
|
-
];
|
|
1650
|
-
var ConvertRecoveryPointToSnapshot$ = [9, n0, _CRPTS,
|
|
1651
|
-
0, () => ConvertRecoveryPointToSnapshotRequest$, () => ConvertRecoveryPointToSnapshotResponse$
|
|
1652
|
-
];
|
|
1653
|
-
var CreateCustomDomainAssociation$ = [9, n0, _CCDA,
|
|
1654
|
-
0, () => CreateCustomDomainAssociationRequest$, () => CreateCustomDomainAssociationResponse$
|
|
1655
|
-
];
|
|
1656
|
-
var CreateEndpointAccess$ = [9, n0, _CEA,
|
|
1657
|
-
2, () => CreateEndpointAccessRequest$, () => CreateEndpointAccessResponse$
|
|
1658
|
-
];
|
|
1659
|
-
var CreateNamespace$ = [9, n0, _CN,
|
|
1660
|
-
2, () => CreateNamespaceRequest$, () => CreateNamespaceResponse$
|
|
1661
|
-
];
|
|
1662
|
-
var CreateReservation$ = [9, n0, _CR,
|
|
1663
|
-
2, () => CreateReservationRequest$, () => CreateReservationResponse$
|
|
1664
|
-
];
|
|
1665
|
-
var CreateScheduledAction$ = [9, n0, _CSA,
|
|
1666
|
-
2, () => CreateScheduledActionRequest$, () => CreateScheduledActionResponse$
|
|
1667
|
-
];
|
|
1668
|
-
var CreateSnapshot$ = [9, n0, _CS,
|
|
1669
|
-
2, () => CreateSnapshotRequest$, () => CreateSnapshotResponse$
|
|
1670
|
-
];
|
|
1671
|
-
var CreateSnapshotCopyConfiguration$ = [9, n0, _CSCC,
|
|
1672
|
-
2, () => CreateSnapshotCopyConfigurationRequest$, () => CreateSnapshotCopyConfigurationResponse$
|
|
1673
|
-
];
|
|
1674
|
-
var CreateUsageLimit$ = [9, n0, _CUL,
|
|
1675
|
-
2, () => CreateUsageLimitRequest$, () => CreateUsageLimitResponse$
|
|
1676
|
-
];
|
|
1677
|
-
var CreateWorkgroup$ = [9, n0, _CW,
|
|
1678
|
-
2, () => CreateWorkgroupRequest$, () => CreateWorkgroupResponse$
|
|
1679
|
-
];
|
|
1680
|
-
var DeleteCustomDomainAssociation$ = [9, n0, _DCDA,
|
|
1681
|
-
0, () => DeleteCustomDomainAssociationRequest$, () => DeleteCustomDomainAssociationResponse$
|
|
1682
|
-
];
|
|
1683
|
-
var DeleteEndpointAccess$ = [9, n0, _DEA,
|
|
1684
|
-
2, () => DeleteEndpointAccessRequest$, () => DeleteEndpointAccessResponse$
|
|
1685
|
-
];
|
|
1686
|
-
var DeleteNamespace$ = [9, n0, _DN,
|
|
1687
|
-
2, () => DeleteNamespaceRequest$, () => DeleteNamespaceResponse$
|
|
1688
|
-
];
|
|
1689
|
-
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
1690
|
-
0, () => DeleteResourcePolicyRequest$, () => DeleteResourcePolicyResponse$
|
|
1691
|
-
];
|
|
1692
|
-
var DeleteScheduledAction$ = [9, n0, _DSA,
|
|
1693
|
-
2, () => DeleteScheduledActionRequest$, () => DeleteScheduledActionResponse$
|
|
1694
|
-
];
|
|
1695
|
-
var DeleteSnapshot$ = [9, n0, _DS,
|
|
1696
|
-
2, () => DeleteSnapshotRequest$, () => DeleteSnapshotResponse$
|
|
1697
|
-
];
|
|
1698
|
-
var DeleteSnapshotCopyConfiguration$ = [9, n0, _DSCC,
|
|
1699
|
-
2, () => DeleteSnapshotCopyConfigurationRequest$, () => DeleteSnapshotCopyConfigurationResponse$
|
|
1700
|
-
];
|
|
1701
|
-
var DeleteUsageLimit$ = [9, n0, _DUL,
|
|
1702
|
-
2, () => DeleteUsageLimitRequest$, () => DeleteUsageLimitResponse$
|
|
1703
|
-
];
|
|
1704
|
-
var DeleteWorkgroup$ = [9, n0, _DW,
|
|
1705
|
-
2, () => DeleteWorkgroupRequest$, () => DeleteWorkgroupResponse$
|
|
1706
|
-
];
|
|
1707
|
-
var GetCredentials$ = [9, n0, _GC,
|
|
1708
|
-
0, () => GetCredentialsRequest$, () => GetCredentialsResponse$
|
|
1709
|
-
];
|
|
1710
|
-
var GetCustomDomainAssociation$ = [9, n0, _GCDA,
|
|
1711
|
-
0, () => GetCustomDomainAssociationRequest$, () => GetCustomDomainAssociationResponse$
|
|
1712
|
-
];
|
|
1713
|
-
var GetEndpointAccess$ = [9, n0, _GEA,
|
|
1714
|
-
0, () => GetEndpointAccessRequest$, () => GetEndpointAccessResponse$
|
|
1715
|
-
];
|
|
1716
|
-
var GetIdentityCenterAuthToken$ = [9, n0, _GICAT,
|
|
1717
|
-
0, () => GetIdentityCenterAuthTokenRequest$, () => GetIdentityCenterAuthTokenResponse$
|
|
1718
|
-
];
|
|
1719
|
-
var GetNamespace$ = [9, n0, _GN,
|
|
1720
|
-
0, () => GetNamespaceRequest$, () => GetNamespaceResponse$
|
|
1721
|
-
];
|
|
1722
|
-
var GetRecoveryPoint$ = [9, n0, _GRP,
|
|
1723
|
-
0, () => GetRecoveryPointRequest$, () => GetRecoveryPointResponse$
|
|
1724
|
-
];
|
|
1725
|
-
var GetReservation$ = [9, n0, _GR,
|
|
1726
|
-
0, () => GetReservationRequest$, () => GetReservationResponse$
|
|
1727
|
-
];
|
|
1728
|
-
var GetReservationOffering$ = [9, n0, _GRO,
|
|
1729
|
-
0, () => GetReservationOfferingRequest$, () => GetReservationOfferingResponse$
|
|
1730
|
-
];
|
|
1731
|
-
var GetResourcePolicy$ = [9, n0, _GRPe,
|
|
1732
|
-
0, () => GetResourcePolicyRequest$, () => GetResourcePolicyResponse$
|
|
1733
|
-
];
|
|
1734
|
-
var GetScheduledAction$ = [9, n0, _GSA,
|
|
1735
|
-
0, () => GetScheduledActionRequest$, () => GetScheduledActionResponse$
|
|
1736
|
-
];
|
|
1737
|
-
var GetSnapshot$ = [9, n0, _GS,
|
|
1738
|
-
0, () => GetSnapshotRequest$, () => GetSnapshotResponse$
|
|
1739
|
-
];
|
|
1740
|
-
var GetTableRestoreStatus$ = [9, n0, _GTRS,
|
|
1741
|
-
0, () => GetTableRestoreStatusRequest$, () => GetTableRestoreStatusResponse$
|
|
1742
|
-
];
|
|
1743
|
-
var GetTrack$ = [9, n0, _GT,
|
|
1744
|
-
0, () => GetTrackRequest$, () => GetTrackResponse$
|
|
1745
|
-
];
|
|
1746
|
-
var GetUsageLimit$ = [9, n0, _GUL,
|
|
1747
|
-
0, () => GetUsageLimitRequest$, () => GetUsageLimitResponse$
|
|
1748
|
-
];
|
|
1749
|
-
var GetWorkgroup$ = [9, n0, _GW,
|
|
1750
|
-
0, () => GetWorkgroupRequest$, () => GetWorkgroupResponse$
|
|
1751
|
-
];
|
|
1752
|
-
var ListCustomDomainAssociations$ = [9, n0, _LCDA,
|
|
1753
|
-
0, () => ListCustomDomainAssociationsRequest$, () => ListCustomDomainAssociationsResponse$
|
|
1754
|
-
];
|
|
1755
|
-
var ListEndpointAccess$ = [9, n0, _LEA,
|
|
1756
|
-
0, () => ListEndpointAccessRequest$, () => ListEndpointAccessResponse$
|
|
1757
|
-
];
|
|
1758
|
-
var ListManagedWorkgroups$ = [9, n0, _LMW,
|
|
1759
|
-
0, () => ListManagedWorkgroupsRequest$, () => ListManagedWorkgroupsResponse$
|
|
1760
|
-
];
|
|
1761
|
-
var ListNamespaces$ = [9, n0, _LN,
|
|
1762
|
-
0, () => ListNamespacesRequest$, () => ListNamespacesResponse$
|
|
1763
|
-
];
|
|
1764
|
-
var ListRecoveryPoints$ = [9, n0, _LRP,
|
|
1765
|
-
0, () => ListRecoveryPointsRequest$, () => ListRecoveryPointsResponse$
|
|
1766
|
-
];
|
|
1767
|
-
var ListReservationOfferings$ = [9, n0, _LRO,
|
|
1768
|
-
0, () => ListReservationOfferingsRequest$, () => ListReservationOfferingsResponse$
|
|
1769
|
-
];
|
|
1770
|
-
var ListReservations$ = [9, n0, _LR,
|
|
1771
|
-
0, () => ListReservationsRequest$, () => ListReservationsResponse$
|
|
1772
|
-
];
|
|
1773
|
-
var ListScheduledActions$ = [9, n0, _LSA,
|
|
1774
|
-
0, () => ListScheduledActionsRequest$, () => ListScheduledActionsResponse$
|
|
1775
|
-
];
|
|
1776
|
-
var ListSnapshotCopyConfigurations$ = [9, n0, _LSCC,
|
|
1777
|
-
0, () => ListSnapshotCopyConfigurationsRequest$, () => ListSnapshotCopyConfigurationsResponse$
|
|
1778
|
-
];
|
|
1779
|
-
var ListSnapshots$ = [9, n0, _LS,
|
|
1780
|
-
0, () => ListSnapshotsRequest$, () => ListSnapshotsResponse$
|
|
1781
|
-
];
|
|
1782
|
-
var ListTableRestoreStatus$ = [9, n0, _LTRS,
|
|
1783
|
-
0, () => ListTableRestoreStatusRequest$, () => ListTableRestoreStatusResponse$
|
|
1784
|
-
];
|
|
1785
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1786
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1787
|
-
];
|
|
1788
|
-
var ListTracks$ = [9, n0, _LT,
|
|
1789
|
-
0, () => ListTracksRequest$, () => ListTracksResponse$
|
|
1790
|
-
];
|
|
1791
|
-
var ListUsageLimits$ = [9, n0, _LUL,
|
|
1792
|
-
0, () => ListUsageLimitsRequest$, () => ListUsageLimitsResponse$
|
|
1793
|
-
];
|
|
1794
|
-
var ListWorkgroups$ = [9, n0, _LW,
|
|
1795
|
-
0, () => ListWorkgroupsRequest$, () => ListWorkgroupsResponse$
|
|
1796
|
-
];
|
|
1797
|
-
var PutResourcePolicy$ = [9, n0, _PRP,
|
|
1798
|
-
0, () => PutResourcePolicyRequest$, () => PutResourcePolicyResponse$
|
|
1799
|
-
];
|
|
1800
|
-
var RestoreFromRecoveryPoint$ = [9, n0, _RFRP,
|
|
1801
|
-
0, () => RestoreFromRecoveryPointRequest$, () => RestoreFromRecoveryPointResponse$
|
|
1802
|
-
];
|
|
1803
|
-
var RestoreFromSnapshot$ = [9, n0, _RFS,
|
|
1804
|
-
2, () => RestoreFromSnapshotRequest$, () => RestoreFromSnapshotResponse$
|
|
1805
|
-
];
|
|
1806
|
-
var RestoreTableFromRecoveryPoint$ = [9, n0, _RTFRP,
|
|
1807
|
-
0, () => RestoreTableFromRecoveryPointRequest$, () => RestoreTableFromRecoveryPointResponse$
|
|
1808
|
-
];
|
|
1809
|
-
var RestoreTableFromSnapshot$ = [9, n0, _RTFS,
|
|
1810
|
-
0, () => RestoreTableFromSnapshotRequest$, () => RestoreTableFromSnapshotResponse$
|
|
1811
|
-
];
|
|
1812
|
-
var TagResource$ = [9, n0, _TR,
|
|
1813
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1814
|
-
];
|
|
1815
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1816
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1817
|
-
];
|
|
1818
|
-
var UpdateCustomDomainAssociation$ = [9, n0, _UCDA,
|
|
1819
|
-
0, () => UpdateCustomDomainAssociationRequest$, () => UpdateCustomDomainAssociationResponse$
|
|
1820
|
-
];
|
|
1821
|
-
var UpdateEndpointAccess$ = [9, n0, _UEA,
|
|
1822
|
-
0, () => UpdateEndpointAccessRequest$, () => UpdateEndpointAccessResponse$
|
|
1823
|
-
];
|
|
1824
|
-
var UpdateLakehouseConfiguration$ = [9, n0, _ULC,
|
|
1825
|
-
0, () => UpdateLakehouseConfigurationRequest$, () => UpdateLakehouseConfigurationResponse$
|
|
1826
|
-
];
|
|
1827
|
-
var UpdateNamespace$ = [9, n0, _UN,
|
|
1828
|
-
0, () => UpdateNamespaceRequest$, () => UpdateNamespaceResponse$
|
|
1829
|
-
];
|
|
1830
|
-
var UpdateScheduledAction$ = [9, n0, _USA,
|
|
1831
|
-
2, () => UpdateScheduledActionRequest$, () => UpdateScheduledActionResponse$
|
|
1832
|
-
];
|
|
1833
|
-
var UpdateSnapshot$ = [9, n0, _US,
|
|
1834
|
-
0, () => UpdateSnapshotRequest$, () => UpdateSnapshotResponse$
|
|
1835
|
-
];
|
|
1836
|
-
var UpdateSnapshotCopyConfiguration$ = [9, n0, _USCC,
|
|
1837
|
-
0, () => UpdateSnapshotCopyConfigurationRequest$, () => UpdateSnapshotCopyConfigurationResponse$
|
|
1838
|
-
];
|
|
1839
|
-
var UpdateUsageLimit$ = [9, n0, _UUL,
|
|
1840
|
-
0, () => UpdateUsageLimitRequest$, () => UpdateUsageLimitResponse$
|
|
1841
|
-
];
|
|
1842
|
-
var UpdateWorkgroup$ = [9, n0, _UW,
|
|
1843
|
-
0, () => UpdateWorkgroupRequest$, () => UpdateWorkgroupResponse$
|
|
1844
|
-
];
|
|
1845
|
-
|
|
1846
116
|
class ConvertRecoveryPointToSnapshotCommand extends smithyClient.Command
|
|
1847
117
|
.classBuilder()
|
|
1848
118
|
.ep(commonParams)
|
|
@@ -1851,7 +121,7 @@ class ConvertRecoveryPointToSnapshotCommand extends smithyClient.Command
|
|
|
1851
121
|
})
|
|
1852
122
|
.s("RedshiftServerless", "ConvertRecoveryPointToSnapshot", {})
|
|
1853
123
|
.n("RedshiftServerlessClient", "ConvertRecoveryPointToSnapshotCommand")
|
|
1854
|
-
.sc(ConvertRecoveryPointToSnapshot$)
|
|
124
|
+
.sc(schemas_0.ConvertRecoveryPointToSnapshot$)
|
|
1855
125
|
.build() {
|
|
1856
126
|
}
|
|
1857
127
|
|
|
@@ -1863,7 +133,7 @@ class CreateCustomDomainAssociationCommand extends smithyClient.Command
|
|
|
1863
133
|
})
|
|
1864
134
|
.s("RedshiftServerless", "CreateCustomDomainAssociation", {})
|
|
1865
135
|
.n("RedshiftServerlessClient", "CreateCustomDomainAssociationCommand")
|
|
1866
|
-
.sc(CreateCustomDomainAssociation$)
|
|
136
|
+
.sc(schemas_0.CreateCustomDomainAssociation$)
|
|
1867
137
|
.build() {
|
|
1868
138
|
}
|
|
1869
139
|
|
|
@@ -1875,7 +145,7 @@ class CreateEndpointAccessCommand extends smithyClient.Command
|
|
|
1875
145
|
})
|
|
1876
146
|
.s("RedshiftServerless", "CreateEndpointAccess", {})
|
|
1877
147
|
.n("RedshiftServerlessClient", "CreateEndpointAccessCommand")
|
|
1878
|
-
.sc(CreateEndpointAccess$)
|
|
148
|
+
.sc(schemas_0.CreateEndpointAccess$)
|
|
1879
149
|
.build() {
|
|
1880
150
|
}
|
|
1881
151
|
|
|
@@ -1887,7 +157,7 @@ class CreateNamespaceCommand extends smithyClient.Command
|
|
|
1887
157
|
})
|
|
1888
158
|
.s("RedshiftServerless", "CreateNamespace", {})
|
|
1889
159
|
.n("RedshiftServerlessClient", "CreateNamespaceCommand")
|
|
1890
|
-
.sc(CreateNamespace$)
|
|
160
|
+
.sc(schemas_0.CreateNamespace$)
|
|
1891
161
|
.build() {
|
|
1892
162
|
}
|
|
1893
163
|
|
|
@@ -1899,7 +169,7 @@ class CreateReservationCommand extends smithyClient.Command
|
|
|
1899
169
|
})
|
|
1900
170
|
.s("RedshiftServerless", "CreateReservation", {})
|
|
1901
171
|
.n("RedshiftServerlessClient", "CreateReservationCommand")
|
|
1902
|
-
.sc(CreateReservation$)
|
|
172
|
+
.sc(schemas_0.CreateReservation$)
|
|
1903
173
|
.build() {
|
|
1904
174
|
}
|
|
1905
175
|
|
|
@@ -1911,7 +181,7 @@ class CreateScheduledActionCommand extends smithyClient.Command
|
|
|
1911
181
|
})
|
|
1912
182
|
.s("RedshiftServerless", "CreateScheduledAction", {})
|
|
1913
183
|
.n("RedshiftServerlessClient", "CreateScheduledActionCommand")
|
|
1914
|
-
.sc(CreateScheduledAction$)
|
|
184
|
+
.sc(schemas_0.CreateScheduledAction$)
|
|
1915
185
|
.build() {
|
|
1916
186
|
}
|
|
1917
187
|
|
|
@@ -1923,7 +193,7 @@ class CreateSnapshotCommand extends smithyClient.Command
|
|
|
1923
193
|
})
|
|
1924
194
|
.s("RedshiftServerless", "CreateSnapshot", {})
|
|
1925
195
|
.n("RedshiftServerlessClient", "CreateSnapshotCommand")
|
|
1926
|
-
.sc(CreateSnapshot$)
|
|
196
|
+
.sc(schemas_0.CreateSnapshot$)
|
|
1927
197
|
.build() {
|
|
1928
198
|
}
|
|
1929
199
|
|
|
@@ -1935,7 +205,7 @@ class CreateSnapshotCopyConfigurationCommand extends smithyClient.Command
|
|
|
1935
205
|
})
|
|
1936
206
|
.s("RedshiftServerless", "CreateSnapshotCopyConfiguration", {})
|
|
1937
207
|
.n("RedshiftServerlessClient", "CreateSnapshotCopyConfigurationCommand")
|
|
1938
|
-
.sc(CreateSnapshotCopyConfiguration$)
|
|
208
|
+
.sc(schemas_0.CreateSnapshotCopyConfiguration$)
|
|
1939
209
|
.build() {
|
|
1940
210
|
}
|
|
1941
211
|
|
|
@@ -1947,7 +217,7 @@ class CreateUsageLimitCommand extends smithyClient.Command
|
|
|
1947
217
|
})
|
|
1948
218
|
.s("RedshiftServerless", "CreateUsageLimit", {})
|
|
1949
219
|
.n("RedshiftServerlessClient", "CreateUsageLimitCommand")
|
|
1950
|
-
.sc(CreateUsageLimit$)
|
|
220
|
+
.sc(schemas_0.CreateUsageLimit$)
|
|
1951
221
|
.build() {
|
|
1952
222
|
}
|
|
1953
223
|
|
|
@@ -1959,7 +229,7 @@ class CreateWorkgroupCommand extends smithyClient.Command
|
|
|
1959
229
|
})
|
|
1960
230
|
.s("RedshiftServerless", "CreateWorkgroup", {})
|
|
1961
231
|
.n("RedshiftServerlessClient", "CreateWorkgroupCommand")
|
|
1962
|
-
.sc(CreateWorkgroup$)
|
|
232
|
+
.sc(schemas_0.CreateWorkgroup$)
|
|
1963
233
|
.build() {
|
|
1964
234
|
}
|
|
1965
235
|
|
|
@@ -1971,7 +241,7 @@ class DeleteCustomDomainAssociationCommand extends smithyClient.Command
|
|
|
1971
241
|
})
|
|
1972
242
|
.s("RedshiftServerless", "DeleteCustomDomainAssociation", {})
|
|
1973
243
|
.n("RedshiftServerlessClient", "DeleteCustomDomainAssociationCommand")
|
|
1974
|
-
.sc(DeleteCustomDomainAssociation$)
|
|
244
|
+
.sc(schemas_0.DeleteCustomDomainAssociation$)
|
|
1975
245
|
.build() {
|
|
1976
246
|
}
|
|
1977
247
|
|
|
@@ -1983,7 +253,7 @@ class DeleteEndpointAccessCommand extends smithyClient.Command
|
|
|
1983
253
|
})
|
|
1984
254
|
.s("RedshiftServerless", "DeleteEndpointAccess", {})
|
|
1985
255
|
.n("RedshiftServerlessClient", "DeleteEndpointAccessCommand")
|
|
1986
|
-
.sc(DeleteEndpointAccess$)
|
|
256
|
+
.sc(schemas_0.DeleteEndpointAccess$)
|
|
1987
257
|
.build() {
|
|
1988
258
|
}
|
|
1989
259
|
|
|
@@ -1995,7 +265,7 @@ class DeleteNamespaceCommand extends smithyClient.Command
|
|
|
1995
265
|
})
|
|
1996
266
|
.s("RedshiftServerless", "DeleteNamespace", {})
|
|
1997
267
|
.n("RedshiftServerlessClient", "DeleteNamespaceCommand")
|
|
1998
|
-
.sc(DeleteNamespace$)
|
|
268
|
+
.sc(schemas_0.DeleteNamespace$)
|
|
1999
269
|
.build() {
|
|
2000
270
|
}
|
|
2001
271
|
|
|
@@ -2007,7 +277,7 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
|
2007
277
|
})
|
|
2008
278
|
.s("RedshiftServerless", "DeleteResourcePolicy", {})
|
|
2009
279
|
.n("RedshiftServerlessClient", "DeleteResourcePolicyCommand")
|
|
2010
|
-
.sc(DeleteResourcePolicy$)
|
|
280
|
+
.sc(schemas_0.DeleteResourcePolicy$)
|
|
2011
281
|
.build() {
|
|
2012
282
|
}
|
|
2013
283
|
|
|
@@ -2019,7 +289,7 @@ class DeleteScheduledActionCommand extends smithyClient.Command
|
|
|
2019
289
|
})
|
|
2020
290
|
.s("RedshiftServerless", "DeleteScheduledAction", {})
|
|
2021
291
|
.n("RedshiftServerlessClient", "DeleteScheduledActionCommand")
|
|
2022
|
-
.sc(DeleteScheduledAction$)
|
|
292
|
+
.sc(schemas_0.DeleteScheduledAction$)
|
|
2023
293
|
.build() {
|
|
2024
294
|
}
|
|
2025
295
|
|
|
@@ -2031,7 +301,7 @@ class DeleteSnapshotCommand extends smithyClient.Command
|
|
|
2031
301
|
})
|
|
2032
302
|
.s("RedshiftServerless", "DeleteSnapshot", {})
|
|
2033
303
|
.n("RedshiftServerlessClient", "DeleteSnapshotCommand")
|
|
2034
|
-
.sc(DeleteSnapshot$)
|
|
304
|
+
.sc(schemas_0.DeleteSnapshot$)
|
|
2035
305
|
.build() {
|
|
2036
306
|
}
|
|
2037
307
|
|
|
@@ -2043,7 +313,7 @@ class DeleteSnapshotCopyConfigurationCommand extends smithyClient.Command
|
|
|
2043
313
|
})
|
|
2044
314
|
.s("RedshiftServerless", "DeleteSnapshotCopyConfiguration", {})
|
|
2045
315
|
.n("RedshiftServerlessClient", "DeleteSnapshotCopyConfigurationCommand")
|
|
2046
|
-
.sc(DeleteSnapshotCopyConfiguration$)
|
|
316
|
+
.sc(schemas_0.DeleteSnapshotCopyConfiguration$)
|
|
2047
317
|
.build() {
|
|
2048
318
|
}
|
|
2049
319
|
|
|
@@ -2055,7 +325,7 @@ class DeleteUsageLimitCommand extends smithyClient.Command
|
|
|
2055
325
|
})
|
|
2056
326
|
.s("RedshiftServerless", "DeleteUsageLimit", {})
|
|
2057
327
|
.n("RedshiftServerlessClient", "DeleteUsageLimitCommand")
|
|
2058
|
-
.sc(DeleteUsageLimit$)
|
|
328
|
+
.sc(schemas_0.DeleteUsageLimit$)
|
|
2059
329
|
.build() {
|
|
2060
330
|
}
|
|
2061
331
|
|
|
@@ -2067,7 +337,7 @@ class DeleteWorkgroupCommand extends smithyClient.Command
|
|
|
2067
337
|
})
|
|
2068
338
|
.s("RedshiftServerless", "DeleteWorkgroup", {})
|
|
2069
339
|
.n("RedshiftServerlessClient", "DeleteWorkgroupCommand")
|
|
2070
|
-
.sc(DeleteWorkgroup$)
|
|
340
|
+
.sc(schemas_0.DeleteWorkgroup$)
|
|
2071
341
|
.build() {
|
|
2072
342
|
}
|
|
2073
343
|
|
|
@@ -2079,7 +349,7 @@ class GetCredentialsCommand extends smithyClient.Command
|
|
|
2079
349
|
})
|
|
2080
350
|
.s("RedshiftServerless", "GetCredentials", {})
|
|
2081
351
|
.n("RedshiftServerlessClient", "GetCredentialsCommand")
|
|
2082
|
-
.sc(GetCredentials$)
|
|
352
|
+
.sc(schemas_0.GetCredentials$)
|
|
2083
353
|
.build() {
|
|
2084
354
|
}
|
|
2085
355
|
|
|
@@ -2091,7 +361,7 @@ class GetCustomDomainAssociationCommand extends smithyClient.Command
|
|
|
2091
361
|
})
|
|
2092
362
|
.s("RedshiftServerless", "GetCustomDomainAssociation", {})
|
|
2093
363
|
.n("RedshiftServerlessClient", "GetCustomDomainAssociationCommand")
|
|
2094
|
-
.sc(GetCustomDomainAssociation$)
|
|
364
|
+
.sc(schemas_0.GetCustomDomainAssociation$)
|
|
2095
365
|
.build() {
|
|
2096
366
|
}
|
|
2097
367
|
|
|
@@ -2103,7 +373,7 @@ class GetEndpointAccessCommand extends smithyClient.Command
|
|
|
2103
373
|
})
|
|
2104
374
|
.s("RedshiftServerless", "GetEndpointAccess", {})
|
|
2105
375
|
.n("RedshiftServerlessClient", "GetEndpointAccessCommand")
|
|
2106
|
-
.sc(GetEndpointAccess$)
|
|
376
|
+
.sc(schemas_0.GetEndpointAccess$)
|
|
2107
377
|
.build() {
|
|
2108
378
|
}
|
|
2109
379
|
|
|
@@ -2115,7 +385,7 @@ class GetIdentityCenterAuthTokenCommand extends smithyClient.Command
|
|
|
2115
385
|
})
|
|
2116
386
|
.s("RedshiftServerless", "GetIdentityCenterAuthToken", {})
|
|
2117
387
|
.n("RedshiftServerlessClient", "GetIdentityCenterAuthTokenCommand")
|
|
2118
|
-
.sc(GetIdentityCenterAuthToken$)
|
|
388
|
+
.sc(schemas_0.GetIdentityCenterAuthToken$)
|
|
2119
389
|
.build() {
|
|
2120
390
|
}
|
|
2121
391
|
|
|
@@ -2127,7 +397,7 @@ class GetNamespaceCommand extends smithyClient.Command
|
|
|
2127
397
|
})
|
|
2128
398
|
.s("RedshiftServerless", "GetNamespace", {})
|
|
2129
399
|
.n("RedshiftServerlessClient", "GetNamespaceCommand")
|
|
2130
|
-
.sc(GetNamespace$)
|
|
400
|
+
.sc(schemas_0.GetNamespace$)
|
|
2131
401
|
.build() {
|
|
2132
402
|
}
|
|
2133
403
|
|
|
@@ -2139,7 +409,7 @@ class GetRecoveryPointCommand extends smithyClient.Command
|
|
|
2139
409
|
})
|
|
2140
410
|
.s("RedshiftServerless", "GetRecoveryPoint", {})
|
|
2141
411
|
.n("RedshiftServerlessClient", "GetRecoveryPointCommand")
|
|
2142
|
-
.sc(GetRecoveryPoint$)
|
|
412
|
+
.sc(schemas_0.GetRecoveryPoint$)
|
|
2143
413
|
.build() {
|
|
2144
414
|
}
|
|
2145
415
|
|
|
@@ -2151,7 +421,7 @@ class GetReservationCommand extends smithyClient.Command
|
|
|
2151
421
|
})
|
|
2152
422
|
.s("RedshiftServerless", "GetReservation", {})
|
|
2153
423
|
.n("RedshiftServerlessClient", "GetReservationCommand")
|
|
2154
|
-
.sc(GetReservation$)
|
|
424
|
+
.sc(schemas_0.GetReservation$)
|
|
2155
425
|
.build() {
|
|
2156
426
|
}
|
|
2157
427
|
|
|
@@ -2163,7 +433,7 @@ class GetReservationOfferingCommand extends smithyClient.Command
|
|
|
2163
433
|
})
|
|
2164
434
|
.s("RedshiftServerless", "GetReservationOffering", {})
|
|
2165
435
|
.n("RedshiftServerlessClient", "GetReservationOfferingCommand")
|
|
2166
|
-
.sc(GetReservationOffering$)
|
|
436
|
+
.sc(schemas_0.GetReservationOffering$)
|
|
2167
437
|
.build() {
|
|
2168
438
|
}
|
|
2169
439
|
|
|
@@ -2175,7 +445,7 @@ class GetResourcePolicyCommand extends smithyClient.Command
|
|
|
2175
445
|
})
|
|
2176
446
|
.s("RedshiftServerless", "GetResourcePolicy", {})
|
|
2177
447
|
.n("RedshiftServerlessClient", "GetResourcePolicyCommand")
|
|
2178
|
-
.sc(GetResourcePolicy$)
|
|
448
|
+
.sc(schemas_0.GetResourcePolicy$)
|
|
2179
449
|
.build() {
|
|
2180
450
|
}
|
|
2181
451
|
|
|
@@ -2187,7 +457,7 @@ class GetScheduledActionCommand extends smithyClient.Command
|
|
|
2187
457
|
})
|
|
2188
458
|
.s("RedshiftServerless", "GetScheduledAction", {})
|
|
2189
459
|
.n("RedshiftServerlessClient", "GetScheduledActionCommand")
|
|
2190
|
-
.sc(GetScheduledAction$)
|
|
460
|
+
.sc(schemas_0.GetScheduledAction$)
|
|
2191
461
|
.build() {
|
|
2192
462
|
}
|
|
2193
463
|
|
|
@@ -2199,7 +469,7 @@ class GetSnapshotCommand extends smithyClient.Command
|
|
|
2199
469
|
})
|
|
2200
470
|
.s("RedshiftServerless", "GetSnapshot", {})
|
|
2201
471
|
.n("RedshiftServerlessClient", "GetSnapshotCommand")
|
|
2202
|
-
.sc(GetSnapshot$)
|
|
472
|
+
.sc(schemas_0.GetSnapshot$)
|
|
2203
473
|
.build() {
|
|
2204
474
|
}
|
|
2205
475
|
|
|
@@ -2211,7 +481,7 @@ class GetTableRestoreStatusCommand extends smithyClient.Command
|
|
|
2211
481
|
})
|
|
2212
482
|
.s("RedshiftServerless", "GetTableRestoreStatus", {})
|
|
2213
483
|
.n("RedshiftServerlessClient", "GetTableRestoreStatusCommand")
|
|
2214
|
-
.sc(GetTableRestoreStatus$)
|
|
484
|
+
.sc(schemas_0.GetTableRestoreStatus$)
|
|
2215
485
|
.build() {
|
|
2216
486
|
}
|
|
2217
487
|
|
|
@@ -2223,7 +493,7 @@ class GetTrackCommand extends smithyClient.Command
|
|
|
2223
493
|
})
|
|
2224
494
|
.s("RedshiftServerless", "GetTrack", {})
|
|
2225
495
|
.n("RedshiftServerlessClient", "GetTrackCommand")
|
|
2226
|
-
.sc(GetTrack$)
|
|
496
|
+
.sc(schemas_0.GetTrack$)
|
|
2227
497
|
.build() {
|
|
2228
498
|
}
|
|
2229
499
|
|
|
@@ -2235,7 +505,7 @@ class GetUsageLimitCommand extends smithyClient.Command
|
|
|
2235
505
|
})
|
|
2236
506
|
.s("RedshiftServerless", "GetUsageLimit", {})
|
|
2237
507
|
.n("RedshiftServerlessClient", "GetUsageLimitCommand")
|
|
2238
|
-
.sc(GetUsageLimit$)
|
|
508
|
+
.sc(schemas_0.GetUsageLimit$)
|
|
2239
509
|
.build() {
|
|
2240
510
|
}
|
|
2241
511
|
|
|
@@ -2247,7 +517,7 @@ class GetWorkgroupCommand extends smithyClient.Command
|
|
|
2247
517
|
})
|
|
2248
518
|
.s("RedshiftServerless", "GetWorkgroup", {})
|
|
2249
519
|
.n("RedshiftServerlessClient", "GetWorkgroupCommand")
|
|
2250
|
-
.sc(GetWorkgroup$)
|
|
520
|
+
.sc(schemas_0.GetWorkgroup$)
|
|
2251
521
|
.build() {
|
|
2252
522
|
}
|
|
2253
523
|
|
|
@@ -2259,7 +529,7 @@ class ListCustomDomainAssociationsCommand extends smithyClient.Command
|
|
|
2259
529
|
})
|
|
2260
530
|
.s("RedshiftServerless", "ListCustomDomainAssociations", {})
|
|
2261
531
|
.n("RedshiftServerlessClient", "ListCustomDomainAssociationsCommand")
|
|
2262
|
-
.sc(ListCustomDomainAssociations$)
|
|
532
|
+
.sc(schemas_0.ListCustomDomainAssociations$)
|
|
2263
533
|
.build() {
|
|
2264
534
|
}
|
|
2265
535
|
|
|
@@ -2271,7 +541,7 @@ class ListEndpointAccessCommand extends smithyClient.Command
|
|
|
2271
541
|
})
|
|
2272
542
|
.s("RedshiftServerless", "ListEndpointAccess", {})
|
|
2273
543
|
.n("RedshiftServerlessClient", "ListEndpointAccessCommand")
|
|
2274
|
-
.sc(ListEndpointAccess$)
|
|
544
|
+
.sc(schemas_0.ListEndpointAccess$)
|
|
2275
545
|
.build() {
|
|
2276
546
|
}
|
|
2277
547
|
|
|
@@ -2283,7 +553,7 @@ class ListManagedWorkgroupsCommand extends smithyClient.Command
|
|
|
2283
553
|
})
|
|
2284
554
|
.s("RedshiftServerless", "ListManagedWorkgroups", {})
|
|
2285
555
|
.n("RedshiftServerlessClient", "ListManagedWorkgroupsCommand")
|
|
2286
|
-
.sc(ListManagedWorkgroups$)
|
|
556
|
+
.sc(schemas_0.ListManagedWorkgroups$)
|
|
2287
557
|
.build() {
|
|
2288
558
|
}
|
|
2289
559
|
|
|
@@ -2295,7 +565,7 @@ class ListNamespacesCommand extends smithyClient.Command
|
|
|
2295
565
|
})
|
|
2296
566
|
.s("RedshiftServerless", "ListNamespaces", {})
|
|
2297
567
|
.n("RedshiftServerlessClient", "ListNamespacesCommand")
|
|
2298
|
-
.sc(ListNamespaces$)
|
|
568
|
+
.sc(schemas_0.ListNamespaces$)
|
|
2299
569
|
.build() {
|
|
2300
570
|
}
|
|
2301
571
|
|
|
@@ -2307,7 +577,7 @@ class ListRecoveryPointsCommand extends smithyClient.Command
|
|
|
2307
577
|
})
|
|
2308
578
|
.s("RedshiftServerless", "ListRecoveryPoints", {})
|
|
2309
579
|
.n("RedshiftServerlessClient", "ListRecoveryPointsCommand")
|
|
2310
|
-
.sc(ListRecoveryPoints$)
|
|
580
|
+
.sc(schemas_0.ListRecoveryPoints$)
|
|
2311
581
|
.build() {
|
|
2312
582
|
}
|
|
2313
583
|
|
|
@@ -2319,7 +589,7 @@ class ListReservationOfferingsCommand extends smithyClient.Command
|
|
|
2319
589
|
})
|
|
2320
590
|
.s("RedshiftServerless", "ListReservationOfferings", {})
|
|
2321
591
|
.n("RedshiftServerlessClient", "ListReservationOfferingsCommand")
|
|
2322
|
-
.sc(ListReservationOfferings$)
|
|
592
|
+
.sc(schemas_0.ListReservationOfferings$)
|
|
2323
593
|
.build() {
|
|
2324
594
|
}
|
|
2325
595
|
|
|
@@ -2331,7 +601,7 @@ class ListReservationsCommand extends smithyClient.Command
|
|
|
2331
601
|
})
|
|
2332
602
|
.s("RedshiftServerless", "ListReservations", {})
|
|
2333
603
|
.n("RedshiftServerlessClient", "ListReservationsCommand")
|
|
2334
|
-
.sc(ListReservations$)
|
|
604
|
+
.sc(schemas_0.ListReservations$)
|
|
2335
605
|
.build() {
|
|
2336
606
|
}
|
|
2337
607
|
|
|
@@ -2343,7 +613,7 @@ class ListScheduledActionsCommand extends smithyClient.Command
|
|
|
2343
613
|
})
|
|
2344
614
|
.s("RedshiftServerless", "ListScheduledActions", {})
|
|
2345
615
|
.n("RedshiftServerlessClient", "ListScheduledActionsCommand")
|
|
2346
|
-
.sc(ListScheduledActions$)
|
|
616
|
+
.sc(schemas_0.ListScheduledActions$)
|
|
2347
617
|
.build() {
|
|
2348
618
|
}
|
|
2349
619
|
|
|
@@ -2355,7 +625,7 @@ class ListSnapshotCopyConfigurationsCommand extends smithyClient.Command
|
|
|
2355
625
|
})
|
|
2356
626
|
.s("RedshiftServerless", "ListSnapshotCopyConfigurations", {})
|
|
2357
627
|
.n("RedshiftServerlessClient", "ListSnapshotCopyConfigurationsCommand")
|
|
2358
|
-
.sc(ListSnapshotCopyConfigurations$)
|
|
628
|
+
.sc(schemas_0.ListSnapshotCopyConfigurations$)
|
|
2359
629
|
.build() {
|
|
2360
630
|
}
|
|
2361
631
|
|
|
@@ -2367,7 +637,7 @@ class ListSnapshotsCommand extends smithyClient.Command
|
|
|
2367
637
|
})
|
|
2368
638
|
.s("RedshiftServerless", "ListSnapshots", {})
|
|
2369
639
|
.n("RedshiftServerlessClient", "ListSnapshotsCommand")
|
|
2370
|
-
.sc(ListSnapshots$)
|
|
640
|
+
.sc(schemas_0.ListSnapshots$)
|
|
2371
641
|
.build() {
|
|
2372
642
|
}
|
|
2373
643
|
|
|
@@ -2379,7 +649,7 @@ class ListTableRestoreStatusCommand extends smithyClient.Command
|
|
|
2379
649
|
})
|
|
2380
650
|
.s("RedshiftServerless", "ListTableRestoreStatus", {})
|
|
2381
651
|
.n("RedshiftServerlessClient", "ListTableRestoreStatusCommand")
|
|
2382
|
-
.sc(ListTableRestoreStatus$)
|
|
652
|
+
.sc(schemas_0.ListTableRestoreStatus$)
|
|
2383
653
|
.build() {
|
|
2384
654
|
}
|
|
2385
655
|
|
|
@@ -2391,7 +661,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2391
661
|
})
|
|
2392
662
|
.s("RedshiftServerless", "ListTagsForResource", {})
|
|
2393
663
|
.n("RedshiftServerlessClient", "ListTagsForResourceCommand")
|
|
2394
|
-
.sc(ListTagsForResource$)
|
|
664
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
2395
665
|
.build() {
|
|
2396
666
|
}
|
|
2397
667
|
|
|
@@ -2403,7 +673,7 @@ class ListTracksCommand extends smithyClient.Command
|
|
|
2403
673
|
})
|
|
2404
674
|
.s("RedshiftServerless", "ListTracks", {})
|
|
2405
675
|
.n("RedshiftServerlessClient", "ListTracksCommand")
|
|
2406
|
-
.sc(ListTracks$)
|
|
676
|
+
.sc(schemas_0.ListTracks$)
|
|
2407
677
|
.build() {
|
|
2408
678
|
}
|
|
2409
679
|
|
|
@@ -2415,7 +685,7 @@ class ListUsageLimitsCommand extends smithyClient.Command
|
|
|
2415
685
|
})
|
|
2416
686
|
.s("RedshiftServerless", "ListUsageLimits", {})
|
|
2417
687
|
.n("RedshiftServerlessClient", "ListUsageLimitsCommand")
|
|
2418
|
-
.sc(ListUsageLimits$)
|
|
688
|
+
.sc(schemas_0.ListUsageLimits$)
|
|
2419
689
|
.build() {
|
|
2420
690
|
}
|
|
2421
691
|
|
|
@@ -2427,7 +697,7 @@ class ListWorkgroupsCommand extends smithyClient.Command
|
|
|
2427
697
|
})
|
|
2428
698
|
.s("RedshiftServerless", "ListWorkgroups", {})
|
|
2429
699
|
.n("RedshiftServerlessClient", "ListWorkgroupsCommand")
|
|
2430
|
-
.sc(ListWorkgroups$)
|
|
700
|
+
.sc(schemas_0.ListWorkgroups$)
|
|
2431
701
|
.build() {
|
|
2432
702
|
}
|
|
2433
703
|
|
|
@@ -2439,7 +709,7 @@ class PutResourcePolicyCommand extends smithyClient.Command
|
|
|
2439
709
|
})
|
|
2440
710
|
.s("RedshiftServerless", "PutResourcePolicy", {})
|
|
2441
711
|
.n("RedshiftServerlessClient", "PutResourcePolicyCommand")
|
|
2442
|
-
.sc(PutResourcePolicy$)
|
|
712
|
+
.sc(schemas_0.PutResourcePolicy$)
|
|
2443
713
|
.build() {
|
|
2444
714
|
}
|
|
2445
715
|
|
|
@@ -2451,7 +721,7 @@ class RestoreFromRecoveryPointCommand extends smithyClient.Command
|
|
|
2451
721
|
})
|
|
2452
722
|
.s("RedshiftServerless", "RestoreFromRecoveryPoint", {})
|
|
2453
723
|
.n("RedshiftServerlessClient", "RestoreFromRecoveryPointCommand")
|
|
2454
|
-
.sc(RestoreFromRecoveryPoint$)
|
|
724
|
+
.sc(schemas_0.RestoreFromRecoveryPoint$)
|
|
2455
725
|
.build() {
|
|
2456
726
|
}
|
|
2457
727
|
|
|
@@ -2463,7 +733,7 @@ class RestoreFromSnapshotCommand extends smithyClient.Command
|
|
|
2463
733
|
})
|
|
2464
734
|
.s("RedshiftServerless", "RestoreFromSnapshot", {})
|
|
2465
735
|
.n("RedshiftServerlessClient", "RestoreFromSnapshotCommand")
|
|
2466
|
-
.sc(RestoreFromSnapshot$)
|
|
736
|
+
.sc(schemas_0.RestoreFromSnapshot$)
|
|
2467
737
|
.build() {
|
|
2468
738
|
}
|
|
2469
739
|
|
|
@@ -2475,7 +745,7 @@ class RestoreTableFromRecoveryPointCommand extends smithyClient.Command
|
|
|
2475
745
|
})
|
|
2476
746
|
.s("RedshiftServerless", "RestoreTableFromRecoveryPoint", {})
|
|
2477
747
|
.n("RedshiftServerlessClient", "RestoreTableFromRecoveryPointCommand")
|
|
2478
|
-
.sc(RestoreTableFromRecoveryPoint$)
|
|
748
|
+
.sc(schemas_0.RestoreTableFromRecoveryPoint$)
|
|
2479
749
|
.build() {
|
|
2480
750
|
}
|
|
2481
751
|
|
|
@@ -2487,7 +757,7 @@ class RestoreTableFromSnapshotCommand extends smithyClient.Command
|
|
|
2487
757
|
})
|
|
2488
758
|
.s("RedshiftServerless", "RestoreTableFromSnapshot", {})
|
|
2489
759
|
.n("RedshiftServerlessClient", "RestoreTableFromSnapshotCommand")
|
|
2490
|
-
.sc(RestoreTableFromSnapshot$)
|
|
760
|
+
.sc(schemas_0.RestoreTableFromSnapshot$)
|
|
2491
761
|
.build() {
|
|
2492
762
|
}
|
|
2493
763
|
|
|
@@ -2499,7 +769,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2499
769
|
})
|
|
2500
770
|
.s("RedshiftServerless", "TagResource", {})
|
|
2501
771
|
.n("RedshiftServerlessClient", "TagResourceCommand")
|
|
2502
|
-
.sc(TagResource$)
|
|
772
|
+
.sc(schemas_0.TagResource$)
|
|
2503
773
|
.build() {
|
|
2504
774
|
}
|
|
2505
775
|
|
|
@@ -2511,7 +781,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2511
781
|
})
|
|
2512
782
|
.s("RedshiftServerless", "UntagResource", {})
|
|
2513
783
|
.n("RedshiftServerlessClient", "UntagResourceCommand")
|
|
2514
|
-
.sc(UntagResource$)
|
|
784
|
+
.sc(schemas_0.UntagResource$)
|
|
2515
785
|
.build() {
|
|
2516
786
|
}
|
|
2517
787
|
|
|
@@ -2523,7 +793,7 @@ class UpdateCustomDomainAssociationCommand extends smithyClient.Command
|
|
|
2523
793
|
})
|
|
2524
794
|
.s("RedshiftServerless", "UpdateCustomDomainAssociation", {})
|
|
2525
795
|
.n("RedshiftServerlessClient", "UpdateCustomDomainAssociationCommand")
|
|
2526
|
-
.sc(UpdateCustomDomainAssociation$)
|
|
796
|
+
.sc(schemas_0.UpdateCustomDomainAssociation$)
|
|
2527
797
|
.build() {
|
|
2528
798
|
}
|
|
2529
799
|
|
|
@@ -2535,7 +805,7 @@ class UpdateEndpointAccessCommand extends smithyClient.Command
|
|
|
2535
805
|
})
|
|
2536
806
|
.s("RedshiftServerless", "UpdateEndpointAccess", {})
|
|
2537
807
|
.n("RedshiftServerlessClient", "UpdateEndpointAccessCommand")
|
|
2538
|
-
.sc(UpdateEndpointAccess$)
|
|
808
|
+
.sc(schemas_0.UpdateEndpointAccess$)
|
|
2539
809
|
.build() {
|
|
2540
810
|
}
|
|
2541
811
|
|
|
@@ -2547,7 +817,7 @@ class UpdateLakehouseConfigurationCommand extends smithyClient.Command
|
|
|
2547
817
|
})
|
|
2548
818
|
.s("RedshiftServerless", "UpdateLakehouseConfiguration", {})
|
|
2549
819
|
.n("RedshiftServerlessClient", "UpdateLakehouseConfigurationCommand")
|
|
2550
|
-
.sc(UpdateLakehouseConfiguration$)
|
|
820
|
+
.sc(schemas_0.UpdateLakehouseConfiguration$)
|
|
2551
821
|
.build() {
|
|
2552
822
|
}
|
|
2553
823
|
|
|
@@ -2559,7 +829,7 @@ class UpdateNamespaceCommand extends smithyClient.Command
|
|
|
2559
829
|
})
|
|
2560
830
|
.s("RedshiftServerless", "UpdateNamespace", {})
|
|
2561
831
|
.n("RedshiftServerlessClient", "UpdateNamespaceCommand")
|
|
2562
|
-
.sc(UpdateNamespace$)
|
|
832
|
+
.sc(schemas_0.UpdateNamespace$)
|
|
2563
833
|
.build() {
|
|
2564
834
|
}
|
|
2565
835
|
|
|
@@ -2571,7 +841,7 @@ class UpdateScheduledActionCommand extends smithyClient.Command
|
|
|
2571
841
|
})
|
|
2572
842
|
.s("RedshiftServerless", "UpdateScheduledAction", {})
|
|
2573
843
|
.n("RedshiftServerlessClient", "UpdateScheduledActionCommand")
|
|
2574
|
-
.sc(UpdateScheduledAction$)
|
|
844
|
+
.sc(schemas_0.UpdateScheduledAction$)
|
|
2575
845
|
.build() {
|
|
2576
846
|
}
|
|
2577
847
|
|
|
@@ -2583,7 +853,7 @@ class UpdateSnapshotCommand extends smithyClient.Command
|
|
|
2583
853
|
})
|
|
2584
854
|
.s("RedshiftServerless", "UpdateSnapshot", {})
|
|
2585
855
|
.n("RedshiftServerlessClient", "UpdateSnapshotCommand")
|
|
2586
|
-
.sc(UpdateSnapshot$)
|
|
856
|
+
.sc(schemas_0.UpdateSnapshot$)
|
|
2587
857
|
.build() {
|
|
2588
858
|
}
|
|
2589
859
|
|
|
@@ -2595,7 +865,7 @@ class UpdateSnapshotCopyConfigurationCommand extends smithyClient.Command
|
|
|
2595
865
|
})
|
|
2596
866
|
.s("RedshiftServerless", "UpdateSnapshotCopyConfiguration", {})
|
|
2597
867
|
.n("RedshiftServerlessClient", "UpdateSnapshotCopyConfigurationCommand")
|
|
2598
|
-
.sc(UpdateSnapshotCopyConfiguration$)
|
|
868
|
+
.sc(schemas_0.UpdateSnapshotCopyConfiguration$)
|
|
2599
869
|
.build() {
|
|
2600
870
|
}
|
|
2601
871
|
|
|
@@ -2607,7 +877,7 @@ class UpdateUsageLimitCommand extends smithyClient.Command
|
|
|
2607
877
|
})
|
|
2608
878
|
.s("RedshiftServerless", "UpdateUsageLimit", {})
|
|
2609
879
|
.n("RedshiftServerlessClient", "UpdateUsageLimitCommand")
|
|
2610
|
-
.sc(UpdateUsageLimit$)
|
|
880
|
+
.sc(schemas_0.UpdateUsageLimit$)
|
|
2611
881
|
.build() {
|
|
2612
882
|
}
|
|
2613
883
|
|
|
@@ -2619,7 +889,7 @@ class UpdateWorkgroupCommand extends smithyClient.Command
|
|
|
2619
889
|
})
|
|
2620
890
|
.s("RedshiftServerless", "UpdateWorkgroup", {})
|
|
2621
891
|
.n("RedshiftServerlessClient", "UpdateWorkgroupCommand")
|
|
2622
|
-
.sc(UpdateWorkgroup$)
|
|
892
|
+
.sc(schemas_0.UpdateWorkgroup$)
|
|
2623
893
|
.build() {
|
|
2624
894
|
}
|
|
2625
895
|
|
|
@@ -2812,333 +1082,89 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2812
1082
|
enumerable: true,
|
|
2813
1083
|
get: function () { return smithyClient.Client; }
|
|
2814
1084
|
});
|
|
2815
|
-
exports
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
exports.ConflictException = ConflictException;
|
|
2820
|
-
exports.ConflictException$ = ConflictException$;
|
|
2821
|
-
exports.ConvertRecoveryPointToSnapshot$ = ConvertRecoveryPointToSnapshot$;
|
|
1085
|
+
Object.defineProperty(exports, "RedshiftServerlessServiceException", {
|
|
1086
|
+
enumerable: true,
|
|
1087
|
+
get: function () { return RedshiftServerlessServiceException.RedshiftServerlessServiceException; }
|
|
1088
|
+
});
|
|
2822
1089
|
exports.ConvertRecoveryPointToSnapshotCommand = ConvertRecoveryPointToSnapshotCommand;
|
|
2823
|
-
exports.ConvertRecoveryPointToSnapshotRequest$ = ConvertRecoveryPointToSnapshotRequest$;
|
|
2824
|
-
exports.ConvertRecoveryPointToSnapshotResponse$ = ConvertRecoveryPointToSnapshotResponse$;
|
|
2825
|
-
exports.CreateCustomDomainAssociation$ = CreateCustomDomainAssociation$;
|
|
2826
1090
|
exports.CreateCustomDomainAssociationCommand = CreateCustomDomainAssociationCommand;
|
|
2827
|
-
exports.CreateCustomDomainAssociationRequest$ = CreateCustomDomainAssociationRequest$;
|
|
2828
|
-
exports.CreateCustomDomainAssociationResponse$ = CreateCustomDomainAssociationResponse$;
|
|
2829
|
-
exports.CreateEndpointAccess$ = CreateEndpointAccess$;
|
|
2830
1091
|
exports.CreateEndpointAccessCommand = CreateEndpointAccessCommand;
|
|
2831
|
-
exports.CreateEndpointAccessRequest$ = CreateEndpointAccessRequest$;
|
|
2832
|
-
exports.CreateEndpointAccessResponse$ = CreateEndpointAccessResponse$;
|
|
2833
|
-
exports.CreateNamespace$ = CreateNamespace$;
|
|
2834
1092
|
exports.CreateNamespaceCommand = CreateNamespaceCommand;
|
|
2835
|
-
exports.CreateNamespaceRequest$ = CreateNamespaceRequest$;
|
|
2836
|
-
exports.CreateNamespaceResponse$ = CreateNamespaceResponse$;
|
|
2837
|
-
exports.CreateReservation$ = CreateReservation$;
|
|
2838
1093
|
exports.CreateReservationCommand = CreateReservationCommand;
|
|
2839
|
-
exports.CreateReservationRequest$ = CreateReservationRequest$;
|
|
2840
|
-
exports.CreateReservationResponse$ = CreateReservationResponse$;
|
|
2841
|
-
exports.CreateScheduledAction$ = CreateScheduledAction$;
|
|
2842
1094
|
exports.CreateScheduledActionCommand = CreateScheduledActionCommand;
|
|
2843
|
-
exports.CreateScheduledActionRequest$ = CreateScheduledActionRequest$;
|
|
2844
|
-
exports.CreateScheduledActionResponse$ = CreateScheduledActionResponse$;
|
|
2845
|
-
exports.CreateSnapshot$ = CreateSnapshot$;
|
|
2846
1095
|
exports.CreateSnapshotCommand = CreateSnapshotCommand;
|
|
2847
|
-
exports.CreateSnapshotCopyConfiguration$ = CreateSnapshotCopyConfiguration$;
|
|
2848
1096
|
exports.CreateSnapshotCopyConfigurationCommand = CreateSnapshotCopyConfigurationCommand;
|
|
2849
|
-
exports.CreateSnapshotCopyConfigurationRequest$ = CreateSnapshotCopyConfigurationRequest$;
|
|
2850
|
-
exports.CreateSnapshotCopyConfigurationResponse$ = CreateSnapshotCopyConfigurationResponse$;
|
|
2851
|
-
exports.CreateSnapshotRequest$ = CreateSnapshotRequest$;
|
|
2852
|
-
exports.CreateSnapshotResponse$ = CreateSnapshotResponse$;
|
|
2853
|
-
exports.CreateSnapshotScheduleActionParameters$ = CreateSnapshotScheduleActionParameters$;
|
|
2854
|
-
exports.CreateUsageLimit$ = CreateUsageLimit$;
|
|
2855
1097
|
exports.CreateUsageLimitCommand = CreateUsageLimitCommand;
|
|
2856
|
-
exports.CreateUsageLimitRequest$ = CreateUsageLimitRequest$;
|
|
2857
|
-
exports.CreateUsageLimitResponse$ = CreateUsageLimitResponse$;
|
|
2858
|
-
exports.CreateWorkgroup$ = CreateWorkgroup$;
|
|
2859
1098
|
exports.CreateWorkgroupCommand = CreateWorkgroupCommand;
|
|
2860
|
-
exports.CreateWorkgroupRequest$ = CreateWorkgroupRequest$;
|
|
2861
|
-
exports.CreateWorkgroupResponse$ = CreateWorkgroupResponse$;
|
|
2862
|
-
exports.DeleteCustomDomainAssociation$ = DeleteCustomDomainAssociation$;
|
|
2863
1099
|
exports.DeleteCustomDomainAssociationCommand = DeleteCustomDomainAssociationCommand;
|
|
2864
|
-
exports.DeleteCustomDomainAssociationRequest$ = DeleteCustomDomainAssociationRequest$;
|
|
2865
|
-
exports.DeleteCustomDomainAssociationResponse$ = DeleteCustomDomainAssociationResponse$;
|
|
2866
|
-
exports.DeleteEndpointAccess$ = DeleteEndpointAccess$;
|
|
2867
1100
|
exports.DeleteEndpointAccessCommand = DeleteEndpointAccessCommand;
|
|
2868
|
-
exports.DeleteEndpointAccessRequest$ = DeleteEndpointAccessRequest$;
|
|
2869
|
-
exports.DeleteEndpointAccessResponse$ = DeleteEndpointAccessResponse$;
|
|
2870
|
-
exports.DeleteNamespace$ = DeleteNamespace$;
|
|
2871
1101
|
exports.DeleteNamespaceCommand = DeleteNamespaceCommand;
|
|
2872
|
-
exports.DeleteNamespaceRequest$ = DeleteNamespaceRequest$;
|
|
2873
|
-
exports.DeleteNamespaceResponse$ = DeleteNamespaceResponse$;
|
|
2874
|
-
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
2875
1102
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
2876
|
-
exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
|
|
2877
|
-
exports.DeleteResourcePolicyResponse$ = DeleteResourcePolicyResponse$;
|
|
2878
|
-
exports.DeleteScheduledAction$ = DeleteScheduledAction$;
|
|
2879
1103
|
exports.DeleteScheduledActionCommand = DeleteScheduledActionCommand;
|
|
2880
|
-
exports.DeleteScheduledActionRequest$ = DeleteScheduledActionRequest$;
|
|
2881
|
-
exports.DeleteScheduledActionResponse$ = DeleteScheduledActionResponse$;
|
|
2882
|
-
exports.DeleteSnapshot$ = DeleteSnapshot$;
|
|
2883
1104
|
exports.DeleteSnapshotCommand = DeleteSnapshotCommand;
|
|
2884
|
-
exports.DeleteSnapshotCopyConfiguration$ = DeleteSnapshotCopyConfiguration$;
|
|
2885
1105
|
exports.DeleteSnapshotCopyConfigurationCommand = DeleteSnapshotCopyConfigurationCommand;
|
|
2886
|
-
exports.DeleteSnapshotCopyConfigurationRequest$ = DeleteSnapshotCopyConfigurationRequest$;
|
|
2887
|
-
exports.DeleteSnapshotCopyConfigurationResponse$ = DeleteSnapshotCopyConfigurationResponse$;
|
|
2888
|
-
exports.DeleteSnapshotRequest$ = DeleteSnapshotRequest$;
|
|
2889
|
-
exports.DeleteSnapshotResponse$ = DeleteSnapshotResponse$;
|
|
2890
|
-
exports.DeleteUsageLimit$ = DeleteUsageLimit$;
|
|
2891
1106
|
exports.DeleteUsageLimitCommand = DeleteUsageLimitCommand;
|
|
2892
|
-
exports.DeleteUsageLimitRequest$ = DeleteUsageLimitRequest$;
|
|
2893
|
-
exports.DeleteUsageLimitResponse$ = DeleteUsageLimitResponse$;
|
|
2894
|
-
exports.DeleteWorkgroup$ = DeleteWorkgroup$;
|
|
2895
1107
|
exports.DeleteWorkgroupCommand = DeleteWorkgroupCommand;
|
|
2896
|
-
exports.DeleteWorkgroupRequest$ = DeleteWorkgroupRequest$;
|
|
2897
|
-
exports.DeleteWorkgroupResponse$ = DeleteWorkgroupResponse$;
|
|
2898
|
-
exports.DryRunException = DryRunException;
|
|
2899
|
-
exports.DryRunException$ = DryRunException$;
|
|
2900
|
-
exports.Endpoint$ = Endpoint$;
|
|
2901
|
-
exports.EndpointAccess$ = EndpointAccess$;
|
|
2902
|
-
exports.GetCredentials$ = GetCredentials$;
|
|
2903
1108
|
exports.GetCredentialsCommand = GetCredentialsCommand;
|
|
2904
|
-
exports.GetCredentialsRequest$ = GetCredentialsRequest$;
|
|
2905
|
-
exports.GetCredentialsResponse$ = GetCredentialsResponse$;
|
|
2906
|
-
exports.GetCustomDomainAssociation$ = GetCustomDomainAssociation$;
|
|
2907
1109
|
exports.GetCustomDomainAssociationCommand = GetCustomDomainAssociationCommand;
|
|
2908
|
-
exports.GetCustomDomainAssociationRequest$ = GetCustomDomainAssociationRequest$;
|
|
2909
|
-
exports.GetCustomDomainAssociationResponse$ = GetCustomDomainAssociationResponse$;
|
|
2910
|
-
exports.GetEndpointAccess$ = GetEndpointAccess$;
|
|
2911
1110
|
exports.GetEndpointAccessCommand = GetEndpointAccessCommand;
|
|
2912
|
-
exports.GetEndpointAccessRequest$ = GetEndpointAccessRequest$;
|
|
2913
|
-
exports.GetEndpointAccessResponse$ = GetEndpointAccessResponse$;
|
|
2914
|
-
exports.GetIdentityCenterAuthToken$ = GetIdentityCenterAuthToken$;
|
|
2915
1111
|
exports.GetIdentityCenterAuthTokenCommand = GetIdentityCenterAuthTokenCommand;
|
|
2916
|
-
exports.GetIdentityCenterAuthTokenRequest$ = GetIdentityCenterAuthTokenRequest$;
|
|
2917
|
-
exports.GetIdentityCenterAuthTokenResponse$ = GetIdentityCenterAuthTokenResponse$;
|
|
2918
|
-
exports.GetNamespace$ = GetNamespace$;
|
|
2919
1112
|
exports.GetNamespaceCommand = GetNamespaceCommand;
|
|
2920
|
-
exports.GetNamespaceRequest$ = GetNamespaceRequest$;
|
|
2921
|
-
exports.GetNamespaceResponse$ = GetNamespaceResponse$;
|
|
2922
|
-
exports.GetRecoveryPoint$ = GetRecoveryPoint$;
|
|
2923
1113
|
exports.GetRecoveryPointCommand = GetRecoveryPointCommand;
|
|
2924
|
-
exports.GetRecoveryPointRequest$ = GetRecoveryPointRequest$;
|
|
2925
|
-
exports.GetRecoveryPointResponse$ = GetRecoveryPointResponse$;
|
|
2926
|
-
exports.GetReservation$ = GetReservation$;
|
|
2927
1114
|
exports.GetReservationCommand = GetReservationCommand;
|
|
2928
|
-
exports.GetReservationOffering$ = GetReservationOffering$;
|
|
2929
1115
|
exports.GetReservationOfferingCommand = GetReservationOfferingCommand;
|
|
2930
|
-
exports.GetReservationOfferingRequest$ = GetReservationOfferingRequest$;
|
|
2931
|
-
exports.GetReservationOfferingResponse$ = GetReservationOfferingResponse$;
|
|
2932
|
-
exports.GetReservationRequest$ = GetReservationRequest$;
|
|
2933
|
-
exports.GetReservationResponse$ = GetReservationResponse$;
|
|
2934
|
-
exports.GetResourcePolicy$ = GetResourcePolicy$;
|
|
2935
1116
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
2936
|
-
exports.GetResourcePolicyRequest$ = GetResourcePolicyRequest$;
|
|
2937
|
-
exports.GetResourcePolicyResponse$ = GetResourcePolicyResponse$;
|
|
2938
|
-
exports.GetScheduledAction$ = GetScheduledAction$;
|
|
2939
1117
|
exports.GetScheduledActionCommand = GetScheduledActionCommand;
|
|
2940
|
-
exports.GetScheduledActionRequest$ = GetScheduledActionRequest$;
|
|
2941
|
-
exports.GetScheduledActionResponse$ = GetScheduledActionResponse$;
|
|
2942
|
-
exports.GetSnapshot$ = GetSnapshot$;
|
|
2943
1118
|
exports.GetSnapshotCommand = GetSnapshotCommand;
|
|
2944
|
-
exports.GetSnapshotRequest$ = GetSnapshotRequest$;
|
|
2945
|
-
exports.GetSnapshotResponse$ = GetSnapshotResponse$;
|
|
2946
|
-
exports.GetTableRestoreStatus$ = GetTableRestoreStatus$;
|
|
2947
1119
|
exports.GetTableRestoreStatusCommand = GetTableRestoreStatusCommand;
|
|
2948
|
-
exports.GetTableRestoreStatusRequest$ = GetTableRestoreStatusRequest$;
|
|
2949
|
-
exports.GetTableRestoreStatusResponse$ = GetTableRestoreStatusResponse$;
|
|
2950
|
-
exports.GetTrack$ = GetTrack$;
|
|
2951
1120
|
exports.GetTrackCommand = GetTrackCommand;
|
|
2952
|
-
exports.GetTrackRequest$ = GetTrackRequest$;
|
|
2953
|
-
exports.GetTrackResponse$ = GetTrackResponse$;
|
|
2954
|
-
exports.GetUsageLimit$ = GetUsageLimit$;
|
|
2955
1121
|
exports.GetUsageLimitCommand = GetUsageLimitCommand;
|
|
2956
|
-
exports.GetUsageLimitRequest$ = GetUsageLimitRequest$;
|
|
2957
|
-
exports.GetUsageLimitResponse$ = GetUsageLimitResponse$;
|
|
2958
|
-
exports.GetWorkgroup$ = GetWorkgroup$;
|
|
2959
1122
|
exports.GetWorkgroupCommand = GetWorkgroupCommand;
|
|
2960
|
-
exports.GetWorkgroupRequest$ = GetWorkgroupRequest$;
|
|
2961
|
-
exports.GetWorkgroupResponse$ = GetWorkgroupResponse$;
|
|
2962
|
-
exports.InsufficientCapacityException = InsufficientCapacityException;
|
|
2963
|
-
exports.InsufficientCapacityException$ = InsufficientCapacityException$;
|
|
2964
|
-
exports.InternalServerException = InternalServerException;
|
|
2965
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
2966
|
-
exports.InvalidPaginationException = InvalidPaginationException;
|
|
2967
|
-
exports.InvalidPaginationException$ = InvalidPaginationException$;
|
|
2968
|
-
exports.Ipv6CidrBlockNotFoundException = Ipv6CidrBlockNotFoundException;
|
|
2969
|
-
exports.Ipv6CidrBlockNotFoundException$ = Ipv6CidrBlockNotFoundException$;
|
|
2970
1123
|
exports.LakehouseIdcRegistration = LakehouseIdcRegistration;
|
|
2971
1124
|
exports.LakehouseRegistration = LakehouseRegistration;
|
|
2972
|
-
exports.ListCustomDomainAssociations$ = ListCustomDomainAssociations$;
|
|
2973
1125
|
exports.ListCustomDomainAssociationsCommand = ListCustomDomainAssociationsCommand;
|
|
2974
|
-
exports.ListCustomDomainAssociationsRequest$ = ListCustomDomainAssociationsRequest$;
|
|
2975
|
-
exports.ListCustomDomainAssociationsResponse$ = ListCustomDomainAssociationsResponse$;
|
|
2976
|
-
exports.ListEndpointAccess$ = ListEndpointAccess$;
|
|
2977
1126
|
exports.ListEndpointAccessCommand = ListEndpointAccessCommand;
|
|
2978
|
-
exports.ListEndpointAccessRequest$ = ListEndpointAccessRequest$;
|
|
2979
|
-
exports.ListEndpointAccessResponse$ = ListEndpointAccessResponse$;
|
|
2980
|
-
exports.ListManagedWorkgroups$ = ListManagedWorkgroups$;
|
|
2981
1127
|
exports.ListManagedWorkgroupsCommand = ListManagedWorkgroupsCommand;
|
|
2982
|
-
exports.ListManagedWorkgroupsRequest$ = ListManagedWorkgroupsRequest$;
|
|
2983
|
-
exports.ListManagedWorkgroupsResponse$ = ListManagedWorkgroupsResponse$;
|
|
2984
|
-
exports.ListNamespaces$ = ListNamespaces$;
|
|
2985
1128
|
exports.ListNamespacesCommand = ListNamespacesCommand;
|
|
2986
|
-
exports.ListNamespacesRequest$ = ListNamespacesRequest$;
|
|
2987
|
-
exports.ListNamespacesResponse$ = ListNamespacesResponse$;
|
|
2988
|
-
exports.ListRecoveryPoints$ = ListRecoveryPoints$;
|
|
2989
1129
|
exports.ListRecoveryPointsCommand = ListRecoveryPointsCommand;
|
|
2990
|
-
exports.ListRecoveryPointsRequest$ = ListRecoveryPointsRequest$;
|
|
2991
|
-
exports.ListRecoveryPointsResponse$ = ListRecoveryPointsResponse$;
|
|
2992
|
-
exports.ListReservationOfferings$ = ListReservationOfferings$;
|
|
2993
1130
|
exports.ListReservationOfferingsCommand = ListReservationOfferingsCommand;
|
|
2994
|
-
exports.ListReservationOfferingsRequest$ = ListReservationOfferingsRequest$;
|
|
2995
|
-
exports.ListReservationOfferingsResponse$ = ListReservationOfferingsResponse$;
|
|
2996
|
-
exports.ListReservations$ = ListReservations$;
|
|
2997
1131
|
exports.ListReservationsCommand = ListReservationsCommand;
|
|
2998
|
-
exports.ListReservationsRequest$ = ListReservationsRequest$;
|
|
2999
|
-
exports.ListReservationsResponse$ = ListReservationsResponse$;
|
|
3000
|
-
exports.ListScheduledActions$ = ListScheduledActions$;
|
|
3001
1132
|
exports.ListScheduledActionsCommand = ListScheduledActionsCommand;
|
|
3002
|
-
exports.ListScheduledActionsRequest$ = ListScheduledActionsRequest$;
|
|
3003
|
-
exports.ListScheduledActionsResponse$ = ListScheduledActionsResponse$;
|
|
3004
|
-
exports.ListSnapshotCopyConfigurations$ = ListSnapshotCopyConfigurations$;
|
|
3005
1133
|
exports.ListSnapshotCopyConfigurationsCommand = ListSnapshotCopyConfigurationsCommand;
|
|
3006
|
-
exports.ListSnapshotCopyConfigurationsRequest$ = ListSnapshotCopyConfigurationsRequest$;
|
|
3007
|
-
exports.ListSnapshotCopyConfigurationsResponse$ = ListSnapshotCopyConfigurationsResponse$;
|
|
3008
|
-
exports.ListSnapshots$ = ListSnapshots$;
|
|
3009
1134
|
exports.ListSnapshotsCommand = ListSnapshotsCommand;
|
|
3010
|
-
exports.ListSnapshotsRequest$ = ListSnapshotsRequest$;
|
|
3011
|
-
exports.ListSnapshotsResponse$ = ListSnapshotsResponse$;
|
|
3012
|
-
exports.ListTableRestoreStatus$ = ListTableRestoreStatus$;
|
|
3013
1135
|
exports.ListTableRestoreStatusCommand = ListTableRestoreStatusCommand;
|
|
3014
|
-
exports.ListTableRestoreStatusRequest$ = ListTableRestoreStatusRequest$;
|
|
3015
|
-
exports.ListTableRestoreStatusResponse$ = ListTableRestoreStatusResponse$;
|
|
3016
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
3017
1136
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3018
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3019
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3020
|
-
exports.ListTracks$ = ListTracks$;
|
|
3021
1137
|
exports.ListTracksCommand = ListTracksCommand;
|
|
3022
|
-
exports.ListTracksRequest$ = ListTracksRequest$;
|
|
3023
|
-
exports.ListTracksResponse$ = ListTracksResponse$;
|
|
3024
|
-
exports.ListUsageLimits$ = ListUsageLimits$;
|
|
3025
1138
|
exports.ListUsageLimitsCommand = ListUsageLimitsCommand;
|
|
3026
|
-
exports.ListUsageLimitsRequest$ = ListUsageLimitsRequest$;
|
|
3027
|
-
exports.ListUsageLimitsResponse$ = ListUsageLimitsResponse$;
|
|
3028
|
-
exports.ListWorkgroups$ = ListWorkgroups$;
|
|
3029
1139
|
exports.ListWorkgroupsCommand = ListWorkgroupsCommand;
|
|
3030
|
-
exports.ListWorkgroupsRequest$ = ListWorkgroupsRequest$;
|
|
3031
|
-
exports.ListWorkgroupsResponse$ = ListWorkgroupsResponse$;
|
|
3032
1140
|
exports.LogExport = LogExport;
|
|
3033
|
-
exports.ManagedWorkgroupListItem$ = ManagedWorkgroupListItem$;
|
|
3034
1141
|
exports.ManagedWorkgroupStatus = ManagedWorkgroupStatus;
|
|
3035
|
-
exports.Namespace$ = Namespace$;
|
|
3036
1142
|
exports.NamespaceStatus = NamespaceStatus;
|
|
3037
|
-
exports.NetworkInterface$ = NetworkInterface$;
|
|
3038
1143
|
exports.OfferingType = OfferingType;
|
|
3039
|
-
exports.PerformanceTarget$ = PerformanceTarget$;
|
|
3040
1144
|
exports.PerformanceTargetStatus = PerformanceTargetStatus;
|
|
3041
|
-
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
3042
1145
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
3043
|
-
exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
|
|
3044
|
-
exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
|
|
3045
|
-
exports.RecoveryPoint$ = RecoveryPoint$;
|
|
3046
1146
|
exports.RedshiftServerless = RedshiftServerless;
|
|
3047
1147
|
exports.RedshiftServerlessClient = RedshiftServerlessClient;
|
|
3048
|
-
exports.RedshiftServerlessServiceException = RedshiftServerlessServiceException;
|
|
3049
|
-
exports.RedshiftServerlessServiceException$ = RedshiftServerlessServiceException$;
|
|
3050
|
-
exports.Reservation$ = Reservation$;
|
|
3051
|
-
exports.ReservationOffering$ = ReservationOffering$;
|
|
3052
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3053
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3054
|
-
exports.ResourcePolicy$ = ResourcePolicy$;
|
|
3055
|
-
exports.RestoreFromRecoveryPoint$ = RestoreFromRecoveryPoint$;
|
|
3056
1148
|
exports.RestoreFromRecoveryPointCommand = RestoreFromRecoveryPointCommand;
|
|
3057
|
-
exports.RestoreFromRecoveryPointRequest$ = RestoreFromRecoveryPointRequest$;
|
|
3058
|
-
exports.RestoreFromRecoveryPointResponse$ = RestoreFromRecoveryPointResponse$;
|
|
3059
|
-
exports.RestoreFromSnapshot$ = RestoreFromSnapshot$;
|
|
3060
1149
|
exports.RestoreFromSnapshotCommand = RestoreFromSnapshotCommand;
|
|
3061
|
-
exports.RestoreFromSnapshotRequest$ = RestoreFromSnapshotRequest$;
|
|
3062
|
-
exports.RestoreFromSnapshotResponse$ = RestoreFromSnapshotResponse$;
|
|
3063
|
-
exports.RestoreTableFromRecoveryPoint$ = RestoreTableFromRecoveryPoint$;
|
|
3064
1150
|
exports.RestoreTableFromRecoveryPointCommand = RestoreTableFromRecoveryPointCommand;
|
|
3065
|
-
exports.RestoreTableFromRecoveryPointRequest$ = RestoreTableFromRecoveryPointRequest$;
|
|
3066
|
-
exports.RestoreTableFromRecoveryPointResponse$ = RestoreTableFromRecoveryPointResponse$;
|
|
3067
|
-
exports.RestoreTableFromSnapshot$ = RestoreTableFromSnapshot$;
|
|
3068
1151
|
exports.RestoreTableFromSnapshotCommand = RestoreTableFromSnapshotCommand;
|
|
3069
|
-
exports.RestoreTableFromSnapshotRequest$ = RestoreTableFromSnapshotRequest$;
|
|
3070
|
-
exports.RestoreTableFromSnapshotResponse$ = RestoreTableFromSnapshotResponse$;
|
|
3071
|
-
exports.Schedule$ = Schedule$;
|
|
3072
|
-
exports.ScheduledActionAssociation$ = ScheduledActionAssociation$;
|
|
3073
|
-
exports.ScheduledActionResponse$ = ScheduledActionResponse$;
|
|
3074
|
-
exports.ServerlessTrack$ = ServerlessTrack$;
|
|
3075
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3076
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
3077
|
-
exports.Snapshot$ = Snapshot$;
|
|
3078
|
-
exports.SnapshotCopyConfiguration$ = SnapshotCopyConfiguration$;
|
|
3079
1152
|
exports.SnapshotStatus = SnapshotStatus;
|
|
3080
1153
|
exports.State = State;
|
|
3081
|
-
exports.TableRestoreStatus$ = TableRestoreStatus$;
|
|
3082
|
-
exports.Tag$ = Tag$;
|
|
3083
|
-
exports.TagResource$ = TagResource$;
|
|
3084
1154
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3085
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3086
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3087
|
-
exports.TargetAction$ = TargetAction$;
|
|
3088
|
-
exports.ThrottlingException = ThrottlingException;
|
|
3089
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
3090
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
3091
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
3092
|
-
exports.UntagResource$ = UntagResource$;
|
|
3093
1155
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3094
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3095
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3096
|
-
exports.UpdateCustomDomainAssociation$ = UpdateCustomDomainAssociation$;
|
|
3097
1156
|
exports.UpdateCustomDomainAssociationCommand = UpdateCustomDomainAssociationCommand;
|
|
3098
|
-
exports.UpdateCustomDomainAssociationRequest$ = UpdateCustomDomainAssociationRequest$;
|
|
3099
|
-
exports.UpdateCustomDomainAssociationResponse$ = UpdateCustomDomainAssociationResponse$;
|
|
3100
|
-
exports.UpdateEndpointAccess$ = UpdateEndpointAccess$;
|
|
3101
1157
|
exports.UpdateEndpointAccessCommand = UpdateEndpointAccessCommand;
|
|
3102
|
-
exports.UpdateEndpointAccessRequest$ = UpdateEndpointAccessRequest$;
|
|
3103
|
-
exports.UpdateEndpointAccessResponse$ = UpdateEndpointAccessResponse$;
|
|
3104
|
-
exports.UpdateLakehouseConfiguration$ = UpdateLakehouseConfiguration$;
|
|
3105
1158
|
exports.UpdateLakehouseConfigurationCommand = UpdateLakehouseConfigurationCommand;
|
|
3106
|
-
exports.UpdateLakehouseConfigurationRequest$ = UpdateLakehouseConfigurationRequest$;
|
|
3107
|
-
exports.UpdateLakehouseConfigurationResponse$ = UpdateLakehouseConfigurationResponse$;
|
|
3108
|
-
exports.UpdateNamespace$ = UpdateNamespace$;
|
|
3109
1159
|
exports.UpdateNamespaceCommand = UpdateNamespaceCommand;
|
|
3110
|
-
exports.UpdateNamespaceRequest$ = UpdateNamespaceRequest$;
|
|
3111
|
-
exports.UpdateNamespaceResponse$ = UpdateNamespaceResponse$;
|
|
3112
|
-
exports.UpdateScheduledAction$ = UpdateScheduledAction$;
|
|
3113
1160
|
exports.UpdateScheduledActionCommand = UpdateScheduledActionCommand;
|
|
3114
|
-
exports.UpdateScheduledActionRequest$ = UpdateScheduledActionRequest$;
|
|
3115
|
-
exports.UpdateScheduledActionResponse$ = UpdateScheduledActionResponse$;
|
|
3116
|
-
exports.UpdateSnapshot$ = UpdateSnapshot$;
|
|
3117
1161
|
exports.UpdateSnapshotCommand = UpdateSnapshotCommand;
|
|
3118
|
-
exports.UpdateSnapshotCopyConfiguration$ = UpdateSnapshotCopyConfiguration$;
|
|
3119
1162
|
exports.UpdateSnapshotCopyConfigurationCommand = UpdateSnapshotCopyConfigurationCommand;
|
|
3120
|
-
exports.UpdateSnapshotCopyConfigurationRequest$ = UpdateSnapshotCopyConfigurationRequest$;
|
|
3121
|
-
exports.UpdateSnapshotCopyConfigurationResponse$ = UpdateSnapshotCopyConfigurationResponse$;
|
|
3122
|
-
exports.UpdateSnapshotRequest$ = UpdateSnapshotRequest$;
|
|
3123
|
-
exports.UpdateSnapshotResponse$ = UpdateSnapshotResponse$;
|
|
3124
|
-
exports.UpdateTarget$ = UpdateTarget$;
|
|
3125
|
-
exports.UpdateUsageLimit$ = UpdateUsageLimit$;
|
|
3126
1163
|
exports.UpdateUsageLimitCommand = UpdateUsageLimitCommand;
|
|
3127
|
-
exports.UpdateUsageLimitRequest$ = UpdateUsageLimitRequest$;
|
|
3128
|
-
exports.UpdateUsageLimitResponse$ = UpdateUsageLimitResponse$;
|
|
3129
|
-
exports.UpdateWorkgroup$ = UpdateWorkgroup$;
|
|
3130
1164
|
exports.UpdateWorkgroupCommand = UpdateWorkgroupCommand;
|
|
3131
|
-
exports.UpdateWorkgroupRequest$ = UpdateWorkgroupRequest$;
|
|
3132
|
-
exports.UpdateWorkgroupResponse$ = UpdateWorkgroupResponse$;
|
|
3133
|
-
exports.UsageLimit$ = UsageLimit$;
|
|
3134
1165
|
exports.UsageLimitBreachAction = UsageLimitBreachAction;
|
|
3135
1166
|
exports.UsageLimitPeriod = UsageLimitPeriod;
|
|
3136
1167
|
exports.UsageLimitUsageType = UsageLimitUsageType;
|
|
3137
|
-
exports.ValidationException = ValidationException;
|
|
3138
|
-
exports.ValidationException$ = ValidationException$;
|
|
3139
|
-
exports.VpcEndpoint$ = VpcEndpoint$;
|
|
3140
|
-
exports.VpcSecurityGroupMembership$ = VpcSecurityGroupMembership$;
|
|
3141
|
-
exports.Workgroup$ = Workgroup$;
|
|
3142
1168
|
exports.WorkgroupStatus = WorkgroupStatus;
|
|
3143
1169
|
exports.paginateListCustomDomainAssociations = paginateListCustomDomainAssociations;
|
|
3144
1170
|
exports.paginateListEndpointAccess = paginateListEndpointAccess;
|
|
@@ -3154,3 +1180,15 @@ exports.paginateListTableRestoreStatus = paginateListTableRestoreStatus;
|
|
|
3154
1180
|
exports.paginateListTracks = paginateListTracks;
|
|
3155
1181
|
exports.paginateListUsageLimits = paginateListUsageLimits;
|
|
3156
1182
|
exports.paginateListWorkgroups = paginateListWorkgroups;
|
|
1183
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1184
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1185
|
+
enumerable: true,
|
|
1186
|
+
get: function () { return schemas_0[k]; }
|
|
1187
|
+
});
|
|
1188
|
+
});
|
|
1189
|
+
Object.keys(errors).forEach(function (k) {
|
|
1190
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1191
|
+
enumerable: true,
|
|
1192
|
+
get: function () { return errors[k]; }
|
|
1193
|
+
});
|
|
1194
|
+
});
|