@aws-sdk/client-redshift-serverless 3.1074.0 → 3.1076.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 +2167 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/RedshiftServerlessServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -156
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1758
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultRedshiftServerlessHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "redshift-serverless",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultRedshiftServerlessHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1873 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://redshift-serverless-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://redshift-serverless-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://redshift-serverless.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://redshift-serverless.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class RedshiftServerlessServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, RedshiftServerlessServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends RedshiftServerlessServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
code;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AccessDeniedException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
150
|
+
this.code = opts.code;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class ConflictException extends RedshiftServerlessServiceException {
|
|
154
|
+
name = "ConflictException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
constructor(opts) {
|
|
157
|
+
super({
|
|
158
|
+
name: "ConflictException",
|
|
159
|
+
$fault: "client",
|
|
160
|
+
...opts,
|
|
161
|
+
});
|
|
162
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
class InternalServerException extends RedshiftServerlessServiceException {
|
|
166
|
+
name = "InternalServerException";
|
|
167
|
+
$fault = "server";
|
|
168
|
+
$retryable = {};
|
|
169
|
+
constructor(opts) {
|
|
170
|
+
super({
|
|
171
|
+
name: "InternalServerException",
|
|
172
|
+
$fault: "server",
|
|
173
|
+
...opts,
|
|
174
|
+
});
|
|
175
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
class ResourceNotFoundException extends RedshiftServerlessServiceException {
|
|
179
|
+
name = "ResourceNotFoundException";
|
|
180
|
+
$fault = "client";
|
|
181
|
+
resourceName;
|
|
182
|
+
constructor(opts) {
|
|
183
|
+
super({
|
|
184
|
+
name: "ResourceNotFoundException",
|
|
185
|
+
$fault: "client",
|
|
186
|
+
...opts,
|
|
187
|
+
});
|
|
188
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
189
|
+
this.resourceName = opts.resourceName;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
class ServiceQuotaExceededException extends RedshiftServerlessServiceException {
|
|
193
|
+
name = "ServiceQuotaExceededException";
|
|
194
|
+
$fault = "client";
|
|
195
|
+
constructor(opts) {
|
|
196
|
+
super({
|
|
197
|
+
name: "ServiceQuotaExceededException",
|
|
198
|
+
$fault: "client",
|
|
199
|
+
...opts,
|
|
200
|
+
});
|
|
201
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
class TooManyTagsException extends RedshiftServerlessServiceException {
|
|
205
|
+
name = "TooManyTagsException";
|
|
206
|
+
$fault = "client";
|
|
207
|
+
resourceName;
|
|
208
|
+
constructor(opts) {
|
|
209
|
+
super({
|
|
210
|
+
name: "TooManyTagsException",
|
|
211
|
+
$fault: "client",
|
|
212
|
+
...opts,
|
|
213
|
+
});
|
|
214
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
215
|
+
this.resourceName = opts.resourceName;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
class ValidationException extends RedshiftServerlessServiceException {
|
|
219
|
+
name = "ValidationException";
|
|
220
|
+
$fault = "client";
|
|
221
|
+
constructor(opts) {
|
|
222
|
+
super({
|
|
223
|
+
name: "ValidationException",
|
|
224
|
+
$fault: "client",
|
|
225
|
+
...opts,
|
|
226
|
+
});
|
|
227
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
class ThrottlingException extends RedshiftServerlessServiceException {
|
|
231
|
+
name = "ThrottlingException";
|
|
232
|
+
$fault = "client";
|
|
233
|
+
$retryable = {};
|
|
234
|
+
code;
|
|
235
|
+
constructor(opts) {
|
|
236
|
+
super({
|
|
237
|
+
name: "ThrottlingException",
|
|
238
|
+
$fault: "client",
|
|
239
|
+
...opts,
|
|
240
|
+
});
|
|
241
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
242
|
+
this.code = opts.code;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
class InsufficientCapacityException extends RedshiftServerlessServiceException {
|
|
246
|
+
name = "InsufficientCapacityException";
|
|
247
|
+
$fault = "client";
|
|
248
|
+
$retryable = {};
|
|
249
|
+
constructor(opts) {
|
|
250
|
+
super({
|
|
251
|
+
name: "InsufficientCapacityException",
|
|
252
|
+
$fault: "client",
|
|
253
|
+
...opts,
|
|
254
|
+
});
|
|
255
|
+
Object.setPrototypeOf(this, InsufficientCapacityException.prototype);
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
class Ipv6CidrBlockNotFoundException extends RedshiftServerlessServiceException {
|
|
259
|
+
name = "Ipv6CidrBlockNotFoundException";
|
|
260
|
+
$fault = "client";
|
|
261
|
+
constructor(opts) {
|
|
262
|
+
super({
|
|
263
|
+
name: "Ipv6CidrBlockNotFoundException",
|
|
264
|
+
$fault: "client",
|
|
265
|
+
...opts,
|
|
266
|
+
});
|
|
267
|
+
Object.setPrototypeOf(this, Ipv6CidrBlockNotFoundException.prototype);
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
class DryRunException extends RedshiftServerlessServiceException {
|
|
271
|
+
name = "DryRunException";
|
|
272
|
+
$fault = "client";
|
|
273
|
+
constructor(opts) {
|
|
274
|
+
super({
|
|
275
|
+
name: "DryRunException",
|
|
276
|
+
$fault: "client",
|
|
277
|
+
...opts,
|
|
278
|
+
});
|
|
279
|
+
Object.setPrototypeOf(this, DryRunException.prototype);
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
class InvalidPaginationException extends RedshiftServerlessServiceException {
|
|
283
|
+
name = "InvalidPaginationException";
|
|
284
|
+
$fault = "client";
|
|
285
|
+
constructor(opts) {
|
|
286
|
+
super({
|
|
287
|
+
name: "InvalidPaginationException",
|
|
288
|
+
$fault: "client",
|
|
289
|
+
...opts,
|
|
290
|
+
});
|
|
291
|
+
Object.setPrototypeOf(this, InvalidPaginationException.prototype);
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
const _A = "Association";
|
|
296
|
+
const _ADE = "AccessDeniedException";
|
|
297
|
+
const _AL = "AssociationList";
|
|
298
|
+
const _CCDA = "CreateCustomDomainAssociation";
|
|
299
|
+
const _CCDAR = "CreateCustomDomainAssociationRequest";
|
|
300
|
+
const _CCDARr = "CreateCustomDomainAssociationResponse";
|
|
301
|
+
const _CE = "ConflictException";
|
|
302
|
+
const _CEA = "CreateEndpointAccess";
|
|
303
|
+
const _CEAR = "CreateEndpointAccessRequest";
|
|
304
|
+
const _CEARr = "CreateEndpointAccessResponse";
|
|
305
|
+
const _CN = "CreateNamespace";
|
|
306
|
+
const _CNR = "CreateNamespaceRequest";
|
|
307
|
+
const _CNRr = "CreateNamespaceResponse";
|
|
308
|
+
const _CP = "ConfigParameter";
|
|
309
|
+
const _CPL = "ConfigParameterList";
|
|
310
|
+
const _CR = "CreateReservation";
|
|
311
|
+
const _CRPTS = "ConvertRecoveryPointToSnapshot";
|
|
312
|
+
const _CRPTSR = "ConvertRecoveryPointToSnapshotRequest";
|
|
313
|
+
const _CRPTSRo = "ConvertRecoveryPointToSnapshotResponse";
|
|
314
|
+
const _CRR = "CreateReservationRequest";
|
|
315
|
+
const _CRRr = "CreateReservationResponse";
|
|
316
|
+
const _CS = "CreateSnapshot";
|
|
317
|
+
const _CSA = "CreateScheduledAction";
|
|
318
|
+
const _CSAR = "CreateScheduledActionRequest";
|
|
319
|
+
const _CSARr = "CreateScheduledActionResponse";
|
|
320
|
+
const _CSCC = "CreateSnapshotCopyConfiguration";
|
|
321
|
+
const _CSCCR = "CreateSnapshotCopyConfigurationRequest";
|
|
322
|
+
const _CSCCRr = "CreateSnapshotCopyConfigurationResponse";
|
|
323
|
+
const _CSR = "CreateSnapshotRequest";
|
|
324
|
+
const _CSRr = "CreateSnapshotResponse";
|
|
325
|
+
const _CSSAP = "CreateSnapshotScheduleActionParameters";
|
|
326
|
+
const _CUL = "CreateUsageLimit";
|
|
327
|
+
const _CULR = "CreateUsageLimitRequest";
|
|
328
|
+
const _CULRr = "CreateUsageLimitResponse";
|
|
329
|
+
const _CW = "CreateWorkgroup";
|
|
330
|
+
const _CWR = "CreateWorkgroupRequest";
|
|
331
|
+
const _CWRr = "CreateWorkgroupResponse";
|
|
332
|
+
const _DCDA = "DeleteCustomDomainAssociation";
|
|
333
|
+
const _DCDAR = "DeleteCustomDomainAssociationRequest";
|
|
334
|
+
const _DCDARe = "DeleteCustomDomainAssociationResponse";
|
|
335
|
+
const _DEA = "DeleteEndpointAccess";
|
|
336
|
+
const _DEAR = "DeleteEndpointAccessRequest";
|
|
337
|
+
const _DEARe = "DeleteEndpointAccessResponse";
|
|
338
|
+
const _DN = "DeleteNamespace";
|
|
339
|
+
const _DNR = "DeleteNamespaceRequest";
|
|
340
|
+
const _DNRe = "DeleteNamespaceResponse";
|
|
341
|
+
const _DP = "DbPassword";
|
|
342
|
+
const _DRE = "DryRunException";
|
|
343
|
+
const _DRP = "DeleteResourcePolicy";
|
|
344
|
+
const _DRPR = "DeleteResourcePolicyRequest";
|
|
345
|
+
const _DRPRe = "DeleteResourcePolicyResponse";
|
|
346
|
+
const _DS = "DeleteSnapshot";
|
|
347
|
+
const _DSA = "DeleteScheduledAction";
|
|
348
|
+
const _DSAR = "DeleteScheduledActionRequest";
|
|
349
|
+
const _DSARe = "DeleteScheduledActionResponse";
|
|
350
|
+
const _DSCC = "DeleteSnapshotCopyConfiguration";
|
|
351
|
+
const _DSCCR = "DeleteSnapshotCopyConfigurationRequest";
|
|
352
|
+
const _DSCCRe = "DeleteSnapshotCopyConfigurationResponse";
|
|
353
|
+
const _DSR = "DeleteSnapshotRequest";
|
|
354
|
+
const _DSRe = "DeleteSnapshotResponse";
|
|
355
|
+
const _DU = "DbUser";
|
|
356
|
+
const _DUL = "DeleteUsageLimit";
|
|
357
|
+
const _DULR = "DeleteUsageLimitRequest";
|
|
358
|
+
const _DULRe = "DeleteUsageLimitResponse";
|
|
359
|
+
const _DW = "DeleteWorkgroup";
|
|
360
|
+
const _DWR = "DeleteWorkgroupRequest";
|
|
361
|
+
const _DWRe = "DeleteWorkgroupResponse";
|
|
362
|
+
const _E = "Endpoint";
|
|
363
|
+
const _EA = "EndpointAccess";
|
|
364
|
+
const _EAL = "EndpointAccessList";
|
|
365
|
+
const _ET = "ExpirationTime";
|
|
366
|
+
const _GC = "GetCredentials";
|
|
367
|
+
const _GCDA = "GetCustomDomainAssociation";
|
|
368
|
+
const _GCDAR = "GetCustomDomainAssociationRequest";
|
|
369
|
+
const _GCDARe = "GetCustomDomainAssociationResponse";
|
|
370
|
+
const _GCR = "GetCredentialsRequest";
|
|
371
|
+
const _GCRe = "GetCredentialsResponse";
|
|
372
|
+
const _GEA = "GetEndpointAccess";
|
|
373
|
+
const _GEAR = "GetEndpointAccessRequest";
|
|
374
|
+
const _GEARe = "GetEndpointAccessResponse";
|
|
375
|
+
const _GICAT = "GetIdentityCenterAuthToken";
|
|
376
|
+
const _GICATR = "GetIdentityCenterAuthTokenRequest";
|
|
377
|
+
const _GICATRe = "GetIdentityCenterAuthTokenResponse";
|
|
378
|
+
const _GN = "GetNamespace";
|
|
379
|
+
const _GNR = "GetNamespaceRequest";
|
|
380
|
+
const _GNRe = "GetNamespaceResponse";
|
|
381
|
+
const _GR = "GetReservation";
|
|
382
|
+
const _GRO = "GetReservationOffering";
|
|
383
|
+
const _GROR = "GetReservationOfferingRequest";
|
|
384
|
+
const _GRORe = "GetReservationOfferingResponse";
|
|
385
|
+
const _GRP = "GetRecoveryPoint";
|
|
386
|
+
const _GRPR = "GetRecoveryPointRequest";
|
|
387
|
+
const _GRPRe = "GetRecoveryPointResponse";
|
|
388
|
+
const _GRPRet = "GetResourcePolicyRequest";
|
|
389
|
+
const _GRPRete = "GetResourcePolicyResponse";
|
|
390
|
+
const _GRPe = "GetResourcePolicy";
|
|
391
|
+
const _GRR = "GetReservationRequest";
|
|
392
|
+
const _GRRe = "GetReservationResponse";
|
|
393
|
+
const _GS = "GetSnapshot";
|
|
394
|
+
const _GSA = "GetScheduledAction";
|
|
395
|
+
const _GSAR = "GetScheduledActionRequest";
|
|
396
|
+
const _GSARe = "GetScheduledActionResponse";
|
|
397
|
+
const _GSR = "GetSnapshotRequest";
|
|
398
|
+
const _GSRe = "GetSnapshotResponse";
|
|
399
|
+
const _GT = "GetTrack";
|
|
400
|
+
const _GTR = "GetTrackRequest";
|
|
401
|
+
const _GTRS = "GetTableRestoreStatus";
|
|
402
|
+
const _GTRSR = "GetTableRestoreStatusRequest";
|
|
403
|
+
const _GTRSRe = "GetTableRestoreStatusResponse";
|
|
404
|
+
const _GTRe = "GetTrackResponse";
|
|
405
|
+
const _GUL = "GetUsageLimit";
|
|
406
|
+
const _GULR = "GetUsageLimitRequest";
|
|
407
|
+
const _GULRe = "GetUsageLimitResponse";
|
|
408
|
+
const _GW = "GetWorkgroup";
|
|
409
|
+
const _GWR = "GetWorkgroupRequest";
|
|
410
|
+
const _GWRe = "GetWorkgroupResponse";
|
|
411
|
+
const _ICBNFE = "Ipv6CidrBlockNotFoundException";
|
|
412
|
+
const _ICE = "InsufficientCapacityException";
|
|
413
|
+
const _IPE = "InvalidPaginationException";
|
|
414
|
+
const _ISE = "InternalServerException";
|
|
415
|
+
const _LCDA = "ListCustomDomainAssociations";
|
|
416
|
+
const _LCDAR = "ListCustomDomainAssociationsRequest";
|
|
417
|
+
const _LCDARi = "ListCustomDomainAssociationsResponse";
|
|
418
|
+
const _LEA = "ListEndpointAccess";
|
|
419
|
+
const _LEAR = "ListEndpointAccessRequest";
|
|
420
|
+
const _LEARi = "ListEndpointAccessResponse";
|
|
421
|
+
const _LMW = "ListManagedWorkgroups";
|
|
422
|
+
const _LMWR = "ListManagedWorkgroupsRequest";
|
|
423
|
+
const _LMWRi = "ListManagedWorkgroupsResponse";
|
|
424
|
+
const _LN = "ListNamespaces";
|
|
425
|
+
const _LNR = "ListNamespacesRequest";
|
|
426
|
+
const _LNRi = "ListNamespacesResponse";
|
|
427
|
+
const _LR = "ListReservations";
|
|
428
|
+
const _LRO = "ListReservationOfferings";
|
|
429
|
+
const _LROR = "ListReservationOfferingsRequest";
|
|
430
|
+
const _LRORi = "ListReservationOfferingsResponse";
|
|
431
|
+
const _LRP = "ListRecoveryPoints";
|
|
432
|
+
const _LRPR = "ListRecoveryPointsRequest";
|
|
433
|
+
const _LRPRi = "ListRecoveryPointsResponse";
|
|
434
|
+
const _LRR = "ListReservationsRequest";
|
|
435
|
+
const _LRRi = "ListReservationsResponse";
|
|
436
|
+
const _LS = "ListSnapshots";
|
|
437
|
+
const _LSA = "ListScheduledActions";
|
|
438
|
+
const _LSAR = "ListScheduledActionsRequest";
|
|
439
|
+
const _LSARi = "ListScheduledActionsResponse";
|
|
440
|
+
const _LSCC = "ListSnapshotCopyConfigurations";
|
|
441
|
+
const _LSCCR = "ListSnapshotCopyConfigurationsRequest";
|
|
442
|
+
const _LSCCRi = "ListSnapshotCopyConfigurationsResponse";
|
|
443
|
+
const _LSR = "ListSnapshotsRequest";
|
|
444
|
+
const _LSRi = "ListSnapshotsResponse";
|
|
445
|
+
const _LT = "ListTracks";
|
|
446
|
+
const _LTFR = "ListTagsForResource";
|
|
447
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
448
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
449
|
+
const _LTR = "ListTracksRequest";
|
|
450
|
+
const _LTRS = "ListTableRestoreStatus";
|
|
451
|
+
const _LTRSR = "ListTableRestoreStatusRequest";
|
|
452
|
+
const _LTRSRi = "ListTableRestoreStatusResponse";
|
|
453
|
+
const _LTRi = "ListTracksResponse";
|
|
454
|
+
const _LUL = "ListUsageLimits";
|
|
455
|
+
const _LULR = "ListUsageLimitsRequest";
|
|
456
|
+
const _LULRi = "ListUsageLimitsResponse";
|
|
457
|
+
const _LW = "ListWorkgroups";
|
|
458
|
+
const _LWR = "ListWorkgroupsRequest";
|
|
459
|
+
const _LWRi = "ListWorkgroupsResponse";
|
|
460
|
+
const _MW = "ManagedWorkgroups";
|
|
461
|
+
const _MWLI = "ManagedWorkgroupListItem";
|
|
462
|
+
const _N = "Namespace";
|
|
463
|
+
const _NI = "NetworkInterface";
|
|
464
|
+
const _NIL = "NetworkInterfaceList";
|
|
465
|
+
const _NL = "NamespaceList";
|
|
466
|
+
const _PRP = "PutResourcePolicy";
|
|
467
|
+
const _PRPR = "PutResourcePolicyRequest";
|
|
468
|
+
const _PRPRu = "PutResourcePolicyResponse";
|
|
469
|
+
const _PT = "PerformanceTarget";
|
|
470
|
+
const _R = "Reservation";
|
|
471
|
+
const _RFRP = "RestoreFromRecoveryPoint";
|
|
472
|
+
const _RFRPR = "RestoreFromRecoveryPointRequest";
|
|
473
|
+
const _RFRPRe = "RestoreFromRecoveryPointResponse";
|
|
474
|
+
const _RFS = "RestoreFromSnapshot";
|
|
475
|
+
const _RFSR = "RestoreFromSnapshotRequest";
|
|
476
|
+
const _RFSRe = "RestoreFromSnapshotResponse";
|
|
477
|
+
const _RL = "ReservationsList";
|
|
478
|
+
const _RNFE = "ResourceNotFoundException";
|
|
479
|
+
const _RO = "ReservationOffering";
|
|
480
|
+
const _ROL = "ReservationOfferingsList";
|
|
481
|
+
const _RP = "RecoveryPoint";
|
|
482
|
+
const _RPL = "RecoveryPointList";
|
|
483
|
+
const _RPe = "ResourcePolicy";
|
|
484
|
+
const _RTFRP = "RestoreTableFromRecoveryPoint";
|
|
485
|
+
const _RTFRPR = "RestoreTableFromRecoveryPointRequest";
|
|
486
|
+
const _RTFRPRe = "RestoreTableFromRecoveryPointResponse";
|
|
487
|
+
const _RTFS = "RestoreTableFromSnapshot";
|
|
488
|
+
const _RTFSR = "RestoreTableFromSnapshotRequest";
|
|
489
|
+
const _RTFSRe = "RestoreTableFromSnapshotResponse";
|
|
490
|
+
const _S = "Snapshot";
|
|
491
|
+
const _SAA = "ScheduledActionAssociation";
|
|
492
|
+
const _SAL = "ScheduledActionsList";
|
|
493
|
+
const _SAR = "ScheduledActionResponse";
|
|
494
|
+
const _SCC = "SnapshotCopyConfiguration";
|
|
495
|
+
const _SCCn = "SnapshotCopyConfigurations";
|
|
496
|
+
const _SL = "SnapshotList";
|
|
497
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
498
|
+
const _ST = "ServerlessTrack";
|
|
499
|
+
const _Sc = "Schedule";
|
|
500
|
+
const _T = "Token";
|
|
501
|
+
const _TA = "TargetAction";
|
|
502
|
+
const _TE = "ThrottlingException";
|
|
503
|
+
const _TL = "TagList";
|
|
504
|
+
const _TLr = "TrackList";
|
|
505
|
+
const _TMTE = "TooManyTagsException";
|
|
506
|
+
const _TR = "TagResource";
|
|
507
|
+
const _TRR = "TagResourceRequest";
|
|
508
|
+
const _TRRa = "TagResourceResponse";
|
|
509
|
+
const _TRS = "TableRestoreStatus";
|
|
510
|
+
const _TRSL = "TableRestoreStatusList";
|
|
511
|
+
const _Ta = "Tag";
|
|
512
|
+
const _UCDA = "UpdateCustomDomainAssociation";
|
|
513
|
+
const _UCDAR = "UpdateCustomDomainAssociationRequest";
|
|
514
|
+
const _UCDARp = "UpdateCustomDomainAssociationResponse";
|
|
515
|
+
const _UEA = "UpdateEndpointAccess";
|
|
516
|
+
const _UEAR = "UpdateEndpointAccessRequest";
|
|
517
|
+
const _UEARp = "UpdateEndpointAccessResponse";
|
|
518
|
+
const _UL = "UsageLimit";
|
|
519
|
+
const _ULC = "UpdateLakehouseConfiguration";
|
|
520
|
+
const _ULCR = "UpdateLakehouseConfigurationRequest";
|
|
521
|
+
const _ULCRp = "UpdateLakehouseConfigurationResponse";
|
|
522
|
+
const _ULs = "UsageLimits";
|
|
523
|
+
const _UN = "UpdateNamespace";
|
|
524
|
+
const _UNR = "UpdateNamespaceRequest";
|
|
525
|
+
const _UNRp = "UpdateNamespaceResponse";
|
|
526
|
+
const _UR = "UntagResource";
|
|
527
|
+
const _URR = "UntagResourceRequest";
|
|
528
|
+
const _URRn = "UntagResourceResponse";
|
|
529
|
+
const _US = "UpdateSnapshot";
|
|
530
|
+
const _USA = "UpdateScheduledAction";
|
|
531
|
+
const _USAR = "UpdateScheduledActionRequest";
|
|
532
|
+
const _USARp = "UpdateScheduledActionResponse";
|
|
533
|
+
const _USCC = "UpdateSnapshotCopyConfiguration";
|
|
534
|
+
const _USCCR = "UpdateSnapshotCopyConfigurationRequest";
|
|
535
|
+
const _USCCRp = "UpdateSnapshotCopyConfigurationResponse";
|
|
536
|
+
const _USR = "UpdateSnapshotRequest";
|
|
537
|
+
const _USRp = "UpdateSnapshotResponse";
|
|
538
|
+
const _UT = "UpdateTarget";
|
|
539
|
+
const _UTL = "UpdateTargetsList";
|
|
540
|
+
const _UUL = "UpdateUsageLimit";
|
|
541
|
+
const _UULR = "UpdateUsageLimitRequest";
|
|
542
|
+
const _UULRp = "UpdateUsageLimitResponse";
|
|
543
|
+
const _UW = "UpdateWorkgroup";
|
|
544
|
+
const _UWR = "UpdateWorkgroupRequest";
|
|
545
|
+
const _UWRp = "UpdateWorkgroupResponse";
|
|
546
|
+
const _VE = "ValidationException";
|
|
547
|
+
const _VEL = "VpcEndpointList";
|
|
548
|
+
const _VEp = "VpcEndpoint";
|
|
549
|
+
const _VSGM = "VpcSecurityGroupMembership";
|
|
550
|
+
const _VSGML = "VpcSecurityGroupMembershipList";
|
|
551
|
+
const _W = "Workgroup";
|
|
552
|
+
const _WL = "WorkgroupList";
|
|
553
|
+
const _a = "amount";
|
|
554
|
+
const _aCSI = "activateCaseSensitiveIdentifier";
|
|
555
|
+
const _aIBSIMB = "actualIncrementalBackupSizeInMegaBytes";
|
|
556
|
+
const _aPSA = "adminPasswordSecretArn";
|
|
557
|
+
const _aPSKKI = "adminPasswordSecretKmsKeyId";
|
|
558
|
+
const _aU = "adminUsername";
|
|
559
|
+
const _aUP = "adminUserPassword";
|
|
560
|
+
const _aWPRA = "accountsWithProvisionedRestoreAccess";
|
|
561
|
+
const _aWRA = "accountsWithRestoreAccess";
|
|
562
|
+
const _aZ = "availabilityZone";
|
|
563
|
+
const _ad = "address";
|
|
564
|
+
const _as = "associations";
|
|
565
|
+
const _at = "at";
|
|
566
|
+
const _bA = "breachAction";
|
|
567
|
+
const _bC = "baseCapacity";
|
|
568
|
+
const _bPIMB = "backupProgressInMegaBytes";
|
|
569
|
+
const _c = "client";
|
|
570
|
+
const _cA = "catalogArn";
|
|
571
|
+
const _cAV = "crossAccountVpcs";
|
|
572
|
+
const _cBRIMBPS = "currentBackupRateInMegaBytesPerSecond";
|
|
573
|
+
const _cC = "currencyCode";
|
|
574
|
+
const _cD = "creationDate";
|
|
575
|
+
const _cDCA = "customDomainCertificateArn";
|
|
576
|
+
const _cDCET = "customDomainCertificateExpiryTime";
|
|
577
|
+
const _cDN = "customDomainName";
|
|
578
|
+
const _cN = "catalogName";
|
|
579
|
+
const _cP = "configParameters";
|
|
580
|
+
const _cS = "createSnapshot";
|
|
581
|
+
const _cT = "clientToken";
|
|
582
|
+
const _ca = "capacity";
|
|
583
|
+
const _co = "code";
|
|
584
|
+
const _cr = "cron";
|
|
585
|
+
const _d = "duration";
|
|
586
|
+
const _dIRA = "defaultIamRoleArn";
|
|
587
|
+
const _dKKI = "destinationKmsKeyId";
|
|
588
|
+
const _dN = "dbName";
|
|
589
|
+
const _dP = "dbPassword";
|
|
590
|
+
const _dR = "destinationRegion";
|
|
591
|
+
const _dRr = "dryRun";
|
|
592
|
+
const _dS = "durationSeconds";
|
|
593
|
+
const _dU = "dbUser";
|
|
594
|
+
const _e = "error";
|
|
595
|
+
const _eA = "endpointArn";
|
|
596
|
+
const _eCFAO = "extraComputeForAutomaticOptimization";
|
|
597
|
+
const _eCT = "endpointCreateTime";
|
|
598
|
+
const _eD = "endDate";
|
|
599
|
+
const _eN = "endpointName";
|
|
600
|
+
const _eS = "endpointStatus";
|
|
601
|
+
const _eSTC = "estimatedSecondsToCompletion";
|
|
602
|
+
const _eT = "endTime";
|
|
603
|
+
const _eTIS = "elapsedTimeInSeconds";
|
|
604
|
+
const _eTx = "expirationTime";
|
|
605
|
+
const _eVR = "enhancedVpcRouting";
|
|
606
|
+
const _en = "endpoint";
|
|
607
|
+
const _ena = "enabled";
|
|
608
|
+
const _end = "endpoints";
|
|
609
|
+
const _ex = "expiration";
|
|
610
|
+
const _fSN = "finalSnapshotName";
|
|
611
|
+
const _fSRP = "finalSnapshotRetentionPeriod";
|
|
612
|
+
const _hC = "hourlyCharge";
|
|
613
|
+
const _hE = "httpError";
|
|
614
|
+
const _hQ = "httpQuery";
|
|
615
|
+
const _iA = "ipv6Address";
|
|
616
|
+
const _iAT = "ipAddressType";
|
|
617
|
+
const _iR = "iamRoles";
|
|
618
|
+
const _jN = "jsonName";
|
|
619
|
+
const _k = "key";
|
|
620
|
+
const _kKI = "kmsKeyId";
|
|
621
|
+
const _l = "level";
|
|
622
|
+
const _lE = "logExports";
|
|
623
|
+
const _lIAA = "lakehouseIdcApplicationArn";
|
|
624
|
+
const _lIR = "lakehouseIdcRegistration";
|
|
625
|
+
const _lR = "lakehouseRegistration";
|
|
626
|
+
const _lRS = "lakehouseRegistrationStatus";
|
|
627
|
+
const _m = "message";
|
|
628
|
+
const _mAP = "manageAdminPassword";
|
|
629
|
+
const _mC = "maxCapacity";
|
|
630
|
+
const _mR = "maxResults";
|
|
631
|
+
const _mW = "managedWorkgroups";
|
|
632
|
+
const _mWI = "managedWorkgroupId";
|
|
633
|
+
const _mWN = "managedWorkgroupName";
|
|
634
|
+
const _n = "namespace";
|
|
635
|
+
const _nA = "namespaceArn";
|
|
636
|
+
const _nI = "namespaceId";
|
|
637
|
+
const _nII = "networkInterfaceId";
|
|
638
|
+
const _nIe = "nextInvocations";
|
|
639
|
+
const _nIet = "networkInterfaces";
|
|
640
|
+
const _nN = "namespaceName";
|
|
641
|
+
const _nRT = "nextRefreshTime";
|
|
642
|
+
const _nT = "nextToken";
|
|
643
|
+
const _nTN = "newTableName";
|
|
644
|
+
const _na = "namespaces";
|
|
645
|
+
const _o = "offering";
|
|
646
|
+
const _oA = "ownerAccount";
|
|
647
|
+
const _oI = "offeringId";
|
|
648
|
+
const _oT = "offeringType";
|
|
649
|
+
const _p = "period";
|
|
650
|
+
const _pA = "publiclyAccessible";
|
|
651
|
+
const _pIA = "privateIpAddress";
|
|
652
|
+
const _pIMB = "progressInMegaBytes";
|
|
653
|
+
const _pK = "parameterKey";
|
|
654
|
+
const _pPT = "pricePerformanceTarget";
|
|
655
|
+
const _pTN = "pendingTrackName";
|
|
656
|
+
const _pV = "parameterValue";
|
|
657
|
+
const _pVa = "patchVersion";
|
|
658
|
+
const _po = "port";
|
|
659
|
+
const _pol = "policy";
|
|
660
|
+
const _r = "reservation";
|
|
661
|
+
const _rA = "roleArn";
|
|
662
|
+
const _rAe = "resourceArn";
|
|
663
|
+
const _rAes = "reservationArn";
|
|
664
|
+
const _rI = "reservationId";
|
|
665
|
+
const _rIAA = "redshiftIdcApplicationArn";
|
|
666
|
+
const _rL = "reservationsList";
|
|
667
|
+
const _rN = "resourceName";
|
|
668
|
+
const _rO = "reservationOffering";
|
|
669
|
+
const _rOL = "reservationOfferingsList";
|
|
670
|
+
const _rP = "retentionPeriod";
|
|
671
|
+
const _rPCT = "recoveryPointCreateTime";
|
|
672
|
+
const _rPI = "recoveryPointId";
|
|
673
|
+
const _rPe = "recoveryPoint";
|
|
674
|
+
const _rPec = "recoveryPoints";
|
|
675
|
+
const _rPes = "resourcePolicy";
|
|
676
|
+
const _rT = "requestTime";
|
|
677
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.redshiftserverless";
|
|
678
|
+
const _sA = "scheduledAction";
|
|
679
|
+
const _sAD = "scheduledActionDescription";
|
|
680
|
+
const _sAN = "scheduledActionName";
|
|
681
|
+
const _sAU = "scheduledActionUuid";
|
|
682
|
+
const _sAc = "scheduledActions";
|
|
683
|
+
const _sAn = "snapshotArn";
|
|
684
|
+
const _sAo = "sourceArn";
|
|
685
|
+
const _sCC = "snapshotCopyConfiguration";
|
|
686
|
+
const _sCCA = "snapshotCopyConfigurationArn";
|
|
687
|
+
const _sCCI = "snapshotCopyConfigurationId";
|
|
688
|
+
const _sCCn = "snapshotCopyConfigurations";
|
|
689
|
+
const _sCT = "snapshotCreateTime";
|
|
690
|
+
const _sD = "startDate";
|
|
691
|
+
const _sDN = "sourceDatabaseName";
|
|
692
|
+
const _sGI = "securityGroupIds";
|
|
693
|
+
const _sI = "subnetIds";
|
|
694
|
+
const _sIu = "subnetId";
|
|
695
|
+
const _sN = "snapshotName";
|
|
696
|
+
const _sNP = "snapshotNamePrefix";
|
|
697
|
+
const _sRD = "snapshotRemainingDays";
|
|
698
|
+
const _sRP = "snapshotRetentionPeriod";
|
|
699
|
+
const _sRST = "snapshotRetentionStartTime";
|
|
700
|
+
const _sSN = "sourceSchemaName";
|
|
701
|
+
const _sT = "startTime";
|
|
702
|
+
const _sTN = "sourceTableName";
|
|
703
|
+
const _sc = "schedule";
|
|
704
|
+
const _se = "server";
|
|
705
|
+
const _sn = "snapshot";
|
|
706
|
+
const _sna = "snapshots";
|
|
707
|
+
const _st = "status";
|
|
708
|
+
const _sta = "state";
|
|
709
|
+
const _t = "tags";
|
|
710
|
+
const _tA = "targetAction";
|
|
711
|
+
const _tBSIMB = "totalBackupSizeInMegaBytes";
|
|
712
|
+
const _tDIMB = "totalDataInMegaBytes";
|
|
713
|
+
const _tDN = "targetDatabaseName";
|
|
714
|
+
const _tK = "tagKeys";
|
|
715
|
+
const _tN = "trackName";
|
|
716
|
+
const _tRRI = "tableRestoreRequestId";
|
|
717
|
+
const _tRS = "tableRestoreStatus";
|
|
718
|
+
const _tRSa = "tableRestoreStatuses";
|
|
719
|
+
const _tSIMB = "totalSizeInMegaBytes";
|
|
720
|
+
const _tSN = "targetSchemaName";
|
|
721
|
+
const _to = "token";
|
|
722
|
+
const _tr = "track";
|
|
723
|
+
const _tra = "tracks";
|
|
724
|
+
const _uC = "upfrontCharge";
|
|
725
|
+
const _uL = "usageLimit";
|
|
726
|
+
const _uLA = "usageLimitArn";
|
|
727
|
+
const _uLI = "usageLimitId";
|
|
728
|
+
const _uLs = "usageLimits";
|
|
729
|
+
const _uT = "usageType";
|
|
730
|
+
const _uTp = "updateTargets";
|
|
731
|
+
const _v = "value";
|
|
732
|
+
const _vE = "vpcEndpoints";
|
|
733
|
+
const _vEI = "vpcEndpointId";
|
|
734
|
+
const _vEp = "vpcEndpoint";
|
|
735
|
+
const _vI = "vpcId";
|
|
736
|
+
const _vSG = "vpcSecurityGroups";
|
|
737
|
+
const _vSGI = "vpcSecurityGroupIds";
|
|
738
|
+
const _vSGIp = "vpcSecurityGroupId";
|
|
739
|
+
const _w = "workgroup";
|
|
740
|
+
const _wA = "workgroupArn";
|
|
741
|
+
const _wI = "workgroupId";
|
|
742
|
+
const _wN = "workgroupName";
|
|
743
|
+
const _wNo = "workgroupNames";
|
|
744
|
+
const _wV = "workgroupVersion";
|
|
745
|
+
const _wo = "workgroups";
|
|
746
|
+
const n0 = "com.amazonaws.redshiftserverless";
|
|
747
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
748
|
+
var RedshiftServerlessServiceException$ = [-3, _s, "RedshiftServerlessServiceException", 0, [], []];
|
|
749
|
+
_s_registry.registerError(RedshiftServerlessServiceException$, RedshiftServerlessServiceException);
|
|
750
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
751
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
752
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
753
|
+
[_co, _m],
|
|
754
|
+
[0, 0]
|
|
755
|
+
];
|
|
756
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
757
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
758
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
759
|
+
[_m],
|
|
760
|
+
[0], 1
|
|
761
|
+
];
|
|
762
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
763
|
+
var DryRunException$ = [-3, n0, _DRE,
|
|
764
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
765
|
+
[_m],
|
|
766
|
+
[0], 1
|
|
767
|
+
];
|
|
768
|
+
n0_registry.registerError(DryRunException$, DryRunException);
|
|
769
|
+
var InsufficientCapacityException$ = [-3, n0, _ICE,
|
|
770
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
771
|
+
[_m],
|
|
772
|
+
[0], 1
|
|
773
|
+
];
|
|
774
|
+
n0_registry.registerError(InsufficientCapacityException$, InsufficientCapacityException);
|
|
775
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
776
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
777
|
+
[_m],
|
|
778
|
+
[0], 1
|
|
779
|
+
];
|
|
780
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
781
|
+
var InvalidPaginationException$ = [-3, n0, _IPE,
|
|
782
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
783
|
+
[_m],
|
|
784
|
+
[0], 1
|
|
785
|
+
];
|
|
786
|
+
n0_registry.registerError(InvalidPaginationException$, InvalidPaginationException);
|
|
787
|
+
var Ipv6CidrBlockNotFoundException$ = [-3, n0, _ICBNFE,
|
|
788
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
789
|
+
[_m],
|
|
790
|
+
[0], 1
|
|
791
|
+
];
|
|
792
|
+
n0_registry.registerError(Ipv6CidrBlockNotFoundException$, Ipv6CidrBlockNotFoundException);
|
|
793
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
794
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
795
|
+
[_m, _rN],
|
|
796
|
+
[0, 0], 1
|
|
797
|
+
];
|
|
798
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
799
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
800
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
801
|
+
[_m],
|
|
802
|
+
[0], 1
|
|
803
|
+
];
|
|
804
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
805
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
806
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
807
|
+
[_co, _m],
|
|
808
|
+
[0, 0]
|
|
809
|
+
];
|
|
810
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
811
|
+
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
812
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
813
|
+
[_m, _rN],
|
|
814
|
+
[0, 0]
|
|
815
|
+
];
|
|
816
|
+
n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
|
|
817
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
818
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
819
|
+
[_m],
|
|
820
|
+
[0], 1
|
|
821
|
+
];
|
|
822
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
823
|
+
const errorTypeRegistries = [
|
|
824
|
+
_s_registry,
|
|
825
|
+
n0_registry,
|
|
826
|
+
];
|
|
827
|
+
var DbPassword = [0, n0, _DP, 8, 0];
|
|
828
|
+
var DbUser = [0, n0, _DU, 8, 0];
|
|
829
|
+
var Association$ = [3, n0, _A,
|
|
830
|
+
0,
|
|
831
|
+
[_cDCA, _cDCET, _cDN, _wN],
|
|
832
|
+
[0, 5, 0, 0]
|
|
833
|
+
];
|
|
834
|
+
var ConfigParameter$ = [3, n0, _CP,
|
|
835
|
+
0,
|
|
836
|
+
[_pK, _pV],
|
|
837
|
+
[0, 0]
|
|
838
|
+
];
|
|
839
|
+
var ConvertRecoveryPointToSnapshotRequest$ = [3, n0, _CRPTSR,
|
|
840
|
+
0,
|
|
841
|
+
[_rPI, _sN, _rP, _t],
|
|
842
|
+
[0, 0, 1, () => TagList], 2
|
|
843
|
+
];
|
|
844
|
+
var ConvertRecoveryPointToSnapshotResponse$ = [3, n0, _CRPTSRo,
|
|
845
|
+
0,
|
|
846
|
+
[_sn],
|
|
847
|
+
[() => Snapshot$]
|
|
848
|
+
];
|
|
849
|
+
var CreateCustomDomainAssociationRequest$ = [3, n0, _CCDAR,
|
|
850
|
+
0,
|
|
851
|
+
[_wN, _cDN, _cDCA],
|
|
852
|
+
[0, 0, 0], 3
|
|
853
|
+
];
|
|
854
|
+
var CreateCustomDomainAssociationResponse$ = [3, n0, _CCDARr,
|
|
855
|
+
0,
|
|
856
|
+
[_cDN, _wN, _cDCA, _cDCET],
|
|
857
|
+
[0, 0, 0, 5]
|
|
858
|
+
];
|
|
859
|
+
var CreateEndpointAccessRequest$ = [3, n0, _CEAR,
|
|
860
|
+
0,
|
|
861
|
+
[_eN, _sI, _wN, _vSGI, _oA],
|
|
862
|
+
[0, 64 | 0, 0, 64 | 0, 0], 3
|
|
863
|
+
];
|
|
864
|
+
var CreateEndpointAccessResponse$ = [3, n0, _CEARr,
|
|
865
|
+
0,
|
|
866
|
+
[_en],
|
|
867
|
+
[() => EndpointAccess$]
|
|
868
|
+
];
|
|
869
|
+
var CreateNamespaceRequest$ = [3, n0, _CNR,
|
|
870
|
+
0,
|
|
871
|
+
[_nN, _aU, _aUP, _dN, _kKI, _dIRA, _iR, _lE, _t, _mAP, _aPSKKI, _rIAA],
|
|
872
|
+
[0, [() => DbUser, 0], [() => DbPassword, 0], 0, 0, 0, 64 | 0, 64 | 0, () => TagList, 2, 0, 0], 1
|
|
873
|
+
];
|
|
874
|
+
var CreateNamespaceResponse$ = [3, n0, _CNRr,
|
|
875
|
+
0,
|
|
876
|
+
[_n],
|
|
877
|
+
[[() => Namespace$, 0]]
|
|
878
|
+
];
|
|
879
|
+
var CreateReservationRequest$ = [3, n0, _CRR,
|
|
880
|
+
0,
|
|
881
|
+
[_ca, _oI, _cT],
|
|
882
|
+
[1, 0, [0, 4]], 2
|
|
883
|
+
];
|
|
884
|
+
var CreateReservationResponse$ = [3, n0, _CRRr,
|
|
885
|
+
0,
|
|
886
|
+
[_r],
|
|
887
|
+
[() => Reservation$]
|
|
888
|
+
];
|
|
889
|
+
var CreateScheduledActionRequest$ = [3, n0, _CSAR,
|
|
890
|
+
0,
|
|
891
|
+
[_sAN, _tA, _sc, _rA, _nN, _ena, _sAD, _sT, _eT],
|
|
892
|
+
[0, () => TargetAction$, () => Schedule$, 0, 0, 2, 0, 4, 4], 5
|
|
893
|
+
];
|
|
894
|
+
var CreateScheduledActionResponse$ = [3, n0, _CSARr,
|
|
895
|
+
0,
|
|
896
|
+
[_sA],
|
|
897
|
+
[() => ScheduledActionResponse$]
|
|
898
|
+
];
|
|
899
|
+
var CreateSnapshotCopyConfigurationRequest$ = [3, n0, _CSCCR,
|
|
900
|
+
0,
|
|
901
|
+
[_nN, _dR, _sRP, _dKKI],
|
|
902
|
+
[0, 0, 1, 0], 2
|
|
903
|
+
];
|
|
904
|
+
var CreateSnapshotCopyConfigurationResponse$ = [3, n0, _CSCCRr,
|
|
905
|
+
0,
|
|
906
|
+
[_sCC],
|
|
907
|
+
[() => SnapshotCopyConfiguration$], 1
|
|
908
|
+
];
|
|
909
|
+
var CreateSnapshotRequest$ = [3, n0, _CSR,
|
|
910
|
+
0,
|
|
911
|
+
[_nN, _sN, _rP, _t],
|
|
912
|
+
[0, 0, 1, () => TagList], 2
|
|
913
|
+
];
|
|
914
|
+
var CreateSnapshotResponse$ = [3, n0, _CSRr,
|
|
915
|
+
0,
|
|
916
|
+
[_sn],
|
|
917
|
+
[() => Snapshot$]
|
|
918
|
+
];
|
|
919
|
+
var CreateSnapshotScheduleActionParameters$ = [3, n0, _CSSAP,
|
|
920
|
+
0,
|
|
921
|
+
[_nN, _sNP, _rP, _t],
|
|
922
|
+
[0, 0, 1, () => TagList], 2
|
|
923
|
+
];
|
|
924
|
+
var CreateUsageLimitRequest$ = [3, n0, _CULR,
|
|
925
|
+
0,
|
|
926
|
+
[_rAe, _uT, _a, _p, _bA],
|
|
927
|
+
[0, 0, 1, 0, 0], 3
|
|
928
|
+
];
|
|
929
|
+
var CreateUsageLimitResponse$ = [3, n0, _CULRr,
|
|
930
|
+
0,
|
|
931
|
+
[_uL],
|
|
932
|
+
[() => UsageLimit$]
|
|
933
|
+
];
|
|
934
|
+
var CreateWorkgroupRequest$ = [3, n0, _CWR,
|
|
935
|
+
0,
|
|
936
|
+
[_wN, _nN, _bC, _eVR, _cP, _sGI, _sI, _pA, _t, _po, _mC, _pPT, _iAT, _tN, _eCFAO],
|
|
937
|
+
[0, 0, 1, 2, () => ConfigParameterList, 64 | 0, 64 | 0, 2, () => TagList, 1, 1, () => PerformanceTarget$, 0, 0, 2], 2
|
|
938
|
+
];
|
|
939
|
+
var CreateWorkgroupResponse$ = [3, n0, _CWRr,
|
|
940
|
+
0,
|
|
941
|
+
[_w],
|
|
942
|
+
[() => Workgroup$]
|
|
943
|
+
];
|
|
944
|
+
var DeleteCustomDomainAssociationRequest$ = [3, n0, _DCDAR,
|
|
945
|
+
0,
|
|
946
|
+
[_wN, _cDN],
|
|
947
|
+
[0, 0], 2
|
|
948
|
+
];
|
|
949
|
+
var DeleteCustomDomainAssociationResponse$ = [3, n0, _DCDARe,
|
|
950
|
+
0,
|
|
951
|
+
[],
|
|
952
|
+
[]
|
|
953
|
+
];
|
|
954
|
+
var DeleteEndpointAccessRequest$ = [3, n0, _DEAR,
|
|
955
|
+
0,
|
|
956
|
+
[_eN],
|
|
957
|
+
[0], 1
|
|
958
|
+
];
|
|
959
|
+
var DeleteEndpointAccessResponse$ = [3, n0, _DEARe,
|
|
960
|
+
0,
|
|
961
|
+
[_en],
|
|
962
|
+
[() => EndpointAccess$]
|
|
963
|
+
];
|
|
964
|
+
var DeleteNamespaceRequest$ = [3, n0, _DNR,
|
|
965
|
+
0,
|
|
966
|
+
[_nN, _fSN, _fSRP],
|
|
967
|
+
[0, 0, 1], 1
|
|
968
|
+
];
|
|
969
|
+
var DeleteNamespaceResponse$ = [3, n0, _DNRe,
|
|
970
|
+
0,
|
|
971
|
+
[_n],
|
|
972
|
+
[[() => Namespace$, 0]], 1
|
|
973
|
+
];
|
|
974
|
+
var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
|
|
975
|
+
0,
|
|
976
|
+
[_rAe],
|
|
977
|
+
[0], 1
|
|
978
|
+
];
|
|
979
|
+
var DeleteResourcePolicyResponse$ = [3, n0, _DRPRe,
|
|
980
|
+
0,
|
|
981
|
+
[],
|
|
982
|
+
[]
|
|
983
|
+
];
|
|
984
|
+
var DeleteScheduledActionRequest$ = [3, n0, _DSAR,
|
|
985
|
+
0,
|
|
986
|
+
[_sAN],
|
|
987
|
+
[0], 1
|
|
988
|
+
];
|
|
989
|
+
var DeleteScheduledActionResponse$ = [3, n0, _DSARe,
|
|
990
|
+
0,
|
|
991
|
+
[_sA],
|
|
992
|
+
[() => ScheduledActionResponse$]
|
|
993
|
+
];
|
|
994
|
+
var DeleteSnapshotCopyConfigurationRequest$ = [3, n0, _DSCCR,
|
|
995
|
+
0,
|
|
996
|
+
[_sCCI],
|
|
997
|
+
[0], 1
|
|
998
|
+
];
|
|
999
|
+
var DeleteSnapshotCopyConfigurationResponse$ = [3, n0, _DSCCRe,
|
|
1000
|
+
0,
|
|
1001
|
+
[_sCC],
|
|
1002
|
+
[() => SnapshotCopyConfiguration$], 1
|
|
1003
|
+
];
|
|
1004
|
+
var DeleteSnapshotRequest$ = [3, n0, _DSR,
|
|
1005
|
+
0,
|
|
1006
|
+
[_sN],
|
|
1007
|
+
[0], 1
|
|
1008
|
+
];
|
|
1009
|
+
var DeleteSnapshotResponse$ = [3, n0, _DSRe,
|
|
1010
|
+
0,
|
|
1011
|
+
[_sn],
|
|
1012
|
+
[() => Snapshot$]
|
|
1013
|
+
];
|
|
1014
|
+
var DeleteUsageLimitRequest$ = [3, n0, _DULR,
|
|
1015
|
+
0,
|
|
1016
|
+
[_uLI],
|
|
1017
|
+
[0], 1
|
|
1018
|
+
];
|
|
1019
|
+
var DeleteUsageLimitResponse$ = [3, n0, _DULRe,
|
|
1020
|
+
0,
|
|
1021
|
+
[_uL],
|
|
1022
|
+
[() => UsageLimit$]
|
|
1023
|
+
];
|
|
1024
|
+
var DeleteWorkgroupRequest$ = [3, n0, _DWR,
|
|
1025
|
+
0,
|
|
1026
|
+
[_wN],
|
|
1027
|
+
[0], 1
|
|
1028
|
+
];
|
|
1029
|
+
var DeleteWorkgroupResponse$ = [3, n0, _DWRe,
|
|
1030
|
+
0,
|
|
1031
|
+
[_w],
|
|
1032
|
+
[() => Workgroup$], 1
|
|
1033
|
+
];
|
|
1034
|
+
var Endpoint$ = [3, n0, _E,
|
|
1035
|
+
0,
|
|
1036
|
+
[_ad, _po, _vE],
|
|
1037
|
+
[0, 1, () => VpcEndpointList]
|
|
1038
|
+
];
|
|
1039
|
+
var EndpointAccess$ = [3, n0, _EA,
|
|
1040
|
+
0,
|
|
1041
|
+
[_eN, _eS, _wN, _eCT, _po, _ad, _sI, _vSG, _vEp, _eA],
|
|
1042
|
+
[0, 0, 0, 5, 1, 0, 64 | 0, () => VpcSecurityGroupMembershipList, () => VpcEndpoint$, 0]
|
|
1043
|
+
];
|
|
1044
|
+
var GetCredentialsRequest$ = [3, n0, _GCR,
|
|
1045
|
+
0,
|
|
1046
|
+
[_dN, _dS, _wN, _cDN],
|
|
1047
|
+
[0, 1, 0, 0]
|
|
1048
|
+
];
|
|
1049
|
+
var GetCredentialsResponse$ = [3, n0, _GCRe,
|
|
1050
|
+
0,
|
|
1051
|
+
[_dU, _dP, _ex, _nRT],
|
|
1052
|
+
[[() => DbUser, 0], [() => DbPassword, 0], 4, 4]
|
|
1053
|
+
];
|
|
1054
|
+
var GetCustomDomainAssociationRequest$ = [3, n0, _GCDAR,
|
|
1055
|
+
0,
|
|
1056
|
+
[_cDN, _wN],
|
|
1057
|
+
[0, 0], 2
|
|
1058
|
+
];
|
|
1059
|
+
var GetCustomDomainAssociationResponse$ = [3, n0, _GCDARe,
|
|
1060
|
+
0,
|
|
1061
|
+
[_cDN, _wN, _cDCA, _cDCET],
|
|
1062
|
+
[0, 0, 0, 5]
|
|
1063
|
+
];
|
|
1064
|
+
var GetEndpointAccessRequest$ = [3, n0, _GEAR,
|
|
1065
|
+
0,
|
|
1066
|
+
[_eN],
|
|
1067
|
+
[0], 1
|
|
1068
|
+
];
|
|
1069
|
+
var GetEndpointAccessResponse$ = [3, n0, _GEARe,
|
|
1070
|
+
0,
|
|
1071
|
+
[_en],
|
|
1072
|
+
[() => EndpointAccess$]
|
|
1073
|
+
];
|
|
1074
|
+
var GetIdentityCenterAuthTokenRequest$ = [3, n0, _GICATR,
|
|
1075
|
+
0,
|
|
1076
|
+
[_wNo],
|
|
1077
|
+
[64 | 0], 1
|
|
1078
|
+
];
|
|
1079
|
+
var GetIdentityCenterAuthTokenResponse$ = [3, n0, _GICATRe,
|
|
1080
|
+
8,
|
|
1081
|
+
[_to, _eTx],
|
|
1082
|
+
[[0, { [_jN]: _T }], [5, { [_jN]: _ET }]]
|
|
1083
|
+
];
|
|
1084
|
+
var GetNamespaceRequest$ = [3, n0, _GNR,
|
|
1085
|
+
0,
|
|
1086
|
+
[_nN],
|
|
1087
|
+
[0], 1
|
|
1088
|
+
];
|
|
1089
|
+
var GetNamespaceResponse$ = [3, n0, _GNRe,
|
|
1090
|
+
0,
|
|
1091
|
+
[_n],
|
|
1092
|
+
[[() => Namespace$, 0]], 1
|
|
1093
|
+
];
|
|
1094
|
+
var GetRecoveryPointRequest$ = [3, n0, _GRPR,
|
|
1095
|
+
0,
|
|
1096
|
+
[_rPI],
|
|
1097
|
+
[0], 1
|
|
1098
|
+
];
|
|
1099
|
+
var GetRecoveryPointResponse$ = [3, n0, _GRPRe,
|
|
1100
|
+
0,
|
|
1101
|
+
[_rPe],
|
|
1102
|
+
[() => RecoveryPoint$]
|
|
1103
|
+
];
|
|
1104
|
+
var GetReservationOfferingRequest$ = [3, n0, _GROR,
|
|
1105
|
+
0,
|
|
1106
|
+
[_oI],
|
|
1107
|
+
[0], 1
|
|
1108
|
+
];
|
|
1109
|
+
var GetReservationOfferingResponse$ = [3, n0, _GRORe,
|
|
1110
|
+
0,
|
|
1111
|
+
[_rO],
|
|
1112
|
+
[() => ReservationOffering$], 1
|
|
1113
|
+
];
|
|
1114
|
+
var GetReservationRequest$ = [3, n0, _GRR,
|
|
1115
|
+
0,
|
|
1116
|
+
[_rI],
|
|
1117
|
+
[0], 1
|
|
1118
|
+
];
|
|
1119
|
+
var GetReservationResponse$ = [3, n0, _GRRe,
|
|
1120
|
+
0,
|
|
1121
|
+
[_r],
|
|
1122
|
+
[() => Reservation$], 1
|
|
1123
|
+
];
|
|
1124
|
+
var GetResourcePolicyRequest$ = [3, n0, _GRPRet,
|
|
1125
|
+
0,
|
|
1126
|
+
[_rAe],
|
|
1127
|
+
[0], 1
|
|
1128
|
+
];
|
|
1129
|
+
var GetResourcePolicyResponse$ = [3, n0, _GRPRete,
|
|
1130
|
+
0,
|
|
1131
|
+
[_rPes],
|
|
1132
|
+
[() => ResourcePolicy$]
|
|
1133
|
+
];
|
|
1134
|
+
var GetScheduledActionRequest$ = [3, n0, _GSAR,
|
|
1135
|
+
0,
|
|
1136
|
+
[_sAN],
|
|
1137
|
+
[0], 1
|
|
1138
|
+
];
|
|
1139
|
+
var GetScheduledActionResponse$ = [3, n0, _GSARe,
|
|
1140
|
+
0,
|
|
1141
|
+
[_sA],
|
|
1142
|
+
[() => ScheduledActionResponse$]
|
|
1143
|
+
];
|
|
1144
|
+
var GetSnapshotRequest$ = [3, n0, _GSR,
|
|
1145
|
+
0,
|
|
1146
|
+
[_sN, _oA, _sAn],
|
|
1147
|
+
[0, 0, 0]
|
|
1148
|
+
];
|
|
1149
|
+
var GetSnapshotResponse$ = [3, n0, _GSRe,
|
|
1150
|
+
0,
|
|
1151
|
+
[_sn],
|
|
1152
|
+
[() => Snapshot$]
|
|
1153
|
+
];
|
|
1154
|
+
var GetTableRestoreStatusRequest$ = [3, n0, _GTRSR,
|
|
1155
|
+
0,
|
|
1156
|
+
[_tRRI],
|
|
1157
|
+
[0], 1
|
|
1158
|
+
];
|
|
1159
|
+
var GetTableRestoreStatusResponse$ = [3, n0, _GTRSRe,
|
|
1160
|
+
0,
|
|
1161
|
+
[_tRS],
|
|
1162
|
+
[() => TableRestoreStatus$]
|
|
1163
|
+
];
|
|
1164
|
+
var GetTrackRequest$ = [3, n0, _GTR,
|
|
1165
|
+
0,
|
|
1166
|
+
[_tN],
|
|
1167
|
+
[0], 1
|
|
1168
|
+
];
|
|
1169
|
+
var GetTrackResponse$ = [3, n0, _GTRe,
|
|
1170
|
+
0,
|
|
1171
|
+
[_tr],
|
|
1172
|
+
[() => ServerlessTrack$]
|
|
1173
|
+
];
|
|
1174
|
+
var GetUsageLimitRequest$ = [3, n0, _GULR,
|
|
1175
|
+
0,
|
|
1176
|
+
[_uLI],
|
|
1177
|
+
[0], 1
|
|
1178
|
+
];
|
|
1179
|
+
var GetUsageLimitResponse$ = [3, n0, _GULRe,
|
|
1180
|
+
0,
|
|
1181
|
+
[_uL],
|
|
1182
|
+
[() => UsageLimit$]
|
|
1183
|
+
];
|
|
1184
|
+
var GetWorkgroupRequest$ = [3, n0, _GWR,
|
|
1185
|
+
0,
|
|
1186
|
+
[_wN],
|
|
1187
|
+
[0], 1
|
|
1188
|
+
];
|
|
1189
|
+
var GetWorkgroupResponse$ = [3, n0, _GWRe,
|
|
1190
|
+
0,
|
|
1191
|
+
[_w],
|
|
1192
|
+
[() => Workgroup$], 1
|
|
1193
|
+
];
|
|
1194
|
+
var ListCustomDomainAssociationsRequest$ = [3, n0, _LCDAR,
|
|
1195
|
+
0,
|
|
1196
|
+
[_nT, _mR, _cDN, _cDCA],
|
|
1197
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], 0, 0]
|
|
1198
|
+
];
|
|
1199
|
+
var ListCustomDomainAssociationsResponse$ = [3, n0, _LCDARi,
|
|
1200
|
+
0,
|
|
1201
|
+
[_nT, _as],
|
|
1202
|
+
[0, () => AssociationList]
|
|
1203
|
+
];
|
|
1204
|
+
var ListEndpointAccessRequest$ = [3, n0, _LEAR,
|
|
1205
|
+
0,
|
|
1206
|
+
[_nT, _mR, _wN, _vI, _oA],
|
|
1207
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], 0, 0, 0]
|
|
1208
|
+
];
|
|
1209
|
+
var ListEndpointAccessResponse$ = [3, n0, _LEARi,
|
|
1210
|
+
0,
|
|
1211
|
+
[_end, _nT],
|
|
1212
|
+
[() => EndpointAccessList, 0], 1
|
|
1213
|
+
];
|
|
1214
|
+
var ListManagedWorkgroupsRequest$ = [3, n0, _LMWR,
|
|
1215
|
+
0,
|
|
1216
|
+
[_sAo, _nT, _mR],
|
|
1217
|
+
[0, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1218
|
+
];
|
|
1219
|
+
var ListManagedWorkgroupsResponse$ = [3, n0, _LMWRi,
|
|
1220
|
+
0,
|
|
1221
|
+
[_nT, _mW],
|
|
1222
|
+
[0, () => ManagedWorkgroups]
|
|
1223
|
+
];
|
|
1224
|
+
var ListNamespacesRequest$ = [3, n0, _LNR,
|
|
1225
|
+
0,
|
|
1226
|
+
[_nT, _mR],
|
|
1227
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1228
|
+
];
|
|
1229
|
+
var ListNamespacesResponse$ = [3, n0, _LNRi,
|
|
1230
|
+
0,
|
|
1231
|
+
[_na, _nT],
|
|
1232
|
+
[[() => NamespaceList, 0], 0], 1
|
|
1233
|
+
];
|
|
1234
|
+
var ListRecoveryPointsRequest$ = [3, n0, _LRPR,
|
|
1235
|
+
0,
|
|
1236
|
+
[_nT, _mR, _sT, _eT, _nN, _nA],
|
|
1237
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], 4, 4, 0, 0]
|
|
1238
|
+
];
|
|
1239
|
+
var ListRecoveryPointsResponse$ = [3, n0, _LRPRi,
|
|
1240
|
+
0,
|
|
1241
|
+
[_rPec, _nT],
|
|
1242
|
+
[() => RecoveryPointList, 0]
|
|
1243
|
+
];
|
|
1244
|
+
var ListReservationOfferingsRequest$ = [3, n0, _LROR,
|
|
1245
|
+
0,
|
|
1246
|
+
[_nT, _mR],
|
|
1247
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1248
|
+
];
|
|
1249
|
+
var ListReservationOfferingsResponse$ = [3, n0, _LRORi,
|
|
1250
|
+
0,
|
|
1251
|
+
[_rOL, _nT],
|
|
1252
|
+
[() => ReservationOfferingsList, 0], 1
|
|
1253
|
+
];
|
|
1254
|
+
var ListReservationsRequest$ = [3, n0, _LRR,
|
|
1255
|
+
0,
|
|
1256
|
+
[_nT, _mR],
|
|
1257
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1258
|
+
];
|
|
1259
|
+
var ListReservationsResponse$ = [3, n0, _LRRi,
|
|
1260
|
+
0,
|
|
1261
|
+
[_rL, _nT],
|
|
1262
|
+
[() => ReservationsList, 0], 1
|
|
1263
|
+
];
|
|
1264
|
+
var ListScheduledActionsRequest$ = [3, n0, _LSAR,
|
|
1265
|
+
0,
|
|
1266
|
+
[_nT, _mR, _nN],
|
|
1267
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], 0]
|
|
1268
|
+
];
|
|
1269
|
+
var ListScheduledActionsResponse$ = [3, n0, _LSARi,
|
|
1270
|
+
0,
|
|
1271
|
+
[_nT, _sAc],
|
|
1272
|
+
[0, () => ScheduledActionsList]
|
|
1273
|
+
];
|
|
1274
|
+
var ListSnapshotCopyConfigurationsRequest$ = [3, n0, _LSCCR,
|
|
1275
|
+
0,
|
|
1276
|
+
[_nN, _nT, _mR],
|
|
1277
|
+
[0, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1278
|
+
];
|
|
1279
|
+
var ListSnapshotCopyConfigurationsResponse$ = [3, n0, _LSCCRi,
|
|
1280
|
+
0,
|
|
1281
|
+
[_sCCn, _nT],
|
|
1282
|
+
[() => SnapshotCopyConfigurations, 0], 1
|
|
1283
|
+
];
|
|
1284
|
+
var ListSnapshotsRequest$ = [3, n0, _LSR,
|
|
1285
|
+
0,
|
|
1286
|
+
[_nT, _mR, _nN, _nA, _oA, _sT, _eT],
|
|
1287
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], 0, 0, 0, 4, 4]
|
|
1288
|
+
];
|
|
1289
|
+
var ListSnapshotsResponse$ = [3, n0, _LSRi,
|
|
1290
|
+
0,
|
|
1291
|
+
[_nT, _sna],
|
|
1292
|
+
[0, () => SnapshotList]
|
|
1293
|
+
];
|
|
1294
|
+
var ListTableRestoreStatusRequest$ = [3, n0, _LTRSR,
|
|
1295
|
+
0,
|
|
1296
|
+
[_nT, _mR, _nN, _wN],
|
|
1297
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], 0, 0]
|
|
1298
|
+
];
|
|
1299
|
+
var ListTableRestoreStatusResponse$ = [3, n0, _LTRSRi,
|
|
1300
|
+
0,
|
|
1301
|
+
[_nT, _tRSa],
|
|
1302
|
+
[0, () => TableRestoreStatusList]
|
|
1303
|
+
];
|
|
1304
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1305
|
+
0,
|
|
1306
|
+
[_rAe],
|
|
1307
|
+
[0], 1
|
|
1308
|
+
];
|
|
1309
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1310
|
+
0,
|
|
1311
|
+
[_t],
|
|
1312
|
+
[() => TagList]
|
|
1313
|
+
];
|
|
1314
|
+
var ListTracksRequest$ = [3, n0, _LTR,
|
|
1315
|
+
0,
|
|
1316
|
+
[_nT, _mR],
|
|
1317
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1318
|
+
];
|
|
1319
|
+
var ListTracksResponse$ = [3, n0, _LTRi,
|
|
1320
|
+
0,
|
|
1321
|
+
[_tra, _nT],
|
|
1322
|
+
[() => TrackList, 0]
|
|
1323
|
+
];
|
|
1324
|
+
var ListUsageLimitsRequest$ = [3, n0, _LULR,
|
|
1325
|
+
0,
|
|
1326
|
+
[_rAe, _uT, _nT, _mR],
|
|
1327
|
+
[0, 0, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1328
|
+
];
|
|
1329
|
+
var ListUsageLimitsResponse$ = [3, n0, _LULRi,
|
|
1330
|
+
0,
|
|
1331
|
+
[_uLs, _nT],
|
|
1332
|
+
[() => UsageLimits, 0]
|
|
1333
|
+
];
|
|
1334
|
+
var ListWorkgroupsRequest$ = [3, n0, _LWR,
|
|
1335
|
+
0,
|
|
1336
|
+
[_nT, _mR, _oA],
|
|
1337
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], 0]
|
|
1338
|
+
];
|
|
1339
|
+
var ListWorkgroupsResponse$ = [3, n0, _LWRi,
|
|
1340
|
+
0,
|
|
1341
|
+
[_wo, _nT],
|
|
1342
|
+
[() => WorkgroupList, 0], 1
|
|
1343
|
+
];
|
|
1344
|
+
var ManagedWorkgroupListItem$ = [3, n0, _MWLI,
|
|
1345
|
+
0,
|
|
1346
|
+
[_mWN, _mWI, _sAo, _st, _cD],
|
|
1347
|
+
[0, 0, 0, 0, 5]
|
|
1348
|
+
];
|
|
1349
|
+
var Namespace$ = [3, n0, _N,
|
|
1350
|
+
0,
|
|
1351
|
+
[_nA, _nI, _nN, _aU, _dN, _kKI, _dIRA, _iR, _lE, _st, _cD, _aPSA, _aPSKKI, _lRS, _cA],
|
|
1352
|
+
[0, 0, 0, [() => DbUser, 0], 0, 0, 0, 64 | 0, 64 | 0, 0, 5, 0, 0, 0, 0]
|
|
1353
|
+
];
|
|
1354
|
+
var NetworkInterface$ = [3, n0, _NI,
|
|
1355
|
+
0,
|
|
1356
|
+
[_nII, _sIu, _pIA, _aZ, _iA],
|
|
1357
|
+
[0, 0, 0, 0, 0]
|
|
1358
|
+
];
|
|
1359
|
+
var PerformanceTarget$ = [3, n0, _PT,
|
|
1360
|
+
0,
|
|
1361
|
+
[_st, _l],
|
|
1362
|
+
[0, 1]
|
|
1363
|
+
];
|
|
1364
|
+
var PutResourcePolicyRequest$ = [3, n0, _PRPR,
|
|
1365
|
+
0,
|
|
1366
|
+
[_rAe, _pol],
|
|
1367
|
+
[0, 0], 2
|
|
1368
|
+
];
|
|
1369
|
+
var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
|
|
1370
|
+
0,
|
|
1371
|
+
[_rPes],
|
|
1372
|
+
[() => ResourcePolicy$]
|
|
1373
|
+
];
|
|
1374
|
+
var RecoveryPoint$ = [3, n0, _RP,
|
|
1375
|
+
0,
|
|
1376
|
+
[_rPI, _rPCT, _tSIMB, _nN, _wN, _nA],
|
|
1377
|
+
[0, 5, 1, 0, 0, 0]
|
|
1378
|
+
];
|
|
1379
|
+
var Reservation$ = [3, n0, _R,
|
|
1380
|
+
0,
|
|
1381
|
+
[_rI, _rAes, _sD, _eD, _ca, _o, _st],
|
|
1382
|
+
[0, 0, 5, 5, 1, () => ReservationOffering$, 0]
|
|
1383
|
+
];
|
|
1384
|
+
var ReservationOffering$ = [3, n0, _RO,
|
|
1385
|
+
0,
|
|
1386
|
+
[_oI, _d, _uC, _hC, _cC, _oT],
|
|
1387
|
+
[0, 1, 1, 1, 0, 0]
|
|
1388
|
+
];
|
|
1389
|
+
var ResourcePolicy$ = [3, n0, _RPe,
|
|
1390
|
+
0,
|
|
1391
|
+
[_rAe, _pol],
|
|
1392
|
+
[0, 0]
|
|
1393
|
+
];
|
|
1394
|
+
var RestoreFromRecoveryPointRequest$ = [3, n0, _RFRPR,
|
|
1395
|
+
0,
|
|
1396
|
+
[_rPI, _nN, _wN],
|
|
1397
|
+
[0, 0, 0], 3
|
|
1398
|
+
];
|
|
1399
|
+
var RestoreFromRecoveryPointResponse$ = [3, n0, _RFRPRe,
|
|
1400
|
+
0,
|
|
1401
|
+
[_rPI, _n],
|
|
1402
|
+
[0, [() => Namespace$, 0]]
|
|
1403
|
+
];
|
|
1404
|
+
var RestoreFromSnapshotRequest$ = [3, n0, _RFSR,
|
|
1405
|
+
0,
|
|
1406
|
+
[_nN, _wN, _sN, _sAn, _oA, _mAP, _aPSKKI],
|
|
1407
|
+
[0, 0, 0, 0, 0, 2, 0], 2
|
|
1408
|
+
];
|
|
1409
|
+
var RestoreFromSnapshotResponse$ = [3, n0, _RFSRe,
|
|
1410
|
+
0,
|
|
1411
|
+
[_sN, _oA, _n],
|
|
1412
|
+
[0, 0, [() => Namespace$, 0]]
|
|
1413
|
+
];
|
|
1414
|
+
var RestoreTableFromRecoveryPointRequest$ = [3, n0, _RTFRPR,
|
|
1415
|
+
0,
|
|
1416
|
+
[_nN, _wN, _rPI, _sDN, _sTN, _nTN, _sSN, _tDN, _tSN, _aCSI],
|
|
1417
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 2], 6
|
|
1418
|
+
];
|
|
1419
|
+
var RestoreTableFromRecoveryPointResponse$ = [3, n0, _RTFRPRe,
|
|
1420
|
+
0,
|
|
1421
|
+
[_tRS],
|
|
1422
|
+
[() => TableRestoreStatus$]
|
|
1423
|
+
];
|
|
1424
|
+
var RestoreTableFromSnapshotRequest$ = [3, n0, _RTFSR,
|
|
1425
|
+
0,
|
|
1426
|
+
[_nN, _wN, _sN, _sDN, _sTN, _nTN, _sSN, _tDN, _tSN, _aCSI],
|
|
1427
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 2], 6
|
|
1428
|
+
];
|
|
1429
|
+
var RestoreTableFromSnapshotResponse$ = [3, n0, _RTFSRe,
|
|
1430
|
+
0,
|
|
1431
|
+
[_tRS],
|
|
1432
|
+
[() => TableRestoreStatus$]
|
|
1433
|
+
];
|
|
1434
|
+
var ScheduledActionAssociation$ = [3, n0, _SAA,
|
|
1435
|
+
0,
|
|
1436
|
+
[_nN, _sAN],
|
|
1437
|
+
[0, 0]
|
|
1438
|
+
];
|
|
1439
|
+
var ScheduledActionResponse$ = [3, n0, _SAR,
|
|
1440
|
+
0,
|
|
1441
|
+
[_sAN, _sc, _sAD, _nIe, _rA, _sta, _sT, _eT, _tA, _nN, _sAU],
|
|
1442
|
+
[0, () => Schedule$, 0, 64 | 4, 0, 0, 4, 4, () => TargetAction$, 0, 0]
|
|
1443
|
+
];
|
|
1444
|
+
var ServerlessTrack$ = [3, n0, _ST,
|
|
1445
|
+
0,
|
|
1446
|
+
[_tN, _wV, _uTp],
|
|
1447
|
+
[0, 0, () => UpdateTargetsList]
|
|
1448
|
+
];
|
|
1449
|
+
var Snapshot$ = [3, n0, _S,
|
|
1450
|
+
0,
|
|
1451
|
+
[_nN, _nA, _sN, _sCT, _aU, _st, _kKI, _oA, _tBSIMB, _aIBSIMB, _bPIMB, _cBRIMBPS, _eSTC, _eTIS, _sRP, _sRD, _sRST, _sAn, _aWRA, _aWPRA, _aPSA, _aPSKKI],
|
|
1452
|
+
[0, 0, 0, 5, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 0, 64 | 0, 64 | 0, 0, 0]
|
|
1453
|
+
];
|
|
1454
|
+
var SnapshotCopyConfiguration$ = [3, n0, _SCC,
|
|
1455
|
+
0,
|
|
1456
|
+
[_sCCI, _sCCA, _nN, _dR, _sRP, _dKKI],
|
|
1457
|
+
[0, 0, 0, 0, 1, 0]
|
|
1458
|
+
];
|
|
1459
|
+
var TableRestoreStatus$ = [3, n0, _TRS,
|
|
1460
|
+
0,
|
|
1461
|
+
[_tRRI, _st, _m, _rT, _nN, _wN, _sN, _pIMB, _tDIMB, _sDN, _sSN, _sTN, _tDN, _tSN, _nTN, _rPI],
|
|
1462
|
+
[0, 0, 0, 4, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]
|
|
1463
|
+
];
|
|
1464
|
+
var Tag$ = [3, n0, _Ta,
|
|
1465
|
+
0,
|
|
1466
|
+
[_k, _v],
|
|
1467
|
+
[0, 0], 2
|
|
1468
|
+
];
|
|
1469
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1470
|
+
0,
|
|
1471
|
+
[_rAe, _t],
|
|
1472
|
+
[0, () => TagList], 2
|
|
1473
|
+
];
|
|
1474
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1475
|
+
0,
|
|
1476
|
+
[],
|
|
1477
|
+
[]
|
|
1478
|
+
];
|
|
1479
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1480
|
+
0,
|
|
1481
|
+
[_rAe, _tK],
|
|
1482
|
+
[0, 64 | 0], 2
|
|
1483
|
+
];
|
|
1484
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1485
|
+
0,
|
|
1486
|
+
[],
|
|
1487
|
+
[]
|
|
1488
|
+
];
|
|
1489
|
+
var UpdateCustomDomainAssociationRequest$ = [3, n0, _UCDAR,
|
|
1490
|
+
0,
|
|
1491
|
+
[_wN, _cDN, _cDCA],
|
|
1492
|
+
[0, 0, 0], 3
|
|
1493
|
+
];
|
|
1494
|
+
var UpdateCustomDomainAssociationResponse$ = [3, n0, _UCDARp,
|
|
1495
|
+
0,
|
|
1496
|
+
[_cDN, _wN, _cDCA, _cDCET],
|
|
1497
|
+
[0, 0, 0, 5]
|
|
1498
|
+
];
|
|
1499
|
+
var UpdateEndpointAccessRequest$ = [3, n0, _UEAR,
|
|
1500
|
+
0,
|
|
1501
|
+
[_eN, _vSGI],
|
|
1502
|
+
[0, 64 | 0], 1
|
|
1503
|
+
];
|
|
1504
|
+
var UpdateEndpointAccessResponse$ = [3, n0, _UEARp,
|
|
1505
|
+
0,
|
|
1506
|
+
[_en],
|
|
1507
|
+
[() => EndpointAccess$]
|
|
1508
|
+
];
|
|
1509
|
+
var UpdateLakehouseConfigurationRequest$ = [3, n0, _ULCR,
|
|
1510
|
+
0,
|
|
1511
|
+
[_nN, _lR, _cN, _lIR, _lIAA, _dRr],
|
|
1512
|
+
[0, 0, 0, 0, 0, 2], 1
|
|
1513
|
+
];
|
|
1514
|
+
var UpdateLakehouseConfigurationResponse$ = [3, n0, _ULCRp,
|
|
1515
|
+
0,
|
|
1516
|
+
[_nN, _lIAA, _lRS, _cA],
|
|
1517
|
+
[0, 0, 0, 0]
|
|
1518
|
+
];
|
|
1519
|
+
var UpdateNamespaceRequest$ = [3, n0, _UNR,
|
|
1520
|
+
0,
|
|
1521
|
+
[_nN, _aUP, _aU, _kKI, _dIRA, _iR, _lE, _mAP, _aPSKKI],
|
|
1522
|
+
[0, [() => DbPassword, 0], [() => DbUser, 0], 0, 0, 64 | 0, 64 | 0, 2, 0], 1
|
|
1523
|
+
];
|
|
1524
|
+
var UpdateNamespaceResponse$ = [3, n0, _UNRp,
|
|
1525
|
+
0,
|
|
1526
|
+
[_n],
|
|
1527
|
+
[[() => Namespace$, 0]], 1
|
|
1528
|
+
];
|
|
1529
|
+
var UpdateScheduledActionRequest$ = [3, n0, _USAR,
|
|
1530
|
+
0,
|
|
1531
|
+
[_sAN, _tA, _sc, _rA, _ena, _sAD, _sT, _eT],
|
|
1532
|
+
[0, () => TargetAction$, () => Schedule$, 0, 2, 0, 4, 4], 1
|
|
1533
|
+
];
|
|
1534
|
+
var UpdateScheduledActionResponse$ = [3, n0, _USARp,
|
|
1535
|
+
0,
|
|
1536
|
+
[_sA],
|
|
1537
|
+
[() => ScheduledActionResponse$]
|
|
1538
|
+
];
|
|
1539
|
+
var UpdateSnapshotCopyConfigurationRequest$ = [3, n0, _USCCR,
|
|
1540
|
+
0,
|
|
1541
|
+
[_sCCI, _sRP],
|
|
1542
|
+
[0, 1], 1
|
|
1543
|
+
];
|
|
1544
|
+
var UpdateSnapshotCopyConfigurationResponse$ = [3, n0, _USCCRp,
|
|
1545
|
+
0,
|
|
1546
|
+
[_sCC],
|
|
1547
|
+
[() => SnapshotCopyConfiguration$], 1
|
|
1548
|
+
];
|
|
1549
|
+
var UpdateSnapshotRequest$ = [3, n0, _USR,
|
|
1550
|
+
0,
|
|
1551
|
+
[_sN, _rP],
|
|
1552
|
+
[0, 1], 1
|
|
1553
|
+
];
|
|
1554
|
+
var UpdateSnapshotResponse$ = [3, n0, _USRp,
|
|
1555
|
+
0,
|
|
1556
|
+
[_sn],
|
|
1557
|
+
[() => Snapshot$]
|
|
1558
|
+
];
|
|
1559
|
+
var UpdateTarget$ = [3, n0, _UT,
|
|
1560
|
+
0,
|
|
1561
|
+
[_tN, _wV],
|
|
1562
|
+
[0, 0]
|
|
1563
|
+
];
|
|
1564
|
+
var UpdateUsageLimitRequest$ = [3, n0, _UULR,
|
|
1565
|
+
0,
|
|
1566
|
+
[_uLI, _a, _bA],
|
|
1567
|
+
[0, 1, 0], 1
|
|
1568
|
+
];
|
|
1569
|
+
var UpdateUsageLimitResponse$ = [3, n0, _UULRp,
|
|
1570
|
+
0,
|
|
1571
|
+
[_uL],
|
|
1572
|
+
[() => UsageLimit$]
|
|
1573
|
+
];
|
|
1574
|
+
var UpdateWorkgroupRequest$ = [3, n0, _UWR,
|
|
1575
|
+
0,
|
|
1576
|
+
[_wN, _bC, _eVR, _cP, _pA, _sI, _sGI, _po, _mC, _iAT, _pPT, _tN, _eCFAO],
|
|
1577
|
+
[0, 1, 2, () => ConfigParameterList, 2, 64 | 0, 64 | 0, 1, 1, 0, () => PerformanceTarget$, 0, 2], 1
|
|
1578
|
+
];
|
|
1579
|
+
var UpdateWorkgroupResponse$ = [3, n0, _UWRp,
|
|
1580
|
+
0,
|
|
1581
|
+
[_w],
|
|
1582
|
+
[() => Workgroup$], 1
|
|
1583
|
+
];
|
|
1584
|
+
var UsageLimit$ = [3, n0, _UL,
|
|
1585
|
+
0,
|
|
1586
|
+
[_uLI, _uLA, _rAe, _uT, _a, _p, _bA],
|
|
1587
|
+
[0, 0, 0, 0, 1, 0, 0]
|
|
1588
|
+
];
|
|
1589
|
+
var VpcEndpoint$ = [3, n0, _VEp,
|
|
1590
|
+
0,
|
|
1591
|
+
[_vEI, _vI, _nIet],
|
|
1592
|
+
[0, 0, () => NetworkInterfaceList]
|
|
1593
|
+
];
|
|
1594
|
+
var VpcSecurityGroupMembership$ = [3, n0, _VSGM,
|
|
1595
|
+
0,
|
|
1596
|
+
[_vSGIp, _st],
|
|
1597
|
+
[0, 0]
|
|
1598
|
+
];
|
|
1599
|
+
var Workgroup$ = [3, n0, _W,
|
|
1600
|
+
0,
|
|
1601
|
+
[_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],
|
|
1602
|
+
[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]
|
|
1603
|
+
];
|
|
1604
|
+
var AssociationList = [1, n0, _AL,
|
|
1605
|
+
0, () => Association$
|
|
1606
|
+
];
|
|
1607
|
+
var ConfigParameterList = [1, n0, _CPL,
|
|
1608
|
+
0, () => ConfigParameter$
|
|
1609
|
+
];
|
|
1610
|
+
var EndpointAccessList = [1, n0, _EAL,
|
|
1611
|
+
0, () => EndpointAccess$
|
|
1612
|
+
];
|
|
1613
|
+
var ManagedWorkgroups = [1, n0, _MW,
|
|
1614
|
+
0, () => ManagedWorkgroupListItem$
|
|
1615
|
+
];
|
|
1616
|
+
var NamespaceList = [1, n0, _NL,
|
|
1617
|
+
0, [() => Namespace$,
|
|
1618
|
+
0]
|
|
1619
|
+
];
|
|
1620
|
+
var NetworkInterfaceList = [1, n0, _NIL,
|
|
1621
|
+
0, () => NetworkInterface$
|
|
1622
|
+
];
|
|
1623
|
+
var RecoveryPointList = [1, n0, _RPL,
|
|
1624
|
+
0, () => RecoveryPoint$
|
|
1625
|
+
];
|
|
1626
|
+
var ReservationOfferingsList = [1, n0, _ROL,
|
|
1627
|
+
0, () => ReservationOffering$
|
|
1628
|
+
];
|
|
1629
|
+
var ReservationsList = [1, n0, _RL,
|
|
1630
|
+
0, () => Reservation$
|
|
1631
|
+
];
|
|
1632
|
+
var ScheduledActionsList = [1, n0, _SAL,
|
|
1633
|
+
0, () => ScheduledActionAssociation$
|
|
1634
|
+
];
|
|
1635
|
+
var SnapshotCopyConfigurations = [1, n0, _SCCn,
|
|
1636
|
+
0, () => SnapshotCopyConfiguration$
|
|
1637
|
+
];
|
|
1638
|
+
var SnapshotList = [1, n0, _SL,
|
|
1639
|
+
0, () => Snapshot$
|
|
1640
|
+
];
|
|
1641
|
+
var TableRestoreStatusList = [1, n0, _TRSL,
|
|
1642
|
+
0, () => TableRestoreStatus$
|
|
1643
|
+
];
|
|
1644
|
+
var TagList = [1, n0, _TL,
|
|
1645
|
+
0, () => Tag$
|
|
1646
|
+
];
|
|
1647
|
+
var TrackList = [1, n0, _TLr,
|
|
1648
|
+
0, () => ServerlessTrack$
|
|
1649
|
+
];
|
|
1650
|
+
var UpdateTargetsList = [1, n0, _UTL,
|
|
1651
|
+
0, () => UpdateTarget$
|
|
1652
|
+
];
|
|
1653
|
+
var UsageLimits = [1, n0, _ULs,
|
|
1654
|
+
0, () => UsageLimit$
|
|
1655
|
+
];
|
|
1656
|
+
var VpcEndpointList = [1, n0, _VEL,
|
|
1657
|
+
0, () => VpcEndpoint$
|
|
1658
|
+
];
|
|
1659
|
+
var VpcSecurityGroupMembershipList = [1, n0, _VSGML,
|
|
1660
|
+
0, () => VpcSecurityGroupMembership$
|
|
1661
|
+
];
|
|
1662
|
+
var WorkgroupList = [1, n0, _WL,
|
|
1663
|
+
0, () => Workgroup$
|
|
1664
|
+
];
|
|
1665
|
+
var Schedule$ = [4, n0, _Sc,
|
|
1666
|
+
0,
|
|
1667
|
+
[_at, _cr],
|
|
1668
|
+
[4, 0]
|
|
1669
|
+
];
|
|
1670
|
+
var TargetAction$ = [4, n0, _TA,
|
|
1671
|
+
0,
|
|
1672
|
+
[_cS],
|
|
1673
|
+
[() => CreateSnapshotScheduleActionParameters$]
|
|
1674
|
+
];
|
|
1675
|
+
var ConvertRecoveryPointToSnapshot$ = [9, n0, _CRPTS,
|
|
1676
|
+
0, () => ConvertRecoveryPointToSnapshotRequest$, () => ConvertRecoveryPointToSnapshotResponse$
|
|
1677
|
+
];
|
|
1678
|
+
var CreateCustomDomainAssociation$ = [9, n0, _CCDA,
|
|
1679
|
+
0, () => CreateCustomDomainAssociationRequest$, () => CreateCustomDomainAssociationResponse$
|
|
1680
|
+
];
|
|
1681
|
+
var CreateEndpointAccess$ = [9, n0, _CEA,
|
|
1682
|
+
2, () => CreateEndpointAccessRequest$, () => CreateEndpointAccessResponse$
|
|
1683
|
+
];
|
|
1684
|
+
var CreateNamespace$ = [9, n0, _CN,
|
|
1685
|
+
2, () => CreateNamespaceRequest$, () => CreateNamespaceResponse$
|
|
1686
|
+
];
|
|
1687
|
+
var CreateReservation$ = [9, n0, _CR,
|
|
1688
|
+
2, () => CreateReservationRequest$, () => CreateReservationResponse$
|
|
1689
|
+
];
|
|
1690
|
+
var CreateScheduledAction$ = [9, n0, _CSA,
|
|
1691
|
+
2, () => CreateScheduledActionRequest$, () => CreateScheduledActionResponse$
|
|
1692
|
+
];
|
|
1693
|
+
var CreateSnapshot$ = [9, n0, _CS,
|
|
1694
|
+
2, () => CreateSnapshotRequest$, () => CreateSnapshotResponse$
|
|
1695
|
+
];
|
|
1696
|
+
var CreateSnapshotCopyConfiguration$ = [9, n0, _CSCC,
|
|
1697
|
+
2, () => CreateSnapshotCopyConfigurationRequest$, () => CreateSnapshotCopyConfigurationResponse$
|
|
1698
|
+
];
|
|
1699
|
+
var CreateUsageLimit$ = [9, n0, _CUL,
|
|
1700
|
+
2, () => CreateUsageLimitRequest$, () => CreateUsageLimitResponse$
|
|
1701
|
+
];
|
|
1702
|
+
var CreateWorkgroup$ = [9, n0, _CW,
|
|
1703
|
+
2, () => CreateWorkgroupRequest$, () => CreateWorkgroupResponse$
|
|
1704
|
+
];
|
|
1705
|
+
var DeleteCustomDomainAssociation$ = [9, n0, _DCDA,
|
|
1706
|
+
0, () => DeleteCustomDomainAssociationRequest$, () => DeleteCustomDomainAssociationResponse$
|
|
1707
|
+
];
|
|
1708
|
+
var DeleteEndpointAccess$ = [9, n0, _DEA,
|
|
1709
|
+
2, () => DeleteEndpointAccessRequest$, () => DeleteEndpointAccessResponse$
|
|
1710
|
+
];
|
|
1711
|
+
var DeleteNamespace$ = [9, n0, _DN,
|
|
1712
|
+
2, () => DeleteNamespaceRequest$, () => DeleteNamespaceResponse$
|
|
1713
|
+
];
|
|
1714
|
+
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
1715
|
+
0, () => DeleteResourcePolicyRequest$, () => DeleteResourcePolicyResponse$
|
|
1716
|
+
];
|
|
1717
|
+
var DeleteScheduledAction$ = [9, n0, _DSA,
|
|
1718
|
+
2, () => DeleteScheduledActionRequest$, () => DeleteScheduledActionResponse$
|
|
1719
|
+
];
|
|
1720
|
+
var DeleteSnapshot$ = [9, n0, _DS,
|
|
1721
|
+
2, () => DeleteSnapshotRequest$, () => DeleteSnapshotResponse$
|
|
1722
|
+
];
|
|
1723
|
+
var DeleteSnapshotCopyConfiguration$ = [9, n0, _DSCC,
|
|
1724
|
+
2, () => DeleteSnapshotCopyConfigurationRequest$, () => DeleteSnapshotCopyConfigurationResponse$
|
|
1725
|
+
];
|
|
1726
|
+
var DeleteUsageLimit$ = [9, n0, _DUL,
|
|
1727
|
+
2, () => DeleteUsageLimitRequest$, () => DeleteUsageLimitResponse$
|
|
1728
|
+
];
|
|
1729
|
+
var DeleteWorkgroup$ = [9, n0, _DW,
|
|
1730
|
+
2, () => DeleteWorkgroupRequest$, () => DeleteWorkgroupResponse$
|
|
1731
|
+
];
|
|
1732
|
+
var GetCredentials$ = [9, n0, _GC,
|
|
1733
|
+
0, () => GetCredentialsRequest$, () => GetCredentialsResponse$
|
|
1734
|
+
];
|
|
1735
|
+
var GetCustomDomainAssociation$ = [9, n0, _GCDA,
|
|
1736
|
+
0, () => GetCustomDomainAssociationRequest$, () => GetCustomDomainAssociationResponse$
|
|
1737
|
+
];
|
|
1738
|
+
var GetEndpointAccess$ = [9, n0, _GEA,
|
|
1739
|
+
0, () => GetEndpointAccessRequest$, () => GetEndpointAccessResponse$
|
|
1740
|
+
];
|
|
1741
|
+
var GetIdentityCenterAuthToken$ = [9, n0, _GICAT,
|
|
1742
|
+
0, () => GetIdentityCenterAuthTokenRequest$, () => GetIdentityCenterAuthTokenResponse$
|
|
1743
|
+
];
|
|
1744
|
+
var GetNamespace$ = [9, n0, _GN,
|
|
1745
|
+
0, () => GetNamespaceRequest$, () => GetNamespaceResponse$
|
|
1746
|
+
];
|
|
1747
|
+
var GetRecoveryPoint$ = [9, n0, _GRP,
|
|
1748
|
+
0, () => GetRecoveryPointRequest$, () => GetRecoveryPointResponse$
|
|
1749
|
+
];
|
|
1750
|
+
var GetReservation$ = [9, n0, _GR,
|
|
1751
|
+
0, () => GetReservationRequest$, () => GetReservationResponse$
|
|
1752
|
+
];
|
|
1753
|
+
var GetReservationOffering$ = [9, n0, _GRO,
|
|
1754
|
+
0, () => GetReservationOfferingRequest$, () => GetReservationOfferingResponse$
|
|
1755
|
+
];
|
|
1756
|
+
var GetResourcePolicy$ = [9, n0, _GRPe,
|
|
1757
|
+
0, () => GetResourcePolicyRequest$, () => GetResourcePolicyResponse$
|
|
1758
|
+
];
|
|
1759
|
+
var GetScheduledAction$ = [9, n0, _GSA,
|
|
1760
|
+
0, () => GetScheduledActionRequest$, () => GetScheduledActionResponse$
|
|
1761
|
+
];
|
|
1762
|
+
var GetSnapshot$ = [9, n0, _GS,
|
|
1763
|
+
0, () => GetSnapshotRequest$, () => GetSnapshotResponse$
|
|
1764
|
+
];
|
|
1765
|
+
var GetTableRestoreStatus$ = [9, n0, _GTRS,
|
|
1766
|
+
0, () => GetTableRestoreStatusRequest$, () => GetTableRestoreStatusResponse$
|
|
1767
|
+
];
|
|
1768
|
+
var GetTrack$ = [9, n0, _GT,
|
|
1769
|
+
0, () => GetTrackRequest$, () => GetTrackResponse$
|
|
1770
|
+
];
|
|
1771
|
+
var GetUsageLimit$ = [9, n0, _GUL,
|
|
1772
|
+
0, () => GetUsageLimitRequest$, () => GetUsageLimitResponse$
|
|
1773
|
+
];
|
|
1774
|
+
var GetWorkgroup$ = [9, n0, _GW,
|
|
1775
|
+
0, () => GetWorkgroupRequest$, () => GetWorkgroupResponse$
|
|
1776
|
+
];
|
|
1777
|
+
var ListCustomDomainAssociations$ = [9, n0, _LCDA,
|
|
1778
|
+
0, () => ListCustomDomainAssociationsRequest$, () => ListCustomDomainAssociationsResponse$
|
|
1779
|
+
];
|
|
1780
|
+
var ListEndpointAccess$ = [9, n0, _LEA,
|
|
1781
|
+
0, () => ListEndpointAccessRequest$, () => ListEndpointAccessResponse$
|
|
1782
|
+
];
|
|
1783
|
+
var ListManagedWorkgroups$ = [9, n0, _LMW,
|
|
1784
|
+
0, () => ListManagedWorkgroupsRequest$, () => ListManagedWorkgroupsResponse$
|
|
1785
|
+
];
|
|
1786
|
+
var ListNamespaces$ = [9, n0, _LN,
|
|
1787
|
+
0, () => ListNamespacesRequest$, () => ListNamespacesResponse$
|
|
1788
|
+
];
|
|
1789
|
+
var ListRecoveryPoints$ = [9, n0, _LRP,
|
|
1790
|
+
0, () => ListRecoveryPointsRequest$, () => ListRecoveryPointsResponse$
|
|
1791
|
+
];
|
|
1792
|
+
var ListReservationOfferings$ = [9, n0, _LRO,
|
|
1793
|
+
0, () => ListReservationOfferingsRequest$, () => ListReservationOfferingsResponse$
|
|
1794
|
+
];
|
|
1795
|
+
var ListReservations$ = [9, n0, _LR,
|
|
1796
|
+
0, () => ListReservationsRequest$, () => ListReservationsResponse$
|
|
1797
|
+
];
|
|
1798
|
+
var ListScheduledActions$ = [9, n0, _LSA,
|
|
1799
|
+
0, () => ListScheduledActionsRequest$, () => ListScheduledActionsResponse$
|
|
1800
|
+
];
|
|
1801
|
+
var ListSnapshotCopyConfigurations$ = [9, n0, _LSCC,
|
|
1802
|
+
0, () => ListSnapshotCopyConfigurationsRequest$, () => ListSnapshotCopyConfigurationsResponse$
|
|
1803
|
+
];
|
|
1804
|
+
var ListSnapshots$ = [9, n0, _LS,
|
|
1805
|
+
0, () => ListSnapshotsRequest$, () => ListSnapshotsResponse$
|
|
1806
|
+
];
|
|
1807
|
+
var ListTableRestoreStatus$ = [9, n0, _LTRS,
|
|
1808
|
+
0, () => ListTableRestoreStatusRequest$, () => ListTableRestoreStatusResponse$
|
|
1809
|
+
];
|
|
1810
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1811
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1812
|
+
];
|
|
1813
|
+
var ListTracks$ = [9, n0, _LT,
|
|
1814
|
+
0, () => ListTracksRequest$, () => ListTracksResponse$
|
|
1815
|
+
];
|
|
1816
|
+
var ListUsageLimits$ = [9, n0, _LUL,
|
|
1817
|
+
0, () => ListUsageLimitsRequest$, () => ListUsageLimitsResponse$
|
|
1818
|
+
];
|
|
1819
|
+
var ListWorkgroups$ = [9, n0, _LW,
|
|
1820
|
+
0, () => ListWorkgroupsRequest$, () => ListWorkgroupsResponse$
|
|
1821
|
+
];
|
|
1822
|
+
var PutResourcePolicy$ = [9, n0, _PRP,
|
|
1823
|
+
0, () => PutResourcePolicyRequest$, () => PutResourcePolicyResponse$
|
|
1824
|
+
];
|
|
1825
|
+
var RestoreFromRecoveryPoint$ = [9, n0, _RFRP,
|
|
1826
|
+
0, () => RestoreFromRecoveryPointRequest$, () => RestoreFromRecoveryPointResponse$
|
|
1827
|
+
];
|
|
1828
|
+
var RestoreFromSnapshot$ = [9, n0, _RFS,
|
|
1829
|
+
2, () => RestoreFromSnapshotRequest$, () => RestoreFromSnapshotResponse$
|
|
1830
|
+
];
|
|
1831
|
+
var RestoreTableFromRecoveryPoint$ = [9, n0, _RTFRP,
|
|
1832
|
+
0, () => RestoreTableFromRecoveryPointRequest$, () => RestoreTableFromRecoveryPointResponse$
|
|
1833
|
+
];
|
|
1834
|
+
var RestoreTableFromSnapshot$ = [9, n0, _RTFS,
|
|
1835
|
+
0, () => RestoreTableFromSnapshotRequest$, () => RestoreTableFromSnapshotResponse$
|
|
1836
|
+
];
|
|
1837
|
+
var TagResource$ = [9, n0, _TR,
|
|
1838
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1839
|
+
];
|
|
1840
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1841
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1842
|
+
];
|
|
1843
|
+
var UpdateCustomDomainAssociation$ = [9, n0, _UCDA,
|
|
1844
|
+
0, () => UpdateCustomDomainAssociationRequest$, () => UpdateCustomDomainAssociationResponse$
|
|
1845
|
+
];
|
|
1846
|
+
var UpdateEndpointAccess$ = [9, n0, _UEA,
|
|
1847
|
+
0, () => UpdateEndpointAccessRequest$, () => UpdateEndpointAccessResponse$
|
|
1848
|
+
];
|
|
1849
|
+
var UpdateLakehouseConfiguration$ = [9, n0, _ULC,
|
|
1850
|
+
0, () => UpdateLakehouseConfigurationRequest$, () => UpdateLakehouseConfigurationResponse$
|
|
1851
|
+
];
|
|
1852
|
+
var UpdateNamespace$ = [9, n0, _UN,
|
|
1853
|
+
0, () => UpdateNamespaceRequest$, () => UpdateNamespaceResponse$
|
|
1854
|
+
];
|
|
1855
|
+
var UpdateScheduledAction$ = [9, n0, _USA,
|
|
1856
|
+
2, () => UpdateScheduledActionRequest$, () => UpdateScheduledActionResponse$
|
|
1857
|
+
];
|
|
1858
|
+
var UpdateSnapshot$ = [9, n0, _US,
|
|
1859
|
+
0, () => UpdateSnapshotRequest$, () => UpdateSnapshotResponse$
|
|
1860
|
+
];
|
|
1861
|
+
var UpdateSnapshotCopyConfiguration$ = [9, n0, _USCC,
|
|
1862
|
+
0, () => UpdateSnapshotCopyConfigurationRequest$, () => UpdateSnapshotCopyConfigurationResponse$
|
|
1863
|
+
];
|
|
1864
|
+
var UpdateUsageLimit$ = [9, n0, _UUL,
|
|
1865
|
+
0, () => UpdateUsageLimitRequest$, () => UpdateUsageLimitResponse$
|
|
1866
|
+
];
|
|
1867
|
+
var UpdateWorkgroup$ = [9, n0, _UW,
|
|
1868
|
+
0, () => UpdateWorkgroupRequest$, () => UpdateWorkgroupResponse$
|
|
1869
|
+
];
|
|
1870
|
+
|
|
1871
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1872
|
+
return {
|
|
1873
|
+
apiVersion: "2021-04-21",
|
|
1874
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1875
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1876
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1877
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1878
|
+
extensions: config?.extensions ?? [],
|
|
1879
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultRedshiftServerlessHttpAuthSchemeProvider,
|
|
1880
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1881
|
+
{
|
|
1882
|
+
schemeId: "aws.auth#sigv4",
|
|
1883
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1884
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1885
|
+
},
|
|
1886
|
+
],
|
|
1887
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1888
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
1889
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1890
|
+
defaultNamespace: "com.amazonaws.redshiftserverless",
|
|
1891
|
+
errorTypeRegistries,
|
|
1892
|
+
version: "2021-04-21",
|
|
1893
|
+
serviceTarget: "RedshiftServerless",
|
|
1894
|
+
},
|
|
1895
|
+
serviceId: config?.serviceId ?? "Redshift Serverless",
|
|
1896
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1897
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1898
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1899
|
+
};
|
|
1900
|
+
};
|
|
1901
|
+
|
|
1902
|
+
const getRuntimeConfig = (config) => {
|
|
1903
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1904
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1905
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1906
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1907
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1908
|
+
const loaderConfig = {
|
|
1909
|
+
profile: config?.profile,
|
|
1910
|
+
logger: clientSharedValues.logger,
|
|
1911
|
+
};
|
|
1912
|
+
return {
|
|
1913
|
+
...clientSharedValues,
|
|
1914
|
+
...config,
|
|
1915
|
+
runtime: "node",
|
|
1916
|
+
defaultsMode,
|
|
1917
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1918
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1919
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1920
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1921
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1922
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1923
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1924
|
+
retryMode: config?.retryMode ??
|
|
1925
|
+
loadConfig({
|
|
1926
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1927
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1928
|
+
}, config),
|
|
1929
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1930
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1931
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1932
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1933
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1934
|
+
};
|
|
1935
|
+
};
|
|
1936
|
+
|
|
34
1937
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1938
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1939
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1072,86 +2975,335 @@ const ManagedWorkgroupStatus = {
|
|
|
1072
2975
|
NOT_AVAILABLE: "NOT_AVAILABLE",
|
|
1073
2976
|
};
|
|
1074
2977
|
|
|
2978
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2979
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2980
|
+
exports.Association$ = Association$;
|
|
2981
|
+
exports.ConfigParameter$ = ConfigParameter$;
|
|
2982
|
+
exports.ConflictException = ConflictException;
|
|
2983
|
+
exports.ConflictException$ = ConflictException$;
|
|
2984
|
+
exports.ConvertRecoveryPointToSnapshot$ = ConvertRecoveryPointToSnapshot$;
|
|
1075
2985
|
exports.ConvertRecoveryPointToSnapshotCommand = ConvertRecoveryPointToSnapshotCommand;
|
|
2986
|
+
exports.ConvertRecoveryPointToSnapshotRequest$ = ConvertRecoveryPointToSnapshotRequest$;
|
|
2987
|
+
exports.ConvertRecoveryPointToSnapshotResponse$ = ConvertRecoveryPointToSnapshotResponse$;
|
|
2988
|
+
exports.CreateCustomDomainAssociation$ = CreateCustomDomainAssociation$;
|
|
1076
2989
|
exports.CreateCustomDomainAssociationCommand = CreateCustomDomainAssociationCommand;
|
|
2990
|
+
exports.CreateCustomDomainAssociationRequest$ = CreateCustomDomainAssociationRequest$;
|
|
2991
|
+
exports.CreateCustomDomainAssociationResponse$ = CreateCustomDomainAssociationResponse$;
|
|
2992
|
+
exports.CreateEndpointAccess$ = CreateEndpointAccess$;
|
|
1077
2993
|
exports.CreateEndpointAccessCommand = CreateEndpointAccessCommand;
|
|
2994
|
+
exports.CreateEndpointAccessRequest$ = CreateEndpointAccessRequest$;
|
|
2995
|
+
exports.CreateEndpointAccessResponse$ = CreateEndpointAccessResponse$;
|
|
2996
|
+
exports.CreateNamespace$ = CreateNamespace$;
|
|
1078
2997
|
exports.CreateNamespaceCommand = CreateNamespaceCommand;
|
|
2998
|
+
exports.CreateNamespaceRequest$ = CreateNamespaceRequest$;
|
|
2999
|
+
exports.CreateNamespaceResponse$ = CreateNamespaceResponse$;
|
|
3000
|
+
exports.CreateReservation$ = CreateReservation$;
|
|
1079
3001
|
exports.CreateReservationCommand = CreateReservationCommand;
|
|
3002
|
+
exports.CreateReservationRequest$ = CreateReservationRequest$;
|
|
3003
|
+
exports.CreateReservationResponse$ = CreateReservationResponse$;
|
|
3004
|
+
exports.CreateScheduledAction$ = CreateScheduledAction$;
|
|
1080
3005
|
exports.CreateScheduledActionCommand = CreateScheduledActionCommand;
|
|
3006
|
+
exports.CreateScheduledActionRequest$ = CreateScheduledActionRequest$;
|
|
3007
|
+
exports.CreateScheduledActionResponse$ = CreateScheduledActionResponse$;
|
|
3008
|
+
exports.CreateSnapshot$ = CreateSnapshot$;
|
|
1081
3009
|
exports.CreateSnapshotCommand = CreateSnapshotCommand;
|
|
3010
|
+
exports.CreateSnapshotCopyConfiguration$ = CreateSnapshotCopyConfiguration$;
|
|
1082
3011
|
exports.CreateSnapshotCopyConfigurationCommand = CreateSnapshotCopyConfigurationCommand;
|
|
3012
|
+
exports.CreateSnapshotCopyConfigurationRequest$ = CreateSnapshotCopyConfigurationRequest$;
|
|
3013
|
+
exports.CreateSnapshotCopyConfigurationResponse$ = CreateSnapshotCopyConfigurationResponse$;
|
|
3014
|
+
exports.CreateSnapshotRequest$ = CreateSnapshotRequest$;
|
|
3015
|
+
exports.CreateSnapshotResponse$ = CreateSnapshotResponse$;
|
|
3016
|
+
exports.CreateSnapshotScheduleActionParameters$ = CreateSnapshotScheduleActionParameters$;
|
|
3017
|
+
exports.CreateUsageLimit$ = CreateUsageLimit$;
|
|
1083
3018
|
exports.CreateUsageLimitCommand = CreateUsageLimitCommand;
|
|
3019
|
+
exports.CreateUsageLimitRequest$ = CreateUsageLimitRequest$;
|
|
3020
|
+
exports.CreateUsageLimitResponse$ = CreateUsageLimitResponse$;
|
|
3021
|
+
exports.CreateWorkgroup$ = CreateWorkgroup$;
|
|
1084
3022
|
exports.CreateWorkgroupCommand = CreateWorkgroupCommand;
|
|
3023
|
+
exports.CreateWorkgroupRequest$ = CreateWorkgroupRequest$;
|
|
3024
|
+
exports.CreateWorkgroupResponse$ = CreateWorkgroupResponse$;
|
|
3025
|
+
exports.DeleteCustomDomainAssociation$ = DeleteCustomDomainAssociation$;
|
|
1085
3026
|
exports.DeleteCustomDomainAssociationCommand = DeleteCustomDomainAssociationCommand;
|
|
3027
|
+
exports.DeleteCustomDomainAssociationRequest$ = DeleteCustomDomainAssociationRequest$;
|
|
3028
|
+
exports.DeleteCustomDomainAssociationResponse$ = DeleteCustomDomainAssociationResponse$;
|
|
3029
|
+
exports.DeleteEndpointAccess$ = DeleteEndpointAccess$;
|
|
1086
3030
|
exports.DeleteEndpointAccessCommand = DeleteEndpointAccessCommand;
|
|
3031
|
+
exports.DeleteEndpointAccessRequest$ = DeleteEndpointAccessRequest$;
|
|
3032
|
+
exports.DeleteEndpointAccessResponse$ = DeleteEndpointAccessResponse$;
|
|
3033
|
+
exports.DeleteNamespace$ = DeleteNamespace$;
|
|
1087
3034
|
exports.DeleteNamespaceCommand = DeleteNamespaceCommand;
|
|
3035
|
+
exports.DeleteNamespaceRequest$ = DeleteNamespaceRequest$;
|
|
3036
|
+
exports.DeleteNamespaceResponse$ = DeleteNamespaceResponse$;
|
|
3037
|
+
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
1088
3038
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
3039
|
+
exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
|
|
3040
|
+
exports.DeleteResourcePolicyResponse$ = DeleteResourcePolicyResponse$;
|
|
3041
|
+
exports.DeleteScheduledAction$ = DeleteScheduledAction$;
|
|
1089
3042
|
exports.DeleteScheduledActionCommand = DeleteScheduledActionCommand;
|
|
3043
|
+
exports.DeleteScheduledActionRequest$ = DeleteScheduledActionRequest$;
|
|
3044
|
+
exports.DeleteScheduledActionResponse$ = DeleteScheduledActionResponse$;
|
|
3045
|
+
exports.DeleteSnapshot$ = DeleteSnapshot$;
|
|
1090
3046
|
exports.DeleteSnapshotCommand = DeleteSnapshotCommand;
|
|
3047
|
+
exports.DeleteSnapshotCopyConfiguration$ = DeleteSnapshotCopyConfiguration$;
|
|
1091
3048
|
exports.DeleteSnapshotCopyConfigurationCommand = DeleteSnapshotCopyConfigurationCommand;
|
|
3049
|
+
exports.DeleteSnapshotCopyConfigurationRequest$ = DeleteSnapshotCopyConfigurationRequest$;
|
|
3050
|
+
exports.DeleteSnapshotCopyConfigurationResponse$ = DeleteSnapshotCopyConfigurationResponse$;
|
|
3051
|
+
exports.DeleteSnapshotRequest$ = DeleteSnapshotRequest$;
|
|
3052
|
+
exports.DeleteSnapshotResponse$ = DeleteSnapshotResponse$;
|
|
3053
|
+
exports.DeleteUsageLimit$ = DeleteUsageLimit$;
|
|
1092
3054
|
exports.DeleteUsageLimitCommand = DeleteUsageLimitCommand;
|
|
3055
|
+
exports.DeleteUsageLimitRequest$ = DeleteUsageLimitRequest$;
|
|
3056
|
+
exports.DeleteUsageLimitResponse$ = DeleteUsageLimitResponse$;
|
|
3057
|
+
exports.DeleteWorkgroup$ = DeleteWorkgroup$;
|
|
1093
3058
|
exports.DeleteWorkgroupCommand = DeleteWorkgroupCommand;
|
|
3059
|
+
exports.DeleteWorkgroupRequest$ = DeleteWorkgroupRequest$;
|
|
3060
|
+
exports.DeleteWorkgroupResponse$ = DeleteWorkgroupResponse$;
|
|
3061
|
+
exports.DryRunException = DryRunException;
|
|
3062
|
+
exports.DryRunException$ = DryRunException$;
|
|
3063
|
+
exports.Endpoint$ = Endpoint$;
|
|
3064
|
+
exports.EndpointAccess$ = EndpointAccess$;
|
|
3065
|
+
exports.GetCredentials$ = GetCredentials$;
|
|
1094
3066
|
exports.GetCredentialsCommand = GetCredentialsCommand;
|
|
3067
|
+
exports.GetCredentialsRequest$ = GetCredentialsRequest$;
|
|
3068
|
+
exports.GetCredentialsResponse$ = GetCredentialsResponse$;
|
|
3069
|
+
exports.GetCustomDomainAssociation$ = GetCustomDomainAssociation$;
|
|
1095
3070
|
exports.GetCustomDomainAssociationCommand = GetCustomDomainAssociationCommand;
|
|
3071
|
+
exports.GetCustomDomainAssociationRequest$ = GetCustomDomainAssociationRequest$;
|
|
3072
|
+
exports.GetCustomDomainAssociationResponse$ = GetCustomDomainAssociationResponse$;
|
|
3073
|
+
exports.GetEndpointAccess$ = GetEndpointAccess$;
|
|
1096
3074
|
exports.GetEndpointAccessCommand = GetEndpointAccessCommand;
|
|
3075
|
+
exports.GetEndpointAccessRequest$ = GetEndpointAccessRequest$;
|
|
3076
|
+
exports.GetEndpointAccessResponse$ = GetEndpointAccessResponse$;
|
|
3077
|
+
exports.GetIdentityCenterAuthToken$ = GetIdentityCenterAuthToken$;
|
|
1097
3078
|
exports.GetIdentityCenterAuthTokenCommand = GetIdentityCenterAuthTokenCommand;
|
|
3079
|
+
exports.GetIdentityCenterAuthTokenRequest$ = GetIdentityCenterAuthTokenRequest$;
|
|
3080
|
+
exports.GetIdentityCenterAuthTokenResponse$ = GetIdentityCenterAuthTokenResponse$;
|
|
3081
|
+
exports.GetNamespace$ = GetNamespace$;
|
|
1098
3082
|
exports.GetNamespaceCommand = GetNamespaceCommand;
|
|
3083
|
+
exports.GetNamespaceRequest$ = GetNamespaceRequest$;
|
|
3084
|
+
exports.GetNamespaceResponse$ = GetNamespaceResponse$;
|
|
3085
|
+
exports.GetRecoveryPoint$ = GetRecoveryPoint$;
|
|
1099
3086
|
exports.GetRecoveryPointCommand = GetRecoveryPointCommand;
|
|
3087
|
+
exports.GetRecoveryPointRequest$ = GetRecoveryPointRequest$;
|
|
3088
|
+
exports.GetRecoveryPointResponse$ = GetRecoveryPointResponse$;
|
|
3089
|
+
exports.GetReservation$ = GetReservation$;
|
|
1100
3090
|
exports.GetReservationCommand = GetReservationCommand;
|
|
3091
|
+
exports.GetReservationOffering$ = GetReservationOffering$;
|
|
1101
3092
|
exports.GetReservationOfferingCommand = GetReservationOfferingCommand;
|
|
3093
|
+
exports.GetReservationOfferingRequest$ = GetReservationOfferingRequest$;
|
|
3094
|
+
exports.GetReservationOfferingResponse$ = GetReservationOfferingResponse$;
|
|
3095
|
+
exports.GetReservationRequest$ = GetReservationRequest$;
|
|
3096
|
+
exports.GetReservationResponse$ = GetReservationResponse$;
|
|
3097
|
+
exports.GetResourcePolicy$ = GetResourcePolicy$;
|
|
1102
3098
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
3099
|
+
exports.GetResourcePolicyRequest$ = GetResourcePolicyRequest$;
|
|
3100
|
+
exports.GetResourcePolicyResponse$ = GetResourcePolicyResponse$;
|
|
3101
|
+
exports.GetScheduledAction$ = GetScheduledAction$;
|
|
1103
3102
|
exports.GetScheduledActionCommand = GetScheduledActionCommand;
|
|
3103
|
+
exports.GetScheduledActionRequest$ = GetScheduledActionRequest$;
|
|
3104
|
+
exports.GetScheduledActionResponse$ = GetScheduledActionResponse$;
|
|
3105
|
+
exports.GetSnapshot$ = GetSnapshot$;
|
|
1104
3106
|
exports.GetSnapshotCommand = GetSnapshotCommand;
|
|
3107
|
+
exports.GetSnapshotRequest$ = GetSnapshotRequest$;
|
|
3108
|
+
exports.GetSnapshotResponse$ = GetSnapshotResponse$;
|
|
3109
|
+
exports.GetTableRestoreStatus$ = GetTableRestoreStatus$;
|
|
1105
3110
|
exports.GetTableRestoreStatusCommand = GetTableRestoreStatusCommand;
|
|
3111
|
+
exports.GetTableRestoreStatusRequest$ = GetTableRestoreStatusRequest$;
|
|
3112
|
+
exports.GetTableRestoreStatusResponse$ = GetTableRestoreStatusResponse$;
|
|
3113
|
+
exports.GetTrack$ = GetTrack$;
|
|
1106
3114
|
exports.GetTrackCommand = GetTrackCommand;
|
|
3115
|
+
exports.GetTrackRequest$ = GetTrackRequest$;
|
|
3116
|
+
exports.GetTrackResponse$ = GetTrackResponse$;
|
|
3117
|
+
exports.GetUsageLimit$ = GetUsageLimit$;
|
|
1107
3118
|
exports.GetUsageLimitCommand = GetUsageLimitCommand;
|
|
3119
|
+
exports.GetUsageLimitRequest$ = GetUsageLimitRequest$;
|
|
3120
|
+
exports.GetUsageLimitResponse$ = GetUsageLimitResponse$;
|
|
3121
|
+
exports.GetWorkgroup$ = GetWorkgroup$;
|
|
1108
3122
|
exports.GetWorkgroupCommand = GetWorkgroupCommand;
|
|
3123
|
+
exports.GetWorkgroupRequest$ = GetWorkgroupRequest$;
|
|
3124
|
+
exports.GetWorkgroupResponse$ = GetWorkgroupResponse$;
|
|
3125
|
+
exports.InsufficientCapacityException = InsufficientCapacityException;
|
|
3126
|
+
exports.InsufficientCapacityException$ = InsufficientCapacityException$;
|
|
3127
|
+
exports.InternalServerException = InternalServerException;
|
|
3128
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
3129
|
+
exports.InvalidPaginationException = InvalidPaginationException;
|
|
3130
|
+
exports.InvalidPaginationException$ = InvalidPaginationException$;
|
|
3131
|
+
exports.Ipv6CidrBlockNotFoundException = Ipv6CidrBlockNotFoundException;
|
|
3132
|
+
exports.Ipv6CidrBlockNotFoundException$ = Ipv6CidrBlockNotFoundException$;
|
|
1109
3133
|
exports.LakehouseIdcRegistration = LakehouseIdcRegistration;
|
|
1110
3134
|
exports.LakehouseRegistration = LakehouseRegistration;
|
|
3135
|
+
exports.ListCustomDomainAssociations$ = ListCustomDomainAssociations$;
|
|
1111
3136
|
exports.ListCustomDomainAssociationsCommand = ListCustomDomainAssociationsCommand;
|
|
3137
|
+
exports.ListCustomDomainAssociationsRequest$ = ListCustomDomainAssociationsRequest$;
|
|
3138
|
+
exports.ListCustomDomainAssociationsResponse$ = ListCustomDomainAssociationsResponse$;
|
|
3139
|
+
exports.ListEndpointAccess$ = ListEndpointAccess$;
|
|
1112
3140
|
exports.ListEndpointAccessCommand = ListEndpointAccessCommand;
|
|
3141
|
+
exports.ListEndpointAccessRequest$ = ListEndpointAccessRequest$;
|
|
3142
|
+
exports.ListEndpointAccessResponse$ = ListEndpointAccessResponse$;
|
|
3143
|
+
exports.ListManagedWorkgroups$ = ListManagedWorkgroups$;
|
|
1113
3144
|
exports.ListManagedWorkgroupsCommand = ListManagedWorkgroupsCommand;
|
|
3145
|
+
exports.ListManagedWorkgroupsRequest$ = ListManagedWorkgroupsRequest$;
|
|
3146
|
+
exports.ListManagedWorkgroupsResponse$ = ListManagedWorkgroupsResponse$;
|
|
3147
|
+
exports.ListNamespaces$ = ListNamespaces$;
|
|
1114
3148
|
exports.ListNamespacesCommand = ListNamespacesCommand;
|
|
3149
|
+
exports.ListNamespacesRequest$ = ListNamespacesRequest$;
|
|
3150
|
+
exports.ListNamespacesResponse$ = ListNamespacesResponse$;
|
|
3151
|
+
exports.ListRecoveryPoints$ = ListRecoveryPoints$;
|
|
1115
3152
|
exports.ListRecoveryPointsCommand = ListRecoveryPointsCommand;
|
|
3153
|
+
exports.ListRecoveryPointsRequest$ = ListRecoveryPointsRequest$;
|
|
3154
|
+
exports.ListRecoveryPointsResponse$ = ListRecoveryPointsResponse$;
|
|
3155
|
+
exports.ListReservationOfferings$ = ListReservationOfferings$;
|
|
1116
3156
|
exports.ListReservationOfferingsCommand = ListReservationOfferingsCommand;
|
|
3157
|
+
exports.ListReservationOfferingsRequest$ = ListReservationOfferingsRequest$;
|
|
3158
|
+
exports.ListReservationOfferingsResponse$ = ListReservationOfferingsResponse$;
|
|
3159
|
+
exports.ListReservations$ = ListReservations$;
|
|
1117
3160
|
exports.ListReservationsCommand = ListReservationsCommand;
|
|
3161
|
+
exports.ListReservationsRequest$ = ListReservationsRequest$;
|
|
3162
|
+
exports.ListReservationsResponse$ = ListReservationsResponse$;
|
|
3163
|
+
exports.ListScheduledActions$ = ListScheduledActions$;
|
|
1118
3164
|
exports.ListScheduledActionsCommand = ListScheduledActionsCommand;
|
|
3165
|
+
exports.ListScheduledActionsRequest$ = ListScheduledActionsRequest$;
|
|
3166
|
+
exports.ListScheduledActionsResponse$ = ListScheduledActionsResponse$;
|
|
3167
|
+
exports.ListSnapshotCopyConfigurations$ = ListSnapshotCopyConfigurations$;
|
|
1119
3168
|
exports.ListSnapshotCopyConfigurationsCommand = ListSnapshotCopyConfigurationsCommand;
|
|
3169
|
+
exports.ListSnapshotCopyConfigurationsRequest$ = ListSnapshotCopyConfigurationsRequest$;
|
|
3170
|
+
exports.ListSnapshotCopyConfigurationsResponse$ = ListSnapshotCopyConfigurationsResponse$;
|
|
3171
|
+
exports.ListSnapshots$ = ListSnapshots$;
|
|
1120
3172
|
exports.ListSnapshotsCommand = ListSnapshotsCommand;
|
|
3173
|
+
exports.ListSnapshotsRequest$ = ListSnapshotsRequest$;
|
|
3174
|
+
exports.ListSnapshotsResponse$ = ListSnapshotsResponse$;
|
|
3175
|
+
exports.ListTableRestoreStatus$ = ListTableRestoreStatus$;
|
|
1121
3176
|
exports.ListTableRestoreStatusCommand = ListTableRestoreStatusCommand;
|
|
3177
|
+
exports.ListTableRestoreStatusRequest$ = ListTableRestoreStatusRequest$;
|
|
3178
|
+
exports.ListTableRestoreStatusResponse$ = ListTableRestoreStatusResponse$;
|
|
3179
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1122
3180
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3181
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3182
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3183
|
+
exports.ListTracks$ = ListTracks$;
|
|
1123
3184
|
exports.ListTracksCommand = ListTracksCommand;
|
|
3185
|
+
exports.ListTracksRequest$ = ListTracksRequest$;
|
|
3186
|
+
exports.ListTracksResponse$ = ListTracksResponse$;
|
|
3187
|
+
exports.ListUsageLimits$ = ListUsageLimits$;
|
|
1124
3188
|
exports.ListUsageLimitsCommand = ListUsageLimitsCommand;
|
|
3189
|
+
exports.ListUsageLimitsRequest$ = ListUsageLimitsRequest$;
|
|
3190
|
+
exports.ListUsageLimitsResponse$ = ListUsageLimitsResponse$;
|
|
3191
|
+
exports.ListWorkgroups$ = ListWorkgroups$;
|
|
1125
3192
|
exports.ListWorkgroupsCommand = ListWorkgroupsCommand;
|
|
3193
|
+
exports.ListWorkgroupsRequest$ = ListWorkgroupsRequest$;
|
|
3194
|
+
exports.ListWorkgroupsResponse$ = ListWorkgroupsResponse$;
|
|
1126
3195
|
exports.LogExport = LogExport;
|
|
3196
|
+
exports.ManagedWorkgroupListItem$ = ManagedWorkgroupListItem$;
|
|
1127
3197
|
exports.ManagedWorkgroupStatus = ManagedWorkgroupStatus;
|
|
3198
|
+
exports.Namespace$ = Namespace$;
|
|
1128
3199
|
exports.NamespaceStatus = NamespaceStatus;
|
|
3200
|
+
exports.NetworkInterface$ = NetworkInterface$;
|
|
1129
3201
|
exports.OfferingType = OfferingType;
|
|
3202
|
+
exports.PerformanceTarget$ = PerformanceTarget$;
|
|
1130
3203
|
exports.PerformanceTargetStatus = PerformanceTargetStatus;
|
|
3204
|
+
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
1131
3205
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
3206
|
+
exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
|
|
3207
|
+
exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
|
|
3208
|
+
exports.RecoveryPoint$ = RecoveryPoint$;
|
|
1132
3209
|
exports.RedshiftServerless = RedshiftServerless;
|
|
1133
3210
|
exports.RedshiftServerlessClient = RedshiftServerlessClient;
|
|
3211
|
+
exports.RedshiftServerlessServiceException = RedshiftServerlessServiceException;
|
|
3212
|
+
exports.RedshiftServerlessServiceException$ = RedshiftServerlessServiceException$;
|
|
3213
|
+
exports.Reservation$ = Reservation$;
|
|
3214
|
+
exports.ReservationOffering$ = ReservationOffering$;
|
|
3215
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3216
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3217
|
+
exports.ResourcePolicy$ = ResourcePolicy$;
|
|
3218
|
+
exports.RestoreFromRecoveryPoint$ = RestoreFromRecoveryPoint$;
|
|
1134
3219
|
exports.RestoreFromRecoveryPointCommand = RestoreFromRecoveryPointCommand;
|
|
3220
|
+
exports.RestoreFromRecoveryPointRequest$ = RestoreFromRecoveryPointRequest$;
|
|
3221
|
+
exports.RestoreFromRecoveryPointResponse$ = RestoreFromRecoveryPointResponse$;
|
|
3222
|
+
exports.RestoreFromSnapshot$ = RestoreFromSnapshot$;
|
|
1135
3223
|
exports.RestoreFromSnapshotCommand = RestoreFromSnapshotCommand;
|
|
3224
|
+
exports.RestoreFromSnapshotRequest$ = RestoreFromSnapshotRequest$;
|
|
3225
|
+
exports.RestoreFromSnapshotResponse$ = RestoreFromSnapshotResponse$;
|
|
3226
|
+
exports.RestoreTableFromRecoveryPoint$ = RestoreTableFromRecoveryPoint$;
|
|
1136
3227
|
exports.RestoreTableFromRecoveryPointCommand = RestoreTableFromRecoveryPointCommand;
|
|
3228
|
+
exports.RestoreTableFromRecoveryPointRequest$ = RestoreTableFromRecoveryPointRequest$;
|
|
3229
|
+
exports.RestoreTableFromRecoveryPointResponse$ = RestoreTableFromRecoveryPointResponse$;
|
|
3230
|
+
exports.RestoreTableFromSnapshot$ = RestoreTableFromSnapshot$;
|
|
1137
3231
|
exports.RestoreTableFromSnapshotCommand = RestoreTableFromSnapshotCommand;
|
|
3232
|
+
exports.RestoreTableFromSnapshotRequest$ = RestoreTableFromSnapshotRequest$;
|
|
3233
|
+
exports.RestoreTableFromSnapshotResponse$ = RestoreTableFromSnapshotResponse$;
|
|
3234
|
+
exports.Schedule$ = Schedule$;
|
|
3235
|
+
exports.ScheduledActionAssociation$ = ScheduledActionAssociation$;
|
|
3236
|
+
exports.ScheduledActionResponse$ = ScheduledActionResponse$;
|
|
3237
|
+
exports.ServerlessTrack$ = ServerlessTrack$;
|
|
3238
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3239
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
3240
|
+
exports.Snapshot$ = Snapshot$;
|
|
3241
|
+
exports.SnapshotCopyConfiguration$ = SnapshotCopyConfiguration$;
|
|
1138
3242
|
exports.SnapshotStatus = SnapshotStatus;
|
|
1139
3243
|
exports.State = State;
|
|
3244
|
+
exports.TableRestoreStatus$ = TableRestoreStatus$;
|
|
3245
|
+
exports.Tag$ = Tag$;
|
|
3246
|
+
exports.TagResource$ = TagResource$;
|
|
1140
3247
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3248
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3249
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3250
|
+
exports.TargetAction$ = TargetAction$;
|
|
3251
|
+
exports.ThrottlingException = ThrottlingException;
|
|
3252
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
3253
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
3254
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
3255
|
+
exports.UntagResource$ = UntagResource$;
|
|
1141
3256
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3257
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3258
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3259
|
+
exports.UpdateCustomDomainAssociation$ = UpdateCustomDomainAssociation$;
|
|
1142
3260
|
exports.UpdateCustomDomainAssociationCommand = UpdateCustomDomainAssociationCommand;
|
|
3261
|
+
exports.UpdateCustomDomainAssociationRequest$ = UpdateCustomDomainAssociationRequest$;
|
|
3262
|
+
exports.UpdateCustomDomainAssociationResponse$ = UpdateCustomDomainAssociationResponse$;
|
|
3263
|
+
exports.UpdateEndpointAccess$ = UpdateEndpointAccess$;
|
|
1143
3264
|
exports.UpdateEndpointAccessCommand = UpdateEndpointAccessCommand;
|
|
3265
|
+
exports.UpdateEndpointAccessRequest$ = UpdateEndpointAccessRequest$;
|
|
3266
|
+
exports.UpdateEndpointAccessResponse$ = UpdateEndpointAccessResponse$;
|
|
3267
|
+
exports.UpdateLakehouseConfiguration$ = UpdateLakehouseConfiguration$;
|
|
1144
3268
|
exports.UpdateLakehouseConfigurationCommand = UpdateLakehouseConfigurationCommand;
|
|
3269
|
+
exports.UpdateLakehouseConfigurationRequest$ = UpdateLakehouseConfigurationRequest$;
|
|
3270
|
+
exports.UpdateLakehouseConfigurationResponse$ = UpdateLakehouseConfigurationResponse$;
|
|
3271
|
+
exports.UpdateNamespace$ = UpdateNamespace$;
|
|
1145
3272
|
exports.UpdateNamespaceCommand = UpdateNamespaceCommand;
|
|
3273
|
+
exports.UpdateNamespaceRequest$ = UpdateNamespaceRequest$;
|
|
3274
|
+
exports.UpdateNamespaceResponse$ = UpdateNamespaceResponse$;
|
|
3275
|
+
exports.UpdateScheduledAction$ = UpdateScheduledAction$;
|
|
1146
3276
|
exports.UpdateScheduledActionCommand = UpdateScheduledActionCommand;
|
|
3277
|
+
exports.UpdateScheduledActionRequest$ = UpdateScheduledActionRequest$;
|
|
3278
|
+
exports.UpdateScheduledActionResponse$ = UpdateScheduledActionResponse$;
|
|
3279
|
+
exports.UpdateSnapshot$ = UpdateSnapshot$;
|
|
1147
3280
|
exports.UpdateSnapshotCommand = UpdateSnapshotCommand;
|
|
3281
|
+
exports.UpdateSnapshotCopyConfiguration$ = UpdateSnapshotCopyConfiguration$;
|
|
1148
3282
|
exports.UpdateSnapshotCopyConfigurationCommand = UpdateSnapshotCopyConfigurationCommand;
|
|
3283
|
+
exports.UpdateSnapshotCopyConfigurationRequest$ = UpdateSnapshotCopyConfigurationRequest$;
|
|
3284
|
+
exports.UpdateSnapshotCopyConfigurationResponse$ = UpdateSnapshotCopyConfigurationResponse$;
|
|
3285
|
+
exports.UpdateSnapshotRequest$ = UpdateSnapshotRequest$;
|
|
3286
|
+
exports.UpdateSnapshotResponse$ = UpdateSnapshotResponse$;
|
|
3287
|
+
exports.UpdateTarget$ = UpdateTarget$;
|
|
3288
|
+
exports.UpdateUsageLimit$ = UpdateUsageLimit$;
|
|
1149
3289
|
exports.UpdateUsageLimitCommand = UpdateUsageLimitCommand;
|
|
3290
|
+
exports.UpdateUsageLimitRequest$ = UpdateUsageLimitRequest$;
|
|
3291
|
+
exports.UpdateUsageLimitResponse$ = UpdateUsageLimitResponse$;
|
|
3292
|
+
exports.UpdateWorkgroup$ = UpdateWorkgroup$;
|
|
1150
3293
|
exports.UpdateWorkgroupCommand = UpdateWorkgroupCommand;
|
|
3294
|
+
exports.UpdateWorkgroupRequest$ = UpdateWorkgroupRequest$;
|
|
3295
|
+
exports.UpdateWorkgroupResponse$ = UpdateWorkgroupResponse$;
|
|
3296
|
+
exports.UsageLimit$ = UsageLimit$;
|
|
1151
3297
|
exports.UsageLimitBreachAction = UsageLimitBreachAction;
|
|
1152
3298
|
exports.UsageLimitPeriod = UsageLimitPeriod;
|
|
1153
3299
|
exports.UsageLimitUsageType = UsageLimitUsageType;
|
|
3300
|
+
exports.ValidationException = ValidationException;
|
|
3301
|
+
exports.ValidationException$ = ValidationException$;
|
|
3302
|
+
exports.VpcEndpoint$ = VpcEndpoint$;
|
|
3303
|
+
exports.VpcSecurityGroupMembership$ = VpcSecurityGroupMembership$;
|
|
3304
|
+
exports.Workgroup$ = Workgroup$;
|
|
1154
3305
|
exports.WorkgroupStatus = WorkgroupStatus;
|
|
3306
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1155
3307
|
exports.paginateListCustomDomainAssociations = paginateListCustomDomainAssociations;
|
|
1156
3308
|
exports.paginateListEndpointAccess = paginateListEndpointAccess;
|
|
1157
3309
|
exports.paginateListManagedWorkgroups = paginateListManagedWorkgroups;
|