@aws-sdk/client-bcm-data-exports 3.1067.0 → 3.1069.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/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +79 -99
- package/dist-cjs/models/BCMDataExportsServiceException.js +4 -8
- package/dist-cjs/models/errors.js +13 -22
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +132 -90
- package/package.json +8 -8
|
@@ -1,17 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.
|
|
4
|
-
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
|
-
const client_1 = require("@smithy/core/client");
|
|
6
|
-
const defaultBCMDataExportsHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
1
|
+
const { resolveAwsSdkSigV4Config } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
+
const { getSmithyContext, normalizeProvider } = require("@smithy/core/client");
|
|
3
|
+
exports.defaultBCMDataExportsHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
4
|
return {
|
|
8
|
-
operation:
|
|
9
|
-
region: await
|
|
5
|
+
operation: getSmithyContext(context).operation,
|
|
6
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
10
7
|
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
11
8
|
})(),
|
|
12
9
|
};
|
|
13
10
|
};
|
|
14
|
-
exports.defaultBCMDataExportsHttpAuthSchemeParametersProvider = defaultBCMDataExportsHttpAuthSchemeParametersProvider;
|
|
15
11
|
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
16
12
|
return {
|
|
17
13
|
schemeId: "aws.auth#sigv4",
|
|
@@ -27,7 +23,7 @@ function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
|
27
23
|
}),
|
|
28
24
|
};
|
|
29
25
|
}
|
|
30
|
-
|
|
26
|
+
exports.defaultBCMDataExportsHttpAuthSchemeProvider = (authParameters) => {
|
|
31
27
|
const options = [];
|
|
32
28
|
switch (authParameters.operation) {
|
|
33
29
|
default: {
|
|
@@ -36,11 +32,9 @@ const defaultBCMDataExportsHttpAuthSchemeProvider = (authParameters) => {
|
|
|
36
32
|
}
|
|
37
33
|
return options;
|
|
38
34
|
};
|
|
39
|
-
exports.
|
|
40
|
-
const
|
|
41
|
-
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
35
|
+
exports.resolveHttpAuthSchemeConfig = (config) => {
|
|
36
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
42
37
|
return Object.assign(config_0, {
|
|
43
|
-
authSchemePreference:
|
|
38
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
44
39
|
});
|
|
45
40
|
};
|
|
46
|
-
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
package/dist-cjs/endpoint/bdd.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.bdd = void 0;
|
|
4
|
-
const endpoints_1 = require("@smithy/core/endpoints");
|
|
1
|
+
const { BinaryDecisionDiagram } = require("@smithy/core/endpoints");
|
|
5
2
|
const i = "ref";
|
|
6
3
|
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" }];
|
|
7
4
|
const _data = {
|
|
@@ -42,4 +39,4 @@ const nodes = new Int32Array([
|
|
|
42
39
|
7, r + 6, r + 8,
|
|
43
40
|
3, r + 1, r + 2,
|
|
44
41
|
]);
|
|
45
|
-
exports.bdd =
|
|
42
|
+
exports.bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
@@ -1,18 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const endpoints_1 = require("@smithy/core/endpoints");
|
|
6
|
-
const bdd_1 = require("./bdd");
|
|
7
|
-
const cache = new endpoints_1.EndpointCache({
|
|
1
|
+
const { awsEndpointFunctions } = require("@aws-sdk/core/client");
|
|
2
|
+
const { customEndpointFunctions, decideEndpoint, EndpointCache } = require("@smithy/core/endpoints");
|
|
3
|
+
const { bdd } = require("./bdd");
|
|
4
|
+
const cache = new EndpointCache({
|
|
8
5
|
size: 50,
|
|
9
6
|
params: ["Endpoint", "Region", "UseFIPS"],
|
|
10
7
|
});
|
|
11
|
-
|
|
12
|
-
return cache.get(endpointParams, () =>
|
|
8
|
+
exports.defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
9
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
13
10
|
endpointParams: endpointParams,
|
|
14
11
|
logger: context.logger,
|
|
15
12
|
}));
|
|
16
13
|
};
|
|
17
|
-
|
|
18
|
-
endpoints_1.customEndpointFunctions.aws = client_1.awsEndpointFunctions;
|
|
14
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
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 { resolveHttpAuthSchemeConfig, defaultBCMDataExportsHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { CreateExport$, DeleteExport$, GetExecution$, GetExport$, GetTable$, ListExecutions$, ListExports$, ListTables$, ListTagsForResource$, TagResource$, UntagResource$, UpdateExport$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { BCMDataExportsServiceException } = require("./models/BCMDataExportsServiceException");
|
|
18
|
+
exports.BCMDataExportsServiceException = BCMDataExportsServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -66,195 +69,195 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
66
69
|
};
|
|
67
70
|
|
|
68
71
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
69
|
-
const extensionConfiguration = Object.assign(
|
|
72
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
70
73
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
71
|
-
return Object.assign(runtimeConfig,
|
|
74
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
72
75
|
};
|
|
73
76
|
|
|
74
|
-
class BCMDataExportsClient extends
|
|
77
|
+
class BCMDataExportsClient extends Client {
|
|
75
78
|
config;
|
|
76
79
|
constructor(...[configuration]) {
|
|
77
|
-
const _config_0 =
|
|
80
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
78
81
|
super(_config_0);
|
|
79
82
|
this.initConfig = _config_0;
|
|
80
83
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
81
|
-
const _config_2 =
|
|
82
|
-
const _config_3 =
|
|
83
|
-
const _config_4 =
|
|
84
|
-
const _config_5 =
|
|
85
|
-
const _config_6 =
|
|
86
|
-
const _config_7 =
|
|
84
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
85
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
86
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
87
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
88
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
89
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
87
90
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
88
91
|
this.config = _config_8;
|
|
89
|
-
this.middlewareStack.use(
|
|
90
|
-
this.middlewareStack.use(
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
httpAuthSchemeParametersProvider:
|
|
98
|
-
identityProviderConfigProvider: async (config) => new
|
|
92
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
93
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
94
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
100
|
+
httpAuthSchemeParametersProvider: defaultBCMDataExportsHttpAuthSchemeParametersProvider,
|
|
101
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
99
102
|
"aws.auth#sigv4": config.credentials,
|
|
100
103
|
}),
|
|
101
104
|
}));
|
|
102
|
-
this.middlewareStack.use(
|
|
105
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
103
106
|
}
|
|
104
107
|
destroy() {
|
|
105
108
|
super.destroy();
|
|
106
109
|
}
|
|
107
110
|
}
|
|
108
111
|
|
|
109
|
-
class CreateExportCommand extends
|
|
112
|
+
class CreateExportCommand extends Command
|
|
110
113
|
.classBuilder()
|
|
111
114
|
.ep(commonParams)
|
|
112
115
|
.m(function (Command, cs, config, o) {
|
|
113
|
-
return [
|
|
116
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
114
117
|
})
|
|
115
118
|
.s("AWSBillingAndCostManagementDataExports", "CreateExport", {})
|
|
116
119
|
.n("BCMDataExportsClient", "CreateExportCommand")
|
|
117
|
-
.sc(
|
|
120
|
+
.sc(CreateExport$)
|
|
118
121
|
.build() {
|
|
119
122
|
}
|
|
120
123
|
|
|
121
|
-
class DeleteExportCommand extends
|
|
124
|
+
class DeleteExportCommand extends Command
|
|
122
125
|
.classBuilder()
|
|
123
126
|
.ep(commonParams)
|
|
124
127
|
.m(function (Command, cs, config, o) {
|
|
125
|
-
return [
|
|
128
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
126
129
|
})
|
|
127
130
|
.s("AWSBillingAndCostManagementDataExports", "DeleteExport", {})
|
|
128
131
|
.n("BCMDataExportsClient", "DeleteExportCommand")
|
|
129
|
-
.sc(
|
|
132
|
+
.sc(DeleteExport$)
|
|
130
133
|
.build() {
|
|
131
134
|
}
|
|
132
135
|
|
|
133
|
-
class GetExecutionCommand extends
|
|
136
|
+
class GetExecutionCommand extends Command
|
|
134
137
|
.classBuilder()
|
|
135
138
|
.ep(commonParams)
|
|
136
139
|
.m(function (Command, cs, config, o) {
|
|
137
|
-
return [
|
|
140
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
138
141
|
})
|
|
139
142
|
.s("AWSBillingAndCostManagementDataExports", "GetExecution", {})
|
|
140
143
|
.n("BCMDataExportsClient", "GetExecutionCommand")
|
|
141
|
-
.sc(
|
|
144
|
+
.sc(GetExecution$)
|
|
142
145
|
.build() {
|
|
143
146
|
}
|
|
144
147
|
|
|
145
|
-
class GetExportCommand extends
|
|
148
|
+
class GetExportCommand extends Command
|
|
146
149
|
.classBuilder()
|
|
147
150
|
.ep(commonParams)
|
|
148
151
|
.m(function (Command, cs, config, o) {
|
|
149
|
-
return [
|
|
152
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
150
153
|
})
|
|
151
154
|
.s("AWSBillingAndCostManagementDataExports", "GetExport", {})
|
|
152
155
|
.n("BCMDataExportsClient", "GetExportCommand")
|
|
153
|
-
.sc(
|
|
156
|
+
.sc(GetExport$)
|
|
154
157
|
.build() {
|
|
155
158
|
}
|
|
156
159
|
|
|
157
|
-
class GetTableCommand extends
|
|
160
|
+
class GetTableCommand extends Command
|
|
158
161
|
.classBuilder()
|
|
159
162
|
.ep(commonParams)
|
|
160
163
|
.m(function (Command, cs, config, o) {
|
|
161
|
-
return [
|
|
164
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
162
165
|
})
|
|
163
166
|
.s("AWSBillingAndCostManagementDataExports", "GetTable", {})
|
|
164
167
|
.n("BCMDataExportsClient", "GetTableCommand")
|
|
165
|
-
.sc(
|
|
168
|
+
.sc(GetTable$)
|
|
166
169
|
.build() {
|
|
167
170
|
}
|
|
168
171
|
|
|
169
|
-
class ListExecutionsCommand extends
|
|
172
|
+
class ListExecutionsCommand extends Command
|
|
170
173
|
.classBuilder()
|
|
171
174
|
.ep(commonParams)
|
|
172
175
|
.m(function (Command, cs, config, o) {
|
|
173
|
-
return [
|
|
176
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
174
177
|
})
|
|
175
178
|
.s("AWSBillingAndCostManagementDataExports", "ListExecutions", {})
|
|
176
179
|
.n("BCMDataExportsClient", "ListExecutionsCommand")
|
|
177
|
-
.sc(
|
|
180
|
+
.sc(ListExecutions$)
|
|
178
181
|
.build() {
|
|
179
182
|
}
|
|
180
183
|
|
|
181
|
-
class ListExportsCommand extends
|
|
184
|
+
class ListExportsCommand extends Command
|
|
182
185
|
.classBuilder()
|
|
183
186
|
.ep(commonParams)
|
|
184
187
|
.m(function (Command, cs, config, o) {
|
|
185
|
-
return [
|
|
188
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
186
189
|
})
|
|
187
190
|
.s("AWSBillingAndCostManagementDataExports", "ListExports", {})
|
|
188
191
|
.n("BCMDataExportsClient", "ListExportsCommand")
|
|
189
|
-
.sc(
|
|
192
|
+
.sc(ListExports$)
|
|
190
193
|
.build() {
|
|
191
194
|
}
|
|
192
195
|
|
|
193
|
-
class ListTablesCommand extends
|
|
196
|
+
class ListTablesCommand extends Command
|
|
194
197
|
.classBuilder()
|
|
195
198
|
.ep(commonParams)
|
|
196
199
|
.m(function (Command, cs, config, o) {
|
|
197
|
-
return [
|
|
200
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
198
201
|
})
|
|
199
202
|
.s("AWSBillingAndCostManagementDataExports", "ListTables", {})
|
|
200
203
|
.n("BCMDataExportsClient", "ListTablesCommand")
|
|
201
|
-
.sc(
|
|
204
|
+
.sc(ListTables$)
|
|
202
205
|
.build() {
|
|
203
206
|
}
|
|
204
207
|
|
|
205
|
-
class ListTagsForResourceCommand extends
|
|
208
|
+
class ListTagsForResourceCommand extends Command
|
|
206
209
|
.classBuilder()
|
|
207
210
|
.ep(commonParams)
|
|
208
211
|
.m(function (Command, cs, config, o) {
|
|
209
|
-
return [
|
|
212
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
210
213
|
})
|
|
211
214
|
.s("AWSBillingAndCostManagementDataExports", "ListTagsForResource", {})
|
|
212
215
|
.n("BCMDataExportsClient", "ListTagsForResourceCommand")
|
|
213
|
-
.sc(
|
|
216
|
+
.sc(ListTagsForResource$)
|
|
214
217
|
.build() {
|
|
215
218
|
}
|
|
216
219
|
|
|
217
|
-
class TagResourceCommand extends
|
|
220
|
+
class TagResourceCommand extends Command
|
|
218
221
|
.classBuilder()
|
|
219
222
|
.ep(commonParams)
|
|
220
223
|
.m(function (Command, cs, config, o) {
|
|
221
|
-
return [
|
|
224
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
222
225
|
})
|
|
223
226
|
.s("AWSBillingAndCostManagementDataExports", "TagResource", {})
|
|
224
227
|
.n("BCMDataExportsClient", "TagResourceCommand")
|
|
225
|
-
.sc(
|
|
228
|
+
.sc(TagResource$)
|
|
226
229
|
.build() {
|
|
227
230
|
}
|
|
228
231
|
|
|
229
|
-
class UntagResourceCommand extends
|
|
232
|
+
class UntagResourceCommand extends Command
|
|
230
233
|
.classBuilder()
|
|
231
234
|
.ep(commonParams)
|
|
232
235
|
.m(function (Command, cs, config, o) {
|
|
233
|
-
return [
|
|
236
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
234
237
|
})
|
|
235
238
|
.s("AWSBillingAndCostManagementDataExports", "UntagResource", {})
|
|
236
239
|
.n("BCMDataExportsClient", "UntagResourceCommand")
|
|
237
|
-
.sc(
|
|
240
|
+
.sc(UntagResource$)
|
|
238
241
|
.build() {
|
|
239
242
|
}
|
|
240
243
|
|
|
241
|
-
class UpdateExportCommand extends
|
|
244
|
+
class UpdateExportCommand extends Command
|
|
242
245
|
.classBuilder()
|
|
243
246
|
.ep(commonParams)
|
|
244
247
|
.m(function (Command, cs, config, o) {
|
|
245
|
-
return [
|
|
248
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
246
249
|
})
|
|
247
250
|
.s("AWSBillingAndCostManagementDataExports", "UpdateExport", {})
|
|
248
251
|
.n("BCMDataExportsClient", "UpdateExportCommand")
|
|
249
|
-
.sc(
|
|
252
|
+
.sc(UpdateExport$)
|
|
250
253
|
.build() {
|
|
251
254
|
}
|
|
252
255
|
|
|
253
|
-
const paginateListExecutions =
|
|
256
|
+
const paginateListExecutions = createPaginator(BCMDataExportsClient, ListExecutionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
254
257
|
|
|
255
|
-
const paginateListExports =
|
|
258
|
+
const paginateListExports = createPaginator(BCMDataExportsClient, ListExportsCommand, "NextToken", "NextToken", "MaxResults");
|
|
256
259
|
|
|
257
|
-
const paginateListTables =
|
|
260
|
+
const paginateListTables = createPaginator(BCMDataExportsClient, ListTablesCommand, "NextToken", "NextToken", "MaxResults");
|
|
258
261
|
|
|
259
262
|
const commands = {
|
|
260
263
|
CreateExportCommand,
|
|
@@ -277,7 +280,7 @@ const paginators = {
|
|
|
277
280
|
};
|
|
278
281
|
class BCMDataExports extends BCMDataExportsClient {
|
|
279
282
|
}
|
|
280
|
-
|
|
283
|
+
createAggregatedClient(commands, BCMDataExports, { paginators });
|
|
281
284
|
|
|
282
285
|
const CompressionOption = {
|
|
283
286
|
GZIP: "GZIP",
|
|
@@ -324,9 +327,6 @@ const ExecutionStatusCode = {
|
|
|
324
327
|
QUERY_QUEUED: "QUERY_QUEUED",
|
|
325
328
|
};
|
|
326
329
|
|
|
327
|
-
exports.$Command = client.Command;
|
|
328
|
-
exports.__Client = client.Client;
|
|
329
|
-
exports.BCMDataExportsServiceException = BCMDataExportsServiceException.BCMDataExportsServiceException;
|
|
330
330
|
exports.BCMDataExports = BCMDataExports;
|
|
331
331
|
exports.BCMDataExportsClient = BCMDataExportsClient;
|
|
332
332
|
exports.CompressionOption = CompressionOption;
|
|
@@ -353,23 +353,3 @@ exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
|
353
353
|
exports.paginateListExecutions = paginateListExecutions;
|
|
354
354
|
exports.paginateListExports = paginateListExports;
|
|
355
355
|
exports.paginateListTables = paginateListTables;
|
|
356
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
357
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
358
|
-
Object.defineProperty(exports, '__proto__', {
|
|
359
|
-
enumerable: true,
|
|
360
|
-
value: schemas_0['__proto__']
|
|
361
|
-
});
|
|
362
|
-
|
|
363
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
364
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
365
|
-
});
|
|
366
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
367
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
368
|
-
Object.defineProperty(exports, '__proto__', {
|
|
369
|
-
enumerable: true,
|
|
370
|
-
value: errors['__proto__']
|
|
371
|
-
});
|
|
372
|
-
|
|
373
|
-
Object.keys(errors).forEach(function (k) {
|
|
374
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
375
|
-
});
|
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.BCMDataExportsServiceException =
|
|
4
|
-
const client_1 = require("@smithy/core/client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return client_1.ServiceException; } });
|
|
6
|
-
class BCMDataExportsServiceException extends client_1.ServiceException {
|
|
1
|
+
const { ServiceException: __ServiceException } = require("@smithy/core/client");
|
|
2
|
+
exports.__ServiceException = __ServiceException;
|
|
3
|
+
exports.BCMDataExportsServiceException = class BCMDataExportsServiceException extends __ServiceException {
|
|
7
4
|
constructor(options) {
|
|
8
5
|
super(options);
|
|
9
6
|
Object.setPrototypeOf(this, BCMDataExportsServiceException.prototype);
|
|
10
7
|
}
|
|
11
|
-
}
|
|
12
|
-
exports.BCMDataExportsServiceException = BCMDataExportsServiceException;
|
|
8
|
+
};
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.ResourceNotFoundException = exports.ValidationException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.InternalServerException = exports.AccessDeniedException = void 0;
|
|
4
|
-
const BCMDataExportsServiceException_1 = require("./BCMDataExportsServiceException");
|
|
5
|
-
class AccessDeniedException extends BCMDataExportsServiceException_1.BCMDataExportsServiceException {
|
|
1
|
+
const { BCMDataExportsServiceException: __BaseException } = require("./BCMDataExportsServiceException");
|
|
2
|
+
exports.AccessDeniedException = class AccessDeniedException extends __BaseException {
|
|
6
3
|
name = "AccessDeniedException";
|
|
7
4
|
$fault = "client";
|
|
8
5
|
Message;
|
|
@@ -15,9 +12,8 @@ class AccessDeniedException extends BCMDataExportsServiceException_1.BCMDataExpo
|
|
|
15
12
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
16
13
|
this.Message = opts.Message;
|
|
17
14
|
}
|
|
18
|
-
}
|
|
19
|
-
exports.
|
|
20
|
-
class InternalServerException extends BCMDataExportsServiceException_1.BCMDataExportsServiceException {
|
|
15
|
+
};
|
|
16
|
+
exports.InternalServerException = class InternalServerException extends __BaseException {
|
|
21
17
|
name = "InternalServerException";
|
|
22
18
|
$fault = "server";
|
|
23
19
|
Message;
|
|
@@ -30,9 +26,8 @@ class InternalServerException extends BCMDataExportsServiceException_1.BCMDataEx
|
|
|
30
26
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
31
27
|
this.Message = opts.Message;
|
|
32
28
|
}
|
|
33
|
-
}
|
|
34
|
-
exports.
|
|
35
|
-
class ServiceQuotaExceededException extends BCMDataExportsServiceException_1.BCMDataExportsServiceException {
|
|
29
|
+
};
|
|
30
|
+
exports.ServiceQuotaExceededException = class ServiceQuotaExceededException extends __BaseException {
|
|
36
31
|
name = "ServiceQuotaExceededException";
|
|
37
32
|
$fault = "client";
|
|
38
33
|
Message;
|
|
@@ -53,9 +48,8 @@ class ServiceQuotaExceededException extends BCMDataExportsServiceException_1.BCM
|
|
|
53
48
|
this.QuotaCode = opts.QuotaCode;
|
|
54
49
|
this.ServiceCode = opts.ServiceCode;
|
|
55
50
|
}
|
|
56
|
-
}
|
|
57
|
-
exports.
|
|
58
|
-
class ThrottlingException extends BCMDataExportsServiceException_1.BCMDataExportsServiceException {
|
|
51
|
+
};
|
|
52
|
+
exports.ThrottlingException = class ThrottlingException extends __BaseException {
|
|
59
53
|
name = "ThrottlingException";
|
|
60
54
|
$fault = "client";
|
|
61
55
|
Message;
|
|
@@ -72,9 +66,8 @@ class ThrottlingException extends BCMDataExportsServiceException_1.BCMDataExport
|
|
|
72
66
|
this.QuotaCode = opts.QuotaCode;
|
|
73
67
|
this.ServiceCode = opts.ServiceCode;
|
|
74
68
|
}
|
|
75
|
-
}
|
|
76
|
-
exports.
|
|
77
|
-
class ValidationException extends BCMDataExportsServiceException_1.BCMDataExportsServiceException {
|
|
69
|
+
};
|
|
70
|
+
exports.ValidationException = class ValidationException extends __BaseException {
|
|
78
71
|
name = "ValidationException";
|
|
79
72
|
$fault = "client";
|
|
80
73
|
Message;
|
|
@@ -91,9 +84,8 @@ class ValidationException extends BCMDataExportsServiceException_1.BCMDataExport
|
|
|
91
84
|
this.Reason = opts.Reason;
|
|
92
85
|
this.Fields = opts.Fields;
|
|
93
86
|
}
|
|
94
|
-
}
|
|
95
|
-
exports.
|
|
96
|
-
class ResourceNotFoundException extends BCMDataExportsServiceException_1.BCMDataExportsServiceException {
|
|
87
|
+
};
|
|
88
|
+
exports.ResourceNotFoundException = class ResourceNotFoundException extends __BaseException {
|
|
97
89
|
name = "ResourceNotFoundException";
|
|
98
90
|
$fault = "client";
|
|
99
91
|
Message;
|
|
@@ -110,5 +102,4 @@ class ResourceNotFoundException extends BCMDataExportsServiceException_1.BCMData
|
|
|
110
102
|
this.ResourceId = opts.ResourceId;
|
|
111
103
|
this.ResourceType = opts.ResourceType;
|
|
112
104
|
}
|
|
113
|
-
}
|
|
114
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
105
|
+
};
|
|
@@ -1,36 +1,32 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const retry_1 = require("@smithy/core/retry");
|
|
11
|
-
const serde_1 = require("@smithy/core/serde");
|
|
12
|
-
const fetch_http_handler_1 = require("@smithy/fetch-http-handler");
|
|
13
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { Sha256 } = require("@aws-crypto/sha256-browser");
|
|
3
|
+
const { createDefaultUserAgentProvider } = require("@aws-sdk/core/client");
|
|
4
|
+
const { invalidProvider, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
5
|
+
const { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
6
|
+
const { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } = require("@smithy/core/retry");
|
|
7
|
+
const { calculateBodyLength } = require("@smithy/core/serde");
|
|
8
|
+
const { FetchHttpHandler: RequestHandler, streamCollector } = require("@smithy/fetch-http-handler");
|
|
9
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
14
10
|
const getRuntimeConfig = (config) => {
|
|
15
|
-
const defaultsMode =
|
|
16
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
17
|
-
const clientSharedValues = (
|
|
11
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
12
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
13
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
18
14
|
return {
|
|
19
15
|
...clientSharedValues,
|
|
20
16
|
...config,
|
|
21
17
|
runtime: "browser",
|
|
22
18
|
defaultsMode,
|
|
23
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
19
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
24
20
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
25
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
26
|
-
maxAttempts: config?.maxAttempts ??
|
|
27
|
-
region: config?.region ??
|
|
28
|
-
requestHandler:
|
|
29
|
-
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode ||
|
|
30
|
-
sha256: config?.sha256 ??
|
|
31
|
-
streamCollector: config?.streamCollector ??
|
|
32
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(
|
|
33
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(
|
|
21
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
22
|
+
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
23
|
+
region: config?.region ?? invalidProvider("Region is missing"),
|
|
24
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
25
|
+
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
26
|
+
sha256: config?.sha256 ?? Sha256,
|
|
27
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
28
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
29
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
|
|
34
30
|
};
|
|
35
31
|
};
|
|
36
32
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,23 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const retry_1 = require("@smithy/core/retry");
|
|
12
|
-
const serde_1 = require("@smithy/core/serde");
|
|
13
|
-
const node_http_handler_1 = require("@smithy/node-http-handler");
|
|
14
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { createDefaultUserAgentProvider, emitWarningIfUnsupportedVersion: awsCheckVersion, NODE_APP_ID_CONFIG_OPTIONS } = require("@aws-sdk/core/client");
|
|
3
|
+
const { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
4
|
+
const { defaultProvider: credentialDefaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
5
|
+
const { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
6
|
+
const { loadConfig: loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
7
|
+
const { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } = require("@smithy/core/retry");
|
|
8
|
+
const { calculateBodyLength, Hash } = require("@smithy/core/serde");
|
|
9
|
+
const { NodeHttpHandler: RequestHandler, streamCollector } = require("@smithy/node-http-handler");
|
|
10
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
15
11
|
const getRuntimeConfig = (config) => {
|
|
16
|
-
|
|
17
|
-
const defaultsMode =
|
|
18
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
19
|
-
const clientSharedValues = (
|
|
20
|
-
(
|
|
12
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
13
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
14
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
15
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
16
|
+
awsCheckVersion(process.version);
|
|
21
17
|
const loaderConfig = {
|
|
22
18
|
profile: config?.profile,
|
|
23
19
|
logger: clientSharedValues.logger,
|
|
@@ -27,23 +23,23 @@ const getRuntimeConfig = (config) => {
|
|
|
27
23
|
...config,
|
|
28
24
|
runtime: "node",
|
|
29
25
|
defaultsMode,
|
|
30
|
-
authSchemePreference: config?.authSchemePreference ?? (
|
|
31
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
32
|
-
credentialDefaultProvider: config?.credentialDefaultProvider ??
|
|
33
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
34
|
-
maxAttempts: config?.maxAttempts ?? (
|
|
35
|
-
region: config?.region ?? (
|
|
36
|
-
requestHandler:
|
|
26
|
+
authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
27
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
28
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
|
|
29
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
30
|
+
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
31
|
+
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
32
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
37
33
|
retryMode: config?.retryMode ??
|
|
38
|
-
(
|
|
39
|
-
...
|
|
40
|
-
default: async () => (await defaultConfigProvider()).retryMode ||
|
|
34
|
+
loadNodeConfig({
|
|
35
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
36
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
41
37
|
}, config),
|
|
42
|
-
sha256: config?.sha256 ??
|
|
43
|
-
streamCollector: config?.streamCollector ??
|
|
44
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (
|
|
45
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (
|
|
46
|
-
userAgentAppId: config?.userAgentAppId ?? (
|
|
38
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
39
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
40
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
41
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
42
|
+
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
47
43
|
};
|
|
48
44
|
};
|
|
49
45
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,15 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const sha256_js_1 = require("@aws-crypto/sha256-js");
|
|
5
|
-
const runtimeConfig_browser_1 = require("./runtimeConfig.browser");
|
|
1
|
+
const { Sha256 } = require("@aws-crypto/sha256-js");
|
|
2
|
+
const { getRuntimeConfig: getBrowserRuntimeConfig } = require("./runtimeConfig.browser");
|
|
6
3
|
const getRuntimeConfig = (config) => {
|
|
7
|
-
const browserDefaults = (
|
|
4
|
+
const browserDefaults = getBrowserRuntimeConfig(config);
|
|
8
5
|
return {
|
|
9
6
|
...browserDefaults,
|
|
10
7
|
...config,
|
|
11
8
|
runtime: "react-native",
|
|
12
|
-
sha256: config?.sha256 ??
|
|
9
|
+
sha256: config?.sha256 ?? Sha256,
|
|
13
10
|
};
|
|
14
11
|
};
|
|
15
12
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,42 +1,38 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
11
|
-
const schemas_0_1 = require("./schemas/schemas_0");
|
|
12
|
-
const getRuntimeConfig = (config) => {
|
|
1
|
+
const { AwsSdkSigV4Signer } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
3
|
+
const { NoOpLogger } = require("@smithy/core/client");
|
|
4
|
+
const { parseUrl } = require("@smithy/core/protocols");
|
|
5
|
+
const { fromBase64, fromUtf8, toBase64, toUtf8 } = require("@smithy/core/serde");
|
|
6
|
+
const { defaultBCMDataExportsHttpAuthSchemeProvider } = require("./auth/httpAuthSchemeProvider");
|
|
7
|
+
const { defaultEndpointResolver } = require("./endpoint/endpointResolver");
|
|
8
|
+
const { errorTypeRegistries } = require("./schemas/schemas_0");
|
|
9
|
+
exports.getRuntimeConfig = (config) => {
|
|
13
10
|
return {
|
|
14
11
|
apiVersion: "2023-11-26",
|
|
15
|
-
base64Decoder: config?.base64Decoder ??
|
|
16
|
-
base64Encoder: config?.base64Encoder ??
|
|
12
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
13
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
17
14
|
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
18
|
-
endpointProvider: config?.endpointProvider ??
|
|
15
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
19
16
|
extensions: config?.extensions ?? [],
|
|
20
|
-
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ??
|
|
17
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultBCMDataExportsHttpAuthSchemeProvider,
|
|
21
18
|
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
22
19
|
{
|
|
23
20
|
schemeId: "aws.auth#sigv4",
|
|
24
21
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
25
|
-
signer: new
|
|
22
|
+
signer: new AwsSdkSigV4Signer(),
|
|
26
23
|
},
|
|
27
24
|
],
|
|
28
|
-
logger: config?.logger ?? new
|
|
29
|
-
protocol: config?.protocol ??
|
|
25
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
30
27
|
protocolSettings: config?.protocolSettings ?? {
|
|
31
28
|
defaultNamespace: "com.amazonaws.bcmdataexports",
|
|
32
|
-
errorTypeRegistries
|
|
29
|
+
errorTypeRegistries,
|
|
33
30
|
version: "2023-11-26",
|
|
34
31
|
serviceTarget: "AWSBillingAndCostManagementDataExports",
|
|
35
32
|
},
|
|
36
33
|
serviceId: config?.serviceId ?? "BCM Data Exports",
|
|
37
|
-
urlParser: config?.urlParser ??
|
|
38
|
-
utf8Decoder: config?.utf8Decoder ??
|
|
39
|
-
utf8Encoder: config?.utf8Encoder ??
|
|
34
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
35
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
36
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
40
37
|
};
|
|
41
38
|
};
|
|
42
|
-
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetExecution$ = exports.DeleteExport$ = exports.CreateExport$ = exports.ValidationExceptionField$ = exports.UpdateExportResponse$ = exports.UpdateExportRequest$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.TablePropertyDescription$ = exports.Table$ = exports.S3OutputConfigurations$ = exports.S3Destination$ = exports.ResourceTag$ = exports.RefreshCadence$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListTablesResponse$ = exports.ListTablesRequest$ = exports.ListExportsResponse$ = exports.ListExportsRequest$ = exports.ListExecutionsResponse$ = exports.ListExecutionsRequest$ = exports.GetTableResponse$ = exports.GetTableRequest$ = exports.GetExportResponse$ = exports.GetExportRequest$ = exports.GetExecutionResponse$ = exports.GetExecutionRequest$ = exports.ExportStatus$ = exports.ExportReference$ = exports.Export$ = exports.ExecutionStatus$ = exports.ExecutionReference$ = exports.DestinationConfigurations$ = exports.DeleteExportResponse$ = exports.DeleteExportRequest$ = exports.DataQuery$ = exports.CreateExportResponse$ = exports.CreateExportRequest$ = exports.Column$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.AccessDeniedException$ = exports.BCMDataExportsServiceException$ = void 0;
|
|
4
|
-
exports.UpdateExport$ = exports.UntagResource$ = exports.TagResource$ = exports.ListTagsForResource$ = exports.ListTables$ = exports.ListExports$ = exports.ListExecutions$ = exports.GetTable$ = exports.GetExport$ = void 0;
|
|
5
1
|
const _ADE = "AccessDeniedException";
|
|
6
2
|
const _C = "Column";
|
|
7
3
|
const _CA = "CreatedAt";
|
|
@@ -117,308 +113,354 @@ const _hE = "httpError";
|
|
|
117
113
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.bcmdataexports";
|
|
118
114
|
const _se = "server";
|
|
119
115
|
const n0 = "com.amazonaws.bcmdataexports";
|
|
120
|
-
const
|
|
121
|
-
const
|
|
122
|
-
const
|
|
123
|
-
const _s_registry =
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
116
|
+
const { TypeRegistry } = require("@smithy/core/schema");
|
|
117
|
+
const { BCMDataExportsServiceException } = require("../models/BCMDataExportsServiceException");
|
|
118
|
+
const { AccessDeniedException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException } = require("../models/errors");
|
|
119
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
120
|
+
const BCMDataExportsServiceException$ = [-3, _s, "BCMDataExportsServiceException", 0, [], []];
|
|
121
|
+
exports.BCMDataExportsServiceException$ = BCMDataExportsServiceException$;
|
|
122
|
+
_s_registry.registerError(BCMDataExportsServiceException$, BCMDataExportsServiceException);
|
|
123
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
124
|
+
const AccessDeniedException$ = [-3, n0, _ADE,
|
|
128
125
|
{ [_e]: _c, [_hE]: 403 },
|
|
129
126
|
[_M],
|
|
130
127
|
[0], 1
|
|
131
128
|
];
|
|
132
|
-
|
|
133
|
-
|
|
129
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
130
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
131
|
+
const InternalServerException$ = [-3, n0, _ISE,
|
|
134
132
|
{ [_e]: _se, [_hE]: 500 },
|
|
135
133
|
[_M],
|
|
136
134
|
[0], 1
|
|
137
135
|
];
|
|
138
|
-
|
|
139
|
-
|
|
136
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
137
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
138
|
+
const ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
140
139
|
{ [_e]: _c, [_hE]: 404 },
|
|
141
140
|
[_M, _RI, _RT],
|
|
142
141
|
[0, 0, 0], 3
|
|
143
142
|
];
|
|
144
|
-
|
|
145
|
-
|
|
143
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
144
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
145
|
+
const ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
146
146
|
{ [_e]: _c, [_hE]: 402 },
|
|
147
147
|
[_M, _QC, _SC, _RI, _RT],
|
|
148
148
|
[0, 0, 0, 0, 0], 3
|
|
149
149
|
];
|
|
150
|
-
|
|
151
|
-
|
|
150
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
151
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
152
|
+
const ThrottlingException$ = [-3, n0, _TE,
|
|
152
153
|
{ [_e]: _c, [_hE]: 429 },
|
|
153
154
|
[_M, _QC, _SC],
|
|
154
155
|
[0, 0, 0], 1
|
|
155
156
|
];
|
|
156
|
-
|
|
157
|
-
|
|
157
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
158
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
159
|
+
const ValidationException$ = [-3, n0, _VE,
|
|
158
160
|
{ [_e]: _c, [_hE]: 400 },
|
|
159
161
|
[_M, _R, _F],
|
|
160
162
|
[0, 0, () => ValidationExceptionFieldList], 1
|
|
161
163
|
];
|
|
162
|
-
|
|
164
|
+
exports.ValidationException$ = ValidationException$;
|
|
165
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
163
166
|
exports.errorTypeRegistries = [
|
|
164
167
|
_s_registry,
|
|
165
168
|
n0_registry,
|
|
166
169
|
];
|
|
167
|
-
|
|
170
|
+
const Column$ = [3, n0, _C,
|
|
168
171
|
0,
|
|
169
172
|
[_N, _T, _D],
|
|
170
173
|
[0, 0, 0]
|
|
171
174
|
];
|
|
172
|
-
exports.
|
|
175
|
+
exports.Column$ = Column$;
|
|
176
|
+
const CreateExportRequest$ = [3, n0, _CER,
|
|
173
177
|
0,
|
|
174
178
|
[_E, _RTe],
|
|
175
|
-
[() =>
|
|
179
|
+
[() => Export$, () => ResourceTagList], 1
|
|
176
180
|
];
|
|
177
|
-
exports.
|
|
181
|
+
exports.CreateExportRequest$ = CreateExportRequest$;
|
|
182
|
+
const CreateExportResponse$ = [3, n0, _CERr,
|
|
178
183
|
0,
|
|
179
184
|
[_EA],
|
|
180
185
|
[0]
|
|
181
186
|
];
|
|
182
|
-
exports.
|
|
187
|
+
exports.CreateExportResponse$ = CreateExportResponse$;
|
|
188
|
+
const DataQuery$ = [3, n0, _DQ,
|
|
183
189
|
0,
|
|
184
190
|
[_QS, _TC],
|
|
185
191
|
[0, [2, n0, _TC, 0, 0, 128 | 0]], 1
|
|
186
192
|
];
|
|
187
|
-
exports.
|
|
193
|
+
exports.DataQuery$ = DataQuery$;
|
|
194
|
+
const DeleteExportRequest$ = [3, n0, _DER,
|
|
188
195
|
0,
|
|
189
196
|
[_EA],
|
|
190
197
|
[0], 1
|
|
191
198
|
];
|
|
192
|
-
exports.
|
|
199
|
+
exports.DeleteExportRequest$ = DeleteExportRequest$;
|
|
200
|
+
const DeleteExportResponse$ = [3, n0, _DERe,
|
|
193
201
|
0,
|
|
194
202
|
[_EA],
|
|
195
203
|
[0]
|
|
196
204
|
];
|
|
197
|
-
exports.
|
|
205
|
+
exports.DeleteExportResponse$ = DeleteExportResponse$;
|
|
206
|
+
const DestinationConfigurations$ = [3, n0, _DC,
|
|
198
207
|
0,
|
|
199
208
|
[_SD],
|
|
200
|
-
[() =>
|
|
209
|
+
[() => S3Destination$], 1
|
|
201
210
|
];
|
|
202
|
-
exports.
|
|
211
|
+
exports.DestinationConfigurations$ = DestinationConfigurations$;
|
|
212
|
+
const ExecutionReference$ = [3, n0, _ER,
|
|
203
213
|
0,
|
|
204
214
|
[_EI, _ES],
|
|
205
|
-
[0, () =>
|
|
215
|
+
[0, () => ExecutionStatus$], 2
|
|
206
216
|
];
|
|
207
|
-
exports.
|
|
217
|
+
exports.ExecutionReference$ = ExecutionReference$;
|
|
218
|
+
const ExecutionStatus$ = [3, n0, _ES,
|
|
208
219
|
0,
|
|
209
220
|
[_SCt, _SR, _CA, _CAo, _LUA],
|
|
210
221
|
[0, 0, 5, 5, 5]
|
|
211
222
|
];
|
|
212
|
-
exports.
|
|
223
|
+
exports.ExecutionStatus$ = ExecutionStatus$;
|
|
224
|
+
const Export$ = [3, n0, _E,
|
|
213
225
|
0,
|
|
214
226
|
[_N, _DQ, _DC, _RC, _EA, _D],
|
|
215
|
-
[0, () =>
|
|
227
|
+
[0, () => DataQuery$, () => DestinationConfigurations$, () => RefreshCadence$, 0, 0], 4
|
|
216
228
|
];
|
|
217
|
-
exports.
|
|
229
|
+
exports.Export$ = Export$;
|
|
230
|
+
const ExportReference$ = [3, n0, _ERx,
|
|
218
231
|
0,
|
|
219
232
|
[_EA, _EN, _ESx],
|
|
220
|
-
[0, 0, () =>
|
|
233
|
+
[0, 0, () => ExportStatus$], 3
|
|
221
234
|
];
|
|
222
|
-
exports.
|
|
235
|
+
exports.ExportReference$ = ExportReference$;
|
|
236
|
+
const ExportStatus$ = [3, n0, _ESx,
|
|
223
237
|
0,
|
|
224
238
|
[_SCt, _SR, _CA, _LUA, _LRA],
|
|
225
239
|
[0, 0, 5, 5, 5]
|
|
226
240
|
];
|
|
227
|
-
exports.
|
|
241
|
+
exports.ExportStatus$ = ExportStatus$;
|
|
242
|
+
const GetExecutionRequest$ = [3, n0, _GER,
|
|
228
243
|
0,
|
|
229
244
|
[_EA, _EI],
|
|
230
245
|
[0, 0], 2
|
|
231
246
|
];
|
|
232
|
-
exports.
|
|
247
|
+
exports.GetExecutionRequest$ = GetExecutionRequest$;
|
|
248
|
+
const GetExecutionResponse$ = [3, n0, _GERe,
|
|
233
249
|
0,
|
|
234
250
|
[_EI, _E, _ES],
|
|
235
|
-
[0, () =>
|
|
251
|
+
[0, () => Export$, () => ExecutionStatus$]
|
|
236
252
|
];
|
|
237
|
-
exports.
|
|
253
|
+
exports.GetExecutionResponse$ = GetExecutionResponse$;
|
|
254
|
+
const GetExportRequest$ = [3, n0, _GERet,
|
|
238
255
|
0,
|
|
239
256
|
[_EA],
|
|
240
257
|
[0], 1
|
|
241
258
|
];
|
|
242
|
-
exports.
|
|
259
|
+
exports.GetExportRequest$ = GetExportRequest$;
|
|
260
|
+
const GetExportResponse$ = [3, n0, _GERetx,
|
|
243
261
|
0,
|
|
244
262
|
[_E, _ESx],
|
|
245
|
-
[() =>
|
|
263
|
+
[() => Export$, () => ExportStatus$]
|
|
246
264
|
];
|
|
247
|
-
exports.
|
|
265
|
+
exports.GetExportResponse$ = GetExportResponse$;
|
|
266
|
+
const GetTableRequest$ = [3, n0, _GTR,
|
|
248
267
|
0,
|
|
249
268
|
[_TN, _TP],
|
|
250
269
|
[0, 128 | 0], 1
|
|
251
270
|
];
|
|
252
|
-
exports.
|
|
271
|
+
exports.GetTableRequest$ = GetTableRequest$;
|
|
272
|
+
const GetTableResponse$ = [3, n0, _GTRe,
|
|
253
273
|
0,
|
|
254
274
|
[_TN, _D, _TP, _S],
|
|
255
275
|
[0, 0, 128 | 0, () => ColumnList]
|
|
256
276
|
];
|
|
257
|
-
exports.
|
|
277
|
+
exports.GetTableResponse$ = GetTableResponse$;
|
|
278
|
+
const ListExecutionsRequest$ = [3, n0, _LER,
|
|
258
279
|
0,
|
|
259
280
|
[_EA, _MR, _NT],
|
|
260
281
|
[0, 1, 0], 1
|
|
261
282
|
];
|
|
262
|
-
exports.
|
|
283
|
+
exports.ListExecutionsRequest$ = ListExecutionsRequest$;
|
|
284
|
+
const ListExecutionsResponse$ = [3, n0, _LERi,
|
|
263
285
|
0,
|
|
264
286
|
[_Ex, _NT],
|
|
265
287
|
[() => ExecutionReferenceList, 0]
|
|
266
288
|
];
|
|
267
|
-
exports.
|
|
289
|
+
exports.ListExecutionsResponse$ = ListExecutionsResponse$;
|
|
290
|
+
const ListExportsRequest$ = [3, n0, _LERis,
|
|
268
291
|
0,
|
|
269
292
|
[_MR, _NT],
|
|
270
293
|
[1, 0]
|
|
271
294
|
];
|
|
272
|
-
exports.
|
|
295
|
+
exports.ListExportsRequest$ = ListExportsRequest$;
|
|
296
|
+
const ListExportsResponse$ = [3, n0, _LERist,
|
|
273
297
|
0,
|
|
274
298
|
[_Exp, _NT],
|
|
275
299
|
[() => ExportReferenceList, 0]
|
|
276
300
|
];
|
|
277
|
-
exports.
|
|
301
|
+
exports.ListExportsResponse$ = ListExportsResponse$;
|
|
302
|
+
const ListTablesRequest$ = [3, n0, _LTR,
|
|
278
303
|
0,
|
|
279
304
|
[_NT, _MR],
|
|
280
305
|
[0, 1]
|
|
281
306
|
];
|
|
282
|
-
exports.
|
|
307
|
+
exports.ListTablesRequest$ = ListTablesRequest$;
|
|
308
|
+
const ListTablesResponse$ = [3, n0, _LTRi,
|
|
283
309
|
0,
|
|
284
310
|
[_Ta, _NT],
|
|
285
311
|
[() => TableList, 0]
|
|
286
312
|
];
|
|
287
|
-
exports.
|
|
313
|
+
exports.ListTablesResponse$ = ListTablesResponse$;
|
|
314
|
+
const ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
288
315
|
0,
|
|
289
316
|
[_RA, _MR, _NT],
|
|
290
317
|
[0, 1, 0], 1
|
|
291
318
|
];
|
|
292
|
-
exports.
|
|
319
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
320
|
+
const ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
293
321
|
0,
|
|
294
322
|
[_RTe, _NT],
|
|
295
323
|
[() => ResourceTagList, 0]
|
|
296
324
|
];
|
|
297
|
-
exports.
|
|
325
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
326
|
+
const RefreshCadence$ = [3, n0, _RC,
|
|
298
327
|
0,
|
|
299
328
|
[_Fr],
|
|
300
329
|
[0], 1
|
|
301
330
|
];
|
|
302
|
-
exports.
|
|
331
|
+
exports.RefreshCadence$ = RefreshCadence$;
|
|
332
|
+
const ResourceTag$ = [3, n0, _RTes,
|
|
303
333
|
0,
|
|
304
334
|
[_K, _V],
|
|
305
335
|
[0, 0], 2
|
|
306
336
|
];
|
|
307
|
-
exports.
|
|
337
|
+
exports.ResourceTag$ = ResourceTag$;
|
|
338
|
+
const S3Destination$ = [3, n0, _SD,
|
|
308
339
|
0,
|
|
309
340
|
[_SB, _SP, _SRe, _SOC, _SBO],
|
|
310
|
-
[0, 0, 0, () =>
|
|
341
|
+
[0, 0, 0, () => S3OutputConfigurations$, 0], 4
|
|
311
342
|
];
|
|
312
|
-
exports.
|
|
343
|
+
exports.S3Destination$ = S3Destination$;
|
|
344
|
+
const S3OutputConfigurations$ = [3, n0, _SOC,
|
|
313
345
|
0,
|
|
314
346
|
[_OT, _Fo, _Co, _O],
|
|
315
347
|
[0, 0, 0, 0], 4
|
|
316
348
|
];
|
|
317
|
-
exports.
|
|
349
|
+
exports.S3OutputConfigurations$ = S3OutputConfigurations$;
|
|
350
|
+
const Table$ = [3, n0, _Tab,
|
|
318
351
|
0,
|
|
319
352
|
[_TN, _D, _TP],
|
|
320
353
|
[0, 0, () => TablePropertyDescriptionList]
|
|
321
354
|
];
|
|
322
|
-
exports.
|
|
355
|
+
exports.Table$ = Table$;
|
|
356
|
+
const TablePropertyDescription$ = [3, n0, _TPD,
|
|
323
357
|
0,
|
|
324
358
|
[_N, _VV, _DV, _D],
|
|
325
359
|
[0, 64 | 0, 0, 0]
|
|
326
360
|
];
|
|
327
|
-
exports.
|
|
361
|
+
exports.TablePropertyDescription$ = TablePropertyDescription$;
|
|
362
|
+
const TagResourceRequest$ = [3, n0, _TRR,
|
|
328
363
|
0,
|
|
329
364
|
[_RA, _RTe],
|
|
330
365
|
[0, () => ResourceTagList], 2
|
|
331
366
|
];
|
|
332
|
-
exports.
|
|
367
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
368
|
+
const TagResourceResponse$ = [3, n0, _TRRa,
|
|
333
369
|
0,
|
|
334
370
|
[],
|
|
335
371
|
[]
|
|
336
372
|
];
|
|
337
|
-
exports.
|
|
373
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
374
|
+
const UntagResourceRequest$ = [3, n0, _URR,
|
|
338
375
|
0,
|
|
339
376
|
[_RA, _RTK],
|
|
340
377
|
[0, 64 | 0], 2
|
|
341
378
|
];
|
|
342
|
-
exports.
|
|
379
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
380
|
+
const UntagResourceResponse$ = [3, n0, _URRn,
|
|
343
381
|
0,
|
|
344
382
|
[],
|
|
345
383
|
[]
|
|
346
384
|
];
|
|
347
|
-
exports.
|
|
385
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
386
|
+
const UpdateExportRequest$ = [3, n0, _UER,
|
|
348
387
|
0,
|
|
349
388
|
[_EA, _E],
|
|
350
|
-
[0, () =>
|
|
389
|
+
[0, () => Export$], 2
|
|
351
390
|
];
|
|
352
|
-
exports.
|
|
391
|
+
exports.UpdateExportRequest$ = UpdateExportRequest$;
|
|
392
|
+
const UpdateExportResponse$ = [3, n0, _UERp,
|
|
353
393
|
0,
|
|
354
394
|
[_EA],
|
|
355
395
|
[0]
|
|
356
396
|
];
|
|
357
|
-
exports.
|
|
397
|
+
exports.UpdateExportResponse$ = UpdateExportResponse$;
|
|
398
|
+
const ValidationExceptionField$ = [3, n0, _VEF,
|
|
358
399
|
0,
|
|
359
400
|
[_N, _M],
|
|
360
401
|
[0, 0], 2
|
|
361
402
|
];
|
|
403
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
362
404
|
var ColumnList = [1, n0, _CL,
|
|
363
|
-
0, () =>
|
|
405
|
+
0, () => Column$
|
|
364
406
|
];
|
|
365
407
|
var ExecutionReferenceList = [1, n0, _ERL,
|
|
366
|
-
0, () =>
|
|
408
|
+
0, () => ExecutionReference$
|
|
367
409
|
];
|
|
368
410
|
var ExportReferenceList = [1, n0, _ERLx,
|
|
369
|
-
0, () =>
|
|
411
|
+
0, () => ExportReference$
|
|
370
412
|
];
|
|
371
413
|
var GenericStringList = 64 | 0;
|
|
372
414
|
var ResourceTagKeyList = 64 | 0;
|
|
373
415
|
var ResourceTagList = [1, n0, _RTL,
|
|
374
|
-
0, () =>
|
|
416
|
+
0, () => ResourceTag$
|
|
375
417
|
];
|
|
376
418
|
var TableList = [1, n0, _TL,
|
|
377
|
-
0, () =>
|
|
419
|
+
0, () => Table$
|
|
378
420
|
];
|
|
379
421
|
var TablePropertyDescriptionList = [1, n0, _TPDL,
|
|
380
|
-
0, () =>
|
|
422
|
+
0, () => TablePropertyDescription$
|
|
381
423
|
];
|
|
382
424
|
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
383
|
-
0, () =>
|
|
425
|
+
0, () => ValidationExceptionField$
|
|
384
426
|
];
|
|
385
427
|
var TableConfigurations = [2, n0, _TC,
|
|
386
428
|
0, 0, 128 | 0
|
|
387
429
|
];
|
|
388
430
|
var TableProperties = 128 | 0;
|
|
389
431
|
exports.CreateExport$ = [9, n0, _CE,
|
|
390
|
-
0, () =>
|
|
432
|
+
0, () => CreateExportRequest$, () => CreateExportResponse$
|
|
391
433
|
];
|
|
392
434
|
exports.DeleteExport$ = [9, n0, _DE,
|
|
393
|
-
2, () =>
|
|
435
|
+
2, () => DeleteExportRequest$, () => DeleteExportResponse$
|
|
394
436
|
];
|
|
395
437
|
exports.GetExecution$ = [9, n0, _GE,
|
|
396
|
-
0, () =>
|
|
438
|
+
0, () => GetExecutionRequest$, () => GetExecutionResponse$
|
|
397
439
|
];
|
|
398
440
|
exports.GetExport$ = [9, n0, _GEe,
|
|
399
|
-
0, () =>
|
|
441
|
+
0, () => GetExportRequest$, () => GetExportResponse$
|
|
400
442
|
];
|
|
401
443
|
exports.GetTable$ = [9, n0, _GT,
|
|
402
|
-
0, () =>
|
|
444
|
+
0, () => GetTableRequest$, () => GetTableResponse$
|
|
403
445
|
];
|
|
404
446
|
exports.ListExecutions$ = [9, n0, _LE,
|
|
405
|
-
0, () =>
|
|
447
|
+
0, () => ListExecutionsRequest$, () => ListExecutionsResponse$
|
|
406
448
|
];
|
|
407
449
|
exports.ListExports$ = [9, n0, _LEi,
|
|
408
|
-
0, () =>
|
|
450
|
+
0, () => ListExportsRequest$, () => ListExportsResponse$
|
|
409
451
|
];
|
|
410
452
|
exports.ListTables$ = [9, n0, _LT,
|
|
411
|
-
0, () =>
|
|
453
|
+
0, () => ListTablesRequest$, () => ListTablesResponse$
|
|
412
454
|
];
|
|
413
455
|
exports.ListTagsForResource$ = [9, n0, _LTFR,
|
|
414
|
-
0, () =>
|
|
456
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
415
457
|
];
|
|
416
458
|
exports.TagResource$ = [9, n0, _TR,
|
|
417
|
-
0, () =>
|
|
459
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
418
460
|
];
|
|
419
461
|
exports.UntagResource$ = [9, n0, _UR,
|
|
420
|
-
0, () =>
|
|
462
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
421
463
|
];
|
|
422
464
|
exports.UpdateExport$ = [9, n0, _UE,
|
|
423
|
-
0, () =>
|
|
465
|
+
0, () => UpdateExportRequest$, () => UpdateExportResponse$
|
|
424
466
|
];
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bcm-data-exports",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bcm Data Exports Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1069.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
8
|
-
"build:es": "tsc -p tsconfig.es.json",
|
|
8
|
+
"build:es": "premove dist-es && tsc -p tsconfig.es.json",
|
|
9
9
|
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
10
|
+
"build:types": "premove dist-types && tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "premove dist-cjs dist-es dist-types
|
|
12
|
+
"clean": "premove dist-cjs dist-es dist-types",
|
|
13
13
|
"extract:docs": "api-extractor run --local",
|
|
14
|
-
"generate:client": "node ../../scripts/generate-clients/single-service
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
15
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
16
|
},
|
|
17
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.974.21",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.56",
|
|
26
|
+
"@aws-sdk/types": "^3.973.13",
|
|
27
27
|
"@smithy/core": "^3.24.6",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.6",
|
|
29
29
|
"@smithy/node-http-handler": "^4.7.6",
|