@aws-sdk/client-app-mesh 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/AppMeshClient.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/CreateGatewayRouteCommand.d.ts +1 -0
- package/dist-types/commands/CreateMeshCommand.d.ts +1 -0
- package/dist-types/commands/CreateRouteCommand.d.ts +1 -0
- package/dist-types/commands/CreateVirtualGatewayCommand.d.ts +1 -0
- package/dist-types/commands/CreateVirtualNodeCommand.d.ts +1 -0
- package/dist-types/commands/CreateVirtualRouterCommand.d.ts +1 -0
- package/dist-types/commands/CreateVirtualServiceCommand.d.ts +1 -0
- package/dist-types/commands/DeleteGatewayRouteCommand.d.ts +1 -0
- package/dist-types/commands/DeleteMeshCommand.d.ts +1 -0
- package/dist-types/commands/DeleteRouteCommand.d.ts +1 -0
- package/dist-types/commands/DeleteVirtualGatewayCommand.d.ts +1 -0
- package/dist-types/commands/DeleteVirtualNodeCommand.d.ts +1 -0
- package/dist-types/commands/DeleteVirtualRouterCommand.d.ts +1 -0
- package/dist-types/commands/DeleteVirtualServiceCommand.d.ts +1 -0
- package/dist-types/commands/DescribeGatewayRouteCommand.d.ts +1 -0
- package/dist-types/commands/DescribeMeshCommand.d.ts +1 -0
- package/dist-types/commands/DescribeRouteCommand.d.ts +1 -0
- package/dist-types/commands/DescribeVirtualGatewayCommand.d.ts +1 -0
- package/dist-types/commands/DescribeVirtualNodeCommand.d.ts +1 -0
- package/dist-types/commands/DescribeVirtualRouterCommand.d.ts +1 -0
- package/dist-types/commands/DescribeVirtualServiceCommand.d.ts +1 -0
- package/dist-types/commands/ListGatewayRoutesCommand.d.ts +1 -0
- package/dist-types/commands/ListMeshesCommand.d.ts +1 -0
- package/dist-types/commands/ListRoutesCommand.d.ts +1 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -0
- package/dist-types/commands/ListVirtualGatewaysCommand.d.ts +1 -0
- package/dist-types/commands/ListVirtualNodesCommand.d.ts +1 -0
- package/dist-types/commands/ListVirtualRoutersCommand.d.ts +1 -0
- package/dist-types/commands/ListVirtualServicesCommand.d.ts +1 -0
- package/dist-types/commands/TagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UpdateGatewayRouteCommand.d.ts +1 -0
- package/dist-types/commands/UpdateMeshCommand.d.ts +1 -0
- package/dist-types/commands/UpdateRouteCommand.d.ts +1 -0
- package/dist-types/commands/UpdateVirtualGatewayCommand.d.ts +1 -0
- package/dist-types/commands/UpdateVirtualNodeCommand.d.ts +1 -0
- package/dist-types/commands/UpdateVirtualRouterCommand.d.ts +1 -0
- package/dist-types/commands/UpdateVirtualServiceCommand.d.ts +1 -0
- package/package.json +33 -33
|
@@ -40,8 +40,6 @@ const defaultAppMeshHttpAuthSchemeProvider = (authParameters) => {
|
|
|
40
40
|
exports.defaultAppMeshHttpAuthSchemeProvider = defaultAppMeshHttpAuthSchemeProvider;
|
|
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
|
@@ -139,12 +139,11 @@ var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
|
139
139
|
|
|
140
140
|
// src/endpoint/EndpointParameters.ts
|
|
141
141
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
142
|
-
return {
|
|
143
|
-
...options,
|
|
142
|
+
return Object.assign(options, {
|
|
144
143
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
145
144
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
146
145
|
defaultSigningName: "appmesh"
|
|
147
|
-
};
|
|
146
|
+
});
|
|
148
147
|
}, "resolveClientEndpointParameters");
|
|
149
148
|
var commonParams = {
|
|
150
149
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -201,22 +200,21 @@ var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
|
201
200
|
}, "resolveHttpAuthRuntimeConfig");
|
|
202
201
|
|
|
203
202
|
// src/runtimeExtensions.ts
|
|
204
|
-
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
205
203
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
206
|
-
const extensionConfiguration =
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
204
|
+
const extensionConfiguration = Object.assign(
|
|
205
|
+
(0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig),
|
|
206
|
+
(0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig),
|
|
207
|
+
(0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig),
|
|
208
|
+
getHttpAuthExtensionConfiguration(runtimeConfig)
|
|
209
|
+
);
|
|
212
210
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
213
|
-
return
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
211
|
+
return Object.assign(
|
|
212
|
+
runtimeConfig,
|
|
213
|
+
(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
214
|
+
(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
215
|
+
(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
216
|
+
resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
217
|
+
);
|
|
220
218
|
}, "resolveRuntimeExtensions");
|
|
221
219
|
|
|
222
220
|
// src/AppMeshClient.ts
|
|
@@ -230,6 +228,8 @@ var AppMeshClient = class extends import_smithy_client.Client {
|
|
|
230
228
|
config;
|
|
231
229
|
constructor(...[configuration]) {
|
|
232
230
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
231
|
+
super(_config_0);
|
|
232
|
+
this.initConfig = _config_0;
|
|
233
233
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
234
234
|
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
235
235
|
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
@@ -238,7 +238,6 @@ var AppMeshClient = class extends import_smithy_client.Client {
|
|
|
238
238
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
239
239
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
240
240
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
241
|
-
super(_config_8);
|
|
242
241
|
this.config = _config_8;
|
|
243
242
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
244
243
|
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
package/dist-es/AppMeshClient.js
CHANGED
|
@@ -17,6 +17,8 @@ export class AppMeshClient 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 AppMeshClient 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 defaultAppMeshHttpAuthSchemeProvider = (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: "appmesh",
|
|
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
|
};
|
|
@@ -433,6 +433,7 @@ declare const CreateGatewayRouteCommand_base: {
|
|
|
433
433
|
* @throws {@link AppMeshServiceException}
|
|
434
434
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
435
435
|
*
|
|
436
|
+
*
|
|
436
437
|
* @public
|
|
437
438
|
*/
|
|
438
439
|
export declare class CreateGatewayRouteCommand extends CreateGatewayRouteCommand_base {
|
|
@@ -125,6 +125,7 @@ declare const CreateMeshCommand_base: {
|
|
|
125
125
|
* @throws {@link AppMeshServiceException}
|
|
126
126
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
127
127
|
*
|
|
128
|
+
*
|
|
128
129
|
* @public
|
|
129
130
|
*/
|
|
130
131
|
export declare class CreateMeshCommand extends CreateMeshCommand_base {
|
|
@@ -516,6 +516,7 @@ declare const CreateRouteCommand_base: {
|
|
|
516
516
|
* @throws {@link AppMeshServiceException}
|
|
517
517
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
518
518
|
*
|
|
519
|
+
*
|
|
519
520
|
* @public
|
|
520
521
|
*/
|
|
521
522
|
export declare class CreateRouteCommand extends CreateRouteCommand_base {
|
|
@@ -352,6 +352,7 @@ declare const CreateVirtualGatewayCommand_base: {
|
|
|
352
352
|
* @throws {@link AppMeshServiceException}
|
|
353
353
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
354
354
|
*
|
|
355
|
+
*
|
|
355
356
|
* @public
|
|
356
357
|
*/
|
|
357
358
|
export declare class CreateVirtualGatewayCommand extends CreateVirtualGatewayCommand_base {
|
|
@@ -580,6 +580,7 @@ declare const CreateVirtualNodeCommand_base: {
|
|
|
580
580
|
* @throws {@link AppMeshServiceException}
|
|
581
581
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
582
582
|
*
|
|
583
|
+
*
|
|
583
584
|
* @public
|
|
584
585
|
*/
|
|
585
586
|
export declare class CreateVirtualNodeCommand extends CreateVirtualNodeCommand_base {
|
|
@@ -133,6 +133,7 @@ declare const CreateVirtualRouterCommand_base: {
|
|
|
133
133
|
* @throws {@link AppMeshServiceException}
|
|
134
134
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
135
135
|
*
|
|
136
|
+
*
|
|
136
137
|
* @public
|
|
137
138
|
*/
|
|
138
139
|
export declare class CreateVirtualRouterCommand extends CreateVirtualRouterCommand_base {
|
|
@@ -133,6 +133,7 @@ declare const CreateVirtualServiceCommand_base: {
|
|
|
133
133
|
* @throws {@link AppMeshServiceException}
|
|
134
134
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
135
135
|
*
|
|
136
|
+
*
|
|
136
137
|
* @public
|
|
137
138
|
*/
|
|
138
139
|
export declare class CreateVirtualServiceCommand extends CreateVirtualServiceCommand_base {
|
|
@@ -258,6 +258,7 @@ declare const DeleteGatewayRouteCommand_base: {
|
|
|
258
258
|
* @throws {@link AppMeshServiceException}
|
|
259
259
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
260
260
|
*
|
|
261
|
+
*
|
|
261
262
|
* @public
|
|
262
263
|
*/
|
|
263
264
|
export declare class DeleteGatewayRouteCommand extends DeleteGatewayRouteCommand_base {
|
|
@@ -103,6 +103,7 @@ declare const DeleteMeshCommand_base: {
|
|
|
103
103
|
* @throws {@link AppMeshServiceException}
|
|
104
104
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
105
105
|
*
|
|
106
|
+
*
|
|
106
107
|
* @public
|
|
107
108
|
*/
|
|
108
109
|
export declare class DeleteMeshCommand extends DeleteMeshCommand_base {
|
|
@@ -300,6 +300,7 @@ declare const DeleteRouteCommand_base: {
|
|
|
300
300
|
* @throws {@link AppMeshServiceException}
|
|
301
301
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
302
302
|
*
|
|
303
|
+
*
|
|
303
304
|
* @public
|
|
304
305
|
*/
|
|
305
306
|
export declare class DeleteRouteCommand extends DeleteRouteCommand_base {
|
|
@@ -217,6 +217,7 @@ declare const DeleteVirtualGatewayCommand_base: {
|
|
|
217
217
|
* @throws {@link AppMeshServiceException}
|
|
218
218
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
219
219
|
*
|
|
220
|
+
*
|
|
220
221
|
* @public
|
|
221
222
|
*/
|
|
222
223
|
export declare class DeleteVirtualGatewayCommand extends DeleteVirtualGatewayCommand_base {
|
|
@@ -323,6 +323,7 @@ declare const DeleteVirtualNodeCommand_base: {
|
|
|
323
323
|
* @throws {@link AppMeshServiceException}
|
|
324
324
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
325
325
|
*
|
|
326
|
+
*
|
|
326
327
|
* @public
|
|
327
328
|
*/
|
|
328
329
|
export declare class DeleteVirtualNodeCommand extends DeleteVirtualNodeCommand_base {
|
|
@@ -108,6 +108,7 @@ declare const DeleteVirtualRouterCommand_base: {
|
|
|
108
108
|
* @throws {@link AppMeshServiceException}
|
|
109
109
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
110
110
|
*
|
|
111
|
+
*
|
|
111
112
|
* @public
|
|
112
113
|
*/
|
|
113
114
|
export declare class DeleteVirtualRouterCommand extends DeleteVirtualRouterCommand_base {
|
|
@@ -106,6 +106,7 @@ declare const DeleteVirtualServiceCommand_base: {
|
|
|
106
106
|
* @throws {@link AppMeshServiceException}
|
|
107
107
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
108
108
|
*
|
|
109
|
+
*
|
|
109
110
|
* @public
|
|
110
111
|
*/
|
|
111
112
|
export declare class DeleteVirtualServiceCommand extends DeleteVirtualServiceCommand_base {
|
|
@@ -254,6 +254,7 @@ declare const DescribeGatewayRouteCommand_base: {
|
|
|
254
254
|
* @throws {@link AppMeshServiceException}
|
|
255
255
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
256
256
|
*
|
|
257
|
+
*
|
|
257
258
|
* @public
|
|
258
259
|
*/
|
|
259
260
|
export declare class DescribeGatewayRouteCommand extends DescribeGatewayRouteCommand_base {
|
|
@@ -98,6 +98,7 @@ declare const DescribeMeshCommand_base: {
|
|
|
98
98
|
* @throws {@link AppMeshServiceException}
|
|
99
99
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
100
100
|
*
|
|
101
|
+
*
|
|
101
102
|
* @public
|
|
102
103
|
*/
|
|
103
104
|
export declare class DescribeMeshCommand extends DescribeMeshCommand_base {
|
|
@@ -296,6 +296,7 @@ declare const DescribeRouteCommand_base: {
|
|
|
296
296
|
* @throws {@link AppMeshServiceException}
|
|
297
297
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
298
298
|
*
|
|
299
|
+
*
|
|
299
300
|
* @public
|
|
300
301
|
*/
|
|
301
302
|
export declare class DescribeRouteCommand extends DescribeRouteCommand_base {
|
|
@@ -212,6 +212,7 @@ declare const DescribeVirtualGatewayCommand_base: {
|
|
|
212
212
|
* @throws {@link AppMeshServiceException}
|
|
213
213
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
214
214
|
*
|
|
215
|
+
*
|
|
215
216
|
* @public
|
|
216
217
|
*/
|
|
217
218
|
export declare class DescribeVirtualGatewayCommand extends DescribeVirtualGatewayCommand_base {
|
|
@@ -317,6 +317,7 @@ declare const DescribeVirtualNodeCommand_base: {
|
|
|
317
317
|
* @throws {@link AppMeshServiceException}
|
|
318
318
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
319
319
|
*
|
|
320
|
+
*
|
|
320
321
|
* @public
|
|
321
322
|
*/
|
|
322
323
|
export declare class DescribeVirtualNodeCommand extends DescribeVirtualNodeCommand_base {
|
|
@@ -102,6 +102,7 @@ declare const DescribeVirtualRouterCommand_base: {
|
|
|
102
102
|
* @throws {@link AppMeshServiceException}
|
|
103
103
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
104
104
|
*
|
|
105
|
+
*
|
|
105
106
|
* @public
|
|
106
107
|
*/
|
|
107
108
|
export declare class DescribeVirtualRouterCommand extends DescribeVirtualRouterCommand_base {
|
|
@@ -102,6 +102,7 @@ declare const DescribeVirtualServiceCommand_base: {
|
|
|
102
102
|
* @throws {@link AppMeshServiceException}
|
|
103
103
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
104
104
|
*
|
|
105
|
+
*
|
|
105
106
|
* @public
|
|
106
107
|
*/
|
|
107
108
|
export declare class DescribeVirtualServiceCommand extends DescribeVirtualServiceCommand_base {
|
|
@@ -93,6 +93,7 @@ declare const ListGatewayRoutesCommand_base: {
|
|
|
93
93
|
* @throws {@link AppMeshServiceException}
|
|
94
94
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
95
95
|
*
|
|
96
|
+
*
|
|
96
97
|
* @public
|
|
97
98
|
*/
|
|
98
99
|
export declare class ListGatewayRoutesCommand extends ListGatewayRoutesCommand_base {
|
|
@@ -87,6 +87,7 @@ declare const ListMeshesCommand_base: {
|
|
|
87
87
|
* @throws {@link AppMeshServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
89
89
|
*
|
|
90
|
+
*
|
|
90
91
|
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class ListMeshesCommand extends ListMeshesCommand_base {
|
|
@@ -92,6 +92,7 @@ declare const ListRoutesCommand_base: {
|
|
|
92
92
|
* @throws {@link AppMeshServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
94
94
|
*
|
|
95
|
+
*
|
|
95
96
|
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class ListRoutesCommand extends ListRoutesCommand_base {
|
|
@@ -83,6 +83,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
83
83
|
* @throws {@link AppMeshServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
85
85
|
*
|
|
86
|
+
*
|
|
86
87
|
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
@@ -90,6 +90,7 @@ declare const ListVirtualGatewaysCommand_base: {
|
|
|
90
90
|
* @throws {@link AppMeshServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
92
92
|
*
|
|
93
|
+
*
|
|
93
94
|
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class ListVirtualGatewaysCommand extends ListVirtualGatewaysCommand_base {
|
|
@@ -90,6 +90,7 @@ declare const ListVirtualNodesCommand_base: {
|
|
|
90
90
|
* @throws {@link AppMeshServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
92
92
|
*
|
|
93
|
+
*
|
|
93
94
|
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class ListVirtualNodesCommand extends ListVirtualNodesCommand_base {
|
|
@@ -90,6 +90,7 @@ declare const ListVirtualRoutersCommand_base: {
|
|
|
90
90
|
* @throws {@link AppMeshServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
92
92
|
*
|
|
93
|
+
*
|
|
93
94
|
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class ListVirtualRoutersCommand extends ListVirtualRoutersCommand_base {
|
|
@@ -90,6 +90,7 @@ declare const ListVirtualServicesCommand_base: {
|
|
|
90
90
|
* @throws {@link AppMeshServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
92
92
|
*
|
|
93
|
+
*
|
|
93
94
|
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class ListVirtualServicesCommand extends ListVirtualServicesCommand_base {
|
|
@@ -87,6 +87,7 @@ declare const TagResourceCommand_base: {
|
|
|
87
87
|
* @throws {@link AppMeshServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
89
89
|
*
|
|
90
|
+
*
|
|
90
91
|
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
@@ -76,6 +76,7 @@ declare const UntagResourceCommand_base: {
|
|
|
76
76
|
* @throws {@link AppMeshServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
78
78
|
*
|
|
79
|
+
*
|
|
79
80
|
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
@@ -424,6 +424,7 @@ declare const UpdateGatewayRouteCommand_base: {
|
|
|
424
424
|
* @throws {@link AppMeshServiceException}
|
|
425
425
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
426
426
|
*
|
|
427
|
+
*
|
|
427
428
|
* @public
|
|
428
429
|
*/
|
|
429
430
|
export declare class UpdateGatewayRouteCommand extends UpdateGatewayRouteCommand_base {
|
|
@@ -110,6 +110,7 @@ declare const UpdateMeshCommand_base: {
|
|
|
110
110
|
* @throws {@link AppMeshServiceException}
|
|
111
111
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
112
112
|
*
|
|
113
|
+
*
|
|
113
114
|
* @public
|
|
114
115
|
*/
|
|
115
116
|
export declare class UpdateMeshCommand extends UpdateMeshCommand_base {
|
|
@@ -507,6 +507,7 @@ declare const UpdateRouteCommand_base: {
|
|
|
507
507
|
* @throws {@link AppMeshServiceException}
|
|
508
508
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
509
509
|
*
|
|
510
|
+
*
|
|
510
511
|
* @public
|
|
511
512
|
*/
|
|
512
513
|
export declare class UpdateRouteCommand extends UpdateRouteCommand_base {
|
|
@@ -341,6 +341,7 @@ declare const UpdateVirtualGatewayCommand_base: {
|
|
|
341
341
|
* @throws {@link AppMeshServiceException}
|
|
342
342
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
343
343
|
*
|
|
344
|
+
*
|
|
344
345
|
* @public
|
|
345
346
|
*/
|
|
346
347
|
export declare class UpdateVirtualGatewayCommand extends UpdateVirtualGatewayCommand_base {
|
|
@@ -551,6 +551,7 @@ declare const UpdateVirtualNodeCommand_base: {
|
|
|
551
551
|
* @throws {@link AppMeshServiceException}
|
|
552
552
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
553
553
|
*
|
|
554
|
+
*
|
|
554
555
|
* @public
|
|
555
556
|
*/
|
|
556
557
|
export declare class UpdateVirtualNodeCommand extends UpdateVirtualNodeCommand_base {
|
|
@@ -121,6 +121,7 @@ declare const UpdateVirtualRouterCommand_base: {
|
|
|
121
121
|
* @throws {@link AppMeshServiceException}
|
|
122
122
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
123
123
|
*
|
|
124
|
+
*
|
|
124
125
|
* @public
|
|
125
126
|
*/
|
|
126
127
|
export declare class UpdateVirtualRouterCommand extends UpdateVirtualRouterCommand_base {
|
|
@@ -121,6 +121,7 @@ declare const UpdateVirtualServiceCommand_base: {
|
|
|
121
121
|
* @throws {@link AppMeshServiceException}
|
|
122
122
|
* <p>Base exception class for all service exceptions from AppMesh service.</p>
|
|
123
123
|
*
|
|
124
|
+
*
|
|
124
125
|
* @public
|
|
125
126
|
*/
|
|
126
127
|
export declare class UpdateVirtualServiceCommand extends UpdateVirtualServiceCommand_base {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-app-mesh",
|
|
3
3
|
"description": "AWS SDK for JavaScript App Mesh 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-app-mesh",
|
|
@@ -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
|
"@types/uuid": "^9.0.1",
|
|
60
60
|
"tslib": "^2.6.2",
|