@aws-sdk/client-amplifybackend 3.645.0 → 3.650.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/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +31 -93
- package/dist-es/commands/CloneBackendCommand.js +1 -3
- package/dist-es/commands/CreateBackendAPICommand.js +1 -3
- package/dist-es/commands/CreateBackendAuthCommand.js +1 -3
- package/dist-es/commands/CreateBackendCommand.js +1 -3
- package/dist-es/commands/CreateBackendConfigCommand.js +1 -3
- package/dist-es/commands/CreateBackendStorageCommand.js +1 -3
- package/dist-es/commands/CreateTokenCommand.js +1 -3
- package/dist-es/commands/DeleteBackendAPICommand.js +1 -3
- package/dist-es/commands/DeleteBackendAuthCommand.js +1 -3
- package/dist-es/commands/DeleteBackendCommand.js +1 -3
- package/dist-es/commands/DeleteBackendStorageCommand.js +1 -3
- package/dist-es/commands/DeleteTokenCommand.js +1 -3
- package/dist-es/commands/GenerateBackendAPIModelsCommand.js +1 -3
- package/dist-es/commands/GetBackendAPICommand.js +1 -3
- package/dist-es/commands/GetBackendAPIModelsCommand.js +1 -3
- package/dist-es/commands/GetBackendAuthCommand.js +1 -3
- package/dist-es/commands/GetBackendCommand.js +1 -3
- package/dist-es/commands/GetBackendJobCommand.js +1 -3
- package/dist-es/commands/GetBackendStorageCommand.js +1 -3
- package/dist-es/commands/GetTokenCommand.js +1 -3
- package/dist-es/commands/ImportBackendAuthCommand.js +1 -3
- package/dist-es/commands/ImportBackendStorageCommand.js +1 -3
- package/dist-es/commands/ListBackendJobsCommand.js +1 -3
- package/dist-es/commands/ListS3BucketsCommand.js +1 -3
- package/dist-es/commands/RemoveAllBackendsCommand.js +1 -3
- package/dist-es/commands/RemoveBackendConfigCommand.js +1 -3
- package/dist-es/commands/UpdateBackendAPICommand.js +1 -3
- package/dist-es/commands/UpdateBackendAuthCommand.js +1 -3
- package/dist-es/commands/UpdateBackendConfigCommand.js +1 -3
- package/dist-es/commands/UpdateBackendJobCommand.js +1 -3
- package/dist-es/commands/UpdateBackendStorageCommand.js +1 -3
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +35 -35
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -2087,9 +2087,7 @@ var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
|
|
|
2087
2087
|
}), "deserializeMetadata");
|
|
2088
2088
|
|
|
2089
2089
|
// src/commands/CloneBackendCommand.ts
|
|
2090
|
-
var _CloneBackendCommand = class _CloneBackendCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2091
|
-
...commonParams
|
|
2092
|
-
}).m(function(Command, cs, config, o) {
|
|
2090
|
+
var _CloneBackendCommand = class _CloneBackendCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2093
2091
|
return [
|
|
2094
2092
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2095
2093
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2103,9 +2101,7 @@ var CloneBackendCommand = _CloneBackendCommand;
|
|
|
2103
2101
|
|
|
2104
2102
|
|
|
2105
2103
|
|
|
2106
|
-
var _CreateBackendAPICommand = class _CreateBackendAPICommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2107
|
-
...commonParams
|
|
2108
|
-
}).m(function(Command, cs, config, o) {
|
|
2104
|
+
var _CreateBackendAPICommand = class _CreateBackendAPICommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2109
2105
|
return [
|
|
2110
2106
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2111
2107
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2119,9 +2115,7 @@ var CreateBackendAPICommand = _CreateBackendAPICommand;
|
|
|
2119
2115
|
|
|
2120
2116
|
|
|
2121
2117
|
|
|
2122
|
-
var _CreateBackendAuthCommand = class _CreateBackendAuthCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2123
|
-
...commonParams
|
|
2124
|
-
}).m(function(Command, cs, config, o) {
|
|
2118
|
+
var _CreateBackendAuthCommand = class _CreateBackendAuthCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2125
2119
|
return [
|
|
2126
2120
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2127
2121
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2135,9 +2129,7 @@ var CreateBackendAuthCommand = _CreateBackendAuthCommand;
|
|
|
2135
2129
|
|
|
2136
2130
|
|
|
2137
2131
|
|
|
2138
|
-
var _CreateBackendCommand = class _CreateBackendCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2139
|
-
...commonParams
|
|
2140
|
-
}).m(function(Command, cs, config, o) {
|
|
2132
|
+
var _CreateBackendCommand = class _CreateBackendCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2141
2133
|
return [
|
|
2142
2134
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2143
2135
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2151,9 +2143,7 @@ var CreateBackendCommand = _CreateBackendCommand;
|
|
|
2151
2143
|
|
|
2152
2144
|
|
|
2153
2145
|
|
|
2154
|
-
var _CreateBackendConfigCommand = class _CreateBackendConfigCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2155
|
-
...commonParams
|
|
2156
|
-
}).m(function(Command, cs, config, o) {
|
|
2146
|
+
var _CreateBackendConfigCommand = class _CreateBackendConfigCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2157
2147
|
return [
|
|
2158
2148
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2159
2149
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2167,9 +2157,7 @@ var CreateBackendConfigCommand = _CreateBackendConfigCommand;
|
|
|
2167
2157
|
|
|
2168
2158
|
|
|
2169
2159
|
|
|
2170
|
-
var _CreateBackendStorageCommand = class _CreateBackendStorageCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2171
|
-
...commonParams
|
|
2172
|
-
}).m(function(Command, cs, config, o) {
|
|
2160
|
+
var _CreateBackendStorageCommand = class _CreateBackendStorageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2173
2161
|
return [
|
|
2174
2162
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2175
2163
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2183,9 +2171,7 @@ var CreateBackendStorageCommand = _CreateBackendStorageCommand;
|
|
|
2183
2171
|
|
|
2184
2172
|
|
|
2185
2173
|
|
|
2186
|
-
var _CreateTokenCommand = class _CreateTokenCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2187
|
-
...commonParams
|
|
2188
|
-
}).m(function(Command, cs, config, o) {
|
|
2174
|
+
var _CreateTokenCommand = class _CreateTokenCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2189
2175
|
return [
|
|
2190
2176
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2191
2177
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2199,9 +2185,7 @@ var CreateTokenCommand = _CreateTokenCommand;
|
|
|
2199
2185
|
|
|
2200
2186
|
|
|
2201
2187
|
|
|
2202
|
-
var _DeleteBackendAPICommand = class _DeleteBackendAPICommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2203
|
-
...commonParams
|
|
2204
|
-
}).m(function(Command, cs, config, o) {
|
|
2188
|
+
var _DeleteBackendAPICommand = class _DeleteBackendAPICommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2205
2189
|
return [
|
|
2206
2190
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2207
2191
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2215,9 +2199,7 @@ var DeleteBackendAPICommand = _DeleteBackendAPICommand;
|
|
|
2215
2199
|
|
|
2216
2200
|
|
|
2217
2201
|
|
|
2218
|
-
var _DeleteBackendAuthCommand = class _DeleteBackendAuthCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2219
|
-
...commonParams
|
|
2220
|
-
}).m(function(Command, cs, config, o) {
|
|
2202
|
+
var _DeleteBackendAuthCommand = class _DeleteBackendAuthCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2221
2203
|
return [
|
|
2222
2204
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2223
2205
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2231,9 +2213,7 @@ var DeleteBackendAuthCommand = _DeleteBackendAuthCommand;
|
|
|
2231
2213
|
|
|
2232
2214
|
|
|
2233
2215
|
|
|
2234
|
-
var _DeleteBackendCommand = class _DeleteBackendCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2235
|
-
...commonParams
|
|
2236
|
-
}).m(function(Command, cs, config, o) {
|
|
2216
|
+
var _DeleteBackendCommand = class _DeleteBackendCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2237
2217
|
return [
|
|
2238
2218
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2239
2219
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2247,9 +2227,7 @@ var DeleteBackendCommand = _DeleteBackendCommand;
|
|
|
2247
2227
|
|
|
2248
2228
|
|
|
2249
2229
|
|
|
2250
|
-
var _DeleteBackendStorageCommand = class _DeleteBackendStorageCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2251
|
-
...commonParams
|
|
2252
|
-
}).m(function(Command, cs, config, o) {
|
|
2230
|
+
var _DeleteBackendStorageCommand = class _DeleteBackendStorageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2253
2231
|
return [
|
|
2254
2232
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2255
2233
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2263,9 +2241,7 @@ var DeleteBackendStorageCommand = _DeleteBackendStorageCommand;
|
|
|
2263
2241
|
|
|
2264
2242
|
|
|
2265
2243
|
|
|
2266
|
-
var _DeleteTokenCommand = class _DeleteTokenCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2267
|
-
...commonParams
|
|
2268
|
-
}).m(function(Command, cs, config, o) {
|
|
2244
|
+
var _DeleteTokenCommand = class _DeleteTokenCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2269
2245
|
return [
|
|
2270
2246
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2271
2247
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2279,9 +2255,7 @@ var DeleteTokenCommand = _DeleteTokenCommand;
|
|
|
2279
2255
|
|
|
2280
2256
|
|
|
2281
2257
|
|
|
2282
|
-
var _GenerateBackendAPIModelsCommand = class _GenerateBackendAPIModelsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2283
|
-
...commonParams
|
|
2284
|
-
}).m(function(Command, cs, config, o) {
|
|
2258
|
+
var _GenerateBackendAPIModelsCommand = class _GenerateBackendAPIModelsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2285
2259
|
return [
|
|
2286
2260
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2287
2261
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2295,9 +2269,7 @@ var GenerateBackendAPIModelsCommand = _GenerateBackendAPIModelsCommand;
|
|
|
2295
2269
|
|
|
2296
2270
|
|
|
2297
2271
|
|
|
2298
|
-
var _GetBackendAPICommand = class _GetBackendAPICommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2299
|
-
...commonParams
|
|
2300
|
-
}).m(function(Command, cs, config, o) {
|
|
2272
|
+
var _GetBackendAPICommand = class _GetBackendAPICommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2301
2273
|
return [
|
|
2302
2274
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2303
2275
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2311,9 +2283,7 @@ var GetBackendAPICommand = _GetBackendAPICommand;
|
|
|
2311
2283
|
|
|
2312
2284
|
|
|
2313
2285
|
|
|
2314
|
-
var _GetBackendAPIModelsCommand = class _GetBackendAPIModelsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2315
|
-
...commonParams
|
|
2316
|
-
}).m(function(Command, cs, config, o) {
|
|
2286
|
+
var _GetBackendAPIModelsCommand = class _GetBackendAPIModelsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2317
2287
|
return [
|
|
2318
2288
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2319
2289
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2327,9 +2297,7 @@ var GetBackendAPIModelsCommand = _GetBackendAPIModelsCommand;
|
|
|
2327
2297
|
|
|
2328
2298
|
|
|
2329
2299
|
|
|
2330
|
-
var _GetBackendAuthCommand = class _GetBackendAuthCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2331
|
-
...commonParams
|
|
2332
|
-
}).m(function(Command, cs, config, o) {
|
|
2300
|
+
var _GetBackendAuthCommand = class _GetBackendAuthCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2333
2301
|
return [
|
|
2334
2302
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2335
2303
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2343,9 +2311,7 @@ var GetBackendAuthCommand = _GetBackendAuthCommand;
|
|
|
2343
2311
|
|
|
2344
2312
|
|
|
2345
2313
|
|
|
2346
|
-
var _GetBackendCommand = class _GetBackendCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2347
|
-
...commonParams
|
|
2348
|
-
}).m(function(Command, cs, config, o) {
|
|
2314
|
+
var _GetBackendCommand = class _GetBackendCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2349
2315
|
return [
|
|
2350
2316
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2351
2317
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2359,9 +2325,7 @@ var GetBackendCommand = _GetBackendCommand;
|
|
|
2359
2325
|
|
|
2360
2326
|
|
|
2361
2327
|
|
|
2362
|
-
var _GetBackendJobCommand = class _GetBackendJobCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2363
|
-
...commonParams
|
|
2364
|
-
}).m(function(Command, cs, config, o) {
|
|
2328
|
+
var _GetBackendJobCommand = class _GetBackendJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2365
2329
|
return [
|
|
2366
2330
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2367
2331
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2375,9 +2339,7 @@ var GetBackendJobCommand = _GetBackendJobCommand;
|
|
|
2375
2339
|
|
|
2376
2340
|
|
|
2377
2341
|
|
|
2378
|
-
var _GetBackendStorageCommand = class _GetBackendStorageCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2379
|
-
...commonParams
|
|
2380
|
-
}).m(function(Command, cs, config, o) {
|
|
2342
|
+
var _GetBackendStorageCommand = class _GetBackendStorageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2381
2343
|
return [
|
|
2382
2344
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2383
2345
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2391,9 +2353,7 @@ var GetBackendStorageCommand = _GetBackendStorageCommand;
|
|
|
2391
2353
|
|
|
2392
2354
|
|
|
2393
2355
|
|
|
2394
|
-
var _GetTokenCommand = class _GetTokenCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2395
|
-
...commonParams
|
|
2396
|
-
}).m(function(Command, cs, config, o) {
|
|
2356
|
+
var _GetTokenCommand = class _GetTokenCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2397
2357
|
return [
|
|
2398
2358
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2399
2359
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2407,9 +2367,7 @@ var GetTokenCommand = _GetTokenCommand;
|
|
|
2407
2367
|
|
|
2408
2368
|
|
|
2409
2369
|
|
|
2410
|
-
var _ImportBackendAuthCommand = class _ImportBackendAuthCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2411
|
-
...commonParams
|
|
2412
|
-
}).m(function(Command, cs, config, o) {
|
|
2370
|
+
var _ImportBackendAuthCommand = class _ImportBackendAuthCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2413
2371
|
return [
|
|
2414
2372
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2415
2373
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2423,9 +2381,7 @@ var ImportBackendAuthCommand = _ImportBackendAuthCommand;
|
|
|
2423
2381
|
|
|
2424
2382
|
|
|
2425
2383
|
|
|
2426
|
-
var _ImportBackendStorageCommand = class _ImportBackendStorageCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2427
|
-
...commonParams
|
|
2428
|
-
}).m(function(Command, cs, config, o) {
|
|
2384
|
+
var _ImportBackendStorageCommand = class _ImportBackendStorageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2429
2385
|
return [
|
|
2430
2386
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2431
2387
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2439,9 +2395,7 @@ var ImportBackendStorageCommand = _ImportBackendStorageCommand;
|
|
|
2439
2395
|
|
|
2440
2396
|
|
|
2441
2397
|
|
|
2442
|
-
var _ListBackendJobsCommand = class _ListBackendJobsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2443
|
-
...commonParams
|
|
2444
|
-
}).m(function(Command, cs, config, o) {
|
|
2398
|
+
var _ListBackendJobsCommand = class _ListBackendJobsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2445
2399
|
return [
|
|
2446
2400
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2447
2401
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2455,9 +2409,7 @@ var ListBackendJobsCommand = _ListBackendJobsCommand;
|
|
|
2455
2409
|
|
|
2456
2410
|
|
|
2457
2411
|
|
|
2458
|
-
var _ListS3BucketsCommand = class _ListS3BucketsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2459
|
-
...commonParams
|
|
2460
|
-
}).m(function(Command, cs, config, o) {
|
|
2412
|
+
var _ListS3BucketsCommand = class _ListS3BucketsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2461
2413
|
return [
|
|
2462
2414
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2463
2415
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2471,9 +2423,7 @@ var ListS3BucketsCommand = _ListS3BucketsCommand;
|
|
|
2471
2423
|
|
|
2472
2424
|
|
|
2473
2425
|
|
|
2474
|
-
var _RemoveAllBackendsCommand = class _RemoveAllBackendsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2475
|
-
...commonParams
|
|
2476
|
-
}).m(function(Command, cs, config, o) {
|
|
2426
|
+
var _RemoveAllBackendsCommand = class _RemoveAllBackendsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2477
2427
|
return [
|
|
2478
2428
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2479
2429
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2487,9 +2437,7 @@ var RemoveAllBackendsCommand = _RemoveAllBackendsCommand;
|
|
|
2487
2437
|
|
|
2488
2438
|
|
|
2489
2439
|
|
|
2490
|
-
var _RemoveBackendConfigCommand = class _RemoveBackendConfigCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2491
|
-
...commonParams
|
|
2492
|
-
}).m(function(Command, cs, config, o) {
|
|
2440
|
+
var _RemoveBackendConfigCommand = class _RemoveBackendConfigCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2493
2441
|
return [
|
|
2494
2442
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2495
2443
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2503,9 +2451,7 @@ var RemoveBackendConfigCommand = _RemoveBackendConfigCommand;
|
|
|
2503
2451
|
|
|
2504
2452
|
|
|
2505
2453
|
|
|
2506
|
-
var _UpdateBackendAPICommand = class _UpdateBackendAPICommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2507
|
-
...commonParams
|
|
2508
|
-
}).m(function(Command, cs, config, o) {
|
|
2454
|
+
var _UpdateBackendAPICommand = class _UpdateBackendAPICommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2509
2455
|
return [
|
|
2510
2456
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2511
2457
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2519,9 +2465,7 @@ var UpdateBackendAPICommand = _UpdateBackendAPICommand;
|
|
|
2519
2465
|
|
|
2520
2466
|
|
|
2521
2467
|
|
|
2522
|
-
var _UpdateBackendAuthCommand = class _UpdateBackendAuthCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2523
|
-
...commonParams
|
|
2524
|
-
}).m(function(Command, cs, config, o) {
|
|
2468
|
+
var _UpdateBackendAuthCommand = class _UpdateBackendAuthCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2525
2469
|
return [
|
|
2526
2470
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2527
2471
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2535,9 +2479,7 @@ var UpdateBackendAuthCommand = _UpdateBackendAuthCommand;
|
|
|
2535
2479
|
|
|
2536
2480
|
|
|
2537
2481
|
|
|
2538
|
-
var _UpdateBackendConfigCommand = class _UpdateBackendConfigCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2539
|
-
...commonParams
|
|
2540
|
-
}).m(function(Command, cs, config, o) {
|
|
2482
|
+
var _UpdateBackendConfigCommand = class _UpdateBackendConfigCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2541
2483
|
return [
|
|
2542
2484
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2543
2485
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2551,9 +2493,7 @@ var UpdateBackendConfigCommand = _UpdateBackendConfigCommand;
|
|
|
2551
2493
|
|
|
2552
2494
|
|
|
2553
2495
|
|
|
2554
|
-
var _UpdateBackendJobCommand = class _UpdateBackendJobCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2555
|
-
...commonParams
|
|
2556
|
-
}).m(function(Command, cs, config, o) {
|
|
2496
|
+
var _UpdateBackendJobCommand = class _UpdateBackendJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2557
2497
|
return [
|
|
2558
2498
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2559
2499
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2567,9 +2507,7 @@ var UpdateBackendJobCommand = _UpdateBackendJobCommand;
|
|
|
2567
2507
|
|
|
2568
2508
|
|
|
2569
2509
|
|
|
2570
|
-
var _UpdateBackendStorageCommand = class _UpdateBackendStorageCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2571
|
-
...commonParams
|
|
2572
|
-
}).m(function(Command, cs, config, o) {
|
|
2510
|
+
var _UpdateBackendStorageCommand = class _UpdateBackendStorageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2573
2511
|
return [
|
|
2574
2512
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2575
2513
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -6,9 +6,7 @@ import { de_CloneBackendCommand, se_CloneBackendCommand } from "../protocols/Aws
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CloneBackendCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateBackendAPICommand, se_CreateBackendAPICommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateBackendAPICommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_CreateBackendAuthCommand, se_CreateBackendAuthCommand } from "../pro
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class CreateBackendAuthCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateBackendCommand, se_CreateBackendCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateBackendCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateBackendConfigCommand, se_CreateBackendConfigCommand } from "..
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateBackendConfigCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateBackendStorageCommand, se_CreateBackendStorageCommand } from "
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateBackendStorageCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateTokenCommand, se_CreateTokenCommand } from "../protocols/Aws_r
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateTokenCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteBackendAPICommand, se_DeleteBackendAPICommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteBackendAPICommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteBackendAuthCommand, se_DeleteBackendAuthCommand } from "../pro
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteBackendAuthCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteBackendCommand, se_DeleteBackendCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteBackendCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteBackendStorageCommand, se_DeleteBackendStorageCommand } from "
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteBackendStorageCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteTokenCommand, se_DeleteTokenCommand } from "../protocols/Aws_r
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteTokenCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GenerateBackendAPIModelsCommand, se_GenerateBackendAPIModelsCommand
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GenerateBackendAPIModelsCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetBackendAPICommand, se_GetBackendAPICommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetBackendAPICommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetBackendAPIModelsCommand, se_GetBackendAPIModelsCommand } from "..
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetBackendAPIModelsCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_GetBackendAuthCommand, se_GetBackendAuthCommand } from "../protocols
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class GetBackendAuthCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetBackendCommand, se_GetBackendCommand } from "../protocols/Aws_res
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetBackendCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetBackendJobCommand, se_GetBackendJobCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetBackendJobCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetBackendStorageCommand, se_GetBackendStorageCommand } from "../pro
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetBackendStorageCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetTokenCommand, se_GetTokenCommand } from "../protocols/Aws_restJso
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetTokenCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ImportBackendAuthCommand, se_ImportBackendAuthCommand } from "../pro
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ImportBackendAuthCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ImportBackendStorageCommand, se_ImportBackendStorageCommand } from "
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ImportBackendStorageCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListBackendJobsCommand, se_ListBackendJobsCommand } from "../protoco
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListBackendJobsCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListS3BucketsCommand, se_ListS3BucketsCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListS3BucketsCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_RemoveAllBackendsCommand, se_RemoveAllBackendsCommand } from "../pro
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class RemoveAllBackendsCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_RemoveBackendConfigCommand, se_RemoveBackendConfigCommand } from "..
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class RemoveBackendConfigCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_UpdateBackendAPICommand, se_UpdateBackendAPICommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateBackendAPICommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_UpdateBackendAuthCommand, se_UpdateBackendAuthCommand } from "../pro
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdateBackendAuthCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_UpdateBackendConfigCommand, se_UpdateBackendConfigCommand } from "..
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateBackendConfigCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_UpdateBackendJobCommand, se_UpdateBackendJobCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateBackendJobCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_UpdateBackendStorageCommand, se_UpdateBackendStorageCommand } from "
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateBackendStorageCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
-
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints";
|
|
3
3
|
import { ruleSet } from "./ruleset";
|
|
4
|
+
const cache = new EndpointCache({
|
|
5
|
+
size: 50,
|
|
6
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
7
|
+
});
|
|
4
8
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
5
|
-
return resolveEndpoint(ruleSet, {
|
|
9
|
+
return cache.get(endpointParams, () => resolveEndpoint(ruleSet, {
|
|
6
10
|
endpointParams: endpointParams,
|
|
7
11
|
logger: context.logger,
|
|
8
|
-
});
|
|
12
|
+
}));
|
|
9
13
|
};
|
|
10
14
|
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
18
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
apiVersion: string;
|
|
21
|
+
cacheMiddleware?: boolean | undefined;
|
|
21
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
23
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
24
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -34,6 +35,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
34
35
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
36
|
}) => import("@smithy/types").EndpointV2;
|
|
36
37
|
tls?: boolean | undefined;
|
|
38
|
+
serviceConfiguredEndpoint?: undefined;
|
|
37
39
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
40
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AmplifyBackendHttpAuthSchemeProvider;
|
|
39
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
18
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
apiVersion: string;
|
|
21
|
+
cacheMiddleware?: boolean | undefined;
|
|
21
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
23
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
24
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -34,6 +35,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
34
35
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
36
|
}) => import("@smithy/types").EndpointV2;
|
|
36
37
|
tls?: boolean | undefined;
|
|
38
|
+
serviceConfiguredEndpoint?: undefined;
|
|
37
39
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
40
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AmplifyBackendHttpAuthSchemeProvider;
|
|
39
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -7,6 +7,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
|
+
cacheMiddleware?: boolean | undefined;
|
|
10
11
|
urlParser: import("@smithy/types").UrlParser;
|
|
11
12
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
13
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -33,6 +34,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
33
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
34
35
|
}) => import("@smithy/types").EndpointV2;
|
|
35
36
|
tls?: boolean | undefined;
|
|
37
|
+
serviceConfiguredEndpoint?: undefined;
|
|
36
38
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
37
39
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AmplifyBackendHttpAuthSchemeProvider;
|
|
38
40
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
23
23
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
25
25
|
apiVersion: string;
|
|
26
|
+
cacheMiddleware?: boolean | undefined;
|
|
26
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
27
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
28
29
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -61,6 +62,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
61
62
|
}
|
|
62
63
|
) => import("@smithy/types").EndpointV2;
|
|
63
64
|
tls?: boolean | undefined;
|
|
65
|
+
serviceConfiguredEndpoint?: undefined;
|
|
64
66
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
65
67
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AmplifyBackendHttpAuthSchemeProvider;
|
|
66
68
|
credentials?:
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
27
27
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
28
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
29
29
|
apiVersion: string;
|
|
30
|
+
cacheMiddleware?: boolean | undefined;
|
|
30
31
|
urlParser: import("@smithy/types").UrlParser;
|
|
31
32
|
base64Decoder: import("@smithy/types").Decoder;
|
|
32
33
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -65,6 +66,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
65
66
|
}
|
|
66
67
|
) => import("@smithy/types").EndpointV2;
|
|
67
68
|
tls?: boolean | undefined;
|
|
69
|
+
serviceConfiguredEndpoint?: undefined;
|
|
68
70
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
69
71
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AmplifyBackendHttpAuthSchemeProvider;
|
|
70
72
|
credentials?:
|
|
@@ -9,6 +9,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
9
9
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
10
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
11
|
apiVersion: string;
|
|
12
|
+
cacheMiddleware?: boolean | undefined;
|
|
12
13
|
urlParser: import("@smithy/types").UrlParser;
|
|
13
14
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
14
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -55,6 +56,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
55
56
|
}
|
|
56
57
|
) => import("@smithy/types").EndpointV2;
|
|
57
58
|
tls?: boolean | undefined;
|
|
59
|
+
serviceConfiguredEndpoint?: undefined;
|
|
58
60
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
59
61
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AmplifyBackendHttpAuthSchemeProvider;
|
|
60
62
|
credentials?:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-amplifybackend",
|
|
3
3
|
"description": "AWS SDK for JavaScript Amplifybackend Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.650.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-amplifybackend",
|
|
@@ -20,43 +20,43 @@
|
|
|
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": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.4.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.1.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.650.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.650.0",
|
|
25
|
+
"@aws-sdk/core": "3.649.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.650.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.649.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.649.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.649.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.649.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.649.0",
|
|
32
|
+
"@aws-sdk/types": "3.649.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.649.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.649.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.649.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.6",
|
|
37
|
+
"@smithy/core": "^2.4.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.5",
|
|
39
|
+
"@smithy/hash-node": "^3.0.4",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.4",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.6",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.1.1",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.16",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.4",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.4",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.5",
|
|
47
|
+
"@smithy/node-http-handler": "^3.2.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.1",
|
|
49
|
+
"@smithy/smithy-client": "^3.3.0",
|
|
50
|
+
"@smithy/types": "^3.4.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.4",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.0
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.16",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.16",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.0",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.4",
|
|
59
|
+
"@smithy/util-retry": "^3.0.4",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|