@aws-sdk/client-transfer 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 +60 -180
- package/dist-es/commands/CreateAccessCommand.js +1 -3
- package/dist-es/commands/CreateAgreementCommand.js +1 -3
- package/dist-es/commands/CreateConnectorCommand.js +1 -3
- package/dist-es/commands/CreateProfileCommand.js +1 -3
- package/dist-es/commands/CreateServerCommand.js +1 -3
- package/dist-es/commands/CreateUserCommand.js +1 -3
- package/dist-es/commands/CreateWorkflowCommand.js +1 -3
- package/dist-es/commands/DeleteAccessCommand.js +1 -3
- package/dist-es/commands/DeleteAgreementCommand.js +1 -3
- package/dist-es/commands/DeleteCertificateCommand.js +1 -3
- package/dist-es/commands/DeleteConnectorCommand.js +1 -3
- package/dist-es/commands/DeleteHostKeyCommand.js +1 -3
- package/dist-es/commands/DeleteProfileCommand.js +1 -3
- package/dist-es/commands/DeleteServerCommand.js +1 -3
- package/dist-es/commands/DeleteSshPublicKeyCommand.js +1 -3
- package/dist-es/commands/DeleteUserCommand.js +1 -3
- package/dist-es/commands/DeleteWorkflowCommand.js +1 -3
- package/dist-es/commands/DescribeAccessCommand.js +1 -3
- package/dist-es/commands/DescribeAgreementCommand.js +1 -3
- package/dist-es/commands/DescribeCertificateCommand.js +1 -3
- package/dist-es/commands/DescribeConnectorCommand.js +1 -3
- package/dist-es/commands/DescribeExecutionCommand.js +1 -3
- package/dist-es/commands/DescribeHostKeyCommand.js +1 -3
- package/dist-es/commands/DescribeProfileCommand.js +1 -3
- package/dist-es/commands/DescribeSecurityPolicyCommand.js +1 -3
- package/dist-es/commands/DescribeServerCommand.js +1 -3
- package/dist-es/commands/DescribeUserCommand.js +1 -3
- package/dist-es/commands/DescribeWorkflowCommand.js +1 -3
- package/dist-es/commands/ImportCertificateCommand.js +1 -3
- package/dist-es/commands/ImportHostKeyCommand.js +1 -3
- package/dist-es/commands/ImportSshPublicKeyCommand.js +1 -3
- package/dist-es/commands/ListAccessesCommand.js +1 -3
- package/dist-es/commands/ListAgreementsCommand.js +1 -3
- package/dist-es/commands/ListCertificatesCommand.js +1 -3
- package/dist-es/commands/ListConnectorsCommand.js +1 -3
- package/dist-es/commands/ListExecutionsCommand.js +1 -3
- package/dist-es/commands/ListHostKeysCommand.js +1 -3
- package/dist-es/commands/ListProfilesCommand.js +1 -3
- package/dist-es/commands/ListSecurityPoliciesCommand.js +1 -3
- package/dist-es/commands/ListServersCommand.js +1 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
- package/dist-es/commands/ListUsersCommand.js +1 -3
- package/dist-es/commands/ListWorkflowsCommand.js +1 -3
- package/dist-es/commands/SendWorkflowStepStateCommand.js +1 -3
- package/dist-es/commands/StartDirectoryListingCommand.js +1 -3
- package/dist-es/commands/StartFileTransferCommand.js +1 -3
- package/dist-es/commands/StartServerCommand.js +1 -3
- package/dist-es/commands/StopServerCommand.js +1 -3
- package/dist-es/commands/TagResourceCommand.js +1 -3
- package/dist-es/commands/TestConnectionCommand.js +1 -3
- package/dist-es/commands/TestIdentityProviderCommand.js +1 -3
- package/dist-es/commands/UntagResourceCommand.js +1 -3
- package/dist-es/commands/UpdateAccessCommand.js +1 -3
- package/dist-es/commands/UpdateAgreementCommand.js +1 -3
- package/dist-es/commands/UpdateCertificateCommand.js +1 -3
- package/dist-es/commands/UpdateConnectorCommand.js +1 -3
- package/dist-es/commands/UpdateHostKeyCommand.js +1 -3
- package/dist-es/commands/UpdateProfileCommand.js +1 -3
- package/dist-es/commands/UpdateServerCommand.js +1 -3
- package/dist-es/commands/UpdateUserCommand.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 +36 -36
|
@@ -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
|
@@ -2064,9 +2064,7 @@ function sharedHeaders(operation) {
|
|
|
2064
2064
|
__name(sharedHeaders, "sharedHeaders");
|
|
2065
2065
|
|
|
2066
2066
|
// src/commands/CreateAccessCommand.ts
|
|
2067
|
-
var _CreateAccessCommand = class _CreateAccessCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2068
|
-
...commonParams
|
|
2069
|
-
}).m(function(Command, cs, config, o) {
|
|
2067
|
+
var _CreateAccessCommand = class _CreateAccessCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2070
2068
|
return [
|
|
2071
2069
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2072
2070
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2080,9 +2078,7 @@ var CreateAccessCommand = _CreateAccessCommand;
|
|
|
2080
2078
|
|
|
2081
2079
|
|
|
2082
2080
|
|
|
2083
|
-
var _CreateAgreementCommand = class _CreateAgreementCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2084
|
-
...commonParams
|
|
2085
|
-
}).m(function(Command, cs, config, o) {
|
|
2081
|
+
var _CreateAgreementCommand = class _CreateAgreementCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2086
2082
|
return [
|
|
2087
2083
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2088
2084
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2096,9 +2092,7 @@ var CreateAgreementCommand = _CreateAgreementCommand;
|
|
|
2096
2092
|
|
|
2097
2093
|
|
|
2098
2094
|
|
|
2099
|
-
var _CreateConnectorCommand = class _CreateConnectorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2100
|
-
...commonParams
|
|
2101
|
-
}).m(function(Command, cs, config, o) {
|
|
2095
|
+
var _CreateConnectorCommand = class _CreateConnectorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2102
2096
|
return [
|
|
2103
2097
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2104
2098
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2112,9 +2106,7 @@ var CreateConnectorCommand = _CreateConnectorCommand;
|
|
|
2112
2106
|
|
|
2113
2107
|
|
|
2114
2108
|
|
|
2115
|
-
var _CreateProfileCommand = class _CreateProfileCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2116
|
-
...commonParams
|
|
2117
|
-
}).m(function(Command, cs, config, o) {
|
|
2109
|
+
var _CreateProfileCommand = class _CreateProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2118
2110
|
return [
|
|
2119
2111
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2120
2112
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2128,9 +2120,7 @@ var CreateProfileCommand = _CreateProfileCommand;
|
|
|
2128
2120
|
|
|
2129
2121
|
|
|
2130
2122
|
|
|
2131
|
-
var _CreateServerCommand = class _CreateServerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2132
|
-
...commonParams
|
|
2133
|
-
}).m(function(Command, cs, config, o) {
|
|
2123
|
+
var _CreateServerCommand = class _CreateServerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2134
2124
|
return [
|
|
2135
2125
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2136
2126
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2144,9 +2134,7 @@ var CreateServerCommand = _CreateServerCommand;
|
|
|
2144
2134
|
|
|
2145
2135
|
|
|
2146
2136
|
|
|
2147
|
-
var _CreateUserCommand = class _CreateUserCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2148
|
-
...commonParams
|
|
2149
|
-
}).m(function(Command, cs, config, o) {
|
|
2137
|
+
var _CreateUserCommand = class _CreateUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2150
2138
|
return [
|
|
2151
2139
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2152
2140
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2160,9 +2148,7 @@ var CreateUserCommand = _CreateUserCommand;
|
|
|
2160
2148
|
|
|
2161
2149
|
|
|
2162
2150
|
|
|
2163
|
-
var _CreateWorkflowCommand = class _CreateWorkflowCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2164
|
-
...commonParams
|
|
2165
|
-
}).m(function(Command, cs, config, o) {
|
|
2151
|
+
var _CreateWorkflowCommand = class _CreateWorkflowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2166
2152
|
return [
|
|
2167
2153
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2168
2154
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2176,9 +2162,7 @@ var CreateWorkflowCommand = _CreateWorkflowCommand;
|
|
|
2176
2162
|
|
|
2177
2163
|
|
|
2178
2164
|
|
|
2179
|
-
var _DeleteAccessCommand = class _DeleteAccessCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2180
|
-
...commonParams
|
|
2181
|
-
}).m(function(Command, cs, config, o) {
|
|
2165
|
+
var _DeleteAccessCommand = class _DeleteAccessCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2182
2166
|
return [
|
|
2183
2167
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2184
2168
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2192,9 +2176,7 @@ var DeleteAccessCommand = _DeleteAccessCommand;
|
|
|
2192
2176
|
|
|
2193
2177
|
|
|
2194
2178
|
|
|
2195
|
-
var _DeleteAgreementCommand = class _DeleteAgreementCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2196
|
-
...commonParams
|
|
2197
|
-
}).m(function(Command, cs, config, o) {
|
|
2179
|
+
var _DeleteAgreementCommand = class _DeleteAgreementCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2198
2180
|
return [
|
|
2199
2181
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2200
2182
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2208,9 +2190,7 @@ var DeleteAgreementCommand = _DeleteAgreementCommand;
|
|
|
2208
2190
|
|
|
2209
2191
|
|
|
2210
2192
|
|
|
2211
|
-
var _DeleteCertificateCommand = class _DeleteCertificateCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2212
|
-
...commonParams
|
|
2213
|
-
}).m(function(Command, cs, config, o) {
|
|
2193
|
+
var _DeleteCertificateCommand = class _DeleteCertificateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2214
2194
|
return [
|
|
2215
2195
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2216
2196
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2224,9 +2204,7 @@ var DeleteCertificateCommand = _DeleteCertificateCommand;
|
|
|
2224
2204
|
|
|
2225
2205
|
|
|
2226
2206
|
|
|
2227
|
-
var _DeleteConnectorCommand = class _DeleteConnectorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2228
|
-
...commonParams
|
|
2229
|
-
}).m(function(Command, cs, config, o) {
|
|
2207
|
+
var _DeleteConnectorCommand = class _DeleteConnectorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2230
2208
|
return [
|
|
2231
2209
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2232
2210
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2240,9 +2218,7 @@ var DeleteConnectorCommand = _DeleteConnectorCommand;
|
|
|
2240
2218
|
|
|
2241
2219
|
|
|
2242
2220
|
|
|
2243
|
-
var _DeleteHostKeyCommand = class _DeleteHostKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2244
|
-
...commonParams
|
|
2245
|
-
}).m(function(Command, cs, config, o) {
|
|
2221
|
+
var _DeleteHostKeyCommand = class _DeleteHostKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2246
2222
|
return [
|
|
2247
2223
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2248
2224
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2256,9 +2232,7 @@ var DeleteHostKeyCommand = _DeleteHostKeyCommand;
|
|
|
2256
2232
|
|
|
2257
2233
|
|
|
2258
2234
|
|
|
2259
|
-
var _DeleteProfileCommand = class _DeleteProfileCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2260
|
-
...commonParams
|
|
2261
|
-
}).m(function(Command, cs, config, o) {
|
|
2235
|
+
var _DeleteProfileCommand = class _DeleteProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2262
2236
|
return [
|
|
2263
2237
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2264
2238
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2272,9 +2246,7 @@ var DeleteProfileCommand = _DeleteProfileCommand;
|
|
|
2272
2246
|
|
|
2273
2247
|
|
|
2274
2248
|
|
|
2275
|
-
var _DeleteServerCommand = class _DeleteServerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2276
|
-
...commonParams
|
|
2277
|
-
}).m(function(Command, cs, config, o) {
|
|
2249
|
+
var _DeleteServerCommand = class _DeleteServerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2278
2250
|
return [
|
|
2279
2251
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2280
2252
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2288,9 +2260,7 @@ var DeleteServerCommand = _DeleteServerCommand;
|
|
|
2288
2260
|
|
|
2289
2261
|
|
|
2290
2262
|
|
|
2291
|
-
var _DeleteSshPublicKeyCommand = class _DeleteSshPublicKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2292
|
-
...commonParams
|
|
2293
|
-
}).m(function(Command, cs, config, o) {
|
|
2263
|
+
var _DeleteSshPublicKeyCommand = class _DeleteSshPublicKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2294
2264
|
return [
|
|
2295
2265
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2296
2266
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2304,9 +2274,7 @@ var DeleteSshPublicKeyCommand = _DeleteSshPublicKeyCommand;
|
|
|
2304
2274
|
|
|
2305
2275
|
|
|
2306
2276
|
|
|
2307
|
-
var _DeleteUserCommand = class _DeleteUserCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2308
|
-
...commonParams
|
|
2309
|
-
}).m(function(Command, cs, config, o) {
|
|
2277
|
+
var _DeleteUserCommand = class _DeleteUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2310
2278
|
return [
|
|
2311
2279
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2312
2280
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2320,9 +2288,7 @@ var DeleteUserCommand = _DeleteUserCommand;
|
|
|
2320
2288
|
|
|
2321
2289
|
|
|
2322
2290
|
|
|
2323
|
-
var _DeleteWorkflowCommand = class _DeleteWorkflowCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2324
|
-
...commonParams
|
|
2325
|
-
}).m(function(Command, cs, config, o) {
|
|
2291
|
+
var _DeleteWorkflowCommand = class _DeleteWorkflowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2326
2292
|
return [
|
|
2327
2293
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2328
2294
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2336,9 +2302,7 @@ var DeleteWorkflowCommand = _DeleteWorkflowCommand;
|
|
|
2336
2302
|
|
|
2337
2303
|
|
|
2338
2304
|
|
|
2339
|
-
var _DescribeAccessCommand = class _DescribeAccessCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2340
|
-
...commonParams
|
|
2341
|
-
}).m(function(Command, cs, config, o) {
|
|
2305
|
+
var _DescribeAccessCommand = class _DescribeAccessCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2342
2306
|
return [
|
|
2343
2307
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2344
2308
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2352,9 +2316,7 @@ var DescribeAccessCommand = _DescribeAccessCommand;
|
|
|
2352
2316
|
|
|
2353
2317
|
|
|
2354
2318
|
|
|
2355
|
-
var _DescribeAgreementCommand = class _DescribeAgreementCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2356
|
-
...commonParams
|
|
2357
|
-
}).m(function(Command, cs, config, o) {
|
|
2319
|
+
var _DescribeAgreementCommand = class _DescribeAgreementCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2358
2320
|
return [
|
|
2359
2321
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2360
2322
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2368,9 +2330,7 @@ var DescribeAgreementCommand = _DescribeAgreementCommand;
|
|
|
2368
2330
|
|
|
2369
2331
|
|
|
2370
2332
|
|
|
2371
|
-
var _DescribeCertificateCommand = class _DescribeCertificateCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2372
|
-
...commonParams
|
|
2373
|
-
}).m(function(Command, cs, config, o) {
|
|
2333
|
+
var _DescribeCertificateCommand = class _DescribeCertificateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2374
2334
|
return [
|
|
2375
2335
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2376
2336
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2384,9 +2344,7 @@ var DescribeCertificateCommand = _DescribeCertificateCommand;
|
|
|
2384
2344
|
|
|
2385
2345
|
|
|
2386
2346
|
|
|
2387
|
-
var _DescribeConnectorCommand = class _DescribeConnectorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2388
|
-
...commonParams
|
|
2389
|
-
}).m(function(Command, cs, config, o) {
|
|
2347
|
+
var _DescribeConnectorCommand = class _DescribeConnectorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2390
2348
|
return [
|
|
2391
2349
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2392
2350
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2400,9 +2358,7 @@ var DescribeConnectorCommand = _DescribeConnectorCommand;
|
|
|
2400
2358
|
|
|
2401
2359
|
|
|
2402
2360
|
|
|
2403
|
-
var _DescribeExecutionCommand = class _DescribeExecutionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2404
|
-
...commonParams
|
|
2405
|
-
}).m(function(Command, cs, config, o) {
|
|
2361
|
+
var _DescribeExecutionCommand = class _DescribeExecutionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2406
2362
|
return [
|
|
2407
2363
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2408
2364
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2416,9 +2372,7 @@ var DescribeExecutionCommand = _DescribeExecutionCommand;
|
|
|
2416
2372
|
|
|
2417
2373
|
|
|
2418
2374
|
|
|
2419
|
-
var _DescribeHostKeyCommand = class _DescribeHostKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2420
|
-
...commonParams
|
|
2421
|
-
}).m(function(Command, cs, config, o) {
|
|
2375
|
+
var _DescribeHostKeyCommand = class _DescribeHostKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2422
2376
|
return [
|
|
2423
2377
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2424
2378
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2432,9 +2386,7 @@ var DescribeHostKeyCommand = _DescribeHostKeyCommand;
|
|
|
2432
2386
|
|
|
2433
2387
|
|
|
2434
2388
|
|
|
2435
|
-
var _DescribeProfileCommand = class _DescribeProfileCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2436
|
-
...commonParams
|
|
2437
|
-
}).m(function(Command, cs, config, o) {
|
|
2389
|
+
var _DescribeProfileCommand = class _DescribeProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2438
2390
|
return [
|
|
2439
2391
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2440
2392
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2448,9 +2400,7 @@ var DescribeProfileCommand = _DescribeProfileCommand;
|
|
|
2448
2400
|
|
|
2449
2401
|
|
|
2450
2402
|
|
|
2451
|
-
var _DescribeSecurityPolicyCommand = class _DescribeSecurityPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2452
|
-
...commonParams
|
|
2453
|
-
}).m(function(Command, cs, config, o) {
|
|
2403
|
+
var _DescribeSecurityPolicyCommand = class _DescribeSecurityPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2454
2404
|
return [
|
|
2455
2405
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2456
2406
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2464,9 +2414,7 @@ var DescribeSecurityPolicyCommand = _DescribeSecurityPolicyCommand;
|
|
|
2464
2414
|
|
|
2465
2415
|
|
|
2466
2416
|
|
|
2467
|
-
var _DescribeServerCommand = class _DescribeServerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2468
|
-
...commonParams
|
|
2469
|
-
}).m(function(Command, cs, config, o) {
|
|
2417
|
+
var _DescribeServerCommand = class _DescribeServerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2470
2418
|
return [
|
|
2471
2419
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2472
2420
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2480,9 +2428,7 @@ var DescribeServerCommand = _DescribeServerCommand;
|
|
|
2480
2428
|
|
|
2481
2429
|
|
|
2482
2430
|
|
|
2483
|
-
var _DescribeUserCommand = class _DescribeUserCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2484
|
-
...commonParams
|
|
2485
|
-
}).m(function(Command, cs, config, o) {
|
|
2431
|
+
var _DescribeUserCommand = class _DescribeUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2486
2432
|
return [
|
|
2487
2433
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2488
2434
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2496,9 +2442,7 @@ var DescribeUserCommand = _DescribeUserCommand;
|
|
|
2496
2442
|
|
|
2497
2443
|
|
|
2498
2444
|
|
|
2499
|
-
var _DescribeWorkflowCommand = class _DescribeWorkflowCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2500
|
-
...commonParams
|
|
2501
|
-
}).m(function(Command, cs, config, o) {
|
|
2445
|
+
var _DescribeWorkflowCommand = class _DescribeWorkflowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2502
2446
|
return [
|
|
2503
2447
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2504
2448
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2512,9 +2456,7 @@ var DescribeWorkflowCommand = _DescribeWorkflowCommand;
|
|
|
2512
2456
|
|
|
2513
2457
|
|
|
2514
2458
|
|
|
2515
|
-
var _ImportCertificateCommand = class _ImportCertificateCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2516
|
-
...commonParams
|
|
2517
|
-
}).m(function(Command, cs, config, o) {
|
|
2459
|
+
var _ImportCertificateCommand = class _ImportCertificateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2518
2460
|
return [
|
|
2519
2461
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2520
2462
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2528,9 +2470,7 @@ var ImportCertificateCommand = _ImportCertificateCommand;
|
|
|
2528
2470
|
|
|
2529
2471
|
|
|
2530
2472
|
|
|
2531
|
-
var _ImportHostKeyCommand = class _ImportHostKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2532
|
-
...commonParams
|
|
2533
|
-
}).m(function(Command, cs, config, o) {
|
|
2473
|
+
var _ImportHostKeyCommand = class _ImportHostKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2534
2474
|
return [
|
|
2535
2475
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2536
2476
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2544,9 +2484,7 @@ var ImportHostKeyCommand = _ImportHostKeyCommand;
|
|
|
2544
2484
|
|
|
2545
2485
|
|
|
2546
2486
|
|
|
2547
|
-
var _ImportSshPublicKeyCommand = class _ImportSshPublicKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2548
|
-
...commonParams
|
|
2549
|
-
}).m(function(Command, cs, config, o) {
|
|
2487
|
+
var _ImportSshPublicKeyCommand = class _ImportSshPublicKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2550
2488
|
return [
|
|
2551
2489
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2552
2490
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2560,9 +2498,7 @@ var ImportSshPublicKeyCommand = _ImportSshPublicKeyCommand;
|
|
|
2560
2498
|
|
|
2561
2499
|
|
|
2562
2500
|
|
|
2563
|
-
var _ListAccessesCommand = class _ListAccessesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2564
|
-
...commonParams
|
|
2565
|
-
}).m(function(Command, cs, config, o) {
|
|
2501
|
+
var _ListAccessesCommand = class _ListAccessesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2566
2502
|
return [
|
|
2567
2503
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2568
2504
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2576,9 +2512,7 @@ var ListAccessesCommand = _ListAccessesCommand;
|
|
|
2576
2512
|
|
|
2577
2513
|
|
|
2578
2514
|
|
|
2579
|
-
var _ListAgreementsCommand = class _ListAgreementsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2580
|
-
...commonParams
|
|
2581
|
-
}).m(function(Command, cs, config, o) {
|
|
2515
|
+
var _ListAgreementsCommand = class _ListAgreementsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2582
2516
|
return [
|
|
2583
2517
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2584
2518
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2592,9 +2526,7 @@ var ListAgreementsCommand = _ListAgreementsCommand;
|
|
|
2592
2526
|
|
|
2593
2527
|
|
|
2594
2528
|
|
|
2595
|
-
var _ListCertificatesCommand = class _ListCertificatesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2596
|
-
...commonParams
|
|
2597
|
-
}).m(function(Command, cs, config, o) {
|
|
2529
|
+
var _ListCertificatesCommand = class _ListCertificatesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2598
2530
|
return [
|
|
2599
2531
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2600
2532
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2608,9 +2540,7 @@ var ListCertificatesCommand = _ListCertificatesCommand;
|
|
|
2608
2540
|
|
|
2609
2541
|
|
|
2610
2542
|
|
|
2611
|
-
var _ListConnectorsCommand = class _ListConnectorsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2612
|
-
...commonParams
|
|
2613
|
-
}).m(function(Command, cs, config, o) {
|
|
2543
|
+
var _ListConnectorsCommand = class _ListConnectorsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2614
2544
|
return [
|
|
2615
2545
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2616
2546
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2624,9 +2554,7 @@ var ListConnectorsCommand = _ListConnectorsCommand;
|
|
|
2624
2554
|
|
|
2625
2555
|
|
|
2626
2556
|
|
|
2627
|
-
var _ListExecutionsCommand = class _ListExecutionsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2628
|
-
...commonParams
|
|
2629
|
-
}).m(function(Command, cs, config, o) {
|
|
2557
|
+
var _ListExecutionsCommand = class _ListExecutionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2630
2558
|
return [
|
|
2631
2559
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2632
2560
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2640,9 +2568,7 @@ var ListExecutionsCommand = _ListExecutionsCommand;
|
|
|
2640
2568
|
|
|
2641
2569
|
|
|
2642
2570
|
|
|
2643
|
-
var _ListHostKeysCommand = class _ListHostKeysCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2644
|
-
...commonParams
|
|
2645
|
-
}).m(function(Command, cs, config, o) {
|
|
2571
|
+
var _ListHostKeysCommand = class _ListHostKeysCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2646
2572
|
return [
|
|
2647
2573
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2648
2574
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2656,9 +2582,7 @@ var ListHostKeysCommand = _ListHostKeysCommand;
|
|
|
2656
2582
|
|
|
2657
2583
|
|
|
2658
2584
|
|
|
2659
|
-
var _ListProfilesCommand = class _ListProfilesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2660
|
-
...commonParams
|
|
2661
|
-
}).m(function(Command, cs, config, o) {
|
|
2585
|
+
var _ListProfilesCommand = class _ListProfilesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2662
2586
|
return [
|
|
2663
2587
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2664
2588
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2672,9 +2596,7 @@ var ListProfilesCommand = _ListProfilesCommand;
|
|
|
2672
2596
|
|
|
2673
2597
|
|
|
2674
2598
|
|
|
2675
|
-
var _ListSecurityPoliciesCommand = class _ListSecurityPoliciesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2676
|
-
...commonParams
|
|
2677
|
-
}).m(function(Command, cs, config, o) {
|
|
2599
|
+
var _ListSecurityPoliciesCommand = class _ListSecurityPoliciesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2678
2600
|
return [
|
|
2679
2601
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2680
2602
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2688,9 +2610,7 @@ var ListSecurityPoliciesCommand = _ListSecurityPoliciesCommand;
|
|
|
2688
2610
|
|
|
2689
2611
|
|
|
2690
2612
|
|
|
2691
|
-
var _ListServersCommand = class _ListServersCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2692
|
-
...commonParams
|
|
2693
|
-
}).m(function(Command, cs, config, o) {
|
|
2613
|
+
var _ListServersCommand = class _ListServersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2694
2614
|
return [
|
|
2695
2615
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2696
2616
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2704,9 +2624,7 @@ var ListServersCommand = _ListServersCommand;
|
|
|
2704
2624
|
|
|
2705
2625
|
|
|
2706
2626
|
|
|
2707
|
-
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2708
|
-
...commonParams
|
|
2709
|
-
}).m(function(Command, cs, config, o) {
|
|
2627
|
+
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2710
2628
|
return [
|
|
2711
2629
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2712
2630
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2720,9 +2638,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
|
2720
2638
|
|
|
2721
2639
|
|
|
2722
2640
|
|
|
2723
|
-
var _ListUsersCommand = class _ListUsersCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2724
|
-
...commonParams
|
|
2725
|
-
}).m(function(Command, cs, config, o) {
|
|
2641
|
+
var _ListUsersCommand = class _ListUsersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2726
2642
|
return [
|
|
2727
2643
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2728
2644
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2736,9 +2652,7 @@ var ListUsersCommand = _ListUsersCommand;
|
|
|
2736
2652
|
|
|
2737
2653
|
|
|
2738
2654
|
|
|
2739
|
-
var _ListWorkflowsCommand = class _ListWorkflowsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2740
|
-
...commonParams
|
|
2741
|
-
}).m(function(Command, cs, config, o) {
|
|
2655
|
+
var _ListWorkflowsCommand = class _ListWorkflowsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2742
2656
|
return [
|
|
2743
2657
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2744
2658
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2752,9 +2666,7 @@ var ListWorkflowsCommand = _ListWorkflowsCommand;
|
|
|
2752
2666
|
|
|
2753
2667
|
|
|
2754
2668
|
|
|
2755
|
-
var _SendWorkflowStepStateCommand = class _SendWorkflowStepStateCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2756
|
-
...commonParams
|
|
2757
|
-
}).m(function(Command, cs, config, o) {
|
|
2669
|
+
var _SendWorkflowStepStateCommand = class _SendWorkflowStepStateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2758
2670
|
return [
|
|
2759
2671
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2760
2672
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2768,9 +2680,7 @@ var SendWorkflowStepStateCommand = _SendWorkflowStepStateCommand;
|
|
|
2768
2680
|
|
|
2769
2681
|
|
|
2770
2682
|
|
|
2771
|
-
var _StartDirectoryListingCommand = class _StartDirectoryListingCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2772
|
-
...commonParams
|
|
2773
|
-
}).m(function(Command, cs, config, o) {
|
|
2683
|
+
var _StartDirectoryListingCommand = class _StartDirectoryListingCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2774
2684
|
return [
|
|
2775
2685
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2776
2686
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2784,9 +2694,7 @@ var StartDirectoryListingCommand = _StartDirectoryListingCommand;
|
|
|
2784
2694
|
|
|
2785
2695
|
|
|
2786
2696
|
|
|
2787
|
-
var _StartFileTransferCommand = class _StartFileTransferCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2788
|
-
...commonParams
|
|
2789
|
-
}).m(function(Command, cs, config, o) {
|
|
2697
|
+
var _StartFileTransferCommand = class _StartFileTransferCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2790
2698
|
return [
|
|
2791
2699
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2792
2700
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2800,9 +2708,7 @@ var StartFileTransferCommand = _StartFileTransferCommand;
|
|
|
2800
2708
|
|
|
2801
2709
|
|
|
2802
2710
|
|
|
2803
|
-
var _StartServerCommand = class _StartServerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2804
|
-
...commonParams
|
|
2805
|
-
}).m(function(Command, cs, config, o) {
|
|
2711
|
+
var _StartServerCommand = class _StartServerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2806
2712
|
return [
|
|
2807
2713
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2808
2714
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2816,9 +2722,7 @@ var StartServerCommand = _StartServerCommand;
|
|
|
2816
2722
|
|
|
2817
2723
|
|
|
2818
2724
|
|
|
2819
|
-
var _StopServerCommand = class _StopServerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2820
|
-
...commonParams
|
|
2821
|
-
}).m(function(Command, cs, config, o) {
|
|
2725
|
+
var _StopServerCommand = class _StopServerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2822
2726
|
return [
|
|
2823
2727
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2824
2728
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2832,9 +2736,7 @@ var StopServerCommand = _StopServerCommand;
|
|
|
2832
2736
|
|
|
2833
2737
|
|
|
2834
2738
|
|
|
2835
|
-
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2836
|
-
...commonParams
|
|
2837
|
-
}).m(function(Command, cs, config, o) {
|
|
2739
|
+
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2838
2740
|
return [
|
|
2839
2741
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2840
2742
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2848,9 +2750,7 @@ var TagResourceCommand = _TagResourceCommand;
|
|
|
2848
2750
|
|
|
2849
2751
|
|
|
2850
2752
|
|
|
2851
|
-
var _TestConnectionCommand = class _TestConnectionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2852
|
-
...commonParams
|
|
2853
|
-
}).m(function(Command, cs, config, o) {
|
|
2753
|
+
var _TestConnectionCommand = class _TestConnectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2854
2754
|
return [
|
|
2855
2755
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2856
2756
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2864,9 +2764,7 @@ var TestConnectionCommand = _TestConnectionCommand;
|
|
|
2864
2764
|
|
|
2865
2765
|
|
|
2866
2766
|
|
|
2867
|
-
var _TestIdentityProviderCommand = class _TestIdentityProviderCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2868
|
-
...commonParams
|
|
2869
|
-
}).m(function(Command, cs, config, o) {
|
|
2767
|
+
var _TestIdentityProviderCommand = class _TestIdentityProviderCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2870
2768
|
return [
|
|
2871
2769
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2872
2770
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2880,9 +2778,7 @@ var TestIdentityProviderCommand = _TestIdentityProviderCommand;
|
|
|
2880
2778
|
|
|
2881
2779
|
|
|
2882
2780
|
|
|
2883
|
-
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2884
|
-
...commonParams
|
|
2885
|
-
}).m(function(Command, cs, config, o) {
|
|
2781
|
+
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2886
2782
|
return [
|
|
2887
2783
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2888
2784
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2896,9 +2792,7 @@ var UntagResourceCommand = _UntagResourceCommand;
|
|
|
2896
2792
|
|
|
2897
2793
|
|
|
2898
2794
|
|
|
2899
|
-
var _UpdateAccessCommand = class _UpdateAccessCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2900
|
-
...commonParams
|
|
2901
|
-
}).m(function(Command, cs, config, o) {
|
|
2795
|
+
var _UpdateAccessCommand = class _UpdateAccessCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2902
2796
|
return [
|
|
2903
2797
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2904
2798
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2912,9 +2806,7 @@ var UpdateAccessCommand = _UpdateAccessCommand;
|
|
|
2912
2806
|
|
|
2913
2807
|
|
|
2914
2808
|
|
|
2915
|
-
var _UpdateAgreementCommand = class _UpdateAgreementCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2916
|
-
...commonParams
|
|
2917
|
-
}).m(function(Command, cs, config, o) {
|
|
2809
|
+
var _UpdateAgreementCommand = class _UpdateAgreementCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2918
2810
|
return [
|
|
2919
2811
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2920
2812
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2928,9 +2820,7 @@ var UpdateAgreementCommand = _UpdateAgreementCommand;
|
|
|
2928
2820
|
|
|
2929
2821
|
|
|
2930
2822
|
|
|
2931
|
-
var _UpdateCertificateCommand = class _UpdateCertificateCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2932
|
-
...commonParams
|
|
2933
|
-
}).m(function(Command, cs, config, o) {
|
|
2823
|
+
var _UpdateCertificateCommand = class _UpdateCertificateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2934
2824
|
return [
|
|
2935
2825
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2936
2826
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2944,9 +2834,7 @@ var UpdateCertificateCommand = _UpdateCertificateCommand;
|
|
|
2944
2834
|
|
|
2945
2835
|
|
|
2946
2836
|
|
|
2947
|
-
var _UpdateConnectorCommand = class _UpdateConnectorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2948
|
-
...commonParams
|
|
2949
|
-
}).m(function(Command, cs, config, o) {
|
|
2837
|
+
var _UpdateConnectorCommand = class _UpdateConnectorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2950
2838
|
return [
|
|
2951
2839
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2952
2840
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2960,9 +2848,7 @@ var UpdateConnectorCommand = _UpdateConnectorCommand;
|
|
|
2960
2848
|
|
|
2961
2849
|
|
|
2962
2850
|
|
|
2963
|
-
var _UpdateHostKeyCommand = class _UpdateHostKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2964
|
-
...commonParams
|
|
2965
|
-
}).m(function(Command, cs, config, o) {
|
|
2851
|
+
var _UpdateHostKeyCommand = class _UpdateHostKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2966
2852
|
return [
|
|
2967
2853
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2968
2854
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2976,9 +2862,7 @@ var UpdateHostKeyCommand = _UpdateHostKeyCommand;
|
|
|
2976
2862
|
|
|
2977
2863
|
|
|
2978
2864
|
|
|
2979
|
-
var _UpdateProfileCommand = class _UpdateProfileCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2980
|
-
...commonParams
|
|
2981
|
-
}).m(function(Command, cs, config, o) {
|
|
2865
|
+
var _UpdateProfileCommand = class _UpdateProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2982
2866
|
return [
|
|
2983
2867
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2984
2868
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2992,9 +2876,7 @@ var UpdateProfileCommand = _UpdateProfileCommand;
|
|
|
2992
2876
|
|
|
2993
2877
|
|
|
2994
2878
|
|
|
2995
|
-
var _UpdateServerCommand = class _UpdateServerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2996
|
-
...commonParams
|
|
2997
|
-
}).m(function(Command, cs, config, o) {
|
|
2879
|
+
var _UpdateServerCommand = class _UpdateServerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2998
2880
|
return [
|
|
2999
2881
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3000
2882
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3008,9 +2890,7 @@ var UpdateServerCommand = _UpdateServerCommand;
|
|
|
3008
2890
|
|
|
3009
2891
|
|
|
3010
2892
|
|
|
3011
|
-
var _UpdateUserCommand = class _UpdateUserCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3012
|
-
...commonParams
|
|
3013
|
-
}).m(function(Command, cs, config, o) {
|
|
2893
|
+
var _UpdateUserCommand = class _UpdateUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3014
2894
|
return [
|
|
3015
2895
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3016
2896
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|