@aws-sdk/client-amplify 3.721.0 → 3.726.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +208 -156
- package/dist-es/AmplifyClient.js +1 -0
- package/dist-es/models/models_0.js +15 -14
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -200,7 +200,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
200
200
|
}, "resolveRuntimeExtensions");
|
|
201
201
|
|
|
202
202
|
// src/AmplifyClient.ts
|
|
203
|
-
var
|
|
203
|
+
var AmplifyClient = class extends import_smithy_client.Client {
|
|
204
|
+
static {
|
|
205
|
+
__name(this, "AmplifyClient");
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* The resolved configuration of AmplifyClient class. This is resolved and normalized from the {@link AmplifyClientConfig | constructor configuration interface}.
|
|
209
|
+
*/
|
|
210
|
+
config;
|
|
204
211
|
constructor(...[configuration]) {
|
|
205
212
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
206
213
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -210,7 +217,7 @@ var _AmplifyClient = class _AmplifyClient extends import_smithy_client.Client {
|
|
|
210
217
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
211
218
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
212
219
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
213
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
220
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
214
221
|
super(_config_8);
|
|
215
222
|
this.config = _config_8;
|
|
216
223
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -238,8 +245,6 @@ var _AmplifyClient = class _AmplifyClient extends import_smithy_client.Client {
|
|
|
238
245
|
super.destroy();
|
|
239
246
|
}
|
|
240
247
|
};
|
|
241
|
-
__name(_AmplifyClient, "AmplifyClient");
|
|
242
|
-
var AmplifyClient = _AmplifyClient;
|
|
243
248
|
|
|
244
249
|
// src/Amplify.ts
|
|
245
250
|
|
|
@@ -254,7 +259,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
254
259
|
|
|
255
260
|
// src/models/AmplifyServiceException.ts
|
|
256
261
|
|
|
257
|
-
var
|
|
262
|
+
var AmplifyServiceException = class _AmplifyServiceException extends import_smithy_client.ServiceException {
|
|
263
|
+
static {
|
|
264
|
+
__name(this, "AmplifyServiceException");
|
|
265
|
+
}
|
|
258
266
|
/**
|
|
259
267
|
* @internal
|
|
260
268
|
*/
|
|
@@ -263,11 +271,14 @@ var _AmplifyServiceException = class _AmplifyServiceException extends import_smi
|
|
|
263
271
|
Object.setPrototypeOf(this, _AmplifyServiceException.prototype);
|
|
264
272
|
}
|
|
265
273
|
};
|
|
266
|
-
__name(_AmplifyServiceException, "AmplifyServiceException");
|
|
267
|
-
var AmplifyServiceException = _AmplifyServiceException;
|
|
268
274
|
|
|
269
275
|
// src/models/models_0.ts
|
|
270
|
-
var
|
|
276
|
+
var BadRequestException = class _BadRequestException extends AmplifyServiceException {
|
|
277
|
+
static {
|
|
278
|
+
__name(this, "BadRequestException");
|
|
279
|
+
}
|
|
280
|
+
name = "BadRequestException";
|
|
281
|
+
$fault = "client";
|
|
271
282
|
/**
|
|
272
283
|
* @internal
|
|
273
284
|
*/
|
|
@@ -277,13 +288,9 @@ var _BadRequestException = class _BadRequestException extends AmplifyServiceExce
|
|
|
277
288
|
$fault: "client",
|
|
278
289
|
...opts
|
|
279
290
|
});
|
|
280
|
-
this.name = "BadRequestException";
|
|
281
|
-
this.$fault = "client";
|
|
282
291
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
283
292
|
}
|
|
284
293
|
};
|
|
285
|
-
__name(_BadRequestException, "BadRequestException");
|
|
286
|
-
var BadRequestException = _BadRequestException;
|
|
287
294
|
var Stage = {
|
|
288
295
|
BETA: "BETA",
|
|
289
296
|
DEVELOPMENT: "DEVELOPMENT",
|
|
@@ -312,7 +319,12 @@ var WafStatus = {
|
|
|
312
319
|
DISASSOCIATING: "DISASSOCIATING",
|
|
313
320
|
DISASSOCIATION_FAILED: "DISASSOCIATION_FAILED"
|
|
314
321
|
};
|
|
315
|
-
var
|
|
322
|
+
var DependentServiceFailureException = class _DependentServiceFailureException extends AmplifyServiceException {
|
|
323
|
+
static {
|
|
324
|
+
__name(this, "DependentServiceFailureException");
|
|
325
|
+
}
|
|
326
|
+
name = "DependentServiceFailureException";
|
|
327
|
+
$fault = "server";
|
|
316
328
|
/**
|
|
317
329
|
* @internal
|
|
318
330
|
*/
|
|
@@ -322,14 +334,15 @@ var _DependentServiceFailureException = class _DependentServiceFailureException
|
|
|
322
334
|
$fault: "server",
|
|
323
335
|
...opts
|
|
324
336
|
});
|
|
325
|
-
this.name = "DependentServiceFailureException";
|
|
326
|
-
this.$fault = "server";
|
|
327
337
|
Object.setPrototypeOf(this, _DependentServiceFailureException.prototype);
|
|
328
338
|
}
|
|
329
339
|
};
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
340
|
+
var InternalFailureException = class _InternalFailureException extends AmplifyServiceException {
|
|
341
|
+
static {
|
|
342
|
+
__name(this, "InternalFailureException");
|
|
343
|
+
}
|
|
344
|
+
name = "InternalFailureException";
|
|
345
|
+
$fault = "server";
|
|
333
346
|
/**
|
|
334
347
|
* @internal
|
|
335
348
|
*/
|
|
@@ -339,14 +352,15 @@ var _InternalFailureException = class _InternalFailureException extends AmplifyS
|
|
|
339
352
|
$fault: "server",
|
|
340
353
|
...opts
|
|
341
354
|
});
|
|
342
|
-
this.name = "InternalFailureException";
|
|
343
|
-
this.$fault = "server";
|
|
344
355
|
Object.setPrototypeOf(this, _InternalFailureException.prototype);
|
|
345
356
|
}
|
|
346
357
|
};
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
358
|
+
var LimitExceededException = class _LimitExceededException extends AmplifyServiceException {
|
|
359
|
+
static {
|
|
360
|
+
__name(this, "LimitExceededException");
|
|
361
|
+
}
|
|
362
|
+
name = "LimitExceededException";
|
|
363
|
+
$fault = "client";
|
|
350
364
|
/**
|
|
351
365
|
* @internal
|
|
352
366
|
*/
|
|
@@ -356,14 +370,15 @@ var _LimitExceededException = class _LimitExceededException extends AmplifyServi
|
|
|
356
370
|
$fault: "client",
|
|
357
371
|
...opts
|
|
358
372
|
});
|
|
359
|
-
this.name = "LimitExceededException";
|
|
360
|
-
this.$fault = "client";
|
|
361
373
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
362
374
|
}
|
|
363
375
|
};
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
376
|
+
var UnauthorizedException = class _UnauthorizedException extends AmplifyServiceException {
|
|
377
|
+
static {
|
|
378
|
+
__name(this, "UnauthorizedException");
|
|
379
|
+
}
|
|
380
|
+
name = "UnauthorizedException";
|
|
381
|
+
$fault = "client";
|
|
367
382
|
/**
|
|
368
383
|
* @internal
|
|
369
384
|
*/
|
|
@@ -373,14 +388,15 @@ var _UnauthorizedException = class _UnauthorizedException extends AmplifyService
|
|
|
373
388
|
$fault: "client",
|
|
374
389
|
...opts
|
|
375
390
|
});
|
|
376
|
-
this.name = "UnauthorizedException";
|
|
377
|
-
this.$fault = "client";
|
|
378
391
|
Object.setPrototypeOf(this, _UnauthorizedException.prototype);
|
|
379
392
|
}
|
|
380
393
|
};
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
394
|
+
var NotFoundException = class _NotFoundException extends AmplifyServiceException {
|
|
395
|
+
static {
|
|
396
|
+
__name(this, "NotFoundException");
|
|
397
|
+
}
|
|
398
|
+
name = "NotFoundException";
|
|
399
|
+
$fault = "client";
|
|
384
400
|
/**
|
|
385
401
|
* @internal
|
|
386
402
|
*/
|
|
@@ -390,13 +406,9 @@ var _NotFoundException = class _NotFoundException extends AmplifyServiceExceptio
|
|
|
390
406
|
$fault: "client",
|
|
391
407
|
...opts
|
|
392
408
|
});
|
|
393
|
-
this.name = "NotFoundException";
|
|
394
|
-
this.$fault = "client";
|
|
395
409
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
396
410
|
}
|
|
397
411
|
};
|
|
398
|
-
__name(_NotFoundException, "NotFoundException");
|
|
399
|
-
var NotFoundException = _NotFoundException;
|
|
400
412
|
var CertificateType = {
|
|
401
413
|
AMPLIFY_MANAGED: "AMPLIFY_MANAGED",
|
|
402
414
|
CUSTOM: "CUSTOM"
|
|
@@ -442,7 +454,13 @@ var JobStatus = {
|
|
|
442
454
|
RUNNING: "RUNNING",
|
|
443
455
|
SUCCEED: "SUCCEED"
|
|
444
456
|
};
|
|
445
|
-
var
|
|
457
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends AmplifyServiceException {
|
|
458
|
+
static {
|
|
459
|
+
__name(this, "ResourceNotFoundException");
|
|
460
|
+
}
|
|
461
|
+
name = "ResourceNotFoundException";
|
|
462
|
+
$fault = "client";
|
|
463
|
+
code;
|
|
446
464
|
/**
|
|
447
465
|
* @internal
|
|
448
466
|
*/
|
|
@@ -452,14 +470,10 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Amplif
|
|
|
452
470
|
$fault: "client",
|
|
453
471
|
...opts
|
|
454
472
|
});
|
|
455
|
-
this.name = "ResourceNotFoundException";
|
|
456
|
-
this.$fault = "client";
|
|
457
473
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
458
474
|
this.code = opts.code;
|
|
459
475
|
}
|
|
460
476
|
};
|
|
461
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
462
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
463
477
|
var AutoBranchCreationConfigFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
464
478
|
...obj,
|
|
465
479
|
...obj.basicAuthCredentials && { basicAuthCredentials: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -1951,519 +1965,556 @@ var _nT = "nextToken";
|
|
|
1951
1965
|
var _tK = "tagKeys";
|
|
1952
1966
|
|
|
1953
1967
|
// src/commands/CreateAppCommand.ts
|
|
1954
|
-
var
|
|
1968
|
+
var CreateAppCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1955
1969
|
return [
|
|
1956
1970
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1957
1971
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1958
1972
|
];
|
|
1959
1973
|
}).s("Amplify", "CreateApp", {}).n("AmplifyClient", "CreateAppCommand").f(CreateAppRequestFilterSensitiveLog, CreateAppResultFilterSensitiveLog).ser(se_CreateAppCommand).de(de_CreateAppCommand).build() {
|
|
1974
|
+
static {
|
|
1975
|
+
__name(this, "CreateAppCommand");
|
|
1976
|
+
}
|
|
1960
1977
|
};
|
|
1961
|
-
__name(_CreateAppCommand, "CreateAppCommand");
|
|
1962
|
-
var CreateAppCommand = _CreateAppCommand;
|
|
1963
1978
|
|
|
1964
1979
|
// src/commands/CreateBackendEnvironmentCommand.ts
|
|
1965
1980
|
|
|
1966
1981
|
|
|
1967
1982
|
|
|
1968
|
-
var
|
|
1983
|
+
var CreateBackendEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1969
1984
|
return [
|
|
1970
1985
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1971
1986
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1972
1987
|
];
|
|
1973
1988
|
}).s("Amplify", "CreateBackendEnvironment", {}).n("AmplifyClient", "CreateBackendEnvironmentCommand").f(void 0, void 0).ser(se_CreateBackendEnvironmentCommand).de(de_CreateBackendEnvironmentCommand).build() {
|
|
1989
|
+
static {
|
|
1990
|
+
__name(this, "CreateBackendEnvironmentCommand");
|
|
1991
|
+
}
|
|
1974
1992
|
};
|
|
1975
|
-
__name(_CreateBackendEnvironmentCommand, "CreateBackendEnvironmentCommand");
|
|
1976
|
-
var CreateBackendEnvironmentCommand = _CreateBackendEnvironmentCommand;
|
|
1977
1993
|
|
|
1978
1994
|
// src/commands/CreateBranchCommand.ts
|
|
1979
1995
|
|
|
1980
1996
|
|
|
1981
1997
|
|
|
1982
|
-
var
|
|
1998
|
+
var CreateBranchCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1983
1999
|
return [
|
|
1984
2000
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1985
2001
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1986
2002
|
];
|
|
1987
2003
|
}).s("Amplify", "CreateBranch", {}).n("AmplifyClient", "CreateBranchCommand").f(CreateBranchRequestFilterSensitiveLog, CreateBranchResultFilterSensitiveLog).ser(se_CreateBranchCommand).de(de_CreateBranchCommand).build() {
|
|
2004
|
+
static {
|
|
2005
|
+
__name(this, "CreateBranchCommand");
|
|
2006
|
+
}
|
|
1988
2007
|
};
|
|
1989
|
-
__name(_CreateBranchCommand, "CreateBranchCommand");
|
|
1990
|
-
var CreateBranchCommand = _CreateBranchCommand;
|
|
1991
2008
|
|
|
1992
2009
|
// src/commands/CreateDeploymentCommand.ts
|
|
1993
2010
|
|
|
1994
2011
|
|
|
1995
2012
|
|
|
1996
|
-
var
|
|
2013
|
+
var CreateDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1997
2014
|
return [
|
|
1998
2015
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1999
2016
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2000
2017
|
];
|
|
2001
2018
|
}).s("Amplify", "CreateDeployment", {}).n("AmplifyClient", "CreateDeploymentCommand").f(void 0, void 0).ser(se_CreateDeploymentCommand).de(de_CreateDeploymentCommand).build() {
|
|
2019
|
+
static {
|
|
2020
|
+
__name(this, "CreateDeploymentCommand");
|
|
2021
|
+
}
|
|
2002
2022
|
};
|
|
2003
|
-
__name(_CreateDeploymentCommand, "CreateDeploymentCommand");
|
|
2004
|
-
var CreateDeploymentCommand = _CreateDeploymentCommand;
|
|
2005
2023
|
|
|
2006
2024
|
// src/commands/CreateDomainAssociationCommand.ts
|
|
2007
2025
|
|
|
2008
2026
|
|
|
2009
2027
|
|
|
2010
|
-
var
|
|
2028
|
+
var CreateDomainAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2011
2029
|
return [
|
|
2012
2030
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2013
2031
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2014
2032
|
];
|
|
2015
2033
|
}).s("Amplify", "CreateDomainAssociation", {}).n("AmplifyClient", "CreateDomainAssociationCommand").f(void 0, void 0).ser(se_CreateDomainAssociationCommand).de(de_CreateDomainAssociationCommand).build() {
|
|
2034
|
+
static {
|
|
2035
|
+
__name(this, "CreateDomainAssociationCommand");
|
|
2036
|
+
}
|
|
2016
2037
|
};
|
|
2017
|
-
__name(_CreateDomainAssociationCommand, "CreateDomainAssociationCommand");
|
|
2018
|
-
var CreateDomainAssociationCommand = _CreateDomainAssociationCommand;
|
|
2019
2038
|
|
|
2020
2039
|
// src/commands/CreateWebhookCommand.ts
|
|
2021
2040
|
|
|
2022
2041
|
|
|
2023
2042
|
|
|
2024
|
-
var
|
|
2043
|
+
var CreateWebhookCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2025
2044
|
return [
|
|
2026
2045
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2027
2046
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2028
2047
|
];
|
|
2029
2048
|
}).s("Amplify", "CreateWebhook", {}).n("AmplifyClient", "CreateWebhookCommand").f(void 0, void 0).ser(se_CreateWebhookCommand).de(de_CreateWebhookCommand).build() {
|
|
2049
|
+
static {
|
|
2050
|
+
__name(this, "CreateWebhookCommand");
|
|
2051
|
+
}
|
|
2030
2052
|
};
|
|
2031
|
-
__name(_CreateWebhookCommand, "CreateWebhookCommand");
|
|
2032
|
-
var CreateWebhookCommand = _CreateWebhookCommand;
|
|
2033
2053
|
|
|
2034
2054
|
// src/commands/DeleteAppCommand.ts
|
|
2035
2055
|
|
|
2036
2056
|
|
|
2037
2057
|
|
|
2038
|
-
var
|
|
2058
|
+
var DeleteAppCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2039
2059
|
return [
|
|
2040
2060
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2041
2061
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2042
2062
|
];
|
|
2043
2063
|
}).s("Amplify", "DeleteApp", {}).n("AmplifyClient", "DeleteAppCommand").f(void 0, DeleteAppResultFilterSensitiveLog).ser(se_DeleteAppCommand).de(de_DeleteAppCommand).build() {
|
|
2064
|
+
static {
|
|
2065
|
+
__name(this, "DeleteAppCommand");
|
|
2066
|
+
}
|
|
2044
2067
|
};
|
|
2045
|
-
__name(_DeleteAppCommand, "DeleteAppCommand");
|
|
2046
|
-
var DeleteAppCommand = _DeleteAppCommand;
|
|
2047
2068
|
|
|
2048
2069
|
// src/commands/DeleteBackendEnvironmentCommand.ts
|
|
2049
2070
|
|
|
2050
2071
|
|
|
2051
2072
|
|
|
2052
|
-
var
|
|
2073
|
+
var DeleteBackendEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2053
2074
|
return [
|
|
2054
2075
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2055
2076
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2056
2077
|
];
|
|
2057
2078
|
}).s("Amplify", "DeleteBackendEnvironment", {}).n("AmplifyClient", "DeleteBackendEnvironmentCommand").f(void 0, void 0).ser(se_DeleteBackendEnvironmentCommand).de(de_DeleteBackendEnvironmentCommand).build() {
|
|
2079
|
+
static {
|
|
2080
|
+
__name(this, "DeleteBackendEnvironmentCommand");
|
|
2081
|
+
}
|
|
2058
2082
|
};
|
|
2059
|
-
__name(_DeleteBackendEnvironmentCommand, "DeleteBackendEnvironmentCommand");
|
|
2060
|
-
var DeleteBackendEnvironmentCommand = _DeleteBackendEnvironmentCommand;
|
|
2061
2083
|
|
|
2062
2084
|
// src/commands/DeleteBranchCommand.ts
|
|
2063
2085
|
|
|
2064
2086
|
|
|
2065
2087
|
|
|
2066
|
-
var
|
|
2088
|
+
var DeleteBranchCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2067
2089
|
return [
|
|
2068
2090
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2069
2091
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2070
2092
|
];
|
|
2071
2093
|
}).s("Amplify", "DeleteBranch", {}).n("AmplifyClient", "DeleteBranchCommand").f(void 0, DeleteBranchResultFilterSensitiveLog).ser(se_DeleteBranchCommand).de(de_DeleteBranchCommand).build() {
|
|
2094
|
+
static {
|
|
2095
|
+
__name(this, "DeleteBranchCommand");
|
|
2096
|
+
}
|
|
2072
2097
|
};
|
|
2073
|
-
__name(_DeleteBranchCommand, "DeleteBranchCommand");
|
|
2074
|
-
var DeleteBranchCommand = _DeleteBranchCommand;
|
|
2075
2098
|
|
|
2076
2099
|
// src/commands/DeleteDomainAssociationCommand.ts
|
|
2077
2100
|
|
|
2078
2101
|
|
|
2079
2102
|
|
|
2080
|
-
var
|
|
2103
|
+
var DeleteDomainAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2081
2104
|
return [
|
|
2082
2105
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2083
2106
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2084
2107
|
];
|
|
2085
2108
|
}).s("Amplify", "DeleteDomainAssociation", {}).n("AmplifyClient", "DeleteDomainAssociationCommand").f(void 0, void 0).ser(se_DeleteDomainAssociationCommand).de(de_DeleteDomainAssociationCommand).build() {
|
|
2109
|
+
static {
|
|
2110
|
+
__name(this, "DeleteDomainAssociationCommand");
|
|
2111
|
+
}
|
|
2086
2112
|
};
|
|
2087
|
-
__name(_DeleteDomainAssociationCommand, "DeleteDomainAssociationCommand");
|
|
2088
|
-
var DeleteDomainAssociationCommand = _DeleteDomainAssociationCommand;
|
|
2089
2113
|
|
|
2090
2114
|
// src/commands/DeleteJobCommand.ts
|
|
2091
2115
|
|
|
2092
2116
|
|
|
2093
2117
|
|
|
2094
|
-
var
|
|
2118
|
+
var DeleteJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2095
2119
|
return [
|
|
2096
2120
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2097
2121
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2098
2122
|
];
|
|
2099
2123
|
}).s("Amplify", "DeleteJob", {}).n("AmplifyClient", "DeleteJobCommand").f(void 0, void 0).ser(se_DeleteJobCommand).de(de_DeleteJobCommand).build() {
|
|
2124
|
+
static {
|
|
2125
|
+
__name(this, "DeleteJobCommand");
|
|
2126
|
+
}
|
|
2100
2127
|
};
|
|
2101
|
-
__name(_DeleteJobCommand, "DeleteJobCommand");
|
|
2102
|
-
var DeleteJobCommand = _DeleteJobCommand;
|
|
2103
2128
|
|
|
2104
2129
|
// src/commands/DeleteWebhookCommand.ts
|
|
2105
2130
|
|
|
2106
2131
|
|
|
2107
2132
|
|
|
2108
|
-
var
|
|
2133
|
+
var DeleteWebhookCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2109
2134
|
return [
|
|
2110
2135
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2111
2136
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2112
2137
|
];
|
|
2113
2138
|
}).s("Amplify", "DeleteWebhook", {}).n("AmplifyClient", "DeleteWebhookCommand").f(void 0, void 0).ser(se_DeleteWebhookCommand).de(de_DeleteWebhookCommand).build() {
|
|
2139
|
+
static {
|
|
2140
|
+
__name(this, "DeleteWebhookCommand");
|
|
2141
|
+
}
|
|
2114
2142
|
};
|
|
2115
|
-
__name(_DeleteWebhookCommand, "DeleteWebhookCommand");
|
|
2116
|
-
var DeleteWebhookCommand = _DeleteWebhookCommand;
|
|
2117
2143
|
|
|
2118
2144
|
// src/commands/GenerateAccessLogsCommand.ts
|
|
2119
2145
|
|
|
2120
2146
|
|
|
2121
2147
|
|
|
2122
|
-
var
|
|
2148
|
+
var GenerateAccessLogsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2123
2149
|
return [
|
|
2124
2150
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2125
2151
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2126
2152
|
];
|
|
2127
2153
|
}).s("Amplify", "GenerateAccessLogs", {}).n("AmplifyClient", "GenerateAccessLogsCommand").f(void 0, void 0).ser(se_GenerateAccessLogsCommand).de(de_GenerateAccessLogsCommand).build() {
|
|
2154
|
+
static {
|
|
2155
|
+
__name(this, "GenerateAccessLogsCommand");
|
|
2156
|
+
}
|
|
2128
2157
|
};
|
|
2129
|
-
__name(_GenerateAccessLogsCommand, "GenerateAccessLogsCommand");
|
|
2130
|
-
var GenerateAccessLogsCommand = _GenerateAccessLogsCommand;
|
|
2131
2158
|
|
|
2132
2159
|
// src/commands/GetAppCommand.ts
|
|
2133
2160
|
|
|
2134
2161
|
|
|
2135
2162
|
|
|
2136
|
-
var
|
|
2163
|
+
var GetAppCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2137
2164
|
return [
|
|
2138
2165
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2139
2166
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2140
2167
|
];
|
|
2141
2168
|
}).s("Amplify", "GetApp", {}).n("AmplifyClient", "GetAppCommand").f(void 0, GetAppResultFilterSensitiveLog).ser(se_GetAppCommand).de(de_GetAppCommand).build() {
|
|
2169
|
+
static {
|
|
2170
|
+
__name(this, "GetAppCommand");
|
|
2171
|
+
}
|
|
2142
2172
|
};
|
|
2143
|
-
__name(_GetAppCommand, "GetAppCommand");
|
|
2144
|
-
var GetAppCommand = _GetAppCommand;
|
|
2145
2173
|
|
|
2146
2174
|
// src/commands/GetArtifactUrlCommand.ts
|
|
2147
2175
|
|
|
2148
2176
|
|
|
2149
2177
|
|
|
2150
|
-
var
|
|
2178
|
+
var GetArtifactUrlCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2151
2179
|
return [
|
|
2152
2180
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2153
2181
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2154
2182
|
];
|
|
2155
2183
|
}).s("Amplify", "GetArtifactUrl", {}).n("AmplifyClient", "GetArtifactUrlCommand").f(void 0, void 0).ser(se_GetArtifactUrlCommand).de(de_GetArtifactUrlCommand).build() {
|
|
2184
|
+
static {
|
|
2185
|
+
__name(this, "GetArtifactUrlCommand");
|
|
2186
|
+
}
|
|
2156
2187
|
};
|
|
2157
|
-
__name(_GetArtifactUrlCommand, "GetArtifactUrlCommand");
|
|
2158
|
-
var GetArtifactUrlCommand = _GetArtifactUrlCommand;
|
|
2159
2188
|
|
|
2160
2189
|
// src/commands/GetBackendEnvironmentCommand.ts
|
|
2161
2190
|
|
|
2162
2191
|
|
|
2163
2192
|
|
|
2164
|
-
var
|
|
2193
|
+
var GetBackendEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2165
2194
|
return [
|
|
2166
2195
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2167
2196
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2168
2197
|
];
|
|
2169
2198
|
}).s("Amplify", "GetBackendEnvironment", {}).n("AmplifyClient", "GetBackendEnvironmentCommand").f(void 0, void 0).ser(se_GetBackendEnvironmentCommand).de(de_GetBackendEnvironmentCommand).build() {
|
|
2199
|
+
static {
|
|
2200
|
+
__name(this, "GetBackendEnvironmentCommand");
|
|
2201
|
+
}
|
|
2170
2202
|
};
|
|
2171
|
-
__name(_GetBackendEnvironmentCommand, "GetBackendEnvironmentCommand");
|
|
2172
|
-
var GetBackendEnvironmentCommand = _GetBackendEnvironmentCommand;
|
|
2173
2203
|
|
|
2174
2204
|
// src/commands/GetBranchCommand.ts
|
|
2175
2205
|
|
|
2176
2206
|
|
|
2177
2207
|
|
|
2178
|
-
var
|
|
2208
|
+
var GetBranchCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2179
2209
|
return [
|
|
2180
2210
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2181
2211
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2182
2212
|
];
|
|
2183
2213
|
}).s("Amplify", "GetBranch", {}).n("AmplifyClient", "GetBranchCommand").f(void 0, GetBranchResultFilterSensitiveLog).ser(se_GetBranchCommand).de(de_GetBranchCommand).build() {
|
|
2214
|
+
static {
|
|
2215
|
+
__name(this, "GetBranchCommand");
|
|
2216
|
+
}
|
|
2184
2217
|
};
|
|
2185
|
-
__name(_GetBranchCommand, "GetBranchCommand");
|
|
2186
|
-
var GetBranchCommand = _GetBranchCommand;
|
|
2187
2218
|
|
|
2188
2219
|
// src/commands/GetDomainAssociationCommand.ts
|
|
2189
2220
|
|
|
2190
2221
|
|
|
2191
2222
|
|
|
2192
|
-
var
|
|
2223
|
+
var GetDomainAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2193
2224
|
return [
|
|
2194
2225
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2195
2226
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2196
2227
|
];
|
|
2197
2228
|
}).s("Amplify", "GetDomainAssociation", {}).n("AmplifyClient", "GetDomainAssociationCommand").f(void 0, void 0).ser(se_GetDomainAssociationCommand).de(de_GetDomainAssociationCommand).build() {
|
|
2229
|
+
static {
|
|
2230
|
+
__name(this, "GetDomainAssociationCommand");
|
|
2231
|
+
}
|
|
2198
2232
|
};
|
|
2199
|
-
__name(_GetDomainAssociationCommand, "GetDomainAssociationCommand");
|
|
2200
|
-
var GetDomainAssociationCommand = _GetDomainAssociationCommand;
|
|
2201
2233
|
|
|
2202
2234
|
// src/commands/GetJobCommand.ts
|
|
2203
2235
|
|
|
2204
2236
|
|
|
2205
2237
|
|
|
2206
|
-
var
|
|
2238
|
+
var GetJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2207
2239
|
return [
|
|
2208
2240
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2209
2241
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2210
2242
|
];
|
|
2211
2243
|
}).s("Amplify", "GetJob", {}).n("AmplifyClient", "GetJobCommand").f(void 0, void 0).ser(se_GetJobCommand).de(de_GetJobCommand).build() {
|
|
2244
|
+
static {
|
|
2245
|
+
__name(this, "GetJobCommand");
|
|
2246
|
+
}
|
|
2212
2247
|
};
|
|
2213
|
-
__name(_GetJobCommand, "GetJobCommand");
|
|
2214
|
-
var GetJobCommand = _GetJobCommand;
|
|
2215
2248
|
|
|
2216
2249
|
// src/commands/GetWebhookCommand.ts
|
|
2217
2250
|
|
|
2218
2251
|
|
|
2219
2252
|
|
|
2220
|
-
var
|
|
2253
|
+
var GetWebhookCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2221
2254
|
return [
|
|
2222
2255
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2223
2256
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2224
2257
|
];
|
|
2225
2258
|
}).s("Amplify", "GetWebhook", {}).n("AmplifyClient", "GetWebhookCommand").f(void 0, void 0).ser(se_GetWebhookCommand).de(de_GetWebhookCommand).build() {
|
|
2259
|
+
static {
|
|
2260
|
+
__name(this, "GetWebhookCommand");
|
|
2261
|
+
}
|
|
2226
2262
|
};
|
|
2227
|
-
__name(_GetWebhookCommand, "GetWebhookCommand");
|
|
2228
|
-
var GetWebhookCommand = _GetWebhookCommand;
|
|
2229
2263
|
|
|
2230
2264
|
// src/commands/ListAppsCommand.ts
|
|
2231
2265
|
|
|
2232
2266
|
|
|
2233
2267
|
|
|
2234
|
-
var
|
|
2268
|
+
var ListAppsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2235
2269
|
return [
|
|
2236
2270
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2237
2271
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2238
2272
|
];
|
|
2239
2273
|
}).s("Amplify", "ListApps", {}).n("AmplifyClient", "ListAppsCommand").f(void 0, ListAppsResultFilterSensitiveLog).ser(se_ListAppsCommand).de(de_ListAppsCommand).build() {
|
|
2274
|
+
static {
|
|
2275
|
+
__name(this, "ListAppsCommand");
|
|
2276
|
+
}
|
|
2240
2277
|
};
|
|
2241
|
-
__name(_ListAppsCommand, "ListAppsCommand");
|
|
2242
|
-
var ListAppsCommand = _ListAppsCommand;
|
|
2243
2278
|
|
|
2244
2279
|
// src/commands/ListArtifactsCommand.ts
|
|
2245
2280
|
|
|
2246
2281
|
|
|
2247
2282
|
|
|
2248
|
-
var
|
|
2283
|
+
var ListArtifactsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2249
2284
|
return [
|
|
2250
2285
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2251
2286
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2252
2287
|
];
|
|
2253
2288
|
}).s("Amplify", "ListArtifacts", {}).n("AmplifyClient", "ListArtifactsCommand").f(void 0, void 0).ser(se_ListArtifactsCommand).de(de_ListArtifactsCommand).build() {
|
|
2289
|
+
static {
|
|
2290
|
+
__name(this, "ListArtifactsCommand");
|
|
2291
|
+
}
|
|
2254
2292
|
};
|
|
2255
|
-
__name(_ListArtifactsCommand, "ListArtifactsCommand");
|
|
2256
|
-
var ListArtifactsCommand = _ListArtifactsCommand;
|
|
2257
2293
|
|
|
2258
2294
|
// src/commands/ListBackendEnvironmentsCommand.ts
|
|
2259
2295
|
|
|
2260
2296
|
|
|
2261
2297
|
|
|
2262
|
-
var
|
|
2298
|
+
var ListBackendEnvironmentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2263
2299
|
return [
|
|
2264
2300
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2265
2301
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2266
2302
|
];
|
|
2267
2303
|
}).s("Amplify", "ListBackendEnvironments", {}).n("AmplifyClient", "ListBackendEnvironmentsCommand").f(void 0, void 0).ser(se_ListBackendEnvironmentsCommand).de(de_ListBackendEnvironmentsCommand).build() {
|
|
2304
|
+
static {
|
|
2305
|
+
__name(this, "ListBackendEnvironmentsCommand");
|
|
2306
|
+
}
|
|
2268
2307
|
};
|
|
2269
|
-
__name(_ListBackendEnvironmentsCommand, "ListBackendEnvironmentsCommand");
|
|
2270
|
-
var ListBackendEnvironmentsCommand = _ListBackendEnvironmentsCommand;
|
|
2271
2308
|
|
|
2272
2309
|
// src/commands/ListBranchesCommand.ts
|
|
2273
2310
|
|
|
2274
2311
|
|
|
2275
2312
|
|
|
2276
|
-
var
|
|
2313
|
+
var ListBranchesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2277
2314
|
return [
|
|
2278
2315
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2279
2316
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2280
2317
|
];
|
|
2281
2318
|
}).s("Amplify", "ListBranches", {}).n("AmplifyClient", "ListBranchesCommand").f(void 0, ListBranchesResultFilterSensitiveLog).ser(se_ListBranchesCommand).de(de_ListBranchesCommand).build() {
|
|
2319
|
+
static {
|
|
2320
|
+
__name(this, "ListBranchesCommand");
|
|
2321
|
+
}
|
|
2282
2322
|
};
|
|
2283
|
-
__name(_ListBranchesCommand, "ListBranchesCommand");
|
|
2284
|
-
var ListBranchesCommand = _ListBranchesCommand;
|
|
2285
2323
|
|
|
2286
2324
|
// src/commands/ListDomainAssociationsCommand.ts
|
|
2287
2325
|
|
|
2288
2326
|
|
|
2289
2327
|
|
|
2290
|
-
var
|
|
2328
|
+
var ListDomainAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2291
2329
|
return [
|
|
2292
2330
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2293
2331
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2294
2332
|
];
|
|
2295
2333
|
}).s("Amplify", "ListDomainAssociations", {}).n("AmplifyClient", "ListDomainAssociationsCommand").f(void 0, void 0).ser(se_ListDomainAssociationsCommand).de(de_ListDomainAssociationsCommand).build() {
|
|
2334
|
+
static {
|
|
2335
|
+
__name(this, "ListDomainAssociationsCommand");
|
|
2336
|
+
}
|
|
2296
2337
|
};
|
|
2297
|
-
__name(_ListDomainAssociationsCommand, "ListDomainAssociationsCommand");
|
|
2298
|
-
var ListDomainAssociationsCommand = _ListDomainAssociationsCommand;
|
|
2299
2338
|
|
|
2300
2339
|
// src/commands/ListJobsCommand.ts
|
|
2301
2340
|
|
|
2302
2341
|
|
|
2303
2342
|
|
|
2304
|
-
var
|
|
2343
|
+
var ListJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2305
2344
|
return [
|
|
2306
2345
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2307
2346
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2308
2347
|
];
|
|
2309
2348
|
}).s("Amplify", "ListJobs", {}).n("AmplifyClient", "ListJobsCommand").f(void 0, void 0).ser(se_ListJobsCommand).de(de_ListJobsCommand).build() {
|
|
2349
|
+
static {
|
|
2350
|
+
__name(this, "ListJobsCommand");
|
|
2351
|
+
}
|
|
2310
2352
|
};
|
|
2311
|
-
__name(_ListJobsCommand, "ListJobsCommand");
|
|
2312
|
-
var ListJobsCommand = _ListJobsCommand;
|
|
2313
2353
|
|
|
2314
2354
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2315
2355
|
|
|
2316
2356
|
|
|
2317
2357
|
|
|
2318
|
-
var
|
|
2358
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2319
2359
|
return [
|
|
2320
2360
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2321
2361
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2322
2362
|
];
|
|
2323
2363
|
}).s("Amplify", "ListTagsForResource", {}).n("AmplifyClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2364
|
+
static {
|
|
2365
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2366
|
+
}
|
|
2324
2367
|
};
|
|
2325
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2326
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2327
2368
|
|
|
2328
2369
|
// src/commands/ListWebhooksCommand.ts
|
|
2329
2370
|
|
|
2330
2371
|
|
|
2331
2372
|
|
|
2332
|
-
var
|
|
2373
|
+
var ListWebhooksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2333
2374
|
return [
|
|
2334
2375
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2335
2376
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2336
2377
|
];
|
|
2337
2378
|
}).s("Amplify", "ListWebhooks", {}).n("AmplifyClient", "ListWebhooksCommand").f(void 0, void 0).ser(se_ListWebhooksCommand).de(de_ListWebhooksCommand).build() {
|
|
2379
|
+
static {
|
|
2380
|
+
__name(this, "ListWebhooksCommand");
|
|
2381
|
+
}
|
|
2338
2382
|
};
|
|
2339
|
-
__name(_ListWebhooksCommand, "ListWebhooksCommand");
|
|
2340
|
-
var ListWebhooksCommand = _ListWebhooksCommand;
|
|
2341
2383
|
|
|
2342
2384
|
// src/commands/StartDeploymentCommand.ts
|
|
2343
2385
|
|
|
2344
2386
|
|
|
2345
2387
|
|
|
2346
|
-
var
|
|
2388
|
+
var StartDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2347
2389
|
return [
|
|
2348
2390
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2349
2391
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2350
2392
|
];
|
|
2351
2393
|
}).s("Amplify", "StartDeployment", {}).n("AmplifyClient", "StartDeploymentCommand").f(void 0, void 0).ser(se_StartDeploymentCommand).de(de_StartDeploymentCommand).build() {
|
|
2394
|
+
static {
|
|
2395
|
+
__name(this, "StartDeploymentCommand");
|
|
2396
|
+
}
|
|
2352
2397
|
};
|
|
2353
|
-
__name(_StartDeploymentCommand, "StartDeploymentCommand");
|
|
2354
|
-
var StartDeploymentCommand = _StartDeploymentCommand;
|
|
2355
2398
|
|
|
2356
2399
|
// src/commands/StartJobCommand.ts
|
|
2357
2400
|
|
|
2358
2401
|
|
|
2359
2402
|
|
|
2360
|
-
var
|
|
2403
|
+
var StartJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2361
2404
|
return [
|
|
2362
2405
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2363
2406
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2364
2407
|
];
|
|
2365
2408
|
}).s("Amplify", "StartJob", {}).n("AmplifyClient", "StartJobCommand").f(void 0, void 0).ser(se_StartJobCommand).de(de_StartJobCommand).build() {
|
|
2409
|
+
static {
|
|
2410
|
+
__name(this, "StartJobCommand");
|
|
2411
|
+
}
|
|
2366
2412
|
};
|
|
2367
|
-
__name(_StartJobCommand, "StartJobCommand");
|
|
2368
|
-
var StartJobCommand = _StartJobCommand;
|
|
2369
2413
|
|
|
2370
2414
|
// src/commands/StopJobCommand.ts
|
|
2371
2415
|
|
|
2372
2416
|
|
|
2373
2417
|
|
|
2374
|
-
var
|
|
2418
|
+
var StopJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2375
2419
|
return [
|
|
2376
2420
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2377
2421
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2378
2422
|
];
|
|
2379
2423
|
}).s("Amplify", "StopJob", {}).n("AmplifyClient", "StopJobCommand").f(void 0, void 0).ser(se_StopJobCommand).de(de_StopJobCommand).build() {
|
|
2424
|
+
static {
|
|
2425
|
+
__name(this, "StopJobCommand");
|
|
2426
|
+
}
|
|
2380
2427
|
};
|
|
2381
|
-
__name(_StopJobCommand, "StopJobCommand");
|
|
2382
|
-
var StopJobCommand = _StopJobCommand;
|
|
2383
2428
|
|
|
2384
2429
|
// src/commands/TagResourceCommand.ts
|
|
2385
2430
|
|
|
2386
2431
|
|
|
2387
2432
|
|
|
2388
|
-
var
|
|
2433
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2389
2434
|
return [
|
|
2390
2435
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2391
2436
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2392
2437
|
];
|
|
2393
2438
|
}).s("Amplify", "TagResource", {}).n("AmplifyClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2439
|
+
static {
|
|
2440
|
+
__name(this, "TagResourceCommand");
|
|
2441
|
+
}
|
|
2394
2442
|
};
|
|
2395
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2396
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2397
2443
|
|
|
2398
2444
|
// src/commands/UntagResourceCommand.ts
|
|
2399
2445
|
|
|
2400
2446
|
|
|
2401
2447
|
|
|
2402
|
-
var
|
|
2448
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2403
2449
|
return [
|
|
2404
2450
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2405
2451
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2406
2452
|
];
|
|
2407
2453
|
}).s("Amplify", "UntagResource", {}).n("AmplifyClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2454
|
+
static {
|
|
2455
|
+
__name(this, "UntagResourceCommand");
|
|
2456
|
+
}
|
|
2408
2457
|
};
|
|
2409
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2410
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2411
2458
|
|
|
2412
2459
|
// src/commands/UpdateAppCommand.ts
|
|
2413
2460
|
|
|
2414
2461
|
|
|
2415
2462
|
|
|
2416
|
-
var
|
|
2463
|
+
var UpdateAppCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2417
2464
|
return [
|
|
2418
2465
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2419
2466
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2420
2467
|
];
|
|
2421
2468
|
}).s("Amplify", "UpdateApp", {}).n("AmplifyClient", "UpdateAppCommand").f(UpdateAppRequestFilterSensitiveLog, UpdateAppResultFilterSensitiveLog).ser(se_UpdateAppCommand).de(de_UpdateAppCommand).build() {
|
|
2469
|
+
static {
|
|
2470
|
+
__name(this, "UpdateAppCommand");
|
|
2471
|
+
}
|
|
2422
2472
|
};
|
|
2423
|
-
__name(_UpdateAppCommand, "UpdateAppCommand");
|
|
2424
|
-
var UpdateAppCommand = _UpdateAppCommand;
|
|
2425
2473
|
|
|
2426
2474
|
// src/commands/UpdateBranchCommand.ts
|
|
2427
2475
|
|
|
2428
2476
|
|
|
2429
2477
|
|
|
2430
|
-
var
|
|
2478
|
+
var UpdateBranchCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2431
2479
|
return [
|
|
2432
2480
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2433
2481
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2434
2482
|
];
|
|
2435
2483
|
}).s("Amplify", "UpdateBranch", {}).n("AmplifyClient", "UpdateBranchCommand").f(UpdateBranchRequestFilterSensitiveLog, UpdateBranchResultFilterSensitiveLog).ser(se_UpdateBranchCommand).de(de_UpdateBranchCommand).build() {
|
|
2484
|
+
static {
|
|
2485
|
+
__name(this, "UpdateBranchCommand");
|
|
2486
|
+
}
|
|
2436
2487
|
};
|
|
2437
|
-
__name(_UpdateBranchCommand, "UpdateBranchCommand");
|
|
2438
|
-
var UpdateBranchCommand = _UpdateBranchCommand;
|
|
2439
2488
|
|
|
2440
2489
|
// src/commands/UpdateDomainAssociationCommand.ts
|
|
2441
2490
|
|
|
2442
2491
|
|
|
2443
2492
|
|
|
2444
|
-
var
|
|
2493
|
+
var UpdateDomainAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2445
2494
|
return [
|
|
2446
2495
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2447
2496
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2448
2497
|
];
|
|
2449
2498
|
}).s("Amplify", "UpdateDomainAssociation", {}).n("AmplifyClient", "UpdateDomainAssociationCommand").f(void 0, void 0).ser(se_UpdateDomainAssociationCommand).de(de_UpdateDomainAssociationCommand).build() {
|
|
2499
|
+
static {
|
|
2500
|
+
__name(this, "UpdateDomainAssociationCommand");
|
|
2501
|
+
}
|
|
2450
2502
|
};
|
|
2451
|
-
__name(_UpdateDomainAssociationCommand, "UpdateDomainAssociationCommand");
|
|
2452
|
-
var UpdateDomainAssociationCommand = _UpdateDomainAssociationCommand;
|
|
2453
2503
|
|
|
2454
2504
|
// src/commands/UpdateWebhookCommand.ts
|
|
2455
2505
|
|
|
2456
2506
|
|
|
2457
2507
|
|
|
2458
|
-
var
|
|
2508
|
+
var UpdateWebhookCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2459
2509
|
return [
|
|
2460
2510
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2461
2511
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2462
2512
|
];
|
|
2463
2513
|
}).s("Amplify", "UpdateWebhook", {}).n("AmplifyClient", "UpdateWebhookCommand").f(void 0, void 0).ser(se_UpdateWebhookCommand).de(de_UpdateWebhookCommand).build() {
|
|
2514
|
+
static {
|
|
2515
|
+
__name(this, "UpdateWebhookCommand");
|
|
2516
|
+
}
|
|
2464
2517
|
};
|
|
2465
|
-
__name(_UpdateWebhookCommand, "UpdateWebhookCommand");
|
|
2466
|
-
var UpdateWebhookCommand = _UpdateWebhookCommand;
|
|
2467
2518
|
|
|
2468
2519
|
// src/Amplify.ts
|
|
2469
2520
|
var commands = {
|
|
@@ -2505,10 +2556,11 @@ var commands = {
|
|
|
2505
2556
|
UpdateDomainAssociationCommand,
|
|
2506
2557
|
UpdateWebhookCommand
|
|
2507
2558
|
};
|
|
2508
|
-
var
|
|
2559
|
+
var Amplify = class extends AmplifyClient {
|
|
2560
|
+
static {
|
|
2561
|
+
__name(this, "Amplify");
|
|
2562
|
+
}
|
|
2509
2563
|
};
|
|
2510
|
-
__name(_Amplify, "Amplify");
|
|
2511
|
-
var Amplify = _Amplify;
|
|
2512
2564
|
(0, import_smithy_client.createAggregatedClient)(commands, Amplify);
|
|
2513
2565
|
|
|
2514
2566
|
// src/pagination/ListAppsPaginator.ts
|
package/dist-es/AmplifyClient.js
CHANGED
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class AmplifyClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { AmplifyServiceException as __BaseException } from "./AmplifyServiceException";
|
|
3
3
|
export class BadRequestException extends __BaseException {
|
|
4
|
+
name = "BadRequestException";
|
|
5
|
+
$fault = "client";
|
|
4
6
|
constructor(opts) {
|
|
5
7
|
super({
|
|
6
8
|
name: "BadRequestException",
|
|
7
9
|
$fault: "client",
|
|
8
10
|
...opts,
|
|
9
11
|
});
|
|
10
|
-
this.name = "BadRequestException";
|
|
11
|
-
this.$fault = "client";
|
|
12
12
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -41,62 +41,62 @@ export const WafStatus = {
|
|
|
41
41
|
DISASSOCIATION_FAILED: "DISASSOCIATION_FAILED",
|
|
42
42
|
};
|
|
43
43
|
export class DependentServiceFailureException extends __BaseException {
|
|
44
|
+
name = "DependentServiceFailureException";
|
|
45
|
+
$fault = "server";
|
|
44
46
|
constructor(opts) {
|
|
45
47
|
super({
|
|
46
48
|
name: "DependentServiceFailureException",
|
|
47
49
|
$fault: "server",
|
|
48
50
|
...opts,
|
|
49
51
|
});
|
|
50
|
-
this.name = "DependentServiceFailureException";
|
|
51
|
-
this.$fault = "server";
|
|
52
52
|
Object.setPrototypeOf(this, DependentServiceFailureException.prototype);
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
export class InternalFailureException extends __BaseException {
|
|
56
|
+
name = "InternalFailureException";
|
|
57
|
+
$fault = "server";
|
|
56
58
|
constructor(opts) {
|
|
57
59
|
super({
|
|
58
60
|
name: "InternalFailureException",
|
|
59
61
|
$fault: "server",
|
|
60
62
|
...opts,
|
|
61
63
|
});
|
|
62
|
-
this.name = "InternalFailureException";
|
|
63
|
-
this.$fault = "server";
|
|
64
64
|
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
export class LimitExceededException extends __BaseException {
|
|
68
|
+
name = "LimitExceededException";
|
|
69
|
+
$fault = "client";
|
|
68
70
|
constructor(opts) {
|
|
69
71
|
super({
|
|
70
72
|
name: "LimitExceededException",
|
|
71
73
|
$fault: "client",
|
|
72
74
|
...opts,
|
|
73
75
|
});
|
|
74
|
-
this.name = "LimitExceededException";
|
|
75
|
-
this.$fault = "client";
|
|
76
76
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
export class UnauthorizedException extends __BaseException {
|
|
80
|
+
name = "UnauthorizedException";
|
|
81
|
+
$fault = "client";
|
|
80
82
|
constructor(opts) {
|
|
81
83
|
super({
|
|
82
84
|
name: "UnauthorizedException",
|
|
83
85
|
$fault: "client",
|
|
84
86
|
...opts,
|
|
85
87
|
});
|
|
86
|
-
this.name = "UnauthorizedException";
|
|
87
|
-
this.$fault = "client";
|
|
88
88
|
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
91
|
export class NotFoundException extends __BaseException {
|
|
92
|
+
name = "NotFoundException";
|
|
93
|
+
$fault = "client";
|
|
92
94
|
constructor(opts) {
|
|
93
95
|
super({
|
|
94
96
|
name: "NotFoundException",
|
|
95
97
|
$fault: "client",
|
|
96
98
|
...opts,
|
|
97
99
|
});
|
|
98
|
-
this.name = "NotFoundException";
|
|
99
|
-
this.$fault = "client";
|
|
100
100
|
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
101
101
|
}
|
|
102
102
|
}
|
|
@@ -146,14 +146,15 @@ export const JobStatus = {
|
|
|
146
146
|
SUCCEED: "SUCCEED",
|
|
147
147
|
};
|
|
148
148
|
export class ResourceNotFoundException extends __BaseException {
|
|
149
|
+
name = "ResourceNotFoundException";
|
|
150
|
+
$fault = "client";
|
|
151
|
+
code;
|
|
149
152
|
constructor(opts) {
|
|
150
153
|
super({
|
|
151
154
|
name: "ResourceNotFoundException",
|
|
152
155
|
$fault: "client",
|
|
153
156
|
...opts,
|
|
154
157
|
});
|
|
155
|
-
this.name = "ResourceNotFoundException";
|
|
156
|
-
this.$fault = "client";
|
|
157
158
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
158
159
|
this.code = opts.code;
|
|
159
160
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: AmplifyClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: AmplifyClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: AmplifyClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: AmplifyClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: AmplifyClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: AmplifyClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: AmplifyClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: AmplifyClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
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.726.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,56 +20,56 @@
|
|
|
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": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.726.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.726.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.726.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.726.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.726.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.726.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|