@aws-sdk/client-app-mesh 3.52.0 → 3.54.1

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.
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { CreateGatewayRouteCommandInput, CreateGatewayRouteCommandOutput } from "./commands/CreateGatewayRouteCommand";
10
10
  import { CreateMeshCommandInput, CreateMeshCommandOutput } from "./commands/CreateMeshCommand";
11
11
  import { CreateRouteCommandInput, CreateRouteCommandOutput } from "./commands/CreateRouteCommand";
@@ -66,7 +66,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
66
66
  * A function that can calculate the length of a request body.
67
67
  * @internal
68
68
  */
69
- bodyLengthChecker?: (body: any) => number | undefined;
69
+ bodyLengthChecker?: __BodyLengthCalculator;
70
70
  /**
71
71
  * A function that converts a stream into an array of bytes.
72
72
  * @internal
@@ -3,3 +3,4 @@ export * from "./AppMeshClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { AppMeshServiceException } from "./models/AppMeshServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from AppMesh service.
4
+ */
5
+ export declare class AppMeshServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { AppMeshServiceException as __BaseException } from "./AppMeshServiceException";
2
3
  /**
3
4
  * <p>An object that represents an access log file.</p>
4
5
  */
@@ -51,28 +52,37 @@ export declare namespace AccessLog {
51
52
  /**
52
53
  * <p>The request syntax was malformed. Check your request syntax and try again.</p>
53
54
  */
54
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
55
- name: "BadRequestException";
56
- $fault: "client";
57
- message?: string;
55
+ export declare class BadRequestException extends __BaseException {
56
+ readonly name: "BadRequestException";
57
+ readonly $fault: "client";
58
+ /**
59
+ * @internal
60
+ */
61
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
58
62
  }
59
63
  /**
60
64
  * <p>You don't have permissions to perform this action.</p>
61
65
  */
62
- export interface ForbiddenException extends __SmithyException, $MetadataBearer {
63
- name: "ForbiddenException";
64
- $fault: "client";
65
- message?: string;
66
+ export declare class ForbiddenException extends __BaseException {
67
+ readonly name: "ForbiddenException";
68
+ readonly $fault: "client";
69
+ /**
70
+ * @internal
71
+ */
72
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
66
73
  }
67
74
  /**
68
75
  * <p>The request processing has failed because of an unknown error, exception, or
69
76
  * failure.</p>
70
77
  */
71
- export interface InternalServerErrorException extends __SmithyException, $MetadataBearer {
72
- name: "InternalServerErrorException";
73
- $fault: "server";
78
+ export declare class InternalServerErrorException extends __BaseException {
79
+ readonly name: "InternalServerErrorException";
80
+ readonly $fault: "server";
74
81
  $retryable: {};
75
- message?: string;
82
+ /**
83
+ * @internal
84
+ */
85
+ constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
76
86
  }
77
87
  /**
78
88
  *
@@ -156,41 +166,53 @@ export declare namespace ListTagsForResourceOutput {
156
166
  /**
157
167
  * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
158
168
  */
159
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
160
- name: "NotFoundException";
161
- $fault: "client";
162
- message?: string;
169
+ export declare class NotFoundException extends __BaseException {
170
+ readonly name: "NotFoundException";
171
+ readonly $fault: "client";
172
+ /**
173
+ * @internal
174
+ */
175
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
163
176
  }
164
177
  /**
165
178
  * <p>The request has failed due to a temporary failure of the service.</p>
166
179
  */
167
- export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
168
- name: "ServiceUnavailableException";
169
- $fault: "server";
180
+ export declare class ServiceUnavailableException extends __BaseException {
181
+ readonly name: "ServiceUnavailableException";
182
+ readonly $fault: "server";
170
183
  $retryable: {};
171
- message?: string;
184
+ /**
185
+ * @internal
186
+ */
187
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
172
188
  }
173
189
  /**
174
190
  * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for your
175
191
  * account. For best results, use an increasing or variable sleep interval between
176
192
  * requests.</p>
177
193
  */
178
- export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
179
- name: "TooManyRequestsException";
180
- $fault: "client";
194
+ export declare class TooManyRequestsException extends __BaseException {
195
+ readonly name: "TooManyRequestsException";
196
+ readonly $fault: "client";
181
197
  $retryable: {
182
- throttling: true;
198
+ throttling: boolean;
183
199
  };
184
- message?: string;
200
+ /**
201
+ * @internal
202
+ */
203
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
185
204
  }
186
205
  /**
187
206
  * <p>The request contains a client token that was used for a previous update resource call
188
207
  * with different specifications. Try the request again with a new client token.</p>
189
208
  */
190
- export interface ConflictException extends __SmithyException, $MetadataBearer {
191
- name: "ConflictException";
192
- $fault: "client";
193
- message?: string;
209
+ export declare class ConflictException extends __BaseException {
210
+ readonly name: "ConflictException";
211
+ readonly $fault: "client";
212
+ /**
213
+ * @internal
214
+ */
215
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
194
216
  }
195
217
  export declare enum EgressFilterType {
196
218
  ALLOW_ALL = "ALLOW_ALL",
@@ -368,10 +390,13 @@ export declare namespace CreateMeshOutput {
368
390
  * <p>You have exceeded a service limit for your account. For more information, see <a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html">Service
369
391
  * Limits</a> in the <i>AWS App Mesh User Guide</i>.</p>
370
392
  */
371
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
372
- name: "LimitExceededException";
373
- $fault: "client";
374
- message?: string;
393
+ export declare class LimitExceededException extends __BaseException {
394
+ readonly name: "LimitExceededException";
395
+ readonly $fault: "client";
396
+ /**
397
+ * @internal
398
+ */
399
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
375
400
  }
376
401
  /**
377
402
  *
@@ -407,10 +432,13 @@ export declare namespace DeleteMeshOutput {
407
432
  * <p>You can't delete the specified resource because it's in use or required by another
408
433
  * resource.</p>
409
434
  */
410
- export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
411
- name: "ResourceInUseException";
412
- $fault: "client";
413
- message?: string;
435
+ export declare class ResourceInUseException extends __BaseException {
436
+ readonly name: "ResourceInUseException";
437
+ readonly $fault: "client";
438
+ /**
439
+ * @internal
440
+ */
441
+ constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
414
442
  }
415
443
  /**
416
444
  *
@@ -5666,10 +5694,13 @@ export declare namespace TagResourceOutput {
5666
5694
  * limit is 50 user tags per resource. You must reduce the number of tags in the request. None
5667
5695
  * of the tags in this request were applied.</p>
5668
5696
  */
5669
- export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
5670
- name: "TooManyTagsException";
5671
- $fault: "client";
5672
- message?: string;
5697
+ export declare class TooManyTagsException extends __BaseException {
5698
+ readonly name: "TooManyTagsException";
5699
+ readonly $fault: "client";
5700
+ /**
5701
+ * @internal
5702
+ */
5703
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
5673
5704
  }
5674
5705
  /**
5675
5706
  *
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: AppMeshClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: AppMeshClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: AppMeshClientConfig) => {
8
8
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
9
  apiVersion: string;
10
10
  urlParser: import("@aws-sdk/types").UrlParser;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  streamCollector: import("@aws-sdk/types").StreamCollector;
13
13
  base64Decoder: import("@aws-sdk/types").Decoder;
14
14
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { CreateGatewayRouteCommandInput, CreateGatewayRouteCommandOutput } from "./commands/CreateGatewayRouteCommand";
10
10
  import { CreateMeshCommandInput, CreateMeshCommandOutput } from "./commands/CreateMeshCommand";
11
11
  import { CreateRouteCommandInput, CreateRouteCommandOutput } from "./commands/CreateRouteCommand";
@@ -54,7 +54,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
54
54
 
55
55
  urlParser?: __UrlParser;
56
56
 
57
- bodyLengthChecker?: (body: any) => number | undefined;
57
+ bodyLengthChecker?: __BodyLengthCalculator;
58
58
 
59
59
  streamCollector?: __StreamCollector;
60
60
 
@@ -3,3 +3,4 @@ export * from "./AppMeshClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { AppMeshServiceException } from "./models/AppMeshServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class AppMeshServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { AppMeshServiceException as __BaseException } from "./AppMeshServiceException";
2
3
 
3
4
  export interface FileAccessLog {
4
5
 
@@ -32,23 +33,26 @@ export declare namespace AccessLog {
32
33
  const filterSensitiveLog: (obj: AccessLog) => any;
33
34
  }
34
35
 
35
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
36
- name: "BadRequestException";
37
- $fault: "client";
38
- message?: string;
36
+ export declare class BadRequestException extends __BaseException {
37
+ readonly name: "BadRequestException";
38
+ readonly $fault: "client";
39
+
40
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
39
41
  }
40
42
 
41
- export interface ForbiddenException extends __SmithyException, $MetadataBearer {
42
- name: "ForbiddenException";
43
- $fault: "client";
44
- message?: string;
43
+ export declare class ForbiddenException extends __BaseException {
44
+ readonly name: "ForbiddenException";
45
+ readonly $fault: "client";
46
+
47
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
45
48
  }
46
49
 
47
- export interface InternalServerErrorException extends __SmithyException, $MetadataBearer {
48
- name: "InternalServerErrorException";
49
- $fault: "server";
50
+ export declare class InternalServerErrorException extends __BaseException {
51
+ readonly name: "InternalServerErrorException";
52
+ readonly $fault: "server";
50
53
  $retryable: {};
51
- message?: string;
54
+
55
+ constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
52
56
  }
53
57
 
54
58
  export interface ListTagsForResourceInput {
@@ -86,32 +90,36 @@ export declare namespace ListTagsForResourceOutput {
86
90
  const filterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
87
91
  }
88
92
 
89
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
90
- name: "NotFoundException";
91
- $fault: "client";
92
- message?: string;
93
+ export declare class NotFoundException extends __BaseException {
94
+ readonly name: "NotFoundException";
95
+ readonly $fault: "client";
96
+
97
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
93
98
  }
94
99
 
95
- export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
96
- name: "ServiceUnavailableException";
97
- $fault: "server";
100
+ export declare class ServiceUnavailableException extends __BaseException {
101
+ readonly name: "ServiceUnavailableException";
102
+ readonly $fault: "server";
98
103
  $retryable: {};
99
- message?: string;
104
+
105
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
100
106
  }
101
107
 
102
- export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
103
- name: "TooManyRequestsException";
104
- $fault: "client";
108
+ export declare class TooManyRequestsException extends __BaseException {
109
+ readonly name: "TooManyRequestsException";
110
+ readonly $fault: "client";
105
111
  $retryable: {
106
- throttling: true;
112
+ throttling: boolean;
107
113
  };
108
- message?: string;
114
+
115
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
109
116
  }
110
117
 
111
- export interface ConflictException extends __SmithyException, $MetadataBearer {
112
- name: "ConflictException";
113
- $fault: "client";
114
- message?: string;
118
+ export declare class ConflictException extends __BaseException {
119
+ readonly name: "ConflictException";
120
+ readonly $fault: "client";
121
+
122
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
115
123
  }
116
124
  export declare enum EgressFilterType {
117
125
  ALLOW_ALL = "ALLOW_ALL",
@@ -210,10 +218,11 @@ export declare namespace CreateMeshOutput {
210
218
  const filterSensitiveLog: (obj: CreateMeshOutput) => any;
211
219
  }
212
220
 
213
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
214
- name: "LimitExceededException";
215
- $fault: "client";
216
- message?: string;
221
+ export declare class LimitExceededException extends __BaseException {
222
+ readonly name: "LimitExceededException";
223
+ readonly $fault: "client";
224
+
225
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
217
226
  }
218
227
 
219
228
  export interface DeleteMeshInput {
@@ -234,10 +243,11 @@ export declare namespace DeleteMeshOutput {
234
243
  const filterSensitiveLog: (obj: DeleteMeshOutput) => any;
235
244
  }
236
245
 
237
- export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
238
- name: "ResourceInUseException";
239
- $fault: "client";
240
- message?: string;
246
+ export declare class ResourceInUseException extends __BaseException {
247
+ readonly name: "ResourceInUseException";
248
+ readonly $fault: "client";
249
+
250
+ constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
241
251
  }
242
252
 
243
253
  export interface DescribeMeshInput {
@@ -3316,10 +3326,11 @@ export declare namespace TagResourceOutput {
3316
3326
  const filterSensitiveLog: (obj: TagResourceOutput) => any;
3317
3327
  }
3318
3328
 
3319
- export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
3320
- name: "TooManyTagsException";
3321
- $fault: "client";
3322
- message?: string;
3329
+ export declare class TooManyTagsException extends __BaseException {
3330
+ readonly name: "TooManyTagsException";
3331
+ readonly $fault: "client";
3332
+
3333
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
3323
3334
  }
3324
3335
 
3325
3336
  export interface UntagResourceInput {
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AppMeshClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AppMeshClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AppMeshClientConfig) => {
6
6
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
7
  apiVersion: string;
8
8
  urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  streamCollector: import("@aws-sdk/types").StreamCollector;
11
11
  base64Decoder: import("@aws-sdk/types").Decoder;
12
12
  base64Encoder: import("@aws-sdk/types").Encoder;
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.52.0",
4
+ "version": "3.54.1",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,34 +18,34 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.52.0",
22
- "@aws-sdk/config-resolver": "3.52.0",
23
- "@aws-sdk/credential-provider-node": "3.52.0",
24
- "@aws-sdk/fetch-http-handler": "3.52.0",
25
- "@aws-sdk/hash-node": "3.52.0",
26
- "@aws-sdk/invalid-dependency": "3.52.0",
27
- "@aws-sdk/middleware-content-length": "3.52.0",
28
- "@aws-sdk/middleware-host-header": "3.52.0",
29
- "@aws-sdk/middleware-logger": "3.52.0",
30
- "@aws-sdk/middleware-retry": "3.52.0",
31
- "@aws-sdk/middleware-serde": "3.52.0",
32
- "@aws-sdk/middleware-signing": "3.52.0",
33
- "@aws-sdk/middleware-stack": "3.52.0",
34
- "@aws-sdk/middleware-user-agent": "3.52.0",
35
- "@aws-sdk/node-config-provider": "3.52.0",
36
- "@aws-sdk/node-http-handler": "3.52.0",
37
- "@aws-sdk/protocol-http": "3.52.0",
38
- "@aws-sdk/smithy-client": "3.52.0",
39
- "@aws-sdk/types": "3.52.0",
40
- "@aws-sdk/url-parser": "3.52.0",
21
+ "@aws-sdk/client-sts": "3.54.1",
22
+ "@aws-sdk/config-resolver": "3.54.1",
23
+ "@aws-sdk/credential-provider-node": "3.54.1",
24
+ "@aws-sdk/fetch-http-handler": "3.54.1",
25
+ "@aws-sdk/hash-node": "3.54.1",
26
+ "@aws-sdk/invalid-dependency": "3.54.1",
27
+ "@aws-sdk/middleware-content-length": "3.54.1",
28
+ "@aws-sdk/middleware-host-header": "3.54.1",
29
+ "@aws-sdk/middleware-logger": "3.54.1",
30
+ "@aws-sdk/middleware-retry": "3.54.1",
31
+ "@aws-sdk/middleware-serde": "3.54.1",
32
+ "@aws-sdk/middleware-signing": "3.54.1",
33
+ "@aws-sdk/middleware-stack": "3.54.1",
34
+ "@aws-sdk/middleware-user-agent": "3.54.1",
35
+ "@aws-sdk/node-config-provider": "3.54.1",
36
+ "@aws-sdk/node-http-handler": "3.54.1",
37
+ "@aws-sdk/protocol-http": "3.54.1",
38
+ "@aws-sdk/smithy-client": "3.54.1",
39
+ "@aws-sdk/types": "3.54.1",
40
+ "@aws-sdk/url-parser": "3.54.1",
41
41
  "@aws-sdk/util-base64-browser": "3.52.0",
42
42
  "@aws-sdk/util-base64-node": "3.52.0",
43
- "@aws-sdk/util-body-length-browser": "3.52.0",
44
- "@aws-sdk/util-body-length-node": "3.52.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.52.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.52.0",
47
- "@aws-sdk/util-user-agent-browser": "3.52.0",
48
- "@aws-sdk/util-user-agent-node": "3.52.0",
43
+ "@aws-sdk/util-body-length-browser": "3.54.0",
44
+ "@aws-sdk/util-body-length-node": "3.54.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.54.1",
46
+ "@aws-sdk/util-defaults-mode-node": "3.54.1",
47
+ "@aws-sdk/util-user-agent-browser": "3.54.1",
48
+ "@aws-sdk/util-user-agent-node": "3.54.1",
49
49
  "@aws-sdk/util-utf8-browser": "3.52.0",
50
50
  "@aws-sdk/util-utf8-node": "3.52.0",
51
51
  "tslib": "^2.3.0",