@aws-sdk/client-bcm-data-exports 3.716.0 → 3.723.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 +152 -71
- package/dist-es/BCMDataExportsClient.js +1 -0
- package/dist-es/models/models_0.js +25 -10
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -151,7 +151,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
151
151
|
}, "resolveRuntimeExtensions");
|
|
152
152
|
|
|
153
153
|
// src/BCMDataExportsClient.ts
|
|
154
|
-
var
|
|
154
|
+
var BCMDataExportsClient = class extends import_smithy_client.Client {
|
|
155
|
+
static {
|
|
156
|
+
__name(this, "BCMDataExportsClient");
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* The resolved configuration of BCMDataExportsClient class. This is resolved and normalized from the {@link BCMDataExportsClientConfig | constructor configuration interface}.
|
|
160
|
+
*/
|
|
161
|
+
config;
|
|
155
162
|
constructor(...[configuration]) {
|
|
156
163
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
157
164
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -161,7 +168,7 @@ var _BCMDataExportsClient = class _BCMDataExportsClient extends import_smithy_cl
|
|
|
161
168
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
162
169
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
163
170
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
164
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
171
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
165
172
|
super(_config_8);
|
|
166
173
|
this.config = _config_8;
|
|
167
174
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -189,8 +196,6 @@ var _BCMDataExportsClient = class _BCMDataExportsClient extends import_smithy_cl
|
|
|
189
196
|
super.destroy();
|
|
190
197
|
}
|
|
191
198
|
};
|
|
192
|
-
__name(_BCMDataExportsClient, "BCMDataExportsClient");
|
|
193
|
-
var BCMDataExportsClient = _BCMDataExportsClient;
|
|
194
199
|
|
|
195
200
|
// src/BCMDataExports.ts
|
|
196
201
|
|
|
@@ -207,7 +212,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
207
212
|
|
|
208
213
|
// src/models/BCMDataExportsServiceException.ts
|
|
209
214
|
|
|
210
|
-
var
|
|
215
|
+
var BCMDataExportsServiceException = class _BCMDataExportsServiceException extends import_smithy_client.ServiceException {
|
|
216
|
+
static {
|
|
217
|
+
__name(this, "BCMDataExportsServiceException");
|
|
218
|
+
}
|
|
211
219
|
/**
|
|
212
220
|
* @internal
|
|
213
221
|
*/
|
|
@@ -216,8 +224,6 @@ var _BCMDataExportsServiceException = class _BCMDataExportsServiceException exte
|
|
|
216
224
|
Object.setPrototypeOf(this, _BCMDataExportsServiceException.prototype);
|
|
217
225
|
}
|
|
218
226
|
};
|
|
219
|
-
__name(_BCMDataExportsServiceException, "BCMDataExportsServiceException");
|
|
220
|
-
var BCMDataExportsServiceException = _BCMDataExportsServiceException;
|
|
221
227
|
|
|
222
228
|
// src/models/models_0.ts
|
|
223
229
|
var CompressionOption = {
|
|
@@ -238,7 +244,13 @@ var OverwriteOption = {
|
|
|
238
244
|
var FrequencyOption = {
|
|
239
245
|
SYNCHRONOUS: "SYNCHRONOUS"
|
|
240
246
|
};
|
|
241
|
-
var
|
|
247
|
+
var InternalServerException = class _InternalServerException extends BCMDataExportsServiceException {
|
|
248
|
+
static {
|
|
249
|
+
__name(this, "InternalServerException");
|
|
250
|
+
}
|
|
251
|
+
name = "InternalServerException";
|
|
252
|
+
$fault = "server";
|
|
253
|
+
Message;
|
|
242
254
|
/**
|
|
243
255
|
* @internal
|
|
244
256
|
*/
|
|
@@ -248,15 +260,38 @@ var _InternalServerException = class _InternalServerException extends BCMDataExp
|
|
|
248
260
|
$fault: "server",
|
|
249
261
|
...opts
|
|
250
262
|
});
|
|
251
|
-
this.name = "InternalServerException";
|
|
252
|
-
this.$fault = "server";
|
|
253
263
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
254
264
|
this.Message = opts.Message;
|
|
255
265
|
}
|
|
256
266
|
};
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
267
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends BCMDataExportsServiceException {
|
|
268
|
+
static {
|
|
269
|
+
__name(this, "ServiceQuotaExceededException");
|
|
270
|
+
}
|
|
271
|
+
name = "ServiceQuotaExceededException";
|
|
272
|
+
$fault = "client";
|
|
273
|
+
Message;
|
|
274
|
+
/**
|
|
275
|
+
* <p>The identifier of the resource that exceeded quota.</p>
|
|
276
|
+
* @public
|
|
277
|
+
*/
|
|
278
|
+
ResourceId;
|
|
279
|
+
/**
|
|
280
|
+
* <p>The type of the resource that exceeded quota.</p>
|
|
281
|
+
* @public
|
|
282
|
+
*/
|
|
283
|
+
ResourceType;
|
|
284
|
+
/**
|
|
285
|
+
* <p>The quota code that was exceeded.</p>
|
|
286
|
+
* @public
|
|
287
|
+
*/
|
|
288
|
+
QuotaCode;
|
|
289
|
+
/**
|
|
290
|
+
* <p>The service code that exceeded quota. It will always be
|
|
291
|
+
* “AWSBillingAndCostManagementDataExports”.</p>
|
|
292
|
+
* @public
|
|
293
|
+
*/
|
|
294
|
+
ServiceCode;
|
|
260
295
|
/**
|
|
261
296
|
* @internal
|
|
262
297
|
*/
|
|
@@ -266,8 +301,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
266
301
|
$fault: "client",
|
|
267
302
|
...opts
|
|
268
303
|
});
|
|
269
|
-
this.name = "ServiceQuotaExceededException";
|
|
270
|
-
this.$fault = "client";
|
|
271
304
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
272
305
|
this.Message = opts.Message;
|
|
273
306
|
this.ResourceId = opts.ResourceId;
|
|
@@ -276,9 +309,24 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
276
309
|
this.ServiceCode = opts.ServiceCode;
|
|
277
310
|
}
|
|
278
311
|
};
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
312
|
+
var ThrottlingException = class _ThrottlingException extends BCMDataExportsServiceException {
|
|
313
|
+
static {
|
|
314
|
+
__name(this, "ThrottlingException");
|
|
315
|
+
}
|
|
316
|
+
name = "ThrottlingException";
|
|
317
|
+
$fault = "client";
|
|
318
|
+
Message;
|
|
319
|
+
/**
|
|
320
|
+
* <p>The quota code that exceeded the throttling limit.</p>
|
|
321
|
+
* @public
|
|
322
|
+
*/
|
|
323
|
+
QuotaCode;
|
|
324
|
+
/**
|
|
325
|
+
* <p>The service code that exceeded the throttling limit. It will always be
|
|
326
|
+
* “AWSBillingAndCostManagementDataExports”.</p>
|
|
327
|
+
* @public
|
|
328
|
+
*/
|
|
329
|
+
ServiceCode;
|
|
282
330
|
/**
|
|
283
331
|
* @internal
|
|
284
332
|
*/
|
|
@@ -288,23 +336,35 @@ var _ThrottlingException = class _ThrottlingException extends BCMDataExportsServ
|
|
|
288
336
|
$fault: "client",
|
|
289
337
|
...opts
|
|
290
338
|
});
|
|
291
|
-
this.name = "ThrottlingException";
|
|
292
|
-
this.$fault = "client";
|
|
293
339
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
294
340
|
this.Message = opts.Message;
|
|
295
341
|
this.QuotaCode = opts.QuotaCode;
|
|
296
342
|
this.ServiceCode = opts.ServiceCode;
|
|
297
343
|
}
|
|
298
344
|
};
|
|
299
|
-
__name(_ThrottlingException, "ThrottlingException");
|
|
300
|
-
var ThrottlingException = _ThrottlingException;
|
|
301
345
|
var ValidationExceptionReason = {
|
|
302
346
|
CANNOT_PARSE: "cannotParse",
|
|
303
347
|
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
304
348
|
OTHER: "other",
|
|
305
349
|
UNKNOWN_OPERATION: "unknownOperation"
|
|
306
350
|
};
|
|
307
|
-
var
|
|
351
|
+
var ValidationException = class _ValidationException extends BCMDataExportsServiceException {
|
|
352
|
+
static {
|
|
353
|
+
__name(this, "ValidationException");
|
|
354
|
+
}
|
|
355
|
+
name = "ValidationException";
|
|
356
|
+
$fault = "client";
|
|
357
|
+
Message;
|
|
358
|
+
/**
|
|
359
|
+
* <p>The reason for the validation exception.</p>
|
|
360
|
+
* @public
|
|
361
|
+
*/
|
|
362
|
+
Reason;
|
|
363
|
+
/**
|
|
364
|
+
* <p>The list of fields that are invalid.</p>
|
|
365
|
+
* @public
|
|
366
|
+
*/
|
|
367
|
+
Fields;
|
|
308
368
|
/**
|
|
309
369
|
* @internal
|
|
310
370
|
*/
|
|
@@ -314,17 +374,29 @@ var _ValidationException = class _ValidationException extends BCMDataExportsServ
|
|
|
314
374
|
$fault: "client",
|
|
315
375
|
...opts
|
|
316
376
|
});
|
|
317
|
-
this.name = "ValidationException";
|
|
318
|
-
this.$fault = "client";
|
|
319
377
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
320
378
|
this.Message = opts.Message;
|
|
321
379
|
this.Reason = opts.Reason;
|
|
322
380
|
this.Fields = opts.Fields;
|
|
323
381
|
}
|
|
324
382
|
};
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
383
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends BCMDataExportsServiceException {
|
|
384
|
+
static {
|
|
385
|
+
__name(this, "ResourceNotFoundException");
|
|
386
|
+
}
|
|
387
|
+
name = "ResourceNotFoundException";
|
|
388
|
+
$fault = "client";
|
|
389
|
+
Message;
|
|
390
|
+
/**
|
|
391
|
+
* <p>The identifier of the resource that was not found.</p>
|
|
392
|
+
* @public
|
|
393
|
+
*/
|
|
394
|
+
ResourceId;
|
|
395
|
+
/**
|
|
396
|
+
* <p>The type of the resource that was not found.</p>
|
|
397
|
+
* @public
|
|
398
|
+
*/
|
|
399
|
+
ResourceType;
|
|
328
400
|
/**
|
|
329
401
|
* @internal
|
|
330
402
|
*/
|
|
@@ -334,16 +406,12 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends BCMDat
|
|
|
334
406
|
$fault: "client",
|
|
335
407
|
...opts
|
|
336
408
|
});
|
|
337
|
-
this.name = "ResourceNotFoundException";
|
|
338
|
-
this.$fault = "client";
|
|
339
409
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
340
410
|
this.Message = opts.Message;
|
|
341
411
|
this.ResourceId = opts.ResourceId;
|
|
342
412
|
this.ResourceType = opts.ResourceType;
|
|
343
413
|
}
|
|
344
414
|
};
|
|
345
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
346
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
347
415
|
var ExecutionStatusCode = {
|
|
348
416
|
DELIVERY_FAILURE: "DELIVERY_FAILURE",
|
|
349
417
|
DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS",
|
|
@@ -770,169 +838,181 @@ function sharedHeaders(operation) {
|
|
|
770
838
|
__name(sharedHeaders, "sharedHeaders");
|
|
771
839
|
|
|
772
840
|
// src/commands/CreateExportCommand.ts
|
|
773
|
-
var
|
|
841
|
+
var CreateExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
774
842
|
return [
|
|
775
843
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
776
844
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
777
845
|
];
|
|
778
846
|
}).s("AWSBillingAndCostManagementDataExports", "CreateExport", {}).n("BCMDataExportsClient", "CreateExportCommand").f(void 0, void 0).ser(se_CreateExportCommand).de(de_CreateExportCommand).build() {
|
|
847
|
+
static {
|
|
848
|
+
__name(this, "CreateExportCommand");
|
|
849
|
+
}
|
|
779
850
|
};
|
|
780
|
-
__name(_CreateExportCommand, "CreateExportCommand");
|
|
781
|
-
var CreateExportCommand = _CreateExportCommand;
|
|
782
851
|
|
|
783
852
|
// src/commands/DeleteExportCommand.ts
|
|
784
853
|
|
|
785
854
|
|
|
786
855
|
|
|
787
|
-
var
|
|
856
|
+
var DeleteExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
788
857
|
return [
|
|
789
858
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
790
859
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
791
860
|
];
|
|
792
861
|
}).s("AWSBillingAndCostManagementDataExports", "DeleteExport", {}).n("BCMDataExportsClient", "DeleteExportCommand").f(void 0, void 0).ser(se_DeleteExportCommand).de(de_DeleteExportCommand).build() {
|
|
862
|
+
static {
|
|
863
|
+
__name(this, "DeleteExportCommand");
|
|
864
|
+
}
|
|
793
865
|
};
|
|
794
|
-
__name(_DeleteExportCommand, "DeleteExportCommand");
|
|
795
|
-
var DeleteExportCommand = _DeleteExportCommand;
|
|
796
866
|
|
|
797
867
|
// src/commands/GetExecutionCommand.ts
|
|
798
868
|
|
|
799
869
|
|
|
800
870
|
|
|
801
|
-
var
|
|
871
|
+
var GetExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
802
872
|
return [
|
|
803
873
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
804
874
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
805
875
|
];
|
|
806
876
|
}).s("AWSBillingAndCostManagementDataExports", "GetExecution", {}).n("BCMDataExportsClient", "GetExecutionCommand").f(void 0, void 0).ser(se_GetExecutionCommand).de(de_GetExecutionCommand).build() {
|
|
877
|
+
static {
|
|
878
|
+
__name(this, "GetExecutionCommand");
|
|
879
|
+
}
|
|
807
880
|
};
|
|
808
|
-
__name(_GetExecutionCommand, "GetExecutionCommand");
|
|
809
|
-
var GetExecutionCommand = _GetExecutionCommand;
|
|
810
881
|
|
|
811
882
|
// src/commands/GetExportCommand.ts
|
|
812
883
|
|
|
813
884
|
|
|
814
885
|
|
|
815
|
-
var
|
|
886
|
+
var GetExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
816
887
|
return [
|
|
817
888
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
818
889
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
819
890
|
];
|
|
820
891
|
}).s("AWSBillingAndCostManagementDataExports", "GetExport", {}).n("BCMDataExportsClient", "GetExportCommand").f(void 0, void 0).ser(se_GetExportCommand).de(de_GetExportCommand).build() {
|
|
892
|
+
static {
|
|
893
|
+
__name(this, "GetExportCommand");
|
|
894
|
+
}
|
|
821
895
|
};
|
|
822
|
-
__name(_GetExportCommand, "GetExportCommand");
|
|
823
|
-
var GetExportCommand = _GetExportCommand;
|
|
824
896
|
|
|
825
897
|
// src/commands/GetTableCommand.ts
|
|
826
898
|
|
|
827
899
|
|
|
828
900
|
|
|
829
|
-
var
|
|
901
|
+
var GetTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
830
902
|
return [
|
|
831
903
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
832
904
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
833
905
|
];
|
|
834
906
|
}).s("AWSBillingAndCostManagementDataExports", "GetTable", {}).n("BCMDataExportsClient", "GetTableCommand").f(void 0, void 0).ser(se_GetTableCommand).de(de_GetTableCommand).build() {
|
|
907
|
+
static {
|
|
908
|
+
__name(this, "GetTableCommand");
|
|
909
|
+
}
|
|
835
910
|
};
|
|
836
|
-
__name(_GetTableCommand, "GetTableCommand");
|
|
837
|
-
var GetTableCommand = _GetTableCommand;
|
|
838
911
|
|
|
839
912
|
// src/commands/ListExecutionsCommand.ts
|
|
840
913
|
|
|
841
914
|
|
|
842
915
|
|
|
843
|
-
var
|
|
916
|
+
var ListExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
844
917
|
return [
|
|
845
918
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
846
919
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
847
920
|
];
|
|
848
921
|
}).s("AWSBillingAndCostManagementDataExports", "ListExecutions", {}).n("BCMDataExportsClient", "ListExecutionsCommand").f(void 0, void 0).ser(se_ListExecutionsCommand).de(de_ListExecutionsCommand).build() {
|
|
922
|
+
static {
|
|
923
|
+
__name(this, "ListExecutionsCommand");
|
|
924
|
+
}
|
|
849
925
|
};
|
|
850
|
-
__name(_ListExecutionsCommand, "ListExecutionsCommand");
|
|
851
|
-
var ListExecutionsCommand = _ListExecutionsCommand;
|
|
852
926
|
|
|
853
927
|
// src/commands/ListExportsCommand.ts
|
|
854
928
|
|
|
855
929
|
|
|
856
930
|
|
|
857
|
-
var
|
|
931
|
+
var ListExportsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
858
932
|
return [
|
|
859
933
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
860
934
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
861
935
|
];
|
|
862
936
|
}).s("AWSBillingAndCostManagementDataExports", "ListExports", {}).n("BCMDataExportsClient", "ListExportsCommand").f(void 0, void 0).ser(se_ListExportsCommand).de(de_ListExportsCommand).build() {
|
|
937
|
+
static {
|
|
938
|
+
__name(this, "ListExportsCommand");
|
|
939
|
+
}
|
|
863
940
|
};
|
|
864
|
-
__name(_ListExportsCommand, "ListExportsCommand");
|
|
865
|
-
var ListExportsCommand = _ListExportsCommand;
|
|
866
941
|
|
|
867
942
|
// src/commands/ListTablesCommand.ts
|
|
868
943
|
|
|
869
944
|
|
|
870
945
|
|
|
871
|
-
var
|
|
946
|
+
var ListTablesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
872
947
|
return [
|
|
873
948
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
874
949
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
875
950
|
];
|
|
876
951
|
}).s("AWSBillingAndCostManagementDataExports", "ListTables", {}).n("BCMDataExportsClient", "ListTablesCommand").f(void 0, void 0).ser(se_ListTablesCommand).de(de_ListTablesCommand).build() {
|
|
952
|
+
static {
|
|
953
|
+
__name(this, "ListTablesCommand");
|
|
954
|
+
}
|
|
877
955
|
};
|
|
878
|
-
__name(_ListTablesCommand, "ListTablesCommand");
|
|
879
|
-
var ListTablesCommand = _ListTablesCommand;
|
|
880
956
|
|
|
881
957
|
// src/commands/ListTagsForResourceCommand.ts
|
|
882
958
|
|
|
883
959
|
|
|
884
960
|
|
|
885
|
-
var
|
|
961
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
886
962
|
return [
|
|
887
963
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
888
964
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
889
965
|
];
|
|
890
966
|
}).s("AWSBillingAndCostManagementDataExports", "ListTagsForResource", {}).n("BCMDataExportsClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
967
|
+
static {
|
|
968
|
+
__name(this, "ListTagsForResourceCommand");
|
|
969
|
+
}
|
|
891
970
|
};
|
|
892
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
893
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
894
971
|
|
|
895
972
|
// src/commands/TagResourceCommand.ts
|
|
896
973
|
|
|
897
974
|
|
|
898
975
|
|
|
899
|
-
var
|
|
976
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
900
977
|
return [
|
|
901
978
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
902
979
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
903
980
|
];
|
|
904
981
|
}).s("AWSBillingAndCostManagementDataExports", "TagResource", {}).n("BCMDataExportsClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
982
|
+
static {
|
|
983
|
+
__name(this, "TagResourceCommand");
|
|
984
|
+
}
|
|
905
985
|
};
|
|
906
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
907
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
908
986
|
|
|
909
987
|
// src/commands/UntagResourceCommand.ts
|
|
910
988
|
|
|
911
989
|
|
|
912
990
|
|
|
913
|
-
var
|
|
991
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
914
992
|
return [
|
|
915
993
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
916
994
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
917
995
|
];
|
|
918
996
|
}).s("AWSBillingAndCostManagementDataExports", "UntagResource", {}).n("BCMDataExportsClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
997
|
+
static {
|
|
998
|
+
__name(this, "UntagResourceCommand");
|
|
999
|
+
}
|
|
919
1000
|
};
|
|
920
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
921
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
922
1001
|
|
|
923
1002
|
// src/commands/UpdateExportCommand.ts
|
|
924
1003
|
|
|
925
1004
|
|
|
926
1005
|
|
|
927
|
-
var
|
|
1006
|
+
var UpdateExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
928
1007
|
return [
|
|
929
1008
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
930
1009
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
931
1010
|
];
|
|
932
1011
|
}).s("AWSBillingAndCostManagementDataExports", "UpdateExport", {}).n("BCMDataExportsClient", "UpdateExportCommand").f(void 0, void 0).ser(se_UpdateExportCommand).de(de_UpdateExportCommand).build() {
|
|
1012
|
+
static {
|
|
1013
|
+
__name(this, "UpdateExportCommand");
|
|
1014
|
+
}
|
|
933
1015
|
};
|
|
934
|
-
__name(_UpdateExportCommand, "UpdateExportCommand");
|
|
935
|
-
var UpdateExportCommand = _UpdateExportCommand;
|
|
936
1016
|
|
|
937
1017
|
// src/BCMDataExports.ts
|
|
938
1018
|
var commands = {
|
|
@@ -949,10 +1029,11 @@ var commands = {
|
|
|
949
1029
|
UntagResourceCommand,
|
|
950
1030
|
UpdateExportCommand
|
|
951
1031
|
};
|
|
952
|
-
var
|
|
1032
|
+
var BCMDataExports = class extends BCMDataExportsClient {
|
|
1033
|
+
static {
|
|
1034
|
+
__name(this, "BCMDataExports");
|
|
1035
|
+
}
|
|
953
1036
|
};
|
|
954
|
-
__name(_BCMDataExports, "BCMDataExports");
|
|
955
|
-
var BCMDataExports = _BCMDataExports;
|
|
956
1037
|
(0, import_smithy_client.createAggregatedClient)(commands, BCMDataExports);
|
|
957
1038
|
|
|
958
1039
|
// src/pagination/ListExecutionsPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class BCMDataExportsClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -18,27 +18,33 @@ export const FrequencyOption = {
|
|
|
18
18
|
SYNCHRONOUS: "SYNCHRONOUS",
|
|
19
19
|
};
|
|
20
20
|
export class InternalServerException extends __BaseException {
|
|
21
|
+
name = "InternalServerException";
|
|
22
|
+
$fault = "server";
|
|
23
|
+
Message;
|
|
21
24
|
constructor(opts) {
|
|
22
25
|
super({
|
|
23
26
|
name: "InternalServerException",
|
|
24
27
|
$fault: "server",
|
|
25
28
|
...opts,
|
|
26
29
|
});
|
|
27
|
-
this.name = "InternalServerException";
|
|
28
|
-
this.$fault = "server";
|
|
29
30
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
30
31
|
this.Message = opts.Message;
|
|
31
32
|
}
|
|
32
33
|
}
|
|
33
34
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
35
|
+
name = "ServiceQuotaExceededException";
|
|
36
|
+
$fault = "client";
|
|
37
|
+
Message;
|
|
38
|
+
ResourceId;
|
|
39
|
+
ResourceType;
|
|
40
|
+
QuotaCode;
|
|
41
|
+
ServiceCode;
|
|
34
42
|
constructor(opts) {
|
|
35
43
|
super({
|
|
36
44
|
name: "ServiceQuotaExceededException",
|
|
37
45
|
$fault: "client",
|
|
38
46
|
...opts,
|
|
39
47
|
});
|
|
40
|
-
this.name = "ServiceQuotaExceededException";
|
|
41
|
-
this.$fault = "client";
|
|
42
48
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
43
49
|
this.Message = opts.Message;
|
|
44
50
|
this.ResourceId = opts.ResourceId;
|
|
@@ -48,14 +54,17 @@ export class ServiceQuotaExceededException extends __BaseException {
|
|
|
48
54
|
}
|
|
49
55
|
}
|
|
50
56
|
export class ThrottlingException extends __BaseException {
|
|
57
|
+
name = "ThrottlingException";
|
|
58
|
+
$fault = "client";
|
|
59
|
+
Message;
|
|
60
|
+
QuotaCode;
|
|
61
|
+
ServiceCode;
|
|
51
62
|
constructor(opts) {
|
|
52
63
|
super({
|
|
53
64
|
name: "ThrottlingException",
|
|
54
65
|
$fault: "client",
|
|
55
66
|
...opts,
|
|
56
67
|
});
|
|
57
|
-
this.name = "ThrottlingException";
|
|
58
|
-
this.$fault = "client";
|
|
59
68
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
60
69
|
this.Message = opts.Message;
|
|
61
70
|
this.QuotaCode = opts.QuotaCode;
|
|
@@ -69,14 +78,17 @@ export const ValidationExceptionReason = {
|
|
|
69
78
|
UNKNOWN_OPERATION: "unknownOperation",
|
|
70
79
|
};
|
|
71
80
|
export class ValidationException extends __BaseException {
|
|
81
|
+
name = "ValidationException";
|
|
82
|
+
$fault = "client";
|
|
83
|
+
Message;
|
|
84
|
+
Reason;
|
|
85
|
+
Fields;
|
|
72
86
|
constructor(opts) {
|
|
73
87
|
super({
|
|
74
88
|
name: "ValidationException",
|
|
75
89
|
$fault: "client",
|
|
76
90
|
...opts,
|
|
77
91
|
});
|
|
78
|
-
this.name = "ValidationException";
|
|
79
|
-
this.$fault = "client";
|
|
80
92
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
81
93
|
this.Message = opts.Message;
|
|
82
94
|
this.Reason = opts.Reason;
|
|
@@ -84,14 +96,17 @@ export class ValidationException extends __BaseException {
|
|
|
84
96
|
}
|
|
85
97
|
}
|
|
86
98
|
export class ResourceNotFoundException extends __BaseException {
|
|
99
|
+
name = "ResourceNotFoundException";
|
|
100
|
+
$fault = "client";
|
|
101
|
+
Message;
|
|
102
|
+
ResourceId;
|
|
103
|
+
ResourceType;
|
|
87
104
|
constructor(opts) {
|
|
88
105
|
super({
|
|
89
106
|
name: "ResourceNotFoundException",
|
|
90
107
|
$fault: "client",
|
|
91
108
|
...opts,
|
|
92
109
|
});
|
|
93
|
-
this.name = "ResourceNotFoundException";
|
|
94
|
-
this.$fault = "client";
|
|
95
110
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
96
111
|
this.Message = opts.Message;
|
|
97
112
|
this.ResourceId = opts.ResourceId;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bcm-data-exports",
|
|
@@ -20,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|