@aws-sdk/client-route53resolver 3.721.0 → 3.723.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/index.js +438 -299
- package/dist-es/Route53ResolverClient.js +1 -0
- package/dist-es/models/models_0.js +57 -34
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class Route53ResolverClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { Route53ResolverServiceException as __BaseException } from "./Route53ResolverServiceException";
|
|
2
2
|
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
Message;
|
|
3
6
|
constructor(opts) {
|
|
4
7
|
super({
|
|
5
8
|
name: "AccessDeniedException",
|
|
6
9
|
$fault: "client",
|
|
7
10
|
...opts,
|
|
8
11
|
});
|
|
9
|
-
this.name = "AccessDeniedException";
|
|
10
|
-
this.$fault = "client";
|
|
11
12
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
13
|
this.Message = opts.Message;
|
|
13
14
|
}
|
|
@@ -27,81 +28,89 @@ export const FirewallRuleGroupAssociationStatus = {
|
|
|
27
28
|
UPDATING: "UPDATING",
|
|
28
29
|
};
|
|
29
30
|
export class ConflictException extends __BaseException {
|
|
31
|
+
name = "ConflictException";
|
|
32
|
+
$fault = "client";
|
|
33
|
+
Message;
|
|
30
34
|
constructor(opts) {
|
|
31
35
|
super({
|
|
32
36
|
name: "ConflictException",
|
|
33
37
|
$fault: "client",
|
|
34
38
|
...opts,
|
|
35
39
|
});
|
|
36
|
-
this.name = "ConflictException";
|
|
37
|
-
this.$fault = "client";
|
|
38
40
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
39
41
|
this.Message = opts.Message;
|
|
40
42
|
}
|
|
41
43
|
}
|
|
42
44
|
export class InternalServiceErrorException extends __BaseException {
|
|
45
|
+
name = "InternalServiceErrorException";
|
|
46
|
+
$fault = "client";
|
|
47
|
+
Message;
|
|
43
48
|
constructor(opts) {
|
|
44
49
|
super({
|
|
45
50
|
name: "InternalServiceErrorException",
|
|
46
51
|
$fault: "client",
|
|
47
52
|
...opts,
|
|
48
53
|
});
|
|
49
|
-
this.name = "InternalServiceErrorException";
|
|
50
|
-
this.$fault = "client";
|
|
51
54
|
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
52
55
|
this.Message = opts.Message;
|
|
53
56
|
}
|
|
54
57
|
}
|
|
55
58
|
export class LimitExceededException extends __BaseException {
|
|
59
|
+
name = "LimitExceededException";
|
|
60
|
+
$fault = "client";
|
|
61
|
+
Message;
|
|
62
|
+
ResourceType;
|
|
56
63
|
constructor(opts) {
|
|
57
64
|
super({
|
|
58
65
|
name: "LimitExceededException",
|
|
59
66
|
$fault: "client",
|
|
60
67
|
...opts,
|
|
61
68
|
});
|
|
62
|
-
this.name = "LimitExceededException";
|
|
63
|
-
this.$fault = "client";
|
|
64
69
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
65
70
|
this.Message = opts.Message;
|
|
66
71
|
this.ResourceType = opts.ResourceType;
|
|
67
72
|
}
|
|
68
73
|
}
|
|
69
74
|
export class ResourceNotFoundException extends __BaseException {
|
|
75
|
+
name = "ResourceNotFoundException";
|
|
76
|
+
$fault = "client";
|
|
77
|
+
Message;
|
|
78
|
+
ResourceType;
|
|
70
79
|
constructor(opts) {
|
|
71
80
|
super({
|
|
72
81
|
name: "ResourceNotFoundException",
|
|
73
82
|
$fault: "client",
|
|
74
83
|
...opts,
|
|
75
84
|
});
|
|
76
|
-
this.name = "ResourceNotFoundException";
|
|
77
|
-
this.$fault = "client";
|
|
78
85
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
79
86
|
this.Message = opts.Message;
|
|
80
87
|
this.ResourceType = opts.ResourceType;
|
|
81
88
|
}
|
|
82
89
|
}
|
|
83
90
|
export class ThrottlingException extends __BaseException {
|
|
91
|
+
name = "ThrottlingException";
|
|
92
|
+
$fault = "client";
|
|
93
|
+
Message;
|
|
84
94
|
constructor(opts) {
|
|
85
95
|
super({
|
|
86
96
|
name: "ThrottlingException",
|
|
87
97
|
$fault: "client",
|
|
88
98
|
...opts,
|
|
89
99
|
});
|
|
90
|
-
this.name = "ThrottlingException";
|
|
91
|
-
this.$fault = "client";
|
|
92
100
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
93
101
|
this.Message = opts.Message;
|
|
94
102
|
}
|
|
95
103
|
}
|
|
96
104
|
export class ValidationException extends __BaseException {
|
|
105
|
+
name = "ValidationException";
|
|
106
|
+
$fault = "client";
|
|
107
|
+
Message;
|
|
97
108
|
constructor(opts) {
|
|
98
109
|
super({
|
|
99
110
|
name: "ValidationException",
|
|
100
111
|
$fault: "client",
|
|
101
112
|
...opts,
|
|
102
113
|
});
|
|
103
|
-
this.name = "ValidationException";
|
|
104
|
-
this.$fault = "client";
|
|
105
114
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
106
115
|
this.Message = opts.Message;
|
|
107
116
|
}
|
|
@@ -129,41 +138,46 @@ export const ResolverEndpointStatus = {
|
|
|
129
138
|
Updating: "UPDATING",
|
|
130
139
|
};
|
|
131
140
|
export class InvalidParameterException extends __BaseException {
|
|
141
|
+
name = "InvalidParameterException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
Message;
|
|
144
|
+
FieldName;
|
|
132
145
|
constructor(opts) {
|
|
133
146
|
super({
|
|
134
147
|
name: "InvalidParameterException",
|
|
135
148
|
$fault: "client",
|
|
136
149
|
...opts,
|
|
137
150
|
});
|
|
138
|
-
this.name = "InvalidParameterException";
|
|
139
|
-
this.$fault = "client";
|
|
140
151
|
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
141
152
|
this.Message = opts.Message;
|
|
142
153
|
this.FieldName = opts.FieldName;
|
|
143
154
|
}
|
|
144
155
|
}
|
|
145
156
|
export class InvalidRequestException extends __BaseException {
|
|
157
|
+
name = "InvalidRequestException";
|
|
158
|
+
$fault = "client";
|
|
159
|
+
Message;
|
|
146
160
|
constructor(opts) {
|
|
147
161
|
super({
|
|
148
162
|
name: "InvalidRequestException",
|
|
149
163
|
$fault: "client",
|
|
150
164
|
...opts,
|
|
151
165
|
});
|
|
152
|
-
this.name = "InvalidRequestException";
|
|
153
|
-
this.$fault = "client";
|
|
154
166
|
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
155
167
|
this.Message = opts.Message;
|
|
156
168
|
}
|
|
157
169
|
}
|
|
158
170
|
export class ResourceExistsException extends __BaseException {
|
|
171
|
+
name = "ResourceExistsException";
|
|
172
|
+
$fault = "client";
|
|
173
|
+
Message;
|
|
174
|
+
ResourceType;
|
|
159
175
|
constructor(opts) {
|
|
160
176
|
super({
|
|
161
177
|
name: "ResourceExistsException",
|
|
162
178
|
$fault: "client",
|
|
163
179
|
...opts,
|
|
164
180
|
});
|
|
165
|
-
this.name = "ResourceExistsException";
|
|
166
|
-
this.$fault = "client";
|
|
167
181
|
Object.setPrototypeOf(this, ResourceExistsException.prototype);
|
|
168
182
|
this.Message = opts.Message;
|
|
169
183
|
this.ResourceType = opts.ResourceType;
|
|
@@ -190,14 +204,16 @@ export const ResolverRuleAssociationStatus = {
|
|
|
190
204
|
Overridden: "OVERRIDDEN",
|
|
191
205
|
};
|
|
192
206
|
export class ResourceUnavailableException extends __BaseException {
|
|
207
|
+
name = "ResourceUnavailableException";
|
|
208
|
+
$fault = "client";
|
|
209
|
+
Message;
|
|
210
|
+
ResourceType;
|
|
193
211
|
constructor(opts) {
|
|
194
212
|
super({
|
|
195
213
|
name: "ResourceUnavailableException",
|
|
196
214
|
$fault: "client",
|
|
197
215
|
...opts,
|
|
198
216
|
});
|
|
199
|
-
this.name = "ResourceUnavailableException";
|
|
200
|
-
this.$fault = "client";
|
|
201
217
|
Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
|
|
202
218
|
this.Message = opts.Message;
|
|
203
219
|
this.ResourceType = opts.ResourceType;
|
|
@@ -256,14 +272,15 @@ export const OutpostResolverStatus = {
|
|
|
256
272
|
UPDATING: "UPDATING",
|
|
257
273
|
};
|
|
258
274
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
275
|
+
name = "ServiceQuotaExceededException";
|
|
276
|
+
$fault = "client";
|
|
277
|
+
Message;
|
|
259
278
|
constructor(opts) {
|
|
260
279
|
super({
|
|
261
280
|
name: "ServiceQuotaExceededException",
|
|
262
281
|
$fault: "client",
|
|
263
282
|
...opts,
|
|
264
283
|
});
|
|
265
|
-
this.name = "ServiceQuotaExceededException";
|
|
266
|
-
this.$fault = "client";
|
|
267
284
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
268
285
|
this.Message = opts.Message;
|
|
269
286
|
}
|
|
@@ -286,14 +303,16 @@ export const ResolverRuleStatus = {
|
|
|
286
303
|
Updating: "UPDATING",
|
|
287
304
|
};
|
|
288
305
|
export class ResourceInUseException extends __BaseException {
|
|
306
|
+
name = "ResourceInUseException";
|
|
307
|
+
$fault = "client";
|
|
308
|
+
Message;
|
|
309
|
+
ResourceType;
|
|
289
310
|
constructor(opts) {
|
|
290
311
|
super({
|
|
291
312
|
name: "ResourceInUseException",
|
|
292
313
|
$fault: "client",
|
|
293
314
|
...opts,
|
|
294
315
|
});
|
|
295
|
-
this.name = "ResourceInUseException";
|
|
296
|
-
this.$fault = "client";
|
|
297
316
|
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
298
317
|
this.Message = opts.Message;
|
|
299
318
|
this.ResourceType = opts.ResourceType;
|
|
@@ -329,53 +348,57 @@ export const ResolverDNSSECValidationStatus = {
|
|
|
329
348
|
UseLocalResourceSetting: "USE_LOCAL_RESOURCE_SETTING",
|
|
330
349
|
};
|
|
331
350
|
export class UnknownResourceException extends __BaseException {
|
|
351
|
+
name = "UnknownResourceException";
|
|
352
|
+
$fault = "client";
|
|
353
|
+
Message;
|
|
332
354
|
constructor(opts) {
|
|
333
355
|
super({
|
|
334
356
|
name: "UnknownResourceException",
|
|
335
357
|
$fault: "client",
|
|
336
358
|
...opts,
|
|
337
359
|
});
|
|
338
|
-
this.name = "UnknownResourceException";
|
|
339
|
-
this.$fault = "client";
|
|
340
360
|
Object.setPrototypeOf(this, UnknownResourceException.prototype);
|
|
341
361
|
this.Message = opts.Message;
|
|
342
362
|
}
|
|
343
363
|
}
|
|
344
364
|
export class InvalidNextTokenException extends __BaseException {
|
|
365
|
+
name = "InvalidNextTokenException";
|
|
366
|
+
$fault = "client";
|
|
367
|
+
Message;
|
|
345
368
|
constructor(opts) {
|
|
346
369
|
super({
|
|
347
370
|
name: "InvalidNextTokenException",
|
|
348
371
|
$fault: "client",
|
|
349
372
|
...opts,
|
|
350
373
|
});
|
|
351
|
-
this.name = "InvalidNextTokenException";
|
|
352
|
-
this.$fault = "client";
|
|
353
374
|
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
354
375
|
this.Message = opts.Message;
|
|
355
376
|
}
|
|
356
377
|
}
|
|
357
378
|
export class InvalidPolicyDocument extends __BaseException {
|
|
379
|
+
name = "InvalidPolicyDocument";
|
|
380
|
+
$fault = "client";
|
|
381
|
+
Message;
|
|
358
382
|
constructor(opts) {
|
|
359
383
|
super({
|
|
360
384
|
name: "InvalidPolicyDocument",
|
|
361
385
|
$fault: "client",
|
|
362
386
|
...opts,
|
|
363
387
|
});
|
|
364
|
-
this.name = "InvalidPolicyDocument";
|
|
365
|
-
this.$fault = "client";
|
|
366
388
|
Object.setPrototypeOf(this, InvalidPolicyDocument.prototype);
|
|
367
389
|
this.Message = opts.Message;
|
|
368
390
|
}
|
|
369
391
|
}
|
|
370
392
|
export class InvalidTagException extends __BaseException {
|
|
393
|
+
name = "InvalidTagException";
|
|
394
|
+
$fault = "client";
|
|
395
|
+
Message;
|
|
371
396
|
constructor(opts) {
|
|
372
397
|
super({
|
|
373
398
|
name: "InvalidTagException",
|
|
374
399
|
$fault: "client",
|
|
375
400
|
...opts,
|
|
376
401
|
});
|
|
377
|
-
this.name = "InvalidTagException";
|
|
378
|
-
this.$fault = "client";
|
|
379
402
|
Object.setPrototypeOf(this, InvalidTagException.prototype);
|
|
380
403
|
this.Message = opts.Message;
|
|
381
404
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: Route53ResolverClientConfig) =>
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: Route53ResolverClientConfig) =>
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: Route53ResolverClientConfig) =>
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: Route53ResolverClientConfig) =>
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
|
|
|
52
54
|
| import("@smithy/types").RetryStrategyV2
|
|
53
55
|
| undefined;
|
|
54
56
|
endpoint?:
|
|
55
|
-
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
60
72
|
| undefined;
|
|
61
73
|
endpointProvider: (
|
|
62
74
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route53resolver",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route53resolver Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.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-route53resolver",
|
|
@@ -20,58 +20,58 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|
|
63
63
|
"uuid": "^9.0.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@tsconfig/
|
|
67
|
-
"@types/node": "^
|
|
66
|
+
"@tsconfig/node18": "18.2.4",
|
|
67
|
+
"@types/node": "^18.19.69",
|
|
68
68
|
"concurrently": "7.0.0",
|
|
69
69
|
"downlevel-dts": "0.10.1",
|
|
70
70
|
"rimraf": "3.0.2",
|
|
71
|
-
"typescript": "~
|
|
71
|
+
"typescript": "~5.2.2"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
|
-
"node": ">=
|
|
74
|
+
"node": ">=18.0.0"
|
|
75
75
|
},
|
|
76
76
|
"typesVersions": {
|
|
77
77
|
"<4.0": {
|