@aws-sdk/client-bcm-data-exports 3.1075.0 → 3.1077.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 +766 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -42
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/BCMDataExportsServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -105
- 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 -466
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
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
|
-
const {
|
|
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, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultBCMDataExportsHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "bcm-data-exports",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultBCMDataExportsHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -29,6 +66,654 @@ const commonParams = {
|
|
|
29
66
|
Region: { type: "builtInParams", name: "region" },
|
|
30
67
|
};
|
|
31
68
|
|
|
69
|
+
var version = "3.1076.0";
|
|
70
|
+
var packageInfo = {
|
|
71
|
+
version: version};
|
|
72
|
+
|
|
73
|
+
const i = "ref";
|
|
74
|
+
const a = "isSet", b = "PartitionResult", c = "stringEquals", d = "sigv4", e = { [i]: "Endpoint" }, f = { "fn": "getAttr", "argv": [{ [i]: b }, "name"] }, g = { "authSchemes": [{ "name": d, "signingRegion": "{PartitionResult#implicitGlobalRegion}" }] }, h = [{ [i]: "Region" }];
|
|
75
|
+
const _data = {
|
|
76
|
+
conditions: [
|
|
77
|
+
[a, [e]],
|
|
78
|
+
[a, h],
|
|
79
|
+
["aws.partition", h, b],
|
|
80
|
+
["booleanEquals", [{ [i]: "UseFIPS" }, true]],
|
|
81
|
+
[c, [f, "aws-iso"]],
|
|
82
|
+
[c, [f, "aws-iso-b"]],
|
|
83
|
+
[c, [f, "aws-iso-e"]],
|
|
84
|
+
[c, [f, "aws-iso-f"]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[-1],
|
|
88
|
+
[-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[e, {}],
|
|
90
|
+
["https://bcm-data-exports.us-iso-east-1.c2s.ic.gov", { authSchemes: [{ name: d, signingRegion: "us-iso-east-1" }] }],
|
|
91
|
+
["https://bcm-data-exports.us-isob-east-1.sc2s.sgov.gov", { authSchemes: [{ name: d, signingRegion: "us-isob-east-1" }] }],
|
|
92
|
+
["https://bcm-data-exports.eu-isoe-west-1.cloud.adc-e.uk", { authSchemes: [{ name: d, signingRegion: "eu-isoe-west-1" }] }],
|
|
93
|
+
["https://bcm-data-exports.us-isof-south-1.csp.hci.ic.gov", { authSchemes: [{ name: d, signingRegion: "us-isof-south-1" }] }],
|
|
94
|
+
["https://bcm-data-exports-fips.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dualStackDnsSuffix}", g],
|
|
95
|
+
["https://bcm-data-exports.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dualStackDnsSuffix}", g],
|
|
96
|
+
[-1, "Invalid Configuration: Missing Region"]
|
|
97
|
+
]
|
|
98
|
+
};
|
|
99
|
+
const root = 2;
|
|
100
|
+
const r = 100_000_000;
|
|
101
|
+
const nodes = new Int32Array([
|
|
102
|
+
-1, 1, -1,
|
|
103
|
+
0, 10, 3,
|
|
104
|
+
1, 4, r + 9,
|
|
105
|
+
2, 5, r + 9,
|
|
106
|
+
3, r + 7, 6,
|
|
107
|
+
4, r + 3, 7,
|
|
108
|
+
5, r + 4, 8,
|
|
109
|
+
6, r + 5, 9,
|
|
110
|
+
7, r + 6, r + 8,
|
|
111
|
+
3, r + 1, r + 2,
|
|
112
|
+
]);
|
|
113
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
114
|
+
|
|
115
|
+
const cache = new EndpointCache({
|
|
116
|
+
size: 50,
|
|
117
|
+
params: ["Endpoint", "Region", "UseFIPS"],
|
|
118
|
+
});
|
|
119
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
120
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
121
|
+
endpointParams: endpointParams,
|
|
122
|
+
logger: context.logger,
|
|
123
|
+
}));
|
|
124
|
+
};
|
|
125
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
126
|
+
|
|
127
|
+
class BCMDataExportsServiceException extends ServiceException {
|
|
128
|
+
constructor(options) {
|
|
129
|
+
super(options);
|
|
130
|
+
Object.setPrototypeOf(this, BCMDataExportsServiceException.prototype);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
class AccessDeniedException extends BCMDataExportsServiceException {
|
|
135
|
+
name = "AccessDeniedException";
|
|
136
|
+
$fault = "client";
|
|
137
|
+
Message;
|
|
138
|
+
constructor(opts) {
|
|
139
|
+
super({
|
|
140
|
+
name: "AccessDeniedException",
|
|
141
|
+
$fault: "client",
|
|
142
|
+
...opts,
|
|
143
|
+
});
|
|
144
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
145
|
+
this.Message = opts.Message;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
class InternalServerException extends BCMDataExportsServiceException {
|
|
149
|
+
name = "InternalServerException";
|
|
150
|
+
$fault = "server";
|
|
151
|
+
Message;
|
|
152
|
+
constructor(opts) {
|
|
153
|
+
super({
|
|
154
|
+
name: "InternalServerException",
|
|
155
|
+
$fault: "server",
|
|
156
|
+
...opts,
|
|
157
|
+
});
|
|
158
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
159
|
+
this.Message = opts.Message;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
class ServiceQuotaExceededException extends BCMDataExportsServiceException {
|
|
163
|
+
name = "ServiceQuotaExceededException";
|
|
164
|
+
$fault = "client";
|
|
165
|
+
Message;
|
|
166
|
+
ResourceId;
|
|
167
|
+
ResourceType;
|
|
168
|
+
QuotaCode;
|
|
169
|
+
ServiceCode;
|
|
170
|
+
constructor(opts) {
|
|
171
|
+
super({
|
|
172
|
+
name: "ServiceQuotaExceededException",
|
|
173
|
+
$fault: "client",
|
|
174
|
+
...opts,
|
|
175
|
+
});
|
|
176
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
177
|
+
this.Message = opts.Message;
|
|
178
|
+
this.ResourceId = opts.ResourceId;
|
|
179
|
+
this.ResourceType = opts.ResourceType;
|
|
180
|
+
this.QuotaCode = opts.QuotaCode;
|
|
181
|
+
this.ServiceCode = opts.ServiceCode;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
class ThrottlingException extends BCMDataExportsServiceException {
|
|
185
|
+
name = "ThrottlingException";
|
|
186
|
+
$fault = "client";
|
|
187
|
+
Message;
|
|
188
|
+
QuotaCode;
|
|
189
|
+
ServiceCode;
|
|
190
|
+
constructor(opts) {
|
|
191
|
+
super({
|
|
192
|
+
name: "ThrottlingException",
|
|
193
|
+
$fault: "client",
|
|
194
|
+
...opts,
|
|
195
|
+
});
|
|
196
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
197
|
+
this.Message = opts.Message;
|
|
198
|
+
this.QuotaCode = opts.QuotaCode;
|
|
199
|
+
this.ServiceCode = opts.ServiceCode;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
class ValidationException extends BCMDataExportsServiceException {
|
|
203
|
+
name = "ValidationException";
|
|
204
|
+
$fault = "client";
|
|
205
|
+
Message;
|
|
206
|
+
Reason;
|
|
207
|
+
Fields;
|
|
208
|
+
constructor(opts) {
|
|
209
|
+
super({
|
|
210
|
+
name: "ValidationException",
|
|
211
|
+
$fault: "client",
|
|
212
|
+
...opts,
|
|
213
|
+
});
|
|
214
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
215
|
+
this.Message = opts.Message;
|
|
216
|
+
this.Reason = opts.Reason;
|
|
217
|
+
this.Fields = opts.Fields;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
class ResourceNotFoundException extends BCMDataExportsServiceException {
|
|
221
|
+
name = "ResourceNotFoundException";
|
|
222
|
+
$fault = "client";
|
|
223
|
+
Message;
|
|
224
|
+
ResourceId;
|
|
225
|
+
ResourceType;
|
|
226
|
+
constructor(opts) {
|
|
227
|
+
super({
|
|
228
|
+
name: "ResourceNotFoundException",
|
|
229
|
+
$fault: "client",
|
|
230
|
+
...opts,
|
|
231
|
+
});
|
|
232
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
233
|
+
this.Message = opts.Message;
|
|
234
|
+
this.ResourceId = opts.ResourceId;
|
|
235
|
+
this.ResourceType = opts.ResourceType;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
const _ADE = "AccessDeniedException";
|
|
240
|
+
const _C = "Column";
|
|
241
|
+
const _CA = "CreatedAt";
|
|
242
|
+
const _CAo = "CompletedAt";
|
|
243
|
+
const _CE = "CreateExport";
|
|
244
|
+
const _CER = "CreateExportRequest";
|
|
245
|
+
const _CERr = "CreateExportResponse";
|
|
246
|
+
const _CL = "ColumnList";
|
|
247
|
+
const _Co = "Compression";
|
|
248
|
+
const _D = "Description";
|
|
249
|
+
const _DC = "DestinationConfigurations";
|
|
250
|
+
const _DE = "DeleteExport";
|
|
251
|
+
const _DER = "DeleteExportRequest";
|
|
252
|
+
const _DERe = "DeleteExportResponse";
|
|
253
|
+
const _DQ = "DataQuery";
|
|
254
|
+
const _DV = "DefaultValue";
|
|
255
|
+
const _E = "Export";
|
|
256
|
+
const _EA = "ExportArn";
|
|
257
|
+
const _EI = "ExecutionId";
|
|
258
|
+
const _EN = "ExportName";
|
|
259
|
+
const _ER = "ExecutionReference";
|
|
260
|
+
const _ERL = "ExecutionReferenceList";
|
|
261
|
+
const _ERLx = "ExportReferenceList";
|
|
262
|
+
const _ERx = "ExportReference";
|
|
263
|
+
const _ES = "ExecutionStatus";
|
|
264
|
+
const _ESx = "ExportStatus";
|
|
265
|
+
const _Ex = "Executions";
|
|
266
|
+
const _Exp = "Exports";
|
|
267
|
+
const _F = "Fields";
|
|
268
|
+
const _Fo = "Format";
|
|
269
|
+
const _Fr = "Frequency";
|
|
270
|
+
const _GE = "GetExecution";
|
|
271
|
+
const _GER = "GetExecutionRequest";
|
|
272
|
+
const _GERe = "GetExecutionResponse";
|
|
273
|
+
const _GERet = "GetExportRequest";
|
|
274
|
+
const _GERetx = "GetExportResponse";
|
|
275
|
+
const _GEe = "GetExport";
|
|
276
|
+
const _GT = "GetTable";
|
|
277
|
+
const _GTR = "GetTableRequest";
|
|
278
|
+
const _GTRe = "GetTableResponse";
|
|
279
|
+
const _ISE = "InternalServerException";
|
|
280
|
+
const _K = "Key";
|
|
281
|
+
const _LE = "ListExecutions";
|
|
282
|
+
const _LER = "ListExecutionsRequest";
|
|
283
|
+
const _LERi = "ListExecutionsResponse";
|
|
284
|
+
const _LERis = "ListExportsRequest";
|
|
285
|
+
const _LERist = "ListExportsResponse";
|
|
286
|
+
const _LEi = "ListExports";
|
|
287
|
+
const _LRA = "LastRefreshedAt";
|
|
288
|
+
const _LT = "ListTables";
|
|
289
|
+
const _LTFR = "ListTagsForResource";
|
|
290
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
291
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
292
|
+
const _LTR = "ListTablesRequest";
|
|
293
|
+
const _LTRi = "ListTablesResponse";
|
|
294
|
+
const _LUA = "LastUpdatedAt";
|
|
295
|
+
const _M = "Message";
|
|
296
|
+
const _MR = "MaxResults";
|
|
297
|
+
const _N = "Name";
|
|
298
|
+
const _NT = "NextToken";
|
|
299
|
+
const _O = "Overwrite";
|
|
300
|
+
const _OT = "OutputType";
|
|
301
|
+
const _QC = "QuotaCode";
|
|
302
|
+
const _QS = "QueryStatement";
|
|
303
|
+
const _R = "Reason";
|
|
304
|
+
const _RA = "ResourceArn";
|
|
305
|
+
const _RC = "RefreshCadence";
|
|
306
|
+
const _RI = "ResourceId";
|
|
307
|
+
const _RNFE = "ResourceNotFoundException";
|
|
308
|
+
const _RT = "ResourceType";
|
|
309
|
+
const _RTK = "ResourceTagKeys";
|
|
310
|
+
const _RTL = "ResourceTagList";
|
|
311
|
+
const _RTe = "ResourceTags";
|
|
312
|
+
const _RTes = "ResourceTag";
|
|
313
|
+
const _S = "Schema";
|
|
314
|
+
const _SB = "S3Bucket";
|
|
315
|
+
const _SBO = "S3BucketOwner";
|
|
316
|
+
const _SC = "ServiceCode";
|
|
317
|
+
const _SCt = "StatusCode";
|
|
318
|
+
const _SD = "S3Destination";
|
|
319
|
+
const _SOC = "S3OutputConfigurations";
|
|
320
|
+
const _SP = "S3Prefix";
|
|
321
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
322
|
+
const _SR = "StatusReason";
|
|
323
|
+
const _SRe = "S3Region";
|
|
324
|
+
const _T = "Type";
|
|
325
|
+
const _TC = "TableConfigurations";
|
|
326
|
+
const _TE = "ThrottlingException";
|
|
327
|
+
const _TL = "TableList";
|
|
328
|
+
const _TN = "TableName";
|
|
329
|
+
const _TP = "TableProperties";
|
|
330
|
+
const _TPD = "TablePropertyDescription";
|
|
331
|
+
const _TPDL = "TablePropertyDescriptionList";
|
|
332
|
+
const _TR = "TagResource";
|
|
333
|
+
const _TRR = "TagResourceRequest";
|
|
334
|
+
const _TRRa = "TagResourceResponse";
|
|
335
|
+
const _Ta = "Tables";
|
|
336
|
+
const _Tab = "Table";
|
|
337
|
+
const _UE = "UpdateExport";
|
|
338
|
+
const _UER = "UpdateExportRequest";
|
|
339
|
+
const _UERp = "UpdateExportResponse";
|
|
340
|
+
const _UR = "UntagResource";
|
|
341
|
+
const _URR = "UntagResourceRequest";
|
|
342
|
+
const _URRn = "UntagResourceResponse";
|
|
343
|
+
const _V = "Value";
|
|
344
|
+
const _VE = "ValidationException";
|
|
345
|
+
const _VEF = "ValidationExceptionField";
|
|
346
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
347
|
+
const _VV = "ValidValues";
|
|
348
|
+
const _c = "client";
|
|
349
|
+
const _e = "error";
|
|
350
|
+
const _hE = "httpError";
|
|
351
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.bcmdataexports";
|
|
352
|
+
const _se = "server";
|
|
353
|
+
const n0 = "com.amazonaws.bcmdataexports";
|
|
354
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
355
|
+
var BCMDataExportsServiceException$ = [-3, _s, "BCMDataExportsServiceException", 0, [], []];
|
|
356
|
+
_s_registry.registerError(BCMDataExportsServiceException$, BCMDataExportsServiceException);
|
|
357
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
358
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
359
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
360
|
+
[_M],
|
|
361
|
+
[0], 1
|
|
362
|
+
];
|
|
363
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
364
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
365
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
366
|
+
[_M],
|
|
367
|
+
[0], 1
|
|
368
|
+
];
|
|
369
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
370
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
371
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
372
|
+
[_M, _RI, _RT],
|
|
373
|
+
[0, 0, 0], 3
|
|
374
|
+
];
|
|
375
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
376
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
377
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
378
|
+
[_M, _QC, _SC, _RI, _RT],
|
|
379
|
+
[0, 0, 0, 0, 0], 3
|
|
380
|
+
];
|
|
381
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
382
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
383
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
384
|
+
[_M, _QC, _SC],
|
|
385
|
+
[0, 0, 0], 1
|
|
386
|
+
];
|
|
387
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
388
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
389
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
390
|
+
[_M, _R, _F],
|
|
391
|
+
[0, 0, () => ValidationExceptionFieldList], 1
|
|
392
|
+
];
|
|
393
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
394
|
+
const errorTypeRegistries = [
|
|
395
|
+
_s_registry,
|
|
396
|
+
n0_registry,
|
|
397
|
+
];
|
|
398
|
+
var Column$ = [3, n0, _C,
|
|
399
|
+
0,
|
|
400
|
+
[_N, _T, _D],
|
|
401
|
+
[0, 0, 0]
|
|
402
|
+
];
|
|
403
|
+
var CreateExportRequest$ = [3, n0, _CER,
|
|
404
|
+
0,
|
|
405
|
+
[_E, _RTe],
|
|
406
|
+
[() => Export$, () => ResourceTagList], 1
|
|
407
|
+
];
|
|
408
|
+
var CreateExportResponse$ = [3, n0, _CERr,
|
|
409
|
+
0,
|
|
410
|
+
[_EA],
|
|
411
|
+
[0]
|
|
412
|
+
];
|
|
413
|
+
var DataQuery$ = [3, n0, _DQ,
|
|
414
|
+
0,
|
|
415
|
+
[_QS, _TC],
|
|
416
|
+
[0, [2, n0, _TC, 0, 0, 128 | 0]], 1
|
|
417
|
+
];
|
|
418
|
+
var DeleteExportRequest$ = [3, n0, _DER,
|
|
419
|
+
0,
|
|
420
|
+
[_EA],
|
|
421
|
+
[0], 1
|
|
422
|
+
];
|
|
423
|
+
var DeleteExportResponse$ = [3, n0, _DERe,
|
|
424
|
+
0,
|
|
425
|
+
[_EA],
|
|
426
|
+
[0]
|
|
427
|
+
];
|
|
428
|
+
var DestinationConfigurations$ = [3, n0, _DC,
|
|
429
|
+
0,
|
|
430
|
+
[_SD],
|
|
431
|
+
[() => S3Destination$], 1
|
|
432
|
+
];
|
|
433
|
+
var ExecutionReference$ = [3, n0, _ER,
|
|
434
|
+
0,
|
|
435
|
+
[_EI, _ES],
|
|
436
|
+
[0, () => ExecutionStatus$], 2
|
|
437
|
+
];
|
|
438
|
+
var ExecutionStatus$ = [3, n0, _ES,
|
|
439
|
+
0,
|
|
440
|
+
[_SCt, _SR, _CA, _CAo, _LUA],
|
|
441
|
+
[0, 0, 5, 5, 5]
|
|
442
|
+
];
|
|
443
|
+
var Export$ = [3, n0, _E,
|
|
444
|
+
0,
|
|
445
|
+
[_N, _DQ, _DC, _RC, _EA, _D],
|
|
446
|
+
[0, () => DataQuery$, () => DestinationConfigurations$, () => RefreshCadence$, 0, 0], 4
|
|
447
|
+
];
|
|
448
|
+
var ExportReference$ = [3, n0, _ERx,
|
|
449
|
+
0,
|
|
450
|
+
[_EA, _EN, _ESx],
|
|
451
|
+
[0, 0, () => ExportStatus$], 3
|
|
452
|
+
];
|
|
453
|
+
var ExportStatus$ = [3, n0, _ESx,
|
|
454
|
+
0,
|
|
455
|
+
[_SCt, _SR, _CA, _LUA, _LRA],
|
|
456
|
+
[0, 0, 5, 5, 5]
|
|
457
|
+
];
|
|
458
|
+
var GetExecutionRequest$ = [3, n0, _GER,
|
|
459
|
+
0,
|
|
460
|
+
[_EA, _EI],
|
|
461
|
+
[0, 0], 2
|
|
462
|
+
];
|
|
463
|
+
var GetExecutionResponse$ = [3, n0, _GERe,
|
|
464
|
+
0,
|
|
465
|
+
[_EI, _E, _ES],
|
|
466
|
+
[0, () => Export$, () => ExecutionStatus$]
|
|
467
|
+
];
|
|
468
|
+
var GetExportRequest$ = [3, n0, _GERet,
|
|
469
|
+
0,
|
|
470
|
+
[_EA],
|
|
471
|
+
[0], 1
|
|
472
|
+
];
|
|
473
|
+
var GetExportResponse$ = [3, n0, _GERetx,
|
|
474
|
+
0,
|
|
475
|
+
[_E, _ESx],
|
|
476
|
+
[() => Export$, () => ExportStatus$]
|
|
477
|
+
];
|
|
478
|
+
var GetTableRequest$ = [3, n0, _GTR,
|
|
479
|
+
0,
|
|
480
|
+
[_TN, _TP],
|
|
481
|
+
[0, 128 | 0], 1
|
|
482
|
+
];
|
|
483
|
+
var GetTableResponse$ = [3, n0, _GTRe,
|
|
484
|
+
0,
|
|
485
|
+
[_TN, _D, _TP, _S],
|
|
486
|
+
[0, 0, 128 | 0, () => ColumnList]
|
|
487
|
+
];
|
|
488
|
+
var ListExecutionsRequest$ = [3, n0, _LER,
|
|
489
|
+
0,
|
|
490
|
+
[_EA, _MR, _NT],
|
|
491
|
+
[0, 1, 0], 1
|
|
492
|
+
];
|
|
493
|
+
var ListExecutionsResponse$ = [3, n0, _LERi,
|
|
494
|
+
0,
|
|
495
|
+
[_Ex, _NT],
|
|
496
|
+
[() => ExecutionReferenceList, 0]
|
|
497
|
+
];
|
|
498
|
+
var ListExportsRequest$ = [3, n0, _LERis,
|
|
499
|
+
0,
|
|
500
|
+
[_MR, _NT],
|
|
501
|
+
[1, 0]
|
|
502
|
+
];
|
|
503
|
+
var ListExportsResponse$ = [3, n0, _LERist,
|
|
504
|
+
0,
|
|
505
|
+
[_Exp, _NT],
|
|
506
|
+
[() => ExportReferenceList, 0]
|
|
507
|
+
];
|
|
508
|
+
var ListTablesRequest$ = [3, n0, _LTR,
|
|
509
|
+
0,
|
|
510
|
+
[_NT, _MR],
|
|
511
|
+
[0, 1]
|
|
512
|
+
];
|
|
513
|
+
var ListTablesResponse$ = [3, n0, _LTRi,
|
|
514
|
+
0,
|
|
515
|
+
[_Ta, _NT],
|
|
516
|
+
[() => TableList, 0]
|
|
517
|
+
];
|
|
518
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
519
|
+
0,
|
|
520
|
+
[_RA, _MR, _NT],
|
|
521
|
+
[0, 1, 0], 1
|
|
522
|
+
];
|
|
523
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
524
|
+
0,
|
|
525
|
+
[_RTe, _NT],
|
|
526
|
+
[() => ResourceTagList, 0]
|
|
527
|
+
];
|
|
528
|
+
var RefreshCadence$ = [3, n0, _RC,
|
|
529
|
+
0,
|
|
530
|
+
[_Fr],
|
|
531
|
+
[0], 1
|
|
532
|
+
];
|
|
533
|
+
var ResourceTag$ = [3, n0, _RTes,
|
|
534
|
+
0,
|
|
535
|
+
[_K, _V],
|
|
536
|
+
[0, 0], 2
|
|
537
|
+
];
|
|
538
|
+
var S3Destination$ = [3, n0, _SD,
|
|
539
|
+
0,
|
|
540
|
+
[_SB, _SP, _SRe, _SOC, _SBO],
|
|
541
|
+
[0, 0, 0, () => S3OutputConfigurations$, 0], 4
|
|
542
|
+
];
|
|
543
|
+
var S3OutputConfigurations$ = [3, n0, _SOC,
|
|
544
|
+
0,
|
|
545
|
+
[_OT, _Fo, _Co, _O],
|
|
546
|
+
[0, 0, 0, 0], 4
|
|
547
|
+
];
|
|
548
|
+
var Table$ = [3, n0, _Tab,
|
|
549
|
+
0,
|
|
550
|
+
[_TN, _D, _TP],
|
|
551
|
+
[0, 0, () => TablePropertyDescriptionList]
|
|
552
|
+
];
|
|
553
|
+
var TablePropertyDescription$ = [3, n0, _TPD,
|
|
554
|
+
0,
|
|
555
|
+
[_N, _VV, _DV, _D],
|
|
556
|
+
[0, 64 | 0, 0, 0]
|
|
557
|
+
];
|
|
558
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
559
|
+
0,
|
|
560
|
+
[_RA, _RTe],
|
|
561
|
+
[0, () => ResourceTagList], 2
|
|
562
|
+
];
|
|
563
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
564
|
+
0,
|
|
565
|
+
[],
|
|
566
|
+
[]
|
|
567
|
+
];
|
|
568
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
569
|
+
0,
|
|
570
|
+
[_RA, _RTK],
|
|
571
|
+
[0, 64 | 0], 2
|
|
572
|
+
];
|
|
573
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
574
|
+
0,
|
|
575
|
+
[],
|
|
576
|
+
[]
|
|
577
|
+
];
|
|
578
|
+
var UpdateExportRequest$ = [3, n0, _UER,
|
|
579
|
+
0,
|
|
580
|
+
[_EA, _E],
|
|
581
|
+
[0, () => Export$], 2
|
|
582
|
+
];
|
|
583
|
+
var UpdateExportResponse$ = [3, n0, _UERp,
|
|
584
|
+
0,
|
|
585
|
+
[_EA],
|
|
586
|
+
[0]
|
|
587
|
+
];
|
|
588
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
589
|
+
0,
|
|
590
|
+
[_N, _M],
|
|
591
|
+
[0, 0], 2
|
|
592
|
+
];
|
|
593
|
+
var ColumnList = [1, n0, _CL,
|
|
594
|
+
0, () => Column$
|
|
595
|
+
];
|
|
596
|
+
var ExecutionReferenceList = [1, n0, _ERL,
|
|
597
|
+
0, () => ExecutionReference$
|
|
598
|
+
];
|
|
599
|
+
var ExportReferenceList = [1, n0, _ERLx,
|
|
600
|
+
0, () => ExportReference$
|
|
601
|
+
];
|
|
602
|
+
var ResourceTagList = [1, n0, _RTL,
|
|
603
|
+
0, () => ResourceTag$
|
|
604
|
+
];
|
|
605
|
+
var TableList = [1, n0, _TL,
|
|
606
|
+
0, () => Table$
|
|
607
|
+
];
|
|
608
|
+
var TablePropertyDescriptionList = [1, n0, _TPDL,
|
|
609
|
+
0, () => TablePropertyDescription$
|
|
610
|
+
];
|
|
611
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
612
|
+
0, () => ValidationExceptionField$
|
|
613
|
+
];
|
|
614
|
+
var CreateExport$ = [9, n0, _CE,
|
|
615
|
+
0, () => CreateExportRequest$, () => CreateExportResponse$
|
|
616
|
+
];
|
|
617
|
+
var DeleteExport$ = [9, n0, _DE,
|
|
618
|
+
2, () => DeleteExportRequest$, () => DeleteExportResponse$
|
|
619
|
+
];
|
|
620
|
+
var GetExecution$ = [9, n0, _GE,
|
|
621
|
+
0, () => GetExecutionRequest$, () => GetExecutionResponse$
|
|
622
|
+
];
|
|
623
|
+
var GetExport$ = [9, n0, _GEe,
|
|
624
|
+
0, () => GetExportRequest$, () => GetExportResponse$
|
|
625
|
+
];
|
|
626
|
+
var GetTable$ = [9, n0, _GT,
|
|
627
|
+
0, () => GetTableRequest$, () => GetTableResponse$
|
|
628
|
+
];
|
|
629
|
+
var ListExecutions$ = [9, n0, _LE,
|
|
630
|
+
0, () => ListExecutionsRequest$, () => ListExecutionsResponse$
|
|
631
|
+
];
|
|
632
|
+
var ListExports$ = [9, n0, _LEi,
|
|
633
|
+
0, () => ListExportsRequest$, () => ListExportsResponse$
|
|
634
|
+
];
|
|
635
|
+
var ListTables$ = [9, n0, _LT,
|
|
636
|
+
0, () => ListTablesRequest$, () => ListTablesResponse$
|
|
637
|
+
];
|
|
638
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
639
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
640
|
+
];
|
|
641
|
+
var TagResource$ = [9, n0, _TR,
|
|
642
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
643
|
+
];
|
|
644
|
+
var UntagResource$ = [9, n0, _UR,
|
|
645
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
646
|
+
];
|
|
647
|
+
var UpdateExport$ = [9, n0, _UE,
|
|
648
|
+
0, () => UpdateExportRequest$, () => UpdateExportResponse$
|
|
649
|
+
];
|
|
650
|
+
|
|
651
|
+
const getRuntimeConfig$1 = (config) => {
|
|
652
|
+
return {
|
|
653
|
+
apiVersion: "2023-11-26",
|
|
654
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
655
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
656
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
657
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
658
|
+
extensions: config?.extensions ?? [],
|
|
659
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultBCMDataExportsHttpAuthSchemeProvider,
|
|
660
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
661
|
+
{
|
|
662
|
+
schemeId: "aws.auth#sigv4",
|
|
663
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
664
|
+
signer: new AwsSdkSigV4Signer(),
|
|
665
|
+
},
|
|
666
|
+
],
|
|
667
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
668
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
669
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
670
|
+
defaultNamespace: "com.amazonaws.bcmdataexports",
|
|
671
|
+
errorTypeRegistries,
|
|
672
|
+
version: "2023-11-26",
|
|
673
|
+
serviceTarget: "AWSBillingAndCostManagementDataExports",
|
|
674
|
+
},
|
|
675
|
+
serviceId: config?.serviceId ?? "BCM Data Exports",
|
|
676
|
+
sha256: config?.sha256 ?? Sha256,
|
|
677
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
678
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
679
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
680
|
+
};
|
|
681
|
+
};
|
|
682
|
+
|
|
683
|
+
const getRuntimeConfig = (config) => {
|
|
684
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
685
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
686
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
687
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
688
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
689
|
+
const loaderConfig = {
|
|
690
|
+
profile: config?.profile,
|
|
691
|
+
logger: clientSharedValues.logger,
|
|
692
|
+
};
|
|
693
|
+
return {
|
|
694
|
+
...clientSharedValues,
|
|
695
|
+
...config,
|
|
696
|
+
runtime: "node",
|
|
697
|
+
defaultsMode,
|
|
698
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
699
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
700
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
701
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
702
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
703
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
704
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
705
|
+
retryMode: config?.retryMode ??
|
|
706
|
+
loadConfig({
|
|
707
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
708
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
709
|
+
}, config),
|
|
710
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
711
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
712
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
713
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
714
|
+
};
|
|
715
|
+
};
|
|
716
|
+
|
|
32
717
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
33
718
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
34
719
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -327,29 +1012,95 @@ const ExecutionStatusCode = {
|
|
|
327
1012
|
QUERY_QUEUED: "QUERY_QUEUED",
|
|
328
1013
|
};
|
|
329
1014
|
|
|
1015
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1016
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
330
1017
|
exports.BCMDataExports = BCMDataExports;
|
|
331
1018
|
exports.BCMDataExportsClient = BCMDataExportsClient;
|
|
1019
|
+
exports.BCMDataExportsServiceException = BCMDataExportsServiceException;
|
|
1020
|
+
exports.BCMDataExportsServiceException$ = BCMDataExportsServiceException$;
|
|
1021
|
+
exports.Column$ = Column$;
|
|
332
1022
|
exports.CompressionOption = CompressionOption;
|
|
1023
|
+
exports.CreateExport$ = CreateExport$;
|
|
333
1024
|
exports.CreateExportCommand = CreateExportCommand;
|
|
1025
|
+
exports.CreateExportRequest$ = CreateExportRequest$;
|
|
1026
|
+
exports.CreateExportResponse$ = CreateExportResponse$;
|
|
1027
|
+
exports.DataQuery$ = DataQuery$;
|
|
1028
|
+
exports.DeleteExport$ = DeleteExport$;
|
|
334
1029
|
exports.DeleteExportCommand = DeleteExportCommand;
|
|
1030
|
+
exports.DeleteExportRequest$ = DeleteExportRequest$;
|
|
1031
|
+
exports.DeleteExportResponse$ = DeleteExportResponse$;
|
|
1032
|
+
exports.DestinationConfigurations$ = DestinationConfigurations$;
|
|
1033
|
+
exports.ExecutionReference$ = ExecutionReference$;
|
|
1034
|
+
exports.ExecutionStatus$ = ExecutionStatus$;
|
|
335
1035
|
exports.ExecutionStatusCode = ExecutionStatusCode;
|
|
336
1036
|
exports.ExecutionStatusReason = ExecutionStatusReason;
|
|
1037
|
+
exports.Export$ = Export$;
|
|
1038
|
+
exports.ExportReference$ = ExportReference$;
|
|
1039
|
+
exports.ExportStatus$ = ExportStatus$;
|
|
337
1040
|
exports.ExportStatusCode = ExportStatusCode;
|
|
338
1041
|
exports.FormatOption = FormatOption;
|
|
339
1042
|
exports.FrequencyOption = FrequencyOption;
|
|
1043
|
+
exports.GetExecution$ = GetExecution$;
|
|
340
1044
|
exports.GetExecutionCommand = GetExecutionCommand;
|
|
1045
|
+
exports.GetExecutionRequest$ = GetExecutionRequest$;
|
|
1046
|
+
exports.GetExecutionResponse$ = GetExecutionResponse$;
|
|
1047
|
+
exports.GetExport$ = GetExport$;
|
|
341
1048
|
exports.GetExportCommand = GetExportCommand;
|
|
1049
|
+
exports.GetExportRequest$ = GetExportRequest$;
|
|
1050
|
+
exports.GetExportResponse$ = GetExportResponse$;
|
|
1051
|
+
exports.GetTable$ = GetTable$;
|
|
342
1052
|
exports.GetTableCommand = GetTableCommand;
|
|
1053
|
+
exports.GetTableRequest$ = GetTableRequest$;
|
|
1054
|
+
exports.GetTableResponse$ = GetTableResponse$;
|
|
1055
|
+
exports.InternalServerException = InternalServerException;
|
|
1056
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1057
|
+
exports.ListExecutions$ = ListExecutions$;
|
|
343
1058
|
exports.ListExecutionsCommand = ListExecutionsCommand;
|
|
1059
|
+
exports.ListExecutionsRequest$ = ListExecutionsRequest$;
|
|
1060
|
+
exports.ListExecutionsResponse$ = ListExecutionsResponse$;
|
|
1061
|
+
exports.ListExports$ = ListExports$;
|
|
344
1062
|
exports.ListExportsCommand = ListExportsCommand;
|
|
1063
|
+
exports.ListExportsRequest$ = ListExportsRequest$;
|
|
1064
|
+
exports.ListExportsResponse$ = ListExportsResponse$;
|
|
1065
|
+
exports.ListTables$ = ListTables$;
|
|
345
1066
|
exports.ListTablesCommand = ListTablesCommand;
|
|
1067
|
+
exports.ListTablesRequest$ = ListTablesRequest$;
|
|
1068
|
+
exports.ListTablesResponse$ = ListTablesResponse$;
|
|
1069
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
346
1070
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1071
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1072
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
347
1073
|
exports.OverwriteOption = OverwriteOption;
|
|
1074
|
+
exports.RefreshCadence$ = RefreshCadence$;
|
|
1075
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1076
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1077
|
+
exports.ResourceTag$ = ResourceTag$;
|
|
1078
|
+
exports.S3Destination$ = S3Destination$;
|
|
1079
|
+
exports.S3OutputConfigurations$ = S3OutputConfigurations$;
|
|
348
1080
|
exports.S3OutputType = S3OutputType;
|
|
1081
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1082
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1083
|
+
exports.Table$ = Table$;
|
|
1084
|
+
exports.TablePropertyDescription$ = TablePropertyDescription$;
|
|
1085
|
+
exports.TagResource$ = TagResource$;
|
|
349
1086
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1087
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1088
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1089
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1090
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1091
|
+
exports.UntagResource$ = UntagResource$;
|
|
350
1092
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1093
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1094
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1095
|
+
exports.UpdateExport$ = UpdateExport$;
|
|
351
1096
|
exports.UpdateExportCommand = UpdateExportCommand;
|
|
1097
|
+
exports.UpdateExportRequest$ = UpdateExportRequest$;
|
|
1098
|
+
exports.UpdateExportResponse$ = UpdateExportResponse$;
|
|
1099
|
+
exports.ValidationException = ValidationException;
|
|
1100
|
+
exports.ValidationException$ = ValidationException$;
|
|
1101
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
352
1102
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1103
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
353
1104
|
exports.paginateListExecutions = paginateListExecutions;
|
|
354
1105
|
exports.paginateListExports = paginateListExports;
|
|
355
1106
|
exports.paginateListTables = paginateListTables;
|