@aws-sdk/client-networkmanager 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.
- package/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/NetworkManagerServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +132 -5
- package/dist-cjs/protocols/Aws_restJson1.js +851 -3471
- package/dist-es/index.js +1 -0
- package/dist-es/models/NetworkManagerServiceException.js +12 -0
- package/dist-es/models/models_0.js +121 -2
- package/dist-es/protocols/Aws_restJson1.js +1879 -3784
- package/dist-types/NetworkManagerClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/NetworkManagerServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +58 -26
- 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/NetworkManagerClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/NetworkManagerServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -26
- 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 +27 -27
|
@@ -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 { AcceptAttachmentCommandInput, AcceptAttachmentCommandOutput } from "./commands/AcceptAttachmentCommand";
|
|
10
10
|
import { AssociateConnectPeerCommandInput, AssociateConnectPeerCommandOutput } from "./commands/AssociateConnectPeerCommand";
|
|
11
11
|
import { AssociateCustomerGatewayCommandInput, AssociateCustomerGatewayCommandOutput } from "./commands/AssociateCustomerGatewayCommand";
|
|
@@ -104,7 +104,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
104
104
|
* A function that can calculate the length of a request body.
|
|
105
105
|
* @internal
|
|
106
106
|
*/
|
|
107
|
-
bodyLengthChecker?:
|
|
107
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
108
108
|
/**
|
|
109
109
|
* A function that converts a stream into an array of bytes.
|
|
110
110
|
* @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 NetworkManager service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class NetworkManagerServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType, LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { NetworkManagerServiceException as __BaseException } from "./NetworkManagerServiceException";
|
|
3
3
|
export interface AcceptAttachmentRequest {
|
|
4
4
|
/**
|
|
5
5
|
* <p>The ID of the attachment. </p>
|
|
@@ -154,18 +154,22 @@ export declare namespace AcceptAttachmentResponse {
|
|
|
154
154
|
/**
|
|
155
155
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
156
156
|
*/
|
|
157
|
-
export
|
|
158
|
-
name: "AccessDeniedException";
|
|
159
|
-
$fault: "client";
|
|
157
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
158
|
+
readonly name: "AccessDeniedException";
|
|
159
|
+
readonly $fault: "client";
|
|
160
160
|
Message: string | undefined;
|
|
161
|
+
/**
|
|
162
|
+
* @internal
|
|
163
|
+
*/
|
|
164
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
161
165
|
}
|
|
162
166
|
/**
|
|
163
167
|
* <p>There was a conflict processing the request. Updating or deleting the resource can
|
|
164
168
|
* cause an inconsistent state.</p>
|
|
165
169
|
*/
|
|
166
|
-
export
|
|
167
|
-
name: "ConflictException";
|
|
168
|
-
$fault: "client";
|
|
170
|
+
export declare class ConflictException extends __BaseException {
|
|
171
|
+
readonly name: "ConflictException";
|
|
172
|
+
readonly $fault: "client";
|
|
169
173
|
Message: string | undefined;
|
|
170
174
|
/**
|
|
171
175
|
* <p>The ID of the resource.</p>
|
|
@@ -175,25 +179,33 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
175
179
|
* <p>The resource type.</p>
|
|
176
180
|
*/
|
|
177
181
|
ResourceType: string | undefined;
|
|
182
|
+
/**
|
|
183
|
+
* @internal
|
|
184
|
+
*/
|
|
185
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
178
186
|
}
|
|
179
187
|
/**
|
|
180
188
|
* <p>The request has failed due to an internal error.</p>
|
|
181
189
|
*/
|
|
182
|
-
export
|
|
183
|
-
name: "InternalServerException";
|
|
184
|
-
$fault: "server";
|
|
190
|
+
export declare class InternalServerException extends __BaseException {
|
|
191
|
+
readonly name: "InternalServerException";
|
|
192
|
+
readonly $fault: "server";
|
|
185
193
|
Message: string | undefined;
|
|
186
194
|
/**
|
|
187
195
|
* <p>Indicates when to retry the request.</p>
|
|
188
196
|
*/
|
|
189
197
|
RetryAfterSeconds?: number;
|
|
198
|
+
/**
|
|
199
|
+
* @internal
|
|
200
|
+
*/
|
|
201
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
190
202
|
}
|
|
191
203
|
/**
|
|
192
204
|
* <p>The specified resource could not be found.</p>
|
|
193
205
|
*/
|
|
194
|
-
export
|
|
195
|
-
name: "ResourceNotFoundException";
|
|
196
|
-
$fault: "client";
|
|
206
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
207
|
+
readonly name: "ResourceNotFoundException";
|
|
208
|
+
readonly $fault: "client";
|
|
197
209
|
Message: string | undefined;
|
|
198
210
|
/**
|
|
199
211
|
* <p>The ID of the resource.</p>
|
|
@@ -209,18 +221,26 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
209
221
|
Context?: {
|
|
210
222
|
[key: string]: string;
|
|
211
223
|
};
|
|
224
|
+
/**
|
|
225
|
+
* @internal
|
|
226
|
+
*/
|
|
227
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
212
228
|
}
|
|
213
229
|
/**
|
|
214
230
|
* <p>The request was denied due to request throttling.</p>
|
|
215
231
|
*/
|
|
216
|
-
export
|
|
217
|
-
name: "ThrottlingException";
|
|
218
|
-
$fault: "client";
|
|
232
|
+
export declare class ThrottlingException extends __BaseException {
|
|
233
|
+
readonly name: "ThrottlingException";
|
|
234
|
+
readonly $fault: "client";
|
|
219
235
|
Message: string | undefined;
|
|
220
236
|
/**
|
|
221
237
|
* <p>Indicates when to retry the request.</p>
|
|
222
238
|
*/
|
|
223
239
|
RetryAfterSeconds?: number;
|
|
240
|
+
/**
|
|
241
|
+
* @internal
|
|
242
|
+
*/
|
|
243
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
224
244
|
}
|
|
225
245
|
/**
|
|
226
246
|
* <p>Describes a validation exception for a field.</p>
|
|
@@ -250,9 +270,9 @@ export declare enum ValidationExceptionReason {
|
|
|
250
270
|
/**
|
|
251
271
|
* <p>The input fails to satisfy the constraints.</p>
|
|
252
272
|
*/
|
|
253
|
-
export
|
|
254
|
-
name: "ValidationException";
|
|
255
|
-
$fault: "client";
|
|
273
|
+
export declare class ValidationException extends __BaseException {
|
|
274
|
+
readonly name: "ValidationException";
|
|
275
|
+
readonly $fault: "client";
|
|
256
276
|
Message: string | undefined;
|
|
257
277
|
/**
|
|
258
278
|
* <p>The reason for the error.</p>
|
|
@@ -262,6 +282,10 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
|
|
|
262
282
|
* <p>The fields that caused the error, if applicable.</p>
|
|
263
283
|
*/
|
|
264
284
|
Fields?: ValidationExceptionField[];
|
|
285
|
+
/**
|
|
286
|
+
* @internal
|
|
287
|
+
*/
|
|
288
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
265
289
|
}
|
|
266
290
|
export interface AssociateConnectPeerRequest {
|
|
267
291
|
/**
|
|
@@ -339,9 +363,9 @@ export declare namespace AssociateConnectPeerResponse {
|
|
|
339
363
|
/**
|
|
340
364
|
* <p>A service limit was exceeded.</p>
|
|
341
365
|
*/
|
|
342
|
-
export
|
|
343
|
-
name: "ServiceQuotaExceededException";
|
|
344
|
-
$fault: "client";
|
|
366
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
367
|
+
readonly name: "ServiceQuotaExceededException";
|
|
368
|
+
readonly $fault: "client";
|
|
345
369
|
/**
|
|
346
370
|
* <p>The error message.</p>
|
|
347
371
|
*/
|
|
@@ -362,6 +386,10 @@ export interface ServiceQuotaExceededException extends __SmithyException, $Metad
|
|
|
362
386
|
* <p>The service code.</p>
|
|
363
387
|
*/
|
|
364
388
|
ServiceCode: string | undefined;
|
|
389
|
+
/**
|
|
390
|
+
* @internal
|
|
391
|
+
*/
|
|
392
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
365
393
|
}
|
|
366
394
|
export interface AssociateCustomerGatewayRequest {
|
|
367
395
|
/**
|
|
@@ -1169,14 +1197,18 @@ export declare namespace CoreNetworkPolicy {
|
|
|
1169
1197
|
/**
|
|
1170
1198
|
* <p>Describes a core network policy exception.</p>
|
|
1171
1199
|
*/
|
|
1172
|
-
export
|
|
1173
|
-
name: "CoreNetworkPolicyException";
|
|
1174
|
-
$fault: "client";
|
|
1200
|
+
export declare class CoreNetworkPolicyException extends __BaseException {
|
|
1201
|
+
readonly name: "CoreNetworkPolicyException";
|
|
1202
|
+
readonly $fault: "client";
|
|
1175
1203
|
Message: string | undefined;
|
|
1176
1204
|
/**
|
|
1177
1205
|
* <p>Describes a core network policy exception.</p>
|
|
1178
1206
|
*/
|
|
1179
1207
|
Errors?: CoreNetworkPolicyError[];
|
|
1208
|
+
/**
|
|
1209
|
+
* @internal
|
|
1210
|
+
*/
|
|
1211
|
+
constructor(opts: __ExceptionOptionType<CoreNetworkPolicyException, __BaseException>);
|
|
1180
1212
|
}
|
|
1181
1213
|
/**
|
|
1182
1214
|
* <p>Describes a core network policy version.</p>
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: NetworkManagerClientConfig) => {
|
|
|
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: NetworkManagerClientConfig) => {
|
|
|
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: NetworkManagerClientConfig) => {
|
|
|
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 { AcceptAttachmentCommandInput, AcceptAttachmentCommandOutput } from "./commands/AcceptAttachmentCommand";
|
|
10
10
|
import { AssociateConnectPeerCommandInput, AssociateConnectPeerCommandOutput } from "./commands/AssociateConnectPeerCommand";
|
|
11
11
|
import { AssociateCustomerGatewayCommandInput, AssociateCustomerGatewayCommandOutput } from "./commands/AssociateCustomerGatewayCommand";
|
|
@@ -92,7 +92,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
92
92
|
|
|
93
93
|
urlParser?: __UrlParser;
|
|
94
94
|
|
|
95
|
-
bodyLengthChecker?:
|
|
95
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
96
96
|
|
|
97
97
|
streamCollector?: __StreamCollector;
|
|
98
98
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class NetworkManagerServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType, LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { NetworkManagerServiceException as __BaseException } from "./NetworkManagerServiceException";
|
|
3
3
|
export interface AcceptAttachmentRequest {
|
|
4
4
|
|
|
5
5
|
AttachmentId: string | undefined;
|
|
@@ -92,33 +92,39 @@ export declare namespace AcceptAttachmentResponse {
|
|
|
92
92
|
const filterSensitiveLog: (obj: AcceptAttachmentResponse) => any;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
export
|
|
96
|
-
name: "AccessDeniedException";
|
|
97
|
-
$fault: "client";
|
|
95
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
96
|
+
readonly name: "AccessDeniedException";
|
|
97
|
+
readonly $fault: "client";
|
|
98
98
|
Message: string | undefined;
|
|
99
|
+
|
|
100
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
99
101
|
}
|
|
100
102
|
|
|
101
|
-
export
|
|
102
|
-
name: "ConflictException";
|
|
103
|
-
$fault: "client";
|
|
103
|
+
export declare class ConflictException extends __BaseException {
|
|
104
|
+
readonly name: "ConflictException";
|
|
105
|
+
readonly $fault: "client";
|
|
104
106
|
Message: string | undefined;
|
|
105
107
|
|
|
106
108
|
ResourceId: string | undefined;
|
|
107
109
|
|
|
108
110
|
ResourceType: string | undefined;
|
|
111
|
+
|
|
112
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
109
113
|
}
|
|
110
114
|
|
|
111
|
-
export
|
|
112
|
-
name: "InternalServerException";
|
|
113
|
-
$fault: "server";
|
|
115
|
+
export declare class InternalServerException extends __BaseException {
|
|
116
|
+
readonly name: "InternalServerException";
|
|
117
|
+
readonly $fault: "server";
|
|
114
118
|
Message: string | undefined;
|
|
115
119
|
|
|
116
120
|
RetryAfterSeconds?: number;
|
|
121
|
+
|
|
122
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
117
123
|
}
|
|
118
124
|
|
|
119
|
-
export
|
|
120
|
-
name: "ResourceNotFoundException";
|
|
121
|
-
$fault: "client";
|
|
125
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
126
|
+
readonly name: "ResourceNotFoundException";
|
|
127
|
+
readonly $fault: "client";
|
|
122
128
|
Message: string | undefined;
|
|
123
129
|
|
|
124
130
|
ResourceId: string | undefined;
|
|
@@ -128,14 +134,18 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
128
134
|
Context?: {
|
|
129
135
|
[key: string]: string;
|
|
130
136
|
};
|
|
137
|
+
|
|
138
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
131
139
|
}
|
|
132
140
|
|
|
133
|
-
export
|
|
134
|
-
name: "ThrottlingException";
|
|
135
|
-
$fault: "client";
|
|
141
|
+
export declare class ThrottlingException extends __BaseException {
|
|
142
|
+
readonly name: "ThrottlingException";
|
|
143
|
+
readonly $fault: "client";
|
|
136
144
|
Message: string | undefined;
|
|
137
145
|
|
|
138
146
|
RetryAfterSeconds?: number;
|
|
147
|
+
|
|
148
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
139
149
|
}
|
|
140
150
|
|
|
141
151
|
export interface ValidationExceptionField {
|
|
@@ -155,14 +165,16 @@ export declare enum ValidationExceptionReason {
|
|
|
155
165
|
UNKNOWN_OPERATION = "UnknownOperation"
|
|
156
166
|
}
|
|
157
167
|
|
|
158
|
-
export
|
|
159
|
-
name: "ValidationException";
|
|
160
|
-
$fault: "client";
|
|
168
|
+
export declare class ValidationException extends __BaseException {
|
|
169
|
+
readonly name: "ValidationException";
|
|
170
|
+
readonly $fault: "client";
|
|
161
171
|
Message: string | undefined;
|
|
162
172
|
|
|
163
173
|
Reason?: ValidationExceptionReason | string;
|
|
164
174
|
|
|
165
175
|
Fields?: ValidationExceptionField[];
|
|
176
|
+
|
|
177
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
166
178
|
}
|
|
167
179
|
export interface AssociateConnectPeerRequest {
|
|
168
180
|
|
|
@@ -210,9 +222,9 @@ export declare namespace AssociateConnectPeerResponse {
|
|
|
210
222
|
const filterSensitiveLog: (obj: AssociateConnectPeerResponse) => any;
|
|
211
223
|
}
|
|
212
224
|
|
|
213
|
-
export
|
|
214
|
-
name: "ServiceQuotaExceededException";
|
|
215
|
-
$fault: "client";
|
|
225
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
226
|
+
readonly name: "ServiceQuotaExceededException";
|
|
227
|
+
readonly $fault: "client";
|
|
216
228
|
|
|
217
229
|
Message: string | undefined;
|
|
218
230
|
|
|
@@ -223,6 +235,8 @@ export interface ServiceQuotaExceededException extends __SmithyException, $Metad
|
|
|
223
235
|
LimitCode: string | undefined;
|
|
224
236
|
|
|
225
237
|
ServiceCode: string | undefined;
|
|
238
|
+
|
|
239
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
226
240
|
}
|
|
227
241
|
export interface AssociateCustomerGatewayRequest {
|
|
228
242
|
|
|
@@ -705,12 +719,14 @@ export declare namespace CoreNetworkPolicy {
|
|
|
705
719
|
const filterSensitiveLog: (obj: CoreNetworkPolicy) => any;
|
|
706
720
|
}
|
|
707
721
|
|
|
708
|
-
export
|
|
709
|
-
name: "CoreNetworkPolicyException";
|
|
710
|
-
$fault: "client";
|
|
722
|
+
export declare class CoreNetworkPolicyException extends __BaseException {
|
|
723
|
+
readonly name: "CoreNetworkPolicyException";
|
|
724
|
+
readonly $fault: "client";
|
|
711
725
|
Message: string | undefined;
|
|
712
726
|
|
|
713
727
|
Errors?: CoreNetworkPolicyError[];
|
|
728
|
+
|
|
729
|
+
constructor(opts: __ExceptionOptionType<CoreNetworkPolicyException, __BaseException>);
|
|
714
730
|
}
|
|
715
731
|
|
|
716
732
|
export interface CoreNetworkPolicyVersion {
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: NetworkManagerClientConfig) => {
|
|
|
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: NetworkManagerClientConfig) => {
|
|
|
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: NetworkManagerClientConfig) => {
|
|
|
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-networkmanager",
|
|
3
3
|
"description": "AWS SDK for JavaScript Networkmanager Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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",
|