@aws-sdk/client-amplify 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 +37 -111
- package/dist-es/commands/CreateAppCommand.js +1 -3
- package/dist-es/commands/CreateBackendEnvironmentCommand.js +1 -3
- package/dist-es/commands/CreateBranchCommand.js +1 -3
- package/dist-es/commands/CreateDeploymentCommand.js +1 -3
- package/dist-es/commands/CreateDomainAssociationCommand.js +1 -3
- package/dist-es/commands/CreateWebhookCommand.js +1 -3
- package/dist-es/commands/DeleteAppCommand.js +1 -3
- package/dist-es/commands/DeleteBackendEnvironmentCommand.js +1 -3
- package/dist-es/commands/DeleteBranchCommand.js +1 -3
- package/dist-es/commands/DeleteDomainAssociationCommand.js +1 -3
- package/dist-es/commands/DeleteJobCommand.js +1 -3
- package/dist-es/commands/DeleteWebhookCommand.js +1 -3
- package/dist-es/commands/GenerateAccessLogsCommand.js +1 -3
- package/dist-es/commands/GetAppCommand.js +1 -3
- package/dist-es/commands/GetArtifactUrlCommand.js +1 -3
- package/dist-es/commands/GetBackendEnvironmentCommand.js +1 -3
- package/dist-es/commands/GetBranchCommand.js +1 -3
- package/dist-es/commands/GetDomainAssociationCommand.js +1 -3
- package/dist-es/commands/GetJobCommand.js +1 -3
- package/dist-es/commands/GetWebhookCommand.js +1 -3
- package/dist-es/commands/ListAppsCommand.js +1 -3
- package/dist-es/commands/ListArtifactsCommand.js +1 -3
- package/dist-es/commands/ListBackendEnvironmentsCommand.js +1 -3
- package/dist-es/commands/ListBranchesCommand.js +1 -3
- package/dist-es/commands/ListDomainAssociationsCommand.js +1 -3
- package/dist-es/commands/ListJobsCommand.js +1 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
- package/dist-es/commands/ListWebhooksCommand.js +1 -3
- package/dist-es/commands/StartDeploymentCommand.js +1 -3
- package/dist-es/commands/StartJobCommand.js +1 -3
- package/dist-es/commands/StopJobCommand.js +1 -3
- package/dist-es/commands/TagResourceCommand.js +1 -3
- package/dist-es/commands/UntagResourceCommand.js +1 -3
- package/dist-es/commands/UpdateAppCommand.js +1 -3
- package/dist-es/commands/UpdateBranchCommand.js +1 -3
- package/dist-es/commands/UpdateDomainAssociationCommand.js +1 -3
- package/dist-es/commands/UpdateWebhookCommand.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
|
@@ -1935,9 +1935,7 @@ var _nT = "nextToken";
|
|
|
1935
1935
|
var _tK = "tagKeys";
|
|
1936
1936
|
|
|
1937
1937
|
// src/commands/CreateAppCommand.ts
|
|
1938
|
-
var _CreateAppCommand = class _CreateAppCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1939
|
-
...commonParams
|
|
1940
|
-
}).m(function(Command, cs, config, o) {
|
|
1938
|
+
var _CreateAppCommand = class _CreateAppCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1941
1939
|
return [
|
|
1942
1940
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1943
1941
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1951,9 +1949,7 @@ var CreateAppCommand = _CreateAppCommand;
|
|
|
1951
1949
|
|
|
1952
1950
|
|
|
1953
1951
|
|
|
1954
|
-
var _CreateBackendEnvironmentCommand = class _CreateBackendEnvironmentCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1955
|
-
...commonParams
|
|
1956
|
-
}).m(function(Command, cs, config, o) {
|
|
1952
|
+
var _CreateBackendEnvironmentCommand = class _CreateBackendEnvironmentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1957
1953
|
return [
|
|
1958
1954
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1959
1955
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1967,9 +1963,7 @@ var CreateBackendEnvironmentCommand = _CreateBackendEnvironmentCommand;
|
|
|
1967
1963
|
|
|
1968
1964
|
|
|
1969
1965
|
|
|
1970
|
-
var _CreateBranchCommand = class _CreateBranchCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1971
|
-
...commonParams
|
|
1972
|
-
}).m(function(Command, cs, config, o) {
|
|
1966
|
+
var _CreateBranchCommand = class _CreateBranchCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1973
1967
|
return [
|
|
1974
1968
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1975
1969
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1983,9 +1977,7 @@ var CreateBranchCommand = _CreateBranchCommand;
|
|
|
1983
1977
|
|
|
1984
1978
|
|
|
1985
1979
|
|
|
1986
|
-
var _CreateDeploymentCommand = class _CreateDeploymentCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1987
|
-
...commonParams
|
|
1988
|
-
}).m(function(Command, cs, config, o) {
|
|
1980
|
+
var _CreateDeploymentCommand = class _CreateDeploymentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1989
1981
|
return [
|
|
1990
1982
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1991
1983
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1999,9 +1991,7 @@ var CreateDeploymentCommand = _CreateDeploymentCommand;
|
|
|
1999
1991
|
|
|
2000
1992
|
|
|
2001
1993
|
|
|
2002
|
-
var _CreateDomainAssociationCommand = class _CreateDomainAssociationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2003
|
-
...commonParams
|
|
2004
|
-
}).m(function(Command, cs, config, o) {
|
|
1994
|
+
var _CreateDomainAssociationCommand = class _CreateDomainAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2005
1995
|
return [
|
|
2006
1996
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2007
1997
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2015,9 +2005,7 @@ var CreateDomainAssociationCommand = _CreateDomainAssociationCommand;
|
|
|
2015
2005
|
|
|
2016
2006
|
|
|
2017
2007
|
|
|
2018
|
-
var _CreateWebhookCommand = class _CreateWebhookCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2019
|
-
...commonParams
|
|
2020
|
-
}).m(function(Command, cs, config, o) {
|
|
2008
|
+
var _CreateWebhookCommand = class _CreateWebhookCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2021
2009
|
return [
|
|
2022
2010
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2023
2011
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2031,9 +2019,7 @@ var CreateWebhookCommand = _CreateWebhookCommand;
|
|
|
2031
2019
|
|
|
2032
2020
|
|
|
2033
2021
|
|
|
2034
|
-
var _DeleteAppCommand = class _DeleteAppCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2035
|
-
...commonParams
|
|
2036
|
-
}).m(function(Command, cs, config, o) {
|
|
2022
|
+
var _DeleteAppCommand = class _DeleteAppCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2037
2023
|
return [
|
|
2038
2024
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2039
2025
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2047,9 +2033,7 @@ var DeleteAppCommand = _DeleteAppCommand;
|
|
|
2047
2033
|
|
|
2048
2034
|
|
|
2049
2035
|
|
|
2050
|
-
var _DeleteBackendEnvironmentCommand = class _DeleteBackendEnvironmentCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2051
|
-
...commonParams
|
|
2052
|
-
}).m(function(Command, cs, config, o) {
|
|
2036
|
+
var _DeleteBackendEnvironmentCommand = class _DeleteBackendEnvironmentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2053
2037
|
return [
|
|
2054
2038
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2055
2039
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2063,9 +2047,7 @@ var DeleteBackendEnvironmentCommand = _DeleteBackendEnvironmentCommand;
|
|
|
2063
2047
|
|
|
2064
2048
|
|
|
2065
2049
|
|
|
2066
|
-
var _DeleteBranchCommand = class _DeleteBranchCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2067
|
-
...commonParams
|
|
2068
|
-
}).m(function(Command, cs, config, o) {
|
|
2050
|
+
var _DeleteBranchCommand = class _DeleteBranchCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2069
2051
|
return [
|
|
2070
2052
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2071
2053
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2079,9 +2061,7 @@ var DeleteBranchCommand = _DeleteBranchCommand;
|
|
|
2079
2061
|
|
|
2080
2062
|
|
|
2081
2063
|
|
|
2082
|
-
var _DeleteDomainAssociationCommand = class _DeleteDomainAssociationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2083
|
-
...commonParams
|
|
2084
|
-
}).m(function(Command, cs, config, o) {
|
|
2064
|
+
var _DeleteDomainAssociationCommand = class _DeleteDomainAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2085
2065
|
return [
|
|
2086
2066
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2087
2067
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2095,9 +2075,7 @@ var DeleteDomainAssociationCommand = _DeleteDomainAssociationCommand;
|
|
|
2095
2075
|
|
|
2096
2076
|
|
|
2097
2077
|
|
|
2098
|
-
var _DeleteJobCommand = class _DeleteJobCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2099
|
-
...commonParams
|
|
2100
|
-
}).m(function(Command, cs, config, o) {
|
|
2078
|
+
var _DeleteJobCommand = class _DeleteJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2101
2079
|
return [
|
|
2102
2080
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2103
2081
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2111,9 +2089,7 @@ var DeleteJobCommand = _DeleteJobCommand;
|
|
|
2111
2089
|
|
|
2112
2090
|
|
|
2113
2091
|
|
|
2114
|
-
var _DeleteWebhookCommand = class _DeleteWebhookCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2115
|
-
...commonParams
|
|
2116
|
-
}).m(function(Command, cs, config, o) {
|
|
2092
|
+
var _DeleteWebhookCommand = class _DeleteWebhookCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2117
2093
|
return [
|
|
2118
2094
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2119
2095
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2127,9 +2103,7 @@ var DeleteWebhookCommand = _DeleteWebhookCommand;
|
|
|
2127
2103
|
|
|
2128
2104
|
|
|
2129
2105
|
|
|
2130
|
-
var _GenerateAccessLogsCommand = class _GenerateAccessLogsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2131
|
-
...commonParams
|
|
2132
|
-
}).m(function(Command, cs, config, o) {
|
|
2106
|
+
var _GenerateAccessLogsCommand = class _GenerateAccessLogsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2133
2107
|
return [
|
|
2134
2108
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2135
2109
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2143,9 +2117,7 @@ var GenerateAccessLogsCommand = _GenerateAccessLogsCommand;
|
|
|
2143
2117
|
|
|
2144
2118
|
|
|
2145
2119
|
|
|
2146
|
-
var _GetAppCommand = class _GetAppCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2147
|
-
...commonParams
|
|
2148
|
-
}).m(function(Command, cs, config, o) {
|
|
2120
|
+
var _GetAppCommand = class _GetAppCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2149
2121
|
return [
|
|
2150
2122
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2151
2123
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2159,9 +2131,7 @@ var GetAppCommand = _GetAppCommand;
|
|
|
2159
2131
|
|
|
2160
2132
|
|
|
2161
2133
|
|
|
2162
|
-
var _GetArtifactUrlCommand = class _GetArtifactUrlCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2163
|
-
...commonParams
|
|
2164
|
-
}).m(function(Command, cs, config, o) {
|
|
2134
|
+
var _GetArtifactUrlCommand = class _GetArtifactUrlCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2165
2135
|
return [
|
|
2166
2136
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2167
2137
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2175,9 +2145,7 @@ var GetArtifactUrlCommand = _GetArtifactUrlCommand;
|
|
|
2175
2145
|
|
|
2176
2146
|
|
|
2177
2147
|
|
|
2178
|
-
var _GetBackendEnvironmentCommand = class _GetBackendEnvironmentCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2179
|
-
...commonParams
|
|
2180
|
-
}).m(function(Command, cs, config, o) {
|
|
2148
|
+
var _GetBackendEnvironmentCommand = class _GetBackendEnvironmentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2181
2149
|
return [
|
|
2182
2150
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2183
2151
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2191,9 +2159,7 @@ var GetBackendEnvironmentCommand = _GetBackendEnvironmentCommand;
|
|
|
2191
2159
|
|
|
2192
2160
|
|
|
2193
2161
|
|
|
2194
|
-
var _GetBranchCommand = class _GetBranchCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2195
|
-
...commonParams
|
|
2196
|
-
}).m(function(Command, cs, config, o) {
|
|
2162
|
+
var _GetBranchCommand = class _GetBranchCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2197
2163
|
return [
|
|
2198
2164
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2199
2165
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2207,9 +2173,7 @@ var GetBranchCommand = _GetBranchCommand;
|
|
|
2207
2173
|
|
|
2208
2174
|
|
|
2209
2175
|
|
|
2210
|
-
var _GetDomainAssociationCommand = class _GetDomainAssociationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2211
|
-
...commonParams
|
|
2212
|
-
}).m(function(Command, cs, config, o) {
|
|
2176
|
+
var _GetDomainAssociationCommand = class _GetDomainAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2213
2177
|
return [
|
|
2214
2178
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2215
2179
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2223,9 +2187,7 @@ var GetDomainAssociationCommand = _GetDomainAssociationCommand;
|
|
|
2223
2187
|
|
|
2224
2188
|
|
|
2225
2189
|
|
|
2226
|
-
var _GetJobCommand = class _GetJobCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2227
|
-
...commonParams
|
|
2228
|
-
}).m(function(Command, cs, config, o) {
|
|
2190
|
+
var _GetJobCommand = class _GetJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2229
2191
|
return [
|
|
2230
2192
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2231
2193
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2239,9 +2201,7 @@ var GetJobCommand = _GetJobCommand;
|
|
|
2239
2201
|
|
|
2240
2202
|
|
|
2241
2203
|
|
|
2242
|
-
var _GetWebhookCommand = class _GetWebhookCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2243
|
-
...commonParams
|
|
2244
|
-
}).m(function(Command, cs, config, o) {
|
|
2204
|
+
var _GetWebhookCommand = class _GetWebhookCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2245
2205
|
return [
|
|
2246
2206
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2247
2207
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2255,9 +2215,7 @@ var GetWebhookCommand = _GetWebhookCommand;
|
|
|
2255
2215
|
|
|
2256
2216
|
|
|
2257
2217
|
|
|
2258
|
-
var _ListAppsCommand = class _ListAppsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2259
|
-
...commonParams
|
|
2260
|
-
}).m(function(Command, cs, config, o) {
|
|
2218
|
+
var _ListAppsCommand = class _ListAppsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2261
2219
|
return [
|
|
2262
2220
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2263
2221
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2271,9 +2229,7 @@ var ListAppsCommand = _ListAppsCommand;
|
|
|
2271
2229
|
|
|
2272
2230
|
|
|
2273
2231
|
|
|
2274
|
-
var _ListArtifactsCommand = class _ListArtifactsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2275
|
-
...commonParams
|
|
2276
|
-
}).m(function(Command, cs, config, o) {
|
|
2232
|
+
var _ListArtifactsCommand = class _ListArtifactsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2277
2233
|
return [
|
|
2278
2234
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2279
2235
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2287,9 +2243,7 @@ var ListArtifactsCommand = _ListArtifactsCommand;
|
|
|
2287
2243
|
|
|
2288
2244
|
|
|
2289
2245
|
|
|
2290
|
-
var _ListBackendEnvironmentsCommand = class _ListBackendEnvironmentsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2291
|
-
...commonParams
|
|
2292
|
-
}).m(function(Command, cs, config, o) {
|
|
2246
|
+
var _ListBackendEnvironmentsCommand = class _ListBackendEnvironmentsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2293
2247
|
return [
|
|
2294
2248
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2295
2249
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2303,9 +2257,7 @@ var ListBackendEnvironmentsCommand = _ListBackendEnvironmentsCommand;
|
|
|
2303
2257
|
|
|
2304
2258
|
|
|
2305
2259
|
|
|
2306
|
-
var _ListBranchesCommand = class _ListBranchesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2307
|
-
...commonParams
|
|
2308
|
-
}).m(function(Command, cs, config, o) {
|
|
2260
|
+
var _ListBranchesCommand = class _ListBranchesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2309
2261
|
return [
|
|
2310
2262
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2311
2263
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2319,9 +2271,7 @@ var ListBranchesCommand = _ListBranchesCommand;
|
|
|
2319
2271
|
|
|
2320
2272
|
|
|
2321
2273
|
|
|
2322
|
-
var _ListDomainAssociationsCommand = class _ListDomainAssociationsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2323
|
-
...commonParams
|
|
2324
|
-
}).m(function(Command, cs, config, o) {
|
|
2274
|
+
var _ListDomainAssociationsCommand = class _ListDomainAssociationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2325
2275
|
return [
|
|
2326
2276
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2327
2277
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2335,9 +2285,7 @@ var ListDomainAssociationsCommand = _ListDomainAssociationsCommand;
|
|
|
2335
2285
|
|
|
2336
2286
|
|
|
2337
2287
|
|
|
2338
|
-
var _ListJobsCommand = class _ListJobsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2339
|
-
...commonParams
|
|
2340
|
-
}).m(function(Command, cs, config, o) {
|
|
2288
|
+
var _ListJobsCommand = class _ListJobsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2341
2289
|
return [
|
|
2342
2290
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2343
2291
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2351,9 +2299,7 @@ var ListJobsCommand = _ListJobsCommand;
|
|
|
2351
2299
|
|
|
2352
2300
|
|
|
2353
2301
|
|
|
2354
|
-
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2355
|
-
...commonParams
|
|
2356
|
-
}).m(function(Command, cs, config, o) {
|
|
2302
|
+
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2357
2303
|
return [
|
|
2358
2304
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2359
2305
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2367,9 +2313,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
|
2367
2313
|
|
|
2368
2314
|
|
|
2369
2315
|
|
|
2370
|
-
var _ListWebhooksCommand = class _ListWebhooksCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2371
|
-
...commonParams
|
|
2372
|
-
}).m(function(Command, cs, config, o) {
|
|
2316
|
+
var _ListWebhooksCommand = class _ListWebhooksCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2373
2317
|
return [
|
|
2374
2318
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2375
2319
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2383,9 +2327,7 @@ var ListWebhooksCommand = _ListWebhooksCommand;
|
|
|
2383
2327
|
|
|
2384
2328
|
|
|
2385
2329
|
|
|
2386
|
-
var _StartDeploymentCommand = class _StartDeploymentCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2387
|
-
...commonParams
|
|
2388
|
-
}).m(function(Command, cs, config, o) {
|
|
2330
|
+
var _StartDeploymentCommand = class _StartDeploymentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2389
2331
|
return [
|
|
2390
2332
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2391
2333
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2399,9 +2341,7 @@ var StartDeploymentCommand = _StartDeploymentCommand;
|
|
|
2399
2341
|
|
|
2400
2342
|
|
|
2401
2343
|
|
|
2402
|
-
var _StartJobCommand = class _StartJobCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2403
|
-
...commonParams
|
|
2404
|
-
}).m(function(Command, cs, config, o) {
|
|
2344
|
+
var _StartJobCommand = class _StartJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2405
2345
|
return [
|
|
2406
2346
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2407
2347
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2415,9 +2355,7 @@ var StartJobCommand = _StartJobCommand;
|
|
|
2415
2355
|
|
|
2416
2356
|
|
|
2417
2357
|
|
|
2418
|
-
var _StopJobCommand = class _StopJobCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2419
|
-
...commonParams
|
|
2420
|
-
}).m(function(Command, cs, config, o) {
|
|
2358
|
+
var _StopJobCommand = class _StopJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2421
2359
|
return [
|
|
2422
2360
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2423
2361
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2431,9 +2369,7 @@ var StopJobCommand = _StopJobCommand;
|
|
|
2431
2369
|
|
|
2432
2370
|
|
|
2433
2371
|
|
|
2434
|
-
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2435
|
-
...commonParams
|
|
2436
|
-
}).m(function(Command, cs, config, o) {
|
|
2372
|
+
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2437
2373
|
return [
|
|
2438
2374
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2439
2375
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2447,9 +2383,7 @@ var TagResourceCommand = _TagResourceCommand;
|
|
|
2447
2383
|
|
|
2448
2384
|
|
|
2449
2385
|
|
|
2450
|
-
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2451
|
-
...commonParams
|
|
2452
|
-
}).m(function(Command, cs, config, o) {
|
|
2386
|
+
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2453
2387
|
return [
|
|
2454
2388
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2455
2389
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2463,9 +2397,7 @@ var UntagResourceCommand = _UntagResourceCommand;
|
|
|
2463
2397
|
|
|
2464
2398
|
|
|
2465
2399
|
|
|
2466
|
-
var _UpdateAppCommand = class _UpdateAppCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2467
|
-
...commonParams
|
|
2468
|
-
}).m(function(Command, cs, config, o) {
|
|
2400
|
+
var _UpdateAppCommand = class _UpdateAppCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2469
2401
|
return [
|
|
2470
2402
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2471
2403
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2479,9 +2411,7 @@ var UpdateAppCommand = _UpdateAppCommand;
|
|
|
2479
2411
|
|
|
2480
2412
|
|
|
2481
2413
|
|
|
2482
|
-
var _UpdateBranchCommand = class _UpdateBranchCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2483
|
-
...commonParams
|
|
2484
|
-
}).m(function(Command, cs, config, o) {
|
|
2414
|
+
var _UpdateBranchCommand = class _UpdateBranchCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2485
2415
|
return [
|
|
2486
2416
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2487
2417
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2495,9 +2425,7 @@ var UpdateBranchCommand = _UpdateBranchCommand;
|
|
|
2495
2425
|
|
|
2496
2426
|
|
|
2497
2427
|
|
|
2498
|
-
var _UpdateDomainAssociationCommand = class _UpdateDomainAssociationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2499
|
-
...commonParams
|
|
2500
|
-
}).m(function(Command, cs, config, o) {
|
|
2428
|
+
var _UpdateDomainAssociationCommand = class _UpdateDomainAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2501
2429
|
return [
|
|
2502
2430
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2503
2431
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2511,9 +2439,7 @@ var UpdateDomainAssociationCommand = _UpdateDomainAssociationCommand;
|
|
|
2511
2439
|
|
|
2512
2440
|
|
|
2513
2441
|
|
|
2514
|
-
var _UpdateWebhookCommand = class _UpdateWebhookCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2515
|
-
...commonParams
|
|
2516
|
-
}).m(function(Command, cs, config, o) {
|
|
2442
|
+
var _UpdateWebhookCommand = class _UpdateWebhookCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2517
2443
|
return [
|
|
2518
2444
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2519
2445
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -7,9 +7,7 @@ import { de_CreateAppCommand, se_CreateAppCommand } from "../protocols/Aws_restJ
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class CreateAppCommand 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_CreateBackendEnvironmentCommand, se_CreateBackendEnvironmentCommand
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateBackendEnvironmentCommand 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_CreateBranchCommand, se_CreateBranchCommand } from "../protocols/Aws
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class CreateBranchCommand 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_CreateDeploymentCommand, se_CreateDeploymentCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateDeploymentCommand 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_CreateDomainAssociationCommand, se_CreateDomainAssociationCommand }
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateDomainAssociationCommand 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_CreateWebhookCommand, se_CreateWebhookCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateWebhookCommand 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_DeleteAppCommand, se_DeleteAppCommand } from "../protocols/Aws_restJ
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class DeleteAppCommand 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_DeleteBackendEnvironmentCommand, se_DeleteBackendEnvironmentCommand
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteBackendEnvironmentCommand 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_DeleteBranchCommand, se_DeleteBranchCommand } from "../protocols/Aws
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class DeleteBranchCommand 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_DeleteDomainAssociationCommand, se_DeleteDomainAssociationCommand }
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteDomainAssociationCommand 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_DeleteJobCommand, se_DeleteJobCommand } from "../protocols/Aws_restJ
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteJobCommand 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_DeleteWebhookCommand, se_DeleteWebhookCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteWebhookCommand 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_GenerateAccessLogsCommand, se_GenerateAccessLogsCommand } from "../p
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GenerateAccessLogsCommand 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_GetAppCommand, se_GetAppCommand } from "../protocols/Aws_restJson1";
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class GetAppCommand 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_GetArtifactUrlCommand, se_GetArtifactUrlCommand } from "../protocols
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetArtifactUrlCommand 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_GetBackendEnvironmentCommand, se_GetBackendEnvironmentCommand } from
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetBackendEnvironmentCommand 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_GetBranchCommand, se_GetBranchCommand } from "../protocols/Aws_restJ
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class GetBranchCommand 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_GetDomainAssociationCommand, se_GetDomainAssociationCommand } from "
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetDomainAssociationCommand 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_GetJobCommand, se_GetJobCommand } from "../protocols/Aws_restJson1";
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetJobCommand 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_GetWebhookCommand, se_GetWebhookCommand } from "../protocols/Aws_res
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetWebhookCommand 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_ListAppsCommand, se_ListAppsCommand } from "../protocols/Aws_restJso
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListAppsCommand 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_ListArtifactsCommand, se_ListArtifactsCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListArtifactsCommand 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_ListBackendEnvironmentsCommand, se_ListBackendEnvironmentsCommand }
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListBackendEnvironmentsCommand 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_ListBranchesCommand, se_ListBranchesCommand } from "../protocols/Aws
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListBranchesCommand 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_ListDomainAssociationsCommand, se_ListDomainAssociationsCommand } fr
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListDomainAssociationsCommand 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_ListJobsCommand, se_ListJobsCommand } from "../protocols/Aws_restJso
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListJobsCommand 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_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "..
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListTagsForResourceCommand 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_ListWebhooksCommand, se_ListWebhooksCommand } from "../protocols/Aws
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListWebhooksCommand 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_StartDeploymentCommand, se_StartDeploymentCommand } from "../protoco
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class StartDeploymentCommand 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_StartJobCommand, se_StartJobCommand } from "../protocols/Aws_restJso
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class StartJobCommand 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_StopJobCommand, se_StopJobCommand } from "../protocols/Aws_restJson1
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class StopJobCommand 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_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_r
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class TagResourceCommand 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_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UntagResourceCommand 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_UpdateAppCommand, se_UpdateAppCommand } from "../protocols/Aws_restJ
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdateAppCommand 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),
|
|
@@ -7,9 +7,7 @@ import { de_UpdateBranchCommand, se_UpdateBranchCommand } from "../protocols/Aws
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdateBranchCommand 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_UpdateDomainAssociationCommand, se_UpdateDomainAssociationCommand }
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateDomainAssociationCommand 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_UpdateWebhookCommand, se_UpdateWebhookCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateWebhookCommand 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: AmplifyClientConfig) => {
|
|
|
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: AmplifyClientConfig) => {
|
|
|
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").AmplifyHttpAuthSchemeProvider;
|
|
39
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: AmplifyClientConfig) => {
|
|
|
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: AmplifyClientConfig) => {
|
|
|
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").AmplifyHttpAuthSchemeProvider;
|
|
39
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -7,6 +7,7 @@ export declare const getRuntimeConfig: (config: AmplifyClientConfig) => {
|
|
|
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: AmplifyClientConfig) => {
|
|
|
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").AmplifyHttpAuthSchemeProvider;
|
|
38
40
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: AmplifyClientConfig) => {
|
|
|
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: AmplifyClientConfig) => {
|
|
|
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").AmplifyHttpAuthSchemeProvider;
|
|
66
68
|
credentials?:
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: AmplifyClientConfig) => {
|
|
|
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: AmplifyClientConfig) => {
|
|
|
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").AmplifyHttpAuthSchemeProvider;
|
|
70
72
|
credentials?:
|
|
@@ -9,6 +9,7 @@ export declare const getRuntimeConfig: (config: AmplifyClientConfig) => {
|
|
|
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: AmplifyClientConfig) => {
|
|
|
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").AmplifyHttpAuthSchemeProvider;
|
|
60
62
|
credentials?:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-amplify",
|
|
3
3
|
"description": "AWS SDK for JavaScript Amplify 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-amplify",
|
|
@@ -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
|
},
|