@aws-sdk/client-qbusiness 3.1067.0 → 3.1069.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/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +314 -334
- package/dist-cjs/models/QBusinessServiceException.js +4 -8
- package/dist-cjs/models/errors.js +21 -34
- package/dist-cjs/runtimeConfig.browser.js +25 -29
- package/dist-cjs/runtimeConfig.js +34 -38
- package/dist-cjs/runtimeConfig.native.js +6 -9
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +895 -578
- package/package.json +12 -12
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.QBusinessServiceException =
|
|
4
|
-
const client_1 = require("@smithy/core/client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return client_1.ServiceException; } });
|
|
6
|
-
class QBusinessServiceException extends client_1.ServiceException {
|
|
1
|
+
const { ServiceException: __ServiceException } = require("@smithy/core/client");
|
|
2
|
+
exports.__ServiceException = __ServiceException;
|
|
3
|
+
exports.QBusinessServiceException = class QBusinessServiceException extends __ServiceException {
|
|
7
4
|
constructor(options) {
|
|
8
5
|
super(options);
|
|
9
6
|
Object.setPrototypeOf(this, QBusinessServiceException.prototype);
|
|
10
7
|
}
|
|
11
|
-
}
|
|
12
|
-
exports.QBusinessServiceException = QBusinessServiceException;
|
|
8
|
+
};
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.MediaTooLargeException = exports.LicenseNotFoundException = exports.ExternalResourceException = exports.ValidationException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;
|
|
4
|
-
const QBusinessServiceException_1 = require("./QBusinessServiceException");
|
|
5
|
-
class AccessDeniedException extends QBusinessServiceException_1.QBusinessServiceException {
|
|
1
|
+
const { QBusinessServiceException: __BaseException } = require("./QBusinessServiceException");
|
|
2
|
+
exports.AccessDeniedException = class AccessDeniedException extends __BaseException {
|
|
6
3
|
name = "AccessDeniedException";
|
|
7
4
|
$fault = "client";
|
|
8
5
|
constructor(opts) {
|
|
@@ -13,9 +10,8 @@ class AccessDeniedException extends QBusinessServiceException_1.QBusinessService
|
|
|
13
10
|
});
|
|
14
11
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
15
12
|
}
|
|
16
|
-
}
|
|
17
|
-
exports.
|
|
18
|
-
class ConflictException extends QBusinessServiceException_1.QBusinessServiceException {
|
|
13
|
+
};
|
|
14
|
+
exports.ConflictException = class ConflictException extends __BaseException {
|
|
19
15
|
name = "ConflictException";
|
|
20
16
|
$fault = "client";
|
|
21
17
|
resourceId;
|
|
@@ -30,9 +26,8 @@ class ConflictException extends QBusinessServiceException_1.QBusinessServiceExce
|
|
|
30
26
|
this.resourceId = opts.resourceId;
|
|
31
27
|
this.resourceType = opts.resourceType;
|
|
32
28
|
}
|
|
33
|
-
}
|
|
34
|
-
exports.
|
|
35
|
-
class InternalServerException extends QBusinessServiceException_1.QBusinessServiceException {
|
|
29
|
+
};
|
|
30
|
+
exports.InternalServerException = class InternalServerException extends __BaseException {
|
|
36
31
|
name = "InternalServerException";
|
|
37
32
|
$fault = "server";
|
|
38
33
|
constructor(opts) {
|
|
@@ -43,9 +38,8 @@ class InternalServerException extends QBusinessServiceException_1.QBusinessServi
|
|
|
43
38
|
});
|
|
44
39
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
45
40
|
}
|
|
46
|
-
}
|
|
47
|
-
exports.
|
|
48
|
-
class ResourceNotFoundException extends QBusinessServiceException_1.QBusinessServiceException {
|
|
41
|
+
};
|
|
42
|
+
exports.ResourceNotFoundException = class ResourceNotFoundException extends __BaseException {
|
|
49
43
|
name = "ResourceNotFoundException";
|
|
50
44
|
$fault = "client";
|
|
51
45
|
resourceId;
|
|
@@ -60,9 +54,8 @@ class ResourceNotFoundException extends QBusinessServiceException_1.QBusinessSer
|
|
|
60
54
|
this.resourceId = opts.resourceId;
|
|
61
55
|
this.resourceType = opts.resourceType;
|
|
62
56
|
}
|
|
63
|
-
}
|
|
64
|
-
exports.
|
|
65
|
-
class ServiceQuotaExceededException extends QBusinessServiceException_1.QBusinessServiceException {
|
|
57
|
+
};
|
|
58
|
+
exports.ServiceQuotaExceededException = class ServiceQuotaExceededException extends __BaseException {
|
|
66
59
|
name = "ServiceQuotaExceededException";
|
|
67
60
|
$fault = "client";
|
|
68
61
|
resourceId;
|
|
@@ -77,9 +70,8 @@ class ServiceQuotaExceededException extends QBusinessServiceException_1.QBusines
|
|
|
77
70
|
this.resourceId = opts.resourceId;
|
|
78
71
|
this.resourceType = opts.resourceType;
|
|
79
72
|
}
|
|
80
|
-
}
|
|
81
|
-
exports.
|
|
82
|
-
class ThrottlingException extends QBusinessServiceException_1.QBusinessServiceException {
|
|
73
|
+
};
|
|
74
|
+
exports.ThrottlingException = class ThrottlingException extends __BaseException {
|
|
83
75
|
name = "ThrottlingException";
|
|
84
76
|
$fault = "client";
|
|
85
77
|
constructor(opts) {
|
|
@@ -90,9 +82,8 @@ class ThrottlingException extends QBusinessServiceException_1.QBusinessServiceEx
|
|
|
90
82
|
});
|
|
91
83
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
92
84
|
}
|
|
93
|
-
}
|
|
94
|
-
exports.
|
|
95
|
-
class ValidationException extends QBusinessServiceException_1.QBusinessServiceException {
|
|
85
|
+
};
|
|
86
|
+
exports.ValidationException = class ValidationException extends __BaseException {
|
|
96
87
|
name = "ValidationException";
|
|
97
88
|
$fault = "client";
|
|
98
89
|
reason;
|
|
@@ -107,9 +98,8 @@ class ValidationException extends QBusinessServiceException_1.QBusinessServiceEx
|
|
|
107
98
|
this.reason = opts.reason;
|
|
108
99
|
this.fields = opts.fields;
|
|
109
100
|
}
|
|
110
|
-
}
|
|
111
|
-
exports.
|
|
112
|
-
class ExternalResourceException extends QBusinessServiceException_1.QBusinessServiceException {
|
|
101
|
+
};
|
|
102
|
+
exports.ExternalResourceException = class ExternalResourceException extends __BaseException {
|
|
113
103
|
name = "ExternalResourceException";
|
|
114
104
|
$fault = "client";
|
|
115
105
|
constructor(opts) {
|
|
@@ -120,9 +110,8 @@ class ExternalResourceException extends QBusinessServiceException_1.QBusinessSer
|
|
|
120
110
|
});
|
|
121
111
|
Object.setPrototypeOf(this, ExternalResourceException.prototype);
|
|
122
112
|
}
|
|
123
|
-
}
|
|
124
|
-
exports.
|
|
125
|
-
class LicenseNotFoundException extends QBusinessServiceException_1.QBusinessServiceException {
|
|
113
|
+
};
|
|
114
|
+
exports.LicenseNotFoundException = class LicenseNotFoundException extends __BaseException {
|
|
126
115
|
name = "LicenseNotFoundException";
|
|
127
116
|
$fault = "client";
|
|
128
117
|
constructor(opts) {
|
|
@@ -133,9 +122,8 @@ class LicenseNotFoundException extends QBusinessServiceException_1.QBusinessServ
|
|
|
133
122
|
});
|
|
134
123
|
Object.setPrototypeOf(this, LicenseNotFoundException.prototype);
|
|
135
124
|
}
|
|
136
|
-
}
|
|
137
|
-
exports.
|
|
138
|
-
class MediaTooLargeException extends QBusinessServiceException_1.QBusinessServiceException {
|
|
125
|
+
};
|
|
126
|
+
exports.MediaTooLargeException = class MediaTooLargeException extends __BaseException {
|
|
139
127
|
name = "MediaTooLargeException";
|
|
140
128
|
$fault = "client";
|
|
141
129
|
constructor(opts) {
|
|
@@ -146,5 +134,4 @@ class MediaTooLargeException extends QBusinessServiceException_1.QBusinessServic
|
|
|
146
134
|
});
|
|
147
135
|
Object.setPrototypeOf(this, MediaTooLargeException.prototype);
|
|
148
136
|
}
|
|
149
|
-
}
|
|
150
|
-
exports.MediaTooLargeException = MediaTooLargeException;
|
|
137
|
+
};
|
|
@@ -1,41 +1,37 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const retry_1 = require("@smithy/core/retry");
|
|
12
|
-
const serde_1 = require("@smithy/core/serde");
|
|
13
|
-
const fetch_http_handler_1 = require("@smithy/fetch-http-handler");
|
|
14
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { Sha256 } = require("@aws-crypto/sha256-browser");
|
|
3
|
+
const { createDefaultUserAgentProvider } = require("@aws-sdk/core/client");
|
|
4
|
+
const { invalidFunction, invalidProvider, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
5
|
+
const { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
6
|
+
const { eventStreamSerdeProvider } = require("@smithy/core/event-streams");
|
|
7
|
+
const { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } = require("@smithy/core/retry");
|
|
8
|
+
const { calculateBodyLength } = require("@smithy/core/serde");
|
|
9
|
+
const { FetchHttpHandler: RequestHandler, streamCollector } = require("@smithy/fetch-http-handler");
|
|
10
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
15
11
|
const getRuntimeConfig = (config) => {
|
|
16
|
-
const defaultsMode =
|
|
17
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
18
|
-
const clientSharedValues = (
|
|
12
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
13
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
14
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
19
15
|
return {
|
|
20
16
|
...clientSharedValues,
|
|
21
17
|
...config,
|
|
22
18
|
runtime: "browser",
|
|
23
19
|
defaultsMode,
|
|
24
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
20
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
25
21
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
26
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
22
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
27
23
|
eventStreamPayloadHandlerProvider: config?.eventStreamPayloadHandlerProvider ?? (() => ({
|
|
28
|
-
handle:
|
|
24
|
+
handle: invalidFunction("event stream request is not supported in browser."),
|
|
29
25
|
})),
|
|
30
|
-
eventStreamSerdeProvider: config?.eventStreamSerdeProvider ??
|
|
31
|
-
maxAttempts: config?.maxAttempts ??
|
|
32
|
-
region: config?.region ??
|
|
33
|
-
requestHandler:
|
|
34
|
-
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode ||
|
|
35
|
-
sha256: config?.sha256 ??
|
|
36
|
-
streamCollector: config?.streamCollector ??
|
|
37
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(
|
|
38
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(
|
|
26
|
+
eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider,
|
|
27
|
+
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
28
|
+
region: config?.region ?? invalidProvider("Region is missing"),
|
|
29
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
30
|
+
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
31
|
+
sha256: config?.sha256 ?? Sha256,
|
|
32
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
33
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
34
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
|
|
39
35
|
};
|
|
40
36
|
};
|
|
41
37
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,25 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const
|
|
12
|
-
const
|
|
13
|
-
const retry_1 = require("@smithy/core/retry");
|
|
14
|
-
const serde_1 = require("@smithy/core/serde");
|
|
15
|
-
const node_http_handler_1 = require("@smithy/node-http-handler");
|
|
16
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { createDefaultUserAgentProvider, emitWarningIfUnsupportedVersion: awsCheckVersion, NODE_APP_ID_CONFIG_OPTIONS } = require("@aws-sdk/core/client");
|
|
3
|
+
const { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
4
|
+
const { defaultProvider: credentialDefaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
5
|
+
const { eventStreamPayloadHandlerProvider } = require("@aws-sdk/eventstream-handler-node");
|
|
6
|
+
const { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
7
|
+
const { loadConfig: loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
8
|
+
const { eventStreamSerdeProvider } = require("@smithy/core/event-streams");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } = require("@smithy/core/retry");
|
|
10
|
+
const { calculateBodyLength, Hash } = require("@smithy/core/serde");
|
|
11
|
+
const { NodeHttp2Handler: RequestHandler, streamCollector } = require("@smithy/node-http-handler");
|
|
12
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
17
13
|
const getRuntimeConfig = (config) => {
|
|
18
|
-
|
|
19
|
-
const defaultsMode =
|
|
20
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
21
|
-
const clientSharedValues = (
|
|
22
|
-
(
|
|
14
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
15
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
16
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
17
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
18
|
+
awsCheckVersion(process.version);
|
|
23
19
|
const loaderConfig = {
|
|
24
20
|
profile: config?.profile,
|
|
25
21
|
logger: clientSharedValues.logger,
|
|
@@ -29,28 +25,28 @@ const getRuntimeConfig = (config) => {
|
|
|
29
25
|
...config,
|
|
30
26
|
runtime: "node",
|
|
31
27
|
defaultsMode,
|
|
32
|
-
authSchemePreference: config?.authSchemePreference ?? (
|
|
33
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
34
|
-
credentialDefaultProvider: config?.credentialDefaultProvider ??
|
|
35
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
36
|
-
eventStreamPayloadHandlerProvider: config?.eventStreamPayloadHandlerProvider ??
|
|
37
|
-
eventStreamSerdeProvider: config?.eventStreamSerdeProvider ??
|
|
38
|
-
maxAttempts: config?.maxAttempts ?? (
|
|
39
|
-
region: config?.region ?? (
|
|
40
|
-
requestHandler:
|
|
28
|
+
authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
29
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
30
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
|
|
31
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
32
|
+
eventStreamPayloadHandlerProvider: config?.eventStreamPayloadHandlerProvider ?? eventStreamPayloadHandlerProvider,
|
|
33
|
+
eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider,
|
|
34
|
+
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
35
|
+
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
36
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? (async () => ({
|
|
41
37
|
...await defaultConfigProvider(),
|
|
42
38
|
disableConcurrentStreams: true
|
|
43
39
|
}))),
|
|
44
40
|
retryMode: config?.retryMode ??
|
|
45
|
-
(
|
|
46
|
-
...
|
|
47
|
-
default: async () => (await defaultConfigProvider()).retryMode ||
|
|
41
|
+
loadNodeConfig({
|
|
42
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
43
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
48
44
|
}, config),
|
|
49
|
-
sha256: config?.sha256 ??
|
|
50
|
-
streamCollector: config?.streamCollector ??
|
|
51
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (
|
|
52
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (
|
|
53
|
-
userAgentAppId: config?.userAgentAppId ?? (
|
|
45
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
46
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
47
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
48
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
49
|
+
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
54
50
|
};
|
|
55
51
|
};
|
|
56
52
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,19 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const sha256_js_1 = require("@aws-crypto/sha256-js");
|
|
5
|
-
const client_1 = require("@smithy/core/client");
|
|
6
|
-
const runtimeConfig_browser_1 = require("./runtimeConfig.browser");
|
|
1
|
+
const { Sha256 } = require("@aws-crypto/sha256-js");
|
|
2
|
+
const { invalidFunction } = require("@smithy/core/client");
|
|
3
|
+
const { getRuntimeConfig: getBrowserRuntimeConfig } = require("./runtimeConfig.browser");
|
|
7
4
|
const getRuntimeConfig = (config) => {
|
|
8
|
-
const browserDefaults = (
|
|
5
|
+
const browserDefaults = getBrowserRuntimeConfig(config);
|
|
9
6
|
return {
|
|
10
7
|
...browserDefaults,
|
|
11
8
|
...config,
|
|
12
9
|
runtime: "react-native",
|
|
13
10
|
eventStreamPayloadHandlerProvider: config?.eventStreamPayloadHandlerProvider ?? (() => ({
|
|
14
|
-
handle:
|
|
11
|
+
handle: invalidFunction("event stream request is not supported in ReactNative."),
|
|
15
12
|
})),
|
|
16
|
-
sha256: config?.sha256 ??
|
|
13
|
+
sha256: config?.sha256 ?? Sha256,
|
|
17
14
|
};
|
|
18
15
|
};
|
|
19
16
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,42 +1,38 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
11
|
-
const schemas_0_1 = require("./schemas/schemas_0");
|
|
12
|
-
const getRuntimeConfig = (config) => {
|
|
1
|
+
const { AwsSdkSigV4Signer } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
3
|
+
const { NoOpLogger } = require("@smithy/core/client");
|
|
4
|
+
const { parseUrl } = require("@smithy/core/protocols");
|
|
5
|
+
const { fromBase64, fromUtf8, toBase64, toUtf8 } = require("@smithy/core/serde");
|
|
6
|
+
const { defaultQBusinessHttpAuthSchemeProvider } = require("./auth/httpAuthSchemeProvider");
|
|
7
|
+
const { defaultEndpointResolver } = require("./endpoint/endpointResolver");
|
|
8
|
+
const { errorTypeRegistries } = require("./schemas/schemas_0");
|
|
9
|
+
exports.getRuntimeConfig = (config) => {
|
|
13
10
|
return {
|
|
14
11
|
apiVersion: "2023-11-27",
|
|
15
|
-
base64Decoder: config?.base64Decoder ??
|
|
16
|
-
base64Encoder: config?.base64Encoder ??
|
|
12
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
13
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
17
14
|
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
18
|
-
endpointProvider: config?.endpointProvider ??
|
|
15
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
19
16
|
extensions: config?.extensions ?? [],
|
|
20
|
-
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ??
|
|
17
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultQBusinessHttpAuthSchemeProvider,
|
|
21
18
|
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
22
19
|
{
|
|
23
20
|
schemeId: "aws.auth#sigv4",
|
|
24
21
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
25
|
-
signer: new
|
|
22
|
+
signer: new AwsSdkSigV4Signer(),
|
|
26
23
|
},
|
|
27
24
|
],
|
|
28
|
-
logger: config?.logger ?? new
|
|
29
|
-
protocol: config?.protocol ??
|
|
25
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
30
27
|
protocolSettings: config?.protocolSettings ?? {
|
|
31
28
|
defaultNamespace: "com.amazonaws.qbusiness",
|
|
32
|
-
errorTypeRegistries
|
|
29
|
+
errorTypeRegistries,
|
|
33
30
|
version: "2023-11-27",
|
|
34
31
|
serviceTarget: "ExpertQ",
|
|
35
32
|
},
|
|
36
33
|
serviceId: config?.serviceId ?? "QBusiness",
|
|
37
|
-
urlParser: config?.urlParser ??
|
|
38
|
-
utf8Decoder: config?.utf8Decoder ??
|
|
39
|
-
utf8Encoder: config?.utf8Encoder ??
|
|
34
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
35
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
36
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
40
37
|
};
|
|
41
38
|
};
|
|
42
|
-
exports.getRuntimeConfig = getRuntimeConfig;
|