@aws-sdk/client-app-mesh 3.51.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AppMeshServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +141 -5
- package/dist-cjs/protocols/Aws_restJson1.js +529 -2068
- package/dist-es/index.js +1 -0
- package/dist-es/models/AppMeshServiceException.js +12 -0
- package/dist-es/models/models_0.js +127 -1
- package/dist-es/protocols/Aws_restJson1.js +1078 -2232
- package/dist-types/AppMeshClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AppMeshServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +73 -42
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/AppMeshClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AppMeshServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +53 -42
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
|
@@ -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?:
|
|
69
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
70
70
|
/**
|
|
71
71
|
* A function that converts a stream into an array of bytes.
|
|
72
72
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -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 {
|
|
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
|
|
55
|
-
name: "BadRequestException";
|
|
56
|
-
$fault: "client";
|
|
57
|
-
|
|
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
|
|
63
|
-
name: "ForbiddenException";
|
|
64
|
-
$fault: "client";
|
|
65
|
-
|
|
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
|
|
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
|
-
|
|
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
|
|
160
|
-
name: "NotFoundException";
|
|
161
|
-
$fault: "client";
|
|
162
|
-
|
|
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
|
|
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
|
-
|
|
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
|
|
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:
|
|
198
|
+
throttling: boolean;
|
|
183
199
|
};
|
|
184
|
-
|
|
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
|
|
191
|
-
name: "ConflictException";
|
|
192
|
-
$fault: "client";
|
|
193
|
-
|
|
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
|
|
372
|
-
name: "LimitExceededException";
|
|
373
|
-
$fault: "client";
|
|
374
|
-
|
|
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
|
|
411
|
-
name: "ResourceInUseException";
|
|
412
|
-
$fault: "client";
|
|
413
|
-
|
|
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
|
|
5670
|
-
name: "TooManyTagsException";
|
|
5671
|
-
$fault: "client";
|
|
5672
|
-
|
|
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: (
|
|
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: (
|
|
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: (
|
|
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?:
|
|
57
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
58
58
|
|
|
59
59
|
streamCollector?: __StreamCollector;
|
|
60
60
|
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
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
|
|
36
|
-
name: "BadRequestException";
|
|
37
|
-
$fault: "client";
|
|
38
|
-
|
|
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
|
|
42
|
-
name: "ForbiddenException";
|
|
43
|
-
$fault: "client";
|
|
44
|
-
|
|
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
|
|
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
|
-
|
|
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
|
|
90
|
-
name: "NotFoundException";
|
|
91
|
-
$fault: "client";
|
|
92
|
-
|
|
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
|
|
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
|
-
|
|
104
|
+
|
|
105
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
100
106
|
}
|
|
101
107
|
|
|
102
|
-
export
|
|
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:
|
|
112
|
+
throttling: boolean;
|
|
107
113
|
};
|
|
108
|
-
|
|
114
|
+
|
|
115
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
109
116
|
}
|
|
110
117
|
|
|
111
|
-
export
|
|
112
|
-
name: "ConflictException";
|
|
113
|
-
$fault: "client";
|
|
114
|
-
|
|
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
|
|
214
|
-
name: "LimitExceededException";
|
|
215
|
-
$fault: "client";
|
|
216
|
-
|
|
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
|
|
238
|
-
name: "ResourceInUseException";
|
|
239
|
-
$fault: "client";
|
|
240
|
-
|
|
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
|
|
3320
|
-
name: "TooManyTagsException";
|
|
3321
|
-
$fault: "client";
|
|
3322
|
-
|
|
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: (
|
|
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: (
|
|
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: (
|
|
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.
|
|
4
|
+
"version": "3.54.0",
|
|
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",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,41 +18,41 @@
|
|
|
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.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.0",
|
|
39
|
+
"@aws-sdk/types": "3.54.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-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.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0",
|
|
52
52
|
"uuid": "^8.3.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
56
56
|
"@tsconfig/recommended": "1.0.1",
|
|
57
57
|
"@types/node": "^12.7.5",
|
|
58
58
|
"@types/uuid": "^8.3.0",
|