@aws-sdk/client-elasticsearch-service 3.774.0 → 3.777.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 +1 -3
- package/dist-cjs/index.js +17 -18
- package/dist-es/ElasticsearchServiceClient.js +2 -1
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-es/endpoint/EndpointParameters.js +2 -3
- package/dist-es/runtimeExtensions.js +2 -14
- package/dist-types/commands/AcceptInboundCrossClusterSearchConnectionCommand.d.ts +1 -0
- package/dist-types/commands/AddTagsCommand.d.ts +1 -0
- package/dist-types/commands/AssociatePackageCommand.d.ts +1 -0
- package/dist-types/commands/AuthorizeVpcEndpointAccessCommand.d.ts +1 -0
- package/dist-types/commands/CancelDomainConfigChangeCommand.d.ts +1 -0
- package/dist-types/commands/CancelElasticsearchServiceSoftwareUpdateCommand.d.ts +1 -0
- package/dist-types/commands/CreateElasticsearchDomainCommand.d.ts +1 -0
- package/dist-types/commands/CreateOutboundCrossClusterSearchConnectionCommand.d.ts +1 -0
- package/dist-types/commands/CreatePackageCommand.d.ts +1 -0
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +1 -0
- package/dist-types/commands/DeleteElasticsearchDomainCommand.d.ts +1 -0
- package/dist-types/commands/DeleteElasticsearchServiceRoleCommand.d.ts +1 -0
- package/dist-types/commands/DeleteInboundCrossClusterSearchConnectionCommand.d.ts +1 -0
- package/dist-types/commands/DeleteOutboundCrossClusterSearchConnectionCommand.d.ts +1 -0
- package/dist-types/commands/DeletePackageCommand.d.ts +1 -0
- package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDomainAutoTunesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDomainChangeProgressCommand.d.ts +1 -0
- package/dist-types/commands/DescribeElasticsearchDomainCommand.d.ts +1 -0
- package/dist-types/commands/DescribeElasticsearchDomainConfigCommand.d.ts +1 -0
- package/dist-types/commands/DescribeElasticsearchDomainsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeElasticsearchInstanceTypeLimitsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeInboundCrossClusterSearchConnectionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribePackagesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeReservedElasticsearchInstancesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +1 -0
- package/dist-types/commands/DissociatePackageCommand.d.ts +1 -0
- package/dist-types/commands/GetCompatibleElasticsearchVersionsCommand.d.ts +1 -0
- package/dist-types/commands/GetPackageVersionHistoryCommand.d.ts +1 -0
- package/dist-types/commands/GetUpgradeHistoryCommand.d.ts +1 -0
- package/dist-types/commands/GetUpgradeStatusCommand.d.ts +1 -0
- package/dist-types/commands/ListDomainNamesCommand.d.ts +1 -0
- package/dist-types/commands/ListDomainsForPackageCommand.d.ts +1 -0
- package/dist-types/commands/ListElasticsearchInstanceTypesCommand.d.ts +1 -0
- package/dist-types/commands/ListElasticsearchVersionsCommand.d.ts +1 -0
- package/dist-types/commands/ListPackagesForDomainCommand.d.ts +1 -0
- package/dist-types/commands/ListTagsCommand.d.ts +1 -0
- package/dist-types/commands/ListVpcEndpointAccessCommand.d.ts +1 -0
- package/dist-types/commands/ListVpcEndpointsCommand.d.ts +1 -0
- package/dist-types/commands/ListVpcEndpointsForDomainCommand.d.ts +1 -0
- package/dist-types/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.d.ts +1 -0
- package/dist-types/commands/RejectInboundCrossClusterSearchConnectionCommand.d.ts +1 -0
- package/dist-types/commands/RemoveTagsCommand.d.ts +1 -0
- package/dist-types/commands/RevokeVpcEndpointAccessCommand.d.ts +1 -0
- package/dist-types/commands/StartElasticsearchServiceSoftwareUpdateCommand.d.ts +1 -0
- package/dist-types/commands/UpdateElasticsearchDomainConfigCommand.d.ts +1 -0
- package/dist-types/commands/UpdatePackageCommand.d.ts +1 -0
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +1 -0
- package/dist-types/commands/UpgradeElasticsearchDomainCommand.d.ts +1 -0
- package/package.json +33 -33
|
@@ -40,8 +40,6 @@ const defaultElasticsearchServiceHttpAuthSchemeProvider = (authParameters) => {
|
|
|
40
40
|
exports.defaultElasticsearchServiceHttpAuthSchemeProvider = defaultElasticsearchServiceHttpAuthSchemeProvider;
|
|
41
41
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
42
42
|
const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
|
|
43
|
-
return {
|
|
44
|
-
...config_0,
|
|
45
|
-
};
|
|
43
|
+
return Object.assign(config_0, {});
|
|
46
44
|
};
|
|
47
45
|
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
package/dist-cjs/index.js
CHANGED
|
@@ -154,12 +154,11 @@ var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
|
154
154
|
|
|
155
155
|
// src/endpoint/EndpointParameters.ts
|
|
156
156
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
157
|
-
return {
|
|
158
|
-
...options,
|
|
157
|
+
return Object.assign(options, {
|
|
159
158
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
160
159
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
161
160
|
defaultSigningName: "es"
|
|
162
|
-
};
|
|
161
|
+
});
|
|
163
162
|
}, "resolveClientEndpointParameters");
|
|
164
163
|
var commonParams = {
|
|
165
164
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -216,22 +215,21 @@ var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
|
216
215
|
}, "resolveHttpAuthRuntimeConfig");
|
|
217
216
|
|
|
218
217
|
// src/runtimeExtensions.ts
|
|
219
|
-
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
220
218
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
221
|
-
const extensionConfiguration =
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
219
|
+
const extensionConfiguration = Object.assign(
|
|
220
|
+
(0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig),
|
|
221
|
+
(0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig),
|
|
222
|
+
(0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig),
|
|
223
|
+
getHttpAuthExtensionConfiguration(runtimeConfig)
|
|
224
|
+
);
|
|
227
225
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
228
|
-
return
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
226
|
+
return Object.assign(
|
|
227
|
+
runtimeConfig,
|
|
228
|
+
(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
229
|
+
(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
230
|
+
(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
231
|
+
resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
232
|
+
);
|
|
235
233
|
}, "resolveRuntimeExtensions");
|
|
236
234
|
|
|
237
235
|
// src/ElasticsearchServiceClient.ts
|
|
@@ -245,6 +243,8 @@ var ElasticsearchServiceClient = class extends import_smithy_client.Client {
|
|
|
245
243
|
config;
|
|
246
244
|
constructor(...[configuration]) {
|
|
247
245
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
246
|
+
super(_config_0);
|
|
247
|
+
this.initConfig = _config_0;
|
|
248
248
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
249
249
|
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
250
250
|
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
@@ -253,7 +253,6 @@ var ElasticsearchServiceClient = class extends import_smithy_client.Client {
|
|
|
253
253
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
254
254
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
255
255
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
256
|
-
super(_config_8);
|
|
257
256
|
this.config = _config_8;
|
|
258
257
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
259
258
|
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
@@ -17,6 +17,8 @@ export class ElasticsearchServiceClient extends __Client {
|
|
|
17
17
|
config;
|
|
18
18
|
constructor(...[configuration]) {
|
|
19
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
20
|
+
super(_config_0);
|
|
21
|
+
this.initConfig = _config_0;
|
|
20
22
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
21
23
|
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
22
24
|
const _config_3 = resolveRetryConfig(_config_2);
|
|
@@ -25,7 +27,6 @@ export class ElasticsearchServiceClient extends __Client {
|
|
|
25
27
|
const _config_6 = resolveEndpointConfig(_config_5);
|
|
26
28
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
27
29
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
28
|
-
super(_config_8);
|
|
29
30
|
this.config = _config_8;
|
|
30
31
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
31
32
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
@@ -35,7 +35,5 @@ export const defaultElasticsearchServiceHttpAuthSchemeProvider = (authParameters
|
|
|
35
35
|
};
|
|
36
36
|
export const resolveHttpAuthSchemeConfig = (config) => {
|
|
37
37
|
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
38
|
-
return {
|
|
39
|
-
...config_0,
|
|
40
|
-
};
|
|
38
|
+
return Object.assign(config_0, {});
|
|
41
39
|
};
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
export const resolveClientEndpointParameters = (options) => {
|
|
2
|
-
return {
|
|
3
|
-
...options,
|
|
2
|
+
return Object.assign(options, {
|
|
4
3
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
5
4
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
6
5
|
defaultSigningName: "es",
|
|
7
|
-
};
|
|
6
|
+
});
|
|
8
7
|
};
|
|
9
8
|
export const commonParams = {
|
|
10
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -2,20 +2,8 @@ import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfigurat
|
|
|
2
2
|
import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
|
|
3
3
|
import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
|
|
4
4
|
import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
-
const asPartial = (t) => t;
|
|
6
5
|
export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
7
|
-
const extensionConfiguration =
|
|
8
|
-
...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)),
|
|
9
|
-
...asPartial(getDefaultExtensionConfiguration(runtimeConfig)),
|
|
10
|
-
...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)),
|
|
11
|
-
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig)),
|
|
12
|
-
};
|
|
6
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
13
7
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
14
|
-
return
|
|
15
|
-
...runtimeConfig,
|
|
16
|
-
...resolveAwsRegionExtensionConfiguration(extensionConfiguration),
|
|
17
|
-
...resolveDefaultRuntimeConfig(extensionConfiguration),
|
|
18
|
-
...resolveHttpHandlerRuntimeConfig(extensionConfiguration),
|
|
19
|
-
...resolveHttpAuthRuntimeConfig(extensionConfiguration),
|
|
20
|
-
};
|
|
8
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
21
9
|
};
|
|
@@ -79,6 +79,7 @@ declare const AcceptInboundCrossClusterSearchConnectionCommand_base: {
|
|
|
79
79
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
81
81
|
*
|
|
82
|
+
*
|
|
82
83
|
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class AcceptInboundCrossClusterSearchConnectionCommand extends AcceptInboundCrossClusterSearchConnectionCommand_base {
|
|
@@ -71,6 +71,7 @@ declare const AddTagsCommand_base: {
|
|
|
71
71
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
73
73
|
*
|
|
74
|
+
*
|
|
74
75
|
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class AddTagsCommand extends AddTagsCommand_base {
|
|
@@ -86,6 +86,7 @@ declare const AssociatePackageCommand_base: {
|
|
|
86
86
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
88
88
|
*
|
|
89
|
+
*
|
|
89
90
|
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class AssociatePackageCommand extends AssociatePackageCommand_base {
|
|
@@ -76,6 +76,7 @@ declare const AuthorizeVpcEndpointAccessCommand_base: {
|
|
|
76
76
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
78
78
|
*
|
|
79
|
+
*
|
|
79
80
|
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class AuthorizeVpcEndpointAccessCommand extends AuthorizeVpcEndpointAccessCommand_base {
|
|
@@ -80,6 +80,7 @@ declare const CancelDomainConfigChangeCommand_base: {
|
|
|
80
80
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
82
82
|
*
|
|
83
|
+
*
|
|
83
84
|
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class CancelDomainConfigChangeCommand extends CancelDomainConfigChangeCommand_base {
|
|
@@ -75,6 +75,7 @@ declare const CancelElasticsearchServiceSoftwareUpdateCommand_base: {
|
|
|
75
75
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
77
77
|
*
|
|
78
|
+
*
|
|
78
79
|
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class CancelElasticsearchServiceSoftwareUpdateCommand extends CancelElasticsearchServiceSoftwareUpdateCommand_base {
|
|
@@ -312,6 +312,7 @@ declare const CreateElasticsearchDomainCommand_base: {
|
|
|
312
312
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
313
313
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
314
314
|
*
|
|
315
|
+
*
|
|
315
316
|
* @public
|
|
316
317
|
*/
|
|
317
318
|
export declare class CreateElasticsearchDomainCommand extends CreateElasticsearchDomainCommand_base {
|
|
@@ -91,6 +91,7 @@ declare const CreateOutboundCrossClusterSearchConnectionCommand_base: {
|
|
|
91
91
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
93
93
|
*
|
|
94
|
+
*
|
|
94
95
|
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class CreateOutboundCrossClusterSearchConnectionCommand extends CreateOutboundCrossClusterSearchConnectionCommand_base {
|
|
@@ -94,6 +94,7 @@ declare const CreatePackageCommand_base: {
|
|
|
94
94
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
95
95
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
96
96
|
*
|
|
97
|
+
*
|
|
97
98
|
* @public
|
|
98
99
|
*/
|
|
99
100
|
export declare class CreatePackageCommand extends CreatePackageCommand_base {
|
|
@@ -99,6 +99,7 @@ declare const CreateVpcEndpointCommand_base: {
|
|
|
99
99
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
100
100
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
101
101
|
*
|
|
102
|
+
*
|
|
102
103
|
* @public
|
|
103
104
|
*/
|
|
104
105
|
export declare class CreateVpcEndpointCommand extends CreateVpcEndpointCommand_base {
|
|
@@ -195,6 +195,7 @@ declare const DeleteElasticsearchDomainCommand_base: {
|
|
|
195
195
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
196
196
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
197
197
|
*
|
|
198
|
+
*
|
|
198
199
|
* @public
|
|
199
200
|
*/
|
|
200
201
|
export declare class DeleteElasticsearchDomainCommand extends DeleteElasticsearchDomainCommand_base {
|
|
@@ -58,6 +58,7 @@ declare const DeleteElasticsearchServiceRoleCommand_base: {
|
|
|
58
58
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
59
59
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
60
60
|
*
|
|
61
|
+
*
|
|
61
62
|
* @public
|
|
62
63
|
*/
|
|
63
64
|
export declare class DeleteElasticsearchServiceRoleCommand extends DeleteElasticsearchServiceRoleCommand_base {
|
|
@@ -76,6 +76,7 @@ declare const DeleteInboundCrossClusterSearchConnectionCommand_base: {
|
|
|
76
76
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
78
78
|
*
|
|
79
|
+
*
|
|
79
80
|
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class DeleteInboundCrossClusterSearchConnectionCommand extends DeleteInboundCrossClusterSearchConnectionCommand_base {
|
|
@@ -77,6 +77,7 @@ declare const DeleteOutboundCrossClusterSearchConnectionCommand_base: {
|
|
|
77
77
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
79
79
|
*
|
|
80
|
+
*
|
|
80
81
|
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class DeleteOutboundCrossClusterSearchConnectionCommand extends DeleteOutboundCrossClusterSearchConnectionCommand_base {
|
|
@@ -85,6 +85,7 @@ declare const DeletePackageCommand_base: {
|
|
|
85
85
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
87
87
|
*
|
|
88
|
+
*
|
|
88
89
|
* @public
|
|
89
90
|
*/
|
|
90
91
|
export declare class DeletePackageCommand extends DeletePackageCommand_base {
|
|
@@ -71,6 +71,7 @@ declare const DeleteVpcEndpointCommand_base: {
|
|
|
71
71
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
73
73
|
*
|
|
74
|
+
*
|
|
74
75
|
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class DeleteVpcEndpointCommand extends DeleteVpcEndpointCommand_base {
|
|
@@ -81,6 +81,7 @@ declare const DescribeDomainAutoTunesCommand_base: {
|
|
|
81
81
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
83
83
|
*
|
|
84
|
+
*
|
|
84
85
|
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class DescribeDomainAutoTunesCommand extends DescribeDomainAutoTunesCommand_base {
|
|
@@ -90,6 +90,7 @@ declare const DescribeDomainChangeProgressCommand_base: {
|
|
|
90
90
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
92
92
|
*
|
|
93
|
+
*
|
|
93
94
|
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class DescribeDomainChangeProgressCommand extends DescribeDomainChangeProgressCommand_base {
|
|
@@ -195,6 +195,7 @@ declare const DescribeElasticsearchDomainCommand_base: {
|
|
|
195
195
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
196
196
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
197
197
|
*
|
|
198
|
+
*
|
|
198
199
|
* @public
|
|
199
200
|
*/
|
|
200
201
|
export declare class DescribeElasticsearchDomainCommand extends DescribeElasticsearchDomainCommand_base {
|
|
@@ -262,6 +262,7 @@ declare const DescribeElasticsearchDomainConfigCommand_base: {
|
|
|
262
262
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
263
263
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
264
264
|
*
|
|
265
|
+
*
|
|
265
266
|
* @public
|
|
266
267
|
*/
|
|
267
268
|
export declare class DescribeElasticsearchDomainConfigCommand extends DescribeElasticsearchDomainConfigCommand_base {
|
|
@@ -196,6 +196,7 @@ declare const DescribeElasticsearchDomainsCommand_base: {
|
|
|
196
196
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
197
197
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
198
198
|
*
|
|
199
|
+
*
|
|
199
200
|
* @public
|
|
200
201
|
*/
|
|
201
202
|
export declare class DescribeElasticsearchDomainsCommand extends DescribeElasticsearchDomainsCommand_base {
|
|
@@ -112,6 +112,7 @@ declare const DescribeElasticsearchInstanceTypeLimitsCommand_base: {
|
|
|
112
112
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
113
113
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
114
114
|
*
|
|
115
|
+
*
|
|
115
116
|
* @public
|
|
116
117
|
*/
|
|
117
118
|
export declare class DescribeElasticsearchInstanceTypeLimitsCommand extends DescribeElasticsearchInstanceTypeLimitsCommand_base {
|
|
@@ -88,6 +88,7 @@ declare const DescribeInboundCrossClusterSearchConnectionsCommand_base: {
|
|
|
88
88
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
89
89
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
90
90
|
*
|
|
91
|
+
*
|
|
91
92
|
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class DescribeInboundCrossClusterSearchConnectionsCommand extends DescribeInboundCrossClusterSearchConnectionsCommand_base {
|
|
@@ -89,6 +89,7 @@ declare const DescribeOutboundCrossClusterSearchConnectionsCommand_base: {
|
|
|
89
89
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
91
91
|
*
|
|
92
|
+
*
|
|
92
93
|
* @public
|
|
93
94
|
*/
|
|
94
95
|
export declare class DescribeOutboundCrossClusterSearchConnectionsCommand extends DescribeOutboundCrossClusterSearchConnectionsCommand_base {
|
|
@@ -94,6 +94,7 @@ declare const DescribePackagesCommand_base: {
|
|
|
94
94
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
95
95
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
96
96
|
*
|
|
97
|
+
*
|
|
97
98
|
* @public
|
|
98
99
|
*/
|
|
99
100
|
export declare class DescribePackagesCommand extends DescribePackagesCommand_base {
|
|
@@ -85,6 +85,7 @@ declare const DescribeReservedElasticsearchInstanceOfferingsCommand_base: {
|
|
|
85
85
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
87
87
|
*
|
|
88
|
+
*
|
|
88
89
|
* @public
|
|
89
90
|
*/
|
|
90
91
|
export declare class DescribeReservedElasticsearchInstanceOfferingsCommand extends DescribeReservedElasticsearchInstanceOfferingsCommand_base {
|
|
@@ -90,6 +90,7 @@ declare const DescribeReservedElasticsearchInstancesCommand_base: {
|
|
|
90
90
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
92
92
|
*
|
|
93
|
+
*
|
|
93
94
|
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class DescribeReservedElasticsearchInstancesCommand extends DescribeReservedElasticsearchInstancesCommand_base {
|
|
@@ -95,6 +95,7 @@ declare const DescribeVpcEndpointsCommand_base: {
|
|
|
95
95
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
97
97
|
*
|
|
98
|
+
*
|
|
98
99
|
* @public
|
|
99
100
|
*/
|
|
100
101
|
export declare class DescribeVpcEndpointsCommand extends DescribeVpcEndpointsCommand_base {
|
|
@@ -86,6 +86,7 @@ declare const DissociatePackageCommand_base: {
|
|
|
86
86
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
88
88
|
*
|
|
89
|
+
*
|
|
89
90
|
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class DissociatePackageCommand extends DissociatePackageCommand_base {
|
|
@@ -83,6 +83,7 @@ declare const GetCompatibleElasticsearchVersionsCommand_base: {
|
|
|
83
83
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
85
85
|
*
|
|
86
|
+
*
|
|
86
87
|
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class GetCompatibleElasticsearchVersionsCommand extends GetCompatibleElasticsearchVersionsCommand_base {
|
|
@@ -79,6 +79,7 @@ declare const GetPackageVersionHistoryCommand_base: {
|
|
|
79
79
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
81
81
|
*
|
|
82
|
+
*
|
|
82
83
|
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class GetPackageVersionHistoryCommand extends GetPackageVersionHistoryCommand_base {
|
|
@@ -88,6 +88,7 @@ declare const GetUpgradeHistoryCommand_base: {
|
|
|
88
88
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
89
89
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
90
90
|
*
|
|
91
|
+
*
|
|
91
92
|
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class GetUpgradeHistoryCommand extends GetUpgradeHistoryCommand_base {
|
|
@@ -71,6 +71,7 @@ declare const GetUpgradeStatusCommand_base: {
|
|
|
71
71
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
73
73
|
*
|
|
74
|
+
*
|
|
74
75
|
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class GetUpgradeStatusCommand extends GetUpgradeStatusCommand_base {
|
|
@@ -65,6 +65,7 @@ declare const ListDomainNamesCommand_base: {
|
|
|
65
65
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
67
67
|
*
|
|
68
|
+
*
|
|
68
69
|
* @public
|
|
69
70
|
*/
|
|
70
71
|
export declare class ListDomainNamesCommand extends ListDomainNamesCommand_base {
|
|
@@ -87,6 +87,7 @@ declare const ListDomainsForPackageCommand_base: {
|
|
|
87
87
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
89
89
|
*
|
|
90
|
+
*
|
|
90
91
|
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class ListDomainsForPackageCommand extends ListDomainsForPackageCommand_base {
|
|
@@ -72,6 +72,7 @@ declare const ListElasticsearchInstanceTypesCommand_base: {
|
|
|
72
72
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
74
74
|
*
|
|
75
|
+
*
|
|
75
76
|
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class ListElasticsearchInstanceTypesCommand extends ListElasticsearchInstanceTypesCommand_base {
|
|
@@ -70,6 +70,7 @@ declare const ListElasticsearchVersionsCommand_base: {
|
|
|
70
70
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
72
72
|
*
|
|
73
|
+
*
|
|
73
74
|
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class ListElasticsearchVersionsCommand extends ListElasticsearchVersionsCommand_base {
|
|
@@ -87,6 +87,7 @@ declare const ListPackagesForDomainCommand_base: {
|
|
|
87
87
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
89
89
|
*
|
|
90
|
+
*
|
|
90
91
|
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class ListPackagesForDomainCommand extends ListPackagesForDomainCommand_base {
|
|
@@ -71,6 +71,7 @@ declare const ListTagsCommand_base: {
|
|
|
71
71
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
73
73
|
*
|
|
74
|
+
*
|
|
74
75
|
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class ListTagsCommand extends ListTagsCommand_base {
|
|
@@ -74,6 +74,7 @@ declare const ListVpcEndpointAccessCommand_base: {
|
|
|
74
74
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
76
76
|
*
|
|
77
|
+
*
|
|
77
78
|
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class ListVpcEndpointAccessCommand extends ListVpcEndpointAccessCommand_base {
|
|
@@ -71,6 +71,7 @@ declare const ListVpcEndpointsCommand_base: {
|
|
|
71
71
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
73
73
|
*
|
|
74
|
+
*
|
|
74
75
|
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class ListVpcEndpointsCommand extends ListVpcEndpointsCommand_base {
|
|
@@ -75,6 +75,7 @@ declare const ListVpcEndpointsForDomainCommand_base: {
|
|
|
75
75
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
77
77
|
*
|
|
78
|
+
*
|
|
78
79
|
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class ListVpcEndpointsForDomainCommand extends ListVpcEndpointsForDomainCommand_base {
|
|
@@ -75,6 +75,7 @@ declare const PurchaseReservedElasticsearchInstanceOfferingCommand_base: {
|
|
|
75
75
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
77
77
|
*
|
|
78
|
+
*
|
|
78
79
|
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class PurchaseReservedElasticsearchInstanceOfferingCommand extends PurchaseReservedElasticsearchInstanceOfferingCommand_base {
|
|
@@ -76,6 +76,7 @@ declare const RejectInboundCrossClusterSearchConnectionCommand_base: {
|
|
|
76
76
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
78
78
|
*
|
|
79
|
+
*
|
|
79
80
|
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class RejectInboundCrossClusterSearchConnectionCommand extends RejectInboundCrossClusterSearchConnectionCommand_base {
|
|
@@ -64,6 +64,7 @@ declare const RemoveTagsCommand_base: {
|
|
|
64
64
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
66
66
|
*
|
|
67
|
+
*
|
|
67
68
|
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class RemoveTagsCommand extends RemoveTagsCommand_base {
|
|
@@ -69,6 +69,7 @@ declare const RevokeVpcEndpointAccessCommand_base: {
|
|
|
69
69
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
71
71
|
*
|
|
72
|
+
*
|
|
72
73
|
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class RevokeVpcEndpointAccessCommand extends RevokeVpcEndpointAccessCommand_base {
|
|
@@ -75,6 +75,7 @@ declare const StartElasticsearchServiceSoftwareUpdateCommand_base: {
|
|
|
75
75
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
77
77
|
*
|
|
78
|
+
*
|
|
78
79
|
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class StartElasticsearchServiceSoftwareUpdateCommand extends StartElasticsearchServiceSoftwareUpdateCommand_base {
|
|
@@ -374,6 +374,7 @@ declare const UpdateElasticsearchDomainConfigCommand_base: {
|
|
|
374
374
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
375
375
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
376
376
|
*
|
|
377
|
+
*
|
|
377
378
|
* @public
|
|
378
379
|
*/
|
|
379
380
|
export declare class UpdateElasticsearchDomainConfigCommand extends UpdateElasticsearchDomainConfigCommand_base {
|
|
@@ -91,6 +91,7 @@ declare const UpdatePackageCommand_base: {
|
|
|
91
91
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
93
93
|
*
|
|
94
|
+
*
|
|
94
95
|
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class UpdatePackageCommand extends UpdatePackageCommand_base {
|
|
@@ -98,6 +98,7 @@ declare const UpdateVpcEndpointCommand_base: {
|
|
|
98
98
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
99
99
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
100
100
|
*
|
|
101
|
+
*
|
|
101
102
|
* @public
|
|
102
103
|
*/
|
|
103
104
|
export declare class UpdateVpcEndpointCommand extends UpdateVpcEndpointCommand_base {
|
|
@@ -84,6 +84,7 @@ declare const UpgradeElasticsearchDomainCommand_base: {
|
|
|
84
84
|
* @throws {@link ElasticsearchServiceServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
86
86
|
*
|
|
87
|
+
*
|
|
87
88
|
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class UpgradeElasticsearchDomainCommand extends UpgradeElasticsearchDomainCommand_base {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elasticsearch-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elasticsearch Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.777.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-elasticsearch-service",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.0
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.0.
|
|
37
|
-
"@smithy/hash-node": "^4.0.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.0.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.0.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.0
|
|
41
|
-
"@smithy/middleware-retry": "^4.0
|
|
42
|
-
"@smithy/middleware-serde": "^4.0.
|
|
43
|
-
"@smithy/middleware-stack": "^4.0.
|
|
44
|
-
"@smithy/node-config-provider": "^4.0.
|
|
45
|
-
"@smithy/node-http-handler": "^4.0.
|
|
46
|
-
"@smithy/protocol-http": "^5.0
|
|
47
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.0.
|
|
23
|
+
"@aws-sdk/core": "3.775.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.777.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.775.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
30
|
+
"@aws-sdk/types": "3.775.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.775.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.775.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.1.0",
|
|
35
|
+
"@smithy/core": "^3.2.0",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.0.2",
|
|
37
|
+
"@smithy/hash-node": "^4.0.2",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.0.2",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.0.2",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.0",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.0",
|
|
42
|
+
"@smithy/middleware-serde": "^4.0.3",
|
|
43
|
+
"@smithy/middleware-stack": "^4.0.2",
|
|
44
|
+
"@smithy/node-config-provider": "^4.0.2",
|
|
45
|
+
"@smithy/node-http-handler": "^4.0.4",
|
|
46
|
+
"@smithy/protocol-http": "^5.1.0",
|
|
47
|
+
"@smithy/smithy-client": "^4.2.0",
|
|
48
|
+
"@smithy/types": "^4.2.0",
|
|
49
|
+
"@smithy/url-parser": "^4.0.2",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
55
|
-
"@smithy/util-endpoints": "^3.0.
|
|
56
|
-
"@smithy/util-middleware": "^4.0.
|
|
57
|
-
"@smithy/util-retry": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.8",
|
|
55
|
+
"@smithy/util-endpoints": "^3.0.2",
|
|
56
|
+
"@smithy/util-middleware": "^4.0.2",
|
|
57
|
+
"@smithy/util-retry": "^4.0.2",
|
|
58
58
|
"@smithy/util-utf8": "^4.0.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|