@aws-sdk/client-route53resolver 3.1075.0 → 3.1077.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 +2458 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -52
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/Route53ResolverServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -251
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1930
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { Sha256 } from "@aws-crypto/sha256-browser";
|
|
3
2
|
import { createDefaultUserAgentProvider } from "@aws-sdk/core/client";
|
|
4
3
|
import { invalidProvider, loadConfigsForDefaultMode } from "@smithy/core/client";
|
|
5
4
|
import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig, } from "@smithy/core/config";
|
|
@@ -23,7 +22,6 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
22
|
region: config?.region ?? invalidProvider("Region is missing"),
|
|
24
23
|
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
25
24
|
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
26
|
-
sha256: config?.sha256 ?? Sha256,
|
|
27
25
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
28
26
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
29
27
|
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -5,7 +5,7 @@ import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credentia
|
|
|
5
5
|
import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/core/client";
|
|
6
6
|
import { loadConfig as loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig, } from "@smithy/core/config";
|
|
7
7
|
import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/core/retry";
|
|
8
|
-
import { calculateBodyLength
|
|
8
|
+
import { calculateBodyLength } from "@smithy/core/serde";
|
|
9
9
|
import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler";
|
|
10
10
|
import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
|
|
11
11
|
export const getRuntimeConfig = (config) => {
|
|
@@ -35,7 +35,6 @@ export const getRuntimeConfig = (config) => {
|
|
|
35
35
|
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
36
36
|
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
37
37
|
}, config),
|
|
38
|
-
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
39
38
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
40
39
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
41
40
|
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Sha256 } from "@aws-crypto/sha256-js";
|
|
2
1
|
import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
|
|
3
2
|
export const getRuntimeConfig = (config) => {
|
|
4
3
|
const browserDefaults = getBrowserRuntimeConfig(config);
|
|
@@ -6,6 +5,5 @@ export const getRuntimeConfig = (config) => {
|
|
|
6
5
|
...browserDefaults,
|
|
7
6
|
...config,
|
|
8
7
|
runtime: "react-native",
|
|
9
|
-
sha256: config?.sha256 ?? Sha256,
|
|
10
8
|
};
|
|
11
9
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols";
|
|
3
|
+
import { Sha256 } from "@smithy/core/checksum";
|
|
3
4
|
import { NoOpLogger } from "@smithy/core/client";
|
|
4
5
|
import { parseUrl } from "@smithy/core/protocols";
|
|
5
6
|
import { fromBase64, fromUtf8, toBase64, toUtf8 } from "@smithy/core/serde";
|
|
@@ -31,6 +32,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
31
32
|
serviceTarget: "Route53Resolver",
|
|
32
33
|
},
|
|
33
34
|
serviceId: config?.serviceId ?? "Route53Resolver",
|
|
35
|
+
sha256: config?.sha256 ?? Sha256,
|
|
34
36
|
urlParser: config?.urlParser ?? parseUrl,
|
|
35
37
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
36
38
|
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
@@ -13,8 +13,7 @@ export declare const getRuntimeConfig: (config: Route53ResolverClientConfig) =>
|
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
14
14
|
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
15
15
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
-
|
|
17
|
-
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
18
17
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
18
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
19
|
cacheMiddleware?: boolean | undefined;
|
|
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: Route53ResolverClientConfig) =>
|
|
|
24
23
|
[setting: string]: unknown;
|
|
25
24
|
};
|
|
26
25
|
apiVersion: string;
|
|
26
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
27
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
28
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
29
29
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -14,8 +14,7 @@ export declare const getRuntimeConfig: (config: Route53ResolverClientConfig) =>
|
|
|
14
14
|
region: string | import("@smithy/types").Provider<string>;
|
|
15
15
|
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
16
16
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
17
|
-
|
|
18
|
-
streamCollector: import("@smithy/types").StreamCollector;
|
|
17
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
20
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: Route53ResolverClientConfig) =>
|
|
|
26
25
|
[setting: string]: unknown;
|
|
27
26
|
};
|
|
28
27
|
apiVersion: string;
|
|
28
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
29
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
30
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -4,7 +4,6 @@ import type { Route53ResolverClientConfig } from "./Route53ResolverClient";
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: Route53ResolverClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
8
7
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
8
|
cacheMiddleware?: boolean;
|
|
10
9
|
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
|
|
@@ -13,9 +12,10 @@ export declare const getRuntimeConfig: (config: Route53ResolverClientConfig) =>
|
|
|
13
12
|
[setting: string]: unknown;
|
|
14
13
|
};
|
|
15
14
|
apiVersion: string;
|
|
15
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
16
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
17
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
|
-
streamCollector: import("
|
|
18
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
19
|
base64Decoder: import("@smithy/types").Decoder;
|
|
20
20
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
21
21
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: Route53ResolverClientConfig) =>
|
|
|
21
21
|
defaultNamespace?: string;
|
|
22
22
|
};
|
|
23
23
|
serviceId: string;
|
|
24
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
24
25
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
26
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
26
27
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
@@ -22,8 +22,13 @@ export declare const getRuntimeConfig: (
|
|
|
22
22
|
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
23
|
| RequestHandler;
|
|
24
24
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
streamCollector: (
|
|
26
|
+
stream:
|
|
27
|
+
| import("stream").Readable
|
|
28
|
+
| import("stream/web").ReadableStream
|
|
29
|
+
| ReadableStream
|
|
30
|
+
| Blob
|
|
31
|
+
) => Promise<Uint8Array>;
|
|
27
32
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
28
33
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
29
34
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
@@ -38,6 +43,7 @@ export declare const getRuntimeConfig: (
|
|
|
38
43
|
[setting: string]: unknown;
|
|
39
44
|
};
|
|
40
45
|
apiVersion: string;
|
|
46
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
41
47
|
urlParser: import("@smithy/types").UrlParser;
|
|
42
48
|
base64Decoder: import("@smithy/types").Decoder;
|
|
43
49
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -23,8 +23,13 @@ export declare const getRuntimeConfig: (
|
|
|
23
23
|
| RequestHandler
|
|
24
24
|
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
25
25
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
streamCollector: (
|
|
27
|
+
stream:
|
|
28
|
+
| import("stream").Readable
|
|
29
|
+
| import("stream/web").ReadableStream
|
|
30
|
+
| ReadableStream
|
|
31
|
+
| Blob
|
|
32
|
+
) => Promise<Uint8Array>;
|
|
28
33
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
29
34
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
35
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -38,6 +43,7 @@ export declare const getRuntimeConfig: (
|
|
|
38
43
|
[setting: string]: unknown;
|
|
39
44
|
};
|
|
40
45
|
apiVersion: string;
|
|
46
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
41
47
|
urlParser: import("@smithy/types").UrlParser;
|
|
42
48
|
base64Decoder: import("@smithy/types").Decoder;
|
|
43
49
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -3,7 +3,6 @@ export declare const getRuntimeConfig: (
|
|
|
3
3
|
config: Route53ResolverClientConfig
|
|
4
4
|
) => {
|
|
5
5
|
runtime: string;
|
|
6
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
7
6
|
requestHandler:
|
|
8
7
|
| import("@smithy/types").NodeHttpHandlerOptions
|
|
9
8
|
| import("@smithy/types").FetchHttpHandlerOptions
|
|
@@ -20,9 +19,16 @@ export declare const getRuntimeConfig: (
|
|
|
20
19
|
[setting: string]: unknown;
|
|
21
20
|
};
|
|
22
21
|
apiVersion: string;
|
|
22
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
23
23
|
urlParser: import("@smithy/types").UrlParser;
|
|
24
24
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
25
|
-
streamCollector:
|
|
25
|
+
streamCollector: (
|
|
26
|
+
stream:
|
|
27
|
+
| import("stream").Readable
|
|
28
|
+
| import("stream/web").ReadableStream
|
|
29
|
+
| ReadableStream
|
|
30
|
+
| Blob
|
|
31
|
+
) => Promise<Uint8Array>;
|
|
26
32
|
base64Decoder: import("@smithy/types").Decoder;
|
|
27
33
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
28
34
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -26,6 +26,7 @@ export declare const getRuntimeConfig: (
|
|
|
26
26
|
defaultNamespace?: string;
|
|
27
27
|
};
|
|
28
28
|
serviceId: string;
|
|
29
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
29
30
|
urlParser: import("@smithy/types").UrlParser;
|
|
30
31
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
31
32
|
utf8Encoder: (input: Uint8Array | string) => string;
|
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.1077.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -19,15 +19,13 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-
|
|
23
|
-
"@aws-
|
|
24
|
-
"@aws-sdk/
|
|
25
|
-
"@
|
|
26
|
-
"@
|
|
27
|
-
"@smithy/
|
|
28
|
-
"@smithy/
|
|
29
|
-
"@smithy/node-http-handler": "^4.7.6",
|
|
30
|
-
"@smithy/types": "^4.14.3",
|
|
22
|
+
"@aws-sdk/core": "^3.974.25",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.60",
|
|
24
|
+
"@aws-sdk/types": "^3.973.14",
|
|
25
|
+
"@smithy/core": "^3.28.0",
|
|
26
|
+
"@smithy/fetch-http-handler": "^5.6.1",
|
|
27
|
+
"@smithy/node-http-handler": "^4.9.1",
|
|
28
|
+
"@smithy/types": "^4.15.0",
|
|
31
29
|
"tslib": "^2.6.2"
|
|
32
30
|
},
|
|
33
31
|
"devDependencies": {
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
const { resolveAwsSdkSigV4Config } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
-
const { getSmithyContext, normalizeProvider } = require("@smithy/core/client");
|
|
3
|
-
exports.defaultRoute53ResolverHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
|
-
return {
|
|
5
|
-
operation: getSmithyContext(context).operation,
|
|
6
|
-
region: await normalizeProvider(config.region)() || (() => {
|
|
7
|
-
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
8
|
-
})(),
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
12
|
-
return {
|
|
13
|
-
schemeId: "aws.auth#sigv4",
|
|
14
|
-
signingProperties: {
|
|
15
|
-
name: "route53resolver",
|
|
16
|
-
region: authParameters.region,
|
|
17
|
-
},
|
|
18
|
-
propertiesExtractor: (config, context) => ({
|
|
19
|
-
signingProperties: {
|
|
20
|
-
config,
|
|
21
|
-
context,
|
|
22
|
-
},
|
|
23
|
-
}),
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
exports.defaultRoute53ResolverHttpAuthSchemeProvider = (authParameters) => {
|
|
27
|
-
const options = [];
|
|
28
|
-
switch (authParameters.operation) {
|
|
29
|
-
default: {
|
|
30
|
-
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
return options;
|
|
34
|
-
};
|
|
35
|
-
exports.resolveHttpAuthSchemeConfig = (config) => {
|
|
36
|
-
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
37
|
-
return Object.assign(config_0, {
|
|
38
|
-
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
39
|
-
});
|
|
40
|
-
};
|
package/dist-cjs/endpoint/bdd.js
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
const { BinaryDecisionDiagram } = require("@smithy/core/endpoints");
|
|
2
|
-
const m = "ref";
|
|
3
|
-
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = "stringEquals", h = { [m]: "Endpoint" }, i = { [m]: d }, j = { [m]: "Region" }, k = {}, l = [j];
|
|
4
|
-
const _data = {
|
|
5
|
-
conditions: [
|
|
6
|
-
[c, [h]],
|
|
7
|
-
[c, l],
|
|
8
|
-
["aws.partition", l, d],
|
|
9
|
-
[e, [{ [m]: "UseFIPS" }, b]],
|
|
10
|
-
[e, [{ [m]: "UseDualStack" }, b]],
|
|
11
|
-
[e, [{ fn: f, argv: [i, "supportsDualStack"] }, b]],
|
|
12
|
-
[e, [{ fn: f, argv: [i, "supportsFIPS"] }, b]],
|
|
13
|
-
[g, [j, "us-gov-east-1"]],
|
|
14
|
-
[g, [j, "us-gov-west-1"]]
|
|
15
|
-
],
|
|
16
|
-
results: [
|
|
17
|
-
[a],
|
|
18
|
-
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
19
|
-
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
20
|
-
[h, k],
|
|
21
|
-
["https://route53resolver-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
22
|
-
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
23
|
-
["https://route53resolver.us-gov-east-1.amazonaws.com", k],
|
|
24
|
-
["https://route53resolver.us-gov-west-1.amazonaws.com", k],
|
|
25
|
-
["https://route53resolver-fips.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
26
|
-
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
27
|
-
["https://route53resolver.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
28
|
-
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
29
|
-
["https://route53resolver.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
30
|
-
[a, "Invalid Configuration: Missing Region"]
|
|
31
|
-
]
|
|
32
|
-
};
|
|
33
|
-
const root = 2;
|
|
34
|
-
const r = 100_000_000;
|
|
35
|
-
const nodes = new Int32Array([
|
|
36
|
-
-1, 1, -1,
|
|
37
|
-
0, 14, 3,
|
|
38
|
-
1, 4, r + 13,
|
|
39
|
-
2, 5, r + 13,
|
|
40
|
-
3, 8, 6,
|
|
41
|
-
4, 7, r + 12,
|
|
42
|
-
5, r + 10, r + 11,
|
|
43
|
-
4, 12, 9,
|
|
44
|
-
6, 10, r + 9,
|
|
45
|
-
7, r + 6, 11,
|
|
46
|
-
8, r + 7, r + 8,
|
|
47
|
-
5, 13, r + 5,
|
|
48
|
-
6, r + 4, r + 5,
|
|
49
|
-
3, r + 1, 15,
|
|
50
|
-
4, r + 2, r + 3,
|
|
51
|
-
]);
|
|
52
|
-
exports.bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
const { awsEndpointFunctions } = require("@aws-sdk/core/client");
|
|
2
|
-
const { customEndpointFunctions, decideEndpoint, EndpointCache } = require("@smithy/core/endpoints");
|
|
3
|
-
const { bdd } = require("./bdd");
|
|
4
|
-
const cache = new EndpointCache({
|
|
5
|
-
size: 50,
|
|
6
|
-
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
7
|
-
});
|
|
8
|
-
exports.defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
9
|
-
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
10
|
-
endpointParams: endpointParams,
|
|
11
|
-
logger: context.logger,
|
|
12
|
-
}));
|
|
13
|
-
};
|
|
14
|
-
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
const { ServiceException: __ServiceException } = require("@smithy/core/client");
|
|
2
|
-
exports.__ServiceException = __ServiceException;
|
|
3
|
-
exports.Route53ResolverServiceException = class Route53ResolverServiceException extends __ServiceException {
|
|
4
|
-
constructor(options) {
|
|
5
|
-
super(options);
|
|
6
|
-
Object.setPrototypeOf(this, Route53ResolverServiceException.prototype);
|
|
7
|
-
}
|
|
8
|
-
};
|
|
@@ -1,251 +0,0 @@
|
|
|
1
|
-
const { Route53ResolverServiceException: __BaseException } = require("./Route53ResolverServiceException");
|
|
2
|
-
exports.AccessDeniedException = class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
Message;
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "AccessDeniedException",
|
|
9
|
-
$fault: "client",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
14
|
-
}
|
|
15
|
-
};
|
|
16
|
-
exports.ConflictException = class ConflictException extends __BaseException {
|
|
17
|
-
name = "ConflictException";
|
|
18
|
-
$fault = "client";
|
|
19
|
-
Message;
|
|
20
|
-
constructor(opts) {
|
|
21
|
-
super({
|
|
22
|
-
name: "ConflictException",
|
|
23
|
-
$fault: "client",
|
|
24
|
-
...opts,
|
|
25
|
-
});
|
|
26
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
27
|
-
this.Message = opts.Message;
|
|
28
|
-
}
|
|
29
|
-
};
|
|
30
|
-
exports.InternalServiceErrorException = class InternalServiceErrorException extends __BaseException {
|
|
31
|
-
name = "InternalServiceErrorException";
|
|
32
|
-
$fault = "client";
|
|
33
|
-
Message;
|
|
34
|
-
constructor(opts) {
|
|
35
|
-
super({
|
|
36
|
-
name: "InternalServiceErrorException",
|
|
37
|
-
$fault: "client",
|
|
38
|
-
...opts,
|
|
39
|
-
});
|
|
40
|
-
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
41
|
-
this.Message = opts.Message;
|
|
42
|
-
}
|
|
43
|
-
};
|
|
44
|
-
exports.LimitExceededException = class LimitExceededException extends __BaseException {
|
|
45
|
-
name = "LimitExceededException";
|
|
46
|
-
$fault = "client";
|
|
47
|
-
Message;
|
|
48
|
-
ResourceType;
|
|
49
|
-
constructor(opts) {
|
|
50
|
-
super({
|
|
51
|
-
name: "LimitExceededException",
|
|
52
|
-
$fault: "client",
|
|
53
|
-
...opts,
|
|
54
|
-
});
|
|
55
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
56
|
-
this.Message = opts.Message;
|
|
57
|
-
this.ResourceType = opts.ResourceType;
|
|
58
|
-
}
|
|
59
|
-
};
|
|
60
|
-
exports.ResourceNotFoundException = class ResourceNotFoundException extends __BaseException {
|
|
61
|
-
name = "ResourceNotFoundException";
|
|
62
|
-
$fault = "client";
|
|
63
|
-
Message;
|
|
64
|
-
ResourceType;
|
|
65
|
-
constructor(opts) {
|
|
66
|
-
super({
|
|
67
|
-
name: "ResourceNotFoundException",
|
|
68
|
-
$fault: "client",
|
|
69
|
-
...opts,
|
|
70
|
-
});
|
|
71
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
72
|
-
this.Message = opts.Message;
|
|
73
|
-
this.ResourceType = opts.ResourceType;
|
|
74
|
-
}
|
|
75
|
-
};
|
|
76
|
-
exports.ThrottlingException = class ThrottlingException extends __BaseException {
|
|
77
|
-
name = "ThrottlingException";
|
|
78
|
-
$fault = "client";
|
|
79
|
-
Message;
|
|
80
|
-
constructor(opts) {
|
|
81
|
-
super({
|
|
82
|
-
name: "ThrottlingException",
|
|
83
|
-
$fault: "client",
|
|
84
|
-
...opts,
|
|
85
|
-
});
|
|
86
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
87
|
-
this.Message = opts.Message;
|
|
88
|
-
}
|
|
89
|
-
};
|
|
90
|
-
exports.ValidationException = class ValidationException extends __BaseException {
|
|
91
|
-
name = "ValidationException";
|
|
92
|
-
$fault = "client";
|
|
93
|
-
Message;
|
|
94
|
-
constructor(opts) {
|
|
95
|
-
super({
|
|
96
|
-
name: "ValidationException",
|
|
97
|
-
$fault: "client",
|
|
98
|
-
...opts,
|
|
99
|
-
});
|
|
100
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
101
|
-
this.Message = opts.Message;
|
|
102
|
-
}
|
|
103
|
-
};
|
|
104
|
-
exports.InvalidParameterException = class InvalidParameterException extends __BaseException {
|
|
105
|
-
name = "InvalidParameterException";
|
|
106
|
-
$fault = "client";
|
|
107
|
-
Message;
|
|
108
|
-
FieldName;
|
|
109
|
-
constructor(opts) {
|
|
110
|
-
super({
|
|
111
|
-
name: "InvalidParameterException",
|
|
112
|
-
$fault: "client",
|
|
113
|
-
...opts,
|
|
114
|
-
});
|
|
115
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
116
|
-
this.Message = opts.Message;
|
|
117
|
-
this.FieldName = opts.FieldName;
|
|
118
|
-
}
|
|
119
|
-
};
|
|
120
|
-
exports.InvalidRequestException = class InvalidRequestException extends __BaseException {
|
|
121
|
-
name = "InvalidRequestException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "InvalidRequestException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
};
|
|
134
|
-
exports.ResourceExistsException = class ResourceExistsException extends __BaseException {
|
|
135
|
-
name = "ResourceExistsException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
ResourceType;
|
|
139
|
-
constructor(opts) {
|
|
140
|
-
super({
|
|
141
|
-
name: "ResourceExistsException",
|
|
142
|
-
$fault: "client",
|
|
143
|
-
...opts,
|
|
144
|
-
});
|
|
145
|
-
Object.setPrototypeOf(this, ResourceExistsException.prototype);
|
|
146
|
-
this.Message = opts.Message;
|
|
147
|
-
this.ResourceType = opts.ResourceType;
|
|
148
|
-
}
|
|
149
|
-
};
|
|
150
|
-
exports.ResourceUnavailableException = class ResourceUnavailableException extends __BaseException {
|
|
151
|
-
name = "ResourceUnavailableException";
|
|
152
|
-
$fault = "client";
|
|
153
|
-
Message;
|
|
154
|
-
ResourceType;
|
|
155
|
-
constructor(opts) {
|
|
156
|
-
super({
|
|
157
|
-
name: "ResourceUnavailableException",
|
|
158
|
-
$fault: "client",
|
|
159
|
-
...opts,
|
|
160
|
-
});
|
|
161
|
-
Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
|
|
162
|
-
this.Message = opts.Message;
|
|
163
|
-
this.ResourceType = opts.ResourceType;
|
|
164
|
-
}
|
|
165
|
-
};
|
|
166
|
-
exports.ServiceQuotaExceededException = class ServiceQuotaExceededException extends __BaseException {
|
|
167
|
-
name = "ServiceQuotaExceededException";
|
|
168
|
-
$fault = "client";
|
|
169
|
-
Message;
|
|
170
|
-
constructor(opts) {
|
|
171
|
-
super({
|
|
172
|
-
name: "ServiceQuotaExceededException",
|
|
173
|
-
$fault: "client",
|
|
174
|
-
...opts,
|
|
175
|
-
});
|
|
176
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
177
|
-
this.Message = opts.Message;
|
|
178
|
-
}
|
|
179
|
-
};
|
|
180
|
-
exports.ResourceInUseException = class ResourceInUseException extends __BaseException {
|
|
181
|
-
name = "ResourceInUseException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
Message;
|
|
184
|
-
ResourceType;
|
|
185
|
-
constructor(opts) {
|
|
186
|
-
super({
|
|
187
|
-
name: "ResourceInUseException",
|
|
188
|
-
$fault: "client",
|
|
189
|
-
...opts,
|
|
190
|
-
});
|
|
191
|
-
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
192
|
-
this.Message = opts.Message;
|
|
193
|
-
this.ResourceType = opts.ResourceType;
|
|
194
|
-
}
|
|
195
|
-
};
|
|
196
|
-
exports.UnknownResourceException = class UnknownResourceException extends __BaseException {
|
|
197
|
-
name = "UnknownResourceException";
|
|
198
|
-
$fault = "client";
|
|
199
|
-
Message;
|
|
200
|
-
constructor(opts) {
|
|
201
|
-
super({
|
|
202
|
-
name: "UnknownResourceException",
|
|
203
|
-
$fault: "client",
|
|
204
|
-
...opts,
|
|
205
|
-
});
|
|
206
|
-
Object.setPrototypeOf(this, UnknownResourceException.prototype);
|
|
207
|
-
this.Message = opts.Message;
|
|
208
|
-
}
|
|
209
|
-
};
|
|
210
|
-
exports.InvalidNextTokenException = class InvalidNextTokenException extends __BaseException {
|
|
211
|
-
name = "InvalidNextTokenException";
|
|
212
|
-
$fault = "client";
|
|
213
|
-
Message;
|
|
214
|
-
constructor(opts) {
|
|
215
|
-
super({
|
|
216
|
-
name: "InvalidNextTokenException",
|
|
217
|
-
$fault: "client",
|
|
218
|
-
...opts,
|
|
219
|
-
});
|
|
220
|
-
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
221
|
-
this.Message = opts.Message;
|
|
222
|
-
}
|
|
223
|
-
};
|
|
224
|
-
exports.InvalidPolicyDocument = class InvalidPolicyDocument extends __BaseException {
|
|
225
|
-
name = "InvalidPolicyDocument";
|
|
226
|
-
$fault = "client";
|
|
227
|
-
Message;
|
|
228
|
-
constructor(opts) {
|
|
229
|
-
super({
|
|
230
|
-
name: "InvalidPolicyDocument",
|
|
231
|
-
$fault: "client",
|
|
232
|
-
...opts,
|
|
233
|
-
});
|
|
234
|
-
Object.setPrototypeOf(this, InvalidPolicyDocument.prototype);
|
|
235
|
-
this.Message = opts.Message;
|
|
236
|
-
}
|
|
237
|
-
};
|
|
238
|
-
exports.InvalidTagException = class InvalidTagException extends __BaseException {
|
|
239
|
-
name = "InvalidTagException";
|
|
240
|
-
$fault = "client";
|
|
241
|
-
Message;
|
|
242
|
-
constructor(opts) {
|
|
243
|
-
super({
|
|
244
|
-
name: "InvalidTagException",
|
|
245
|
-
$fault: "client",
|
|
246
|
-
...opts,
|
|
247
|
-
});
|
|
248
|
-
Object.setPrototypeOf(this, InvalidTagException.prototype);
|
|
249
|
-
this.Message = opts.Message;
|
|
250
|
-
}
|
|
251
|
-
};
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
const packageInfo = require("../package.json");
|
|
2
|
-
const { Sha256 } = require("@aws-crypto/sha256-browser");
|
|
3
|
-
const { createDefaultUserAgentProvider } = require("@aws-sdk/core/client");
|
|
4
|
-
const { invalidProvider, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
5
|
-
const { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
6
|
-
const { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } = require("@smithy/core/retry");
|
|
7
|
-
const { calculateBodyLength } = require("@smithy/core/serde");
|
|
8
|
-
const { FetchHttpHandler: RequestHandler, streamCollector } = require("@smithy/fetch-http-handler");
|
|
9
|
-
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
10
|
-
const getRuntimeConfig = (config) => {
|
|
11
|
-
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
12
|
-
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
13
|
-
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
14
|
-
return {
|
|
15
|
-
...clientSharedValues,
|
|
16
|
-
...config,
|
|
17
|
-
runtime: "browser",
|
|
18
|
-
defaultsMode,
|
|
19
|
-
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
20
|
-
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
21
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
22
|
-
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
23
|
-
region: config?.region ?? invalidProvider("Region is missing"),
|
|
24
|
-
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
25
|
-
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
26
|
-
sha256: config?.sha256 ?? Sha256,
|
|
27
|
-
streamCollector: config?.streamCollector ?? streamCollector,
|
|
28
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
29
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
|
|
30
|
-
};
|
|
31
|
-
};
|
|
32
|
-
exports.getRuntimeConfig = getRuntimeConfig;
|