@aws-sdk/client-amplifybackend 3.489.0 → 3.495.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/AmplifyBackend.js +1 -73
- package/dist-cjs/AmplifyBackendClient.js +1 -43
- package/dist-cjs/commands/CloneBackendCommand.js +1 -28
- package/dist-cjs/commands/CreateBackendAPICommand.js +1 -28
- package/dist-cjs/commands/CreateBackendAuthCommand.js +1 -29
- package/dist-cjs/commands/CreateBackendCommand.js +1 -28
- package/dist-cjs/commands/CreateBackendConfigCommand.js +1 -28
- package/dist-cjs/commands/CreateBackendStorageCommand.js +1 -28
- package/dist-cjs/commands/CreateTokenCommand.js +1 -28
- package/dist-cjs/commands/DeleteBackendAPICommand.js +1 -28
- package/dist-cjs/commands/DeleteBackendAuthCommand.js +1 -28
- package/dist-cjs/commands/DeleteBackendCommand.js +1 -28
- package/dist-cjs/commands/DeleteBackendStorageCommand.js +1 -28
- package/dist-cjs/commands/DeleteTokenCommand.js +1 -28
- package/dist-cjs/commands/GenerateBackendAPIModelsCommand.js +1 -28
- package/dist-cjs/commands/GetBackendAPICommand.js +1 -28
- package/dist-cjs/commands/GetBackendAPIModelsCommand.js +1 -28
- package/dist-cjs/commands/GetBackendAuthCommand.js +1 -29
- package/dist-cjs/commands/GetBackendCommand.js +1 -28
- package/dist-cjs/commands/GetBackendJobCommand.js +1 -28
- package/dist-cjs/commands/GetBackendStorageCommand.js +1 -28
- package/dist-cjs/commands/GetTokenCommand.js +1 -28
- package/dist-cjs/commands/ImportBackendAuthCommand.js +1 -28
- package/dist-cjs/commands/ImportBackendStorageCommand.js +1 -28
- package/dist-cjs/commands/ListBackendJobsCommand.js +1 -28
- package/dist-cjs/commands/ListS3BucketsCommand.js +1 -28
- package/dist-cjs/commands/RemoveAllBackendsCommand.js +1 -28
- package/dist-cjs/commands/RemoveBackendConfigCommand.js +1 -28
- package/dist-cjs/commands/UpdateBackendAPICommand.js +1 -28
- package/dist-cjs/commands/UpdateBackendAuthCommand.js +1 -29
- package/dist-cjs/commands/UpdateBackendConfigCommand.js +1 -28
- package/dist-cjs/commands/UpdateBackendJobCommand.js +1 -28
- package/dist-cjs/commands/UpdateBackendStorageCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -34
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +3557 -10
- package/dist-cjs/models/AmplifyBackendServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -267
- package/dist-cjs/protocols/Aws_restJson1.js +1 -2474
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,73 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AmplifyBackend = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const AmplifyBackendClient_1 = require("./AmplifyBackendClient");
|
|
6
|
-
const CloneBackendCommand_1 = require("./commands/CloneBackendCommand");
|
|
7
|
-
const CreateBackendAPICommand_1 = require("./commands/CreateBackendAPICommand");
|
|
8
|
-
const CreateBackendAuthCommand_1 = require("./commands/CreateBackendAuthCommand");
|
|
9
|
-
const CreateBackendCommand_1 = require("./commands/CreateBackendCommand");
|
|
10
|
-
const CreateBackendConfigCommand_1 = require("./commands/CreateBackendConfigCommand");
|
|
11
|
-
const CreateBackendStorageCommand_1 = require("./commands/CreateBackendStorageCommand");
|
|
12
|
-
const CreateTokenCommand_1 = require("./commands/CreateTokenCommand");
|
|
13
|
-
const DeleteBackendAPICommand_1 = require("./commands/DeleteBackendAPICommand");
|
|
14
|
-
const DeleteBackendAuthCommand_1 = require("./commands/DeleteBackendAuthCommand");
|
|
15
|
-
const DeleteBackendCommand_1 = require("./commands/DeleteBackendCommand");
|
|
16
|
-
const DeleteBackendStorageCommand_1 = require("./commands/DeleteBackendStorageCommand");
|
|
17
|
-
const DeleteTokenCommand_1 = require("./commands/DeleteTokenCommand");
|
|
18
|
-
const GenerateBackendAPIModelsCommand_1 = require("./commands/GenerateBackendAPIModelsCommand");
|
|
19
|
-
const GetBackendAPICommand_1 = require("./commands/GetBackendAPICommand");
|
|
20
|
-
const GetBackendAPIModelsCommand_1 = require("./commands/GetBackendAPIModelsCommand");
|
|
21
|
-
const GetBackendAuthCommand_1 = require("./commands/GetBackendAuthCommand");
|
|
22
|
-
const GetBackendCommand_1 = require("./commands/GetBackendCommand");
|
|
23
|
-
const GetBackendJobCommand_1 = require("./commands/GetBackendJobCommand");
|
|
24
|
-
const GetBackendStorageCommand_1 = require("./commands/GetBackendStorageCommand");
|
|
25
|
-
const GetTokenCommand_1 = require("./commands/GetTokenCommand");
|
|
26
|
-
const ImportBackendAuthCommand_1 = require("./commands/ImportBackendAuthCommand");
|
|
27
|
-
const ImportBackendStorageCommand_1 = require("./commands/ImportBackendStorageCommand");
|
|
28
|
-
const ListBackendJobsCommand_1 = require("./commands/ListBackendJobsCommand");
|
|
29
|
-
const ListS3BucketsCommand_1 = require("./commands/ListS3BucketsCommand");
|
|
30
|
-
const RemoveAllBackendsCommand_1 = require("./commands/RemoveAllBackendsCommand");
|
|
31
|
-
const RemoveBackendConfigCommand_1 = require("./commands/RemoveBackendConfigCommand");
|
|
32
|
-
const UpdateBackendAPICommand_1 = require("./commands/UpdateBackendAPICommand");
|
|
33
|
-
const UpdateBackendAuthCommand_1 = require("./commands/UpdateBackendAuthCommand");
|
|
34
|
-
const UpdateBackendConfigCommand_1 = require("./commands/UpdateBackendConfigCommand");
|
|
35
|
-
const UpdateBackendJobCommand_1 = require("./commands/UpdateBackendJobCommand");
|
|
36
|
-
const UpdateBackendStorageCommand_1 = require("./commands/UpdateBackendStorageCommand");
|
|
37
|
-
const commands = {
|
|
38
|
-
CloneBackendCommand: CloneBackendCommand_1.CloneBackendCommand,
|
|
39
|
-
CreateBackendCommand: CreateBackendCommand_1.CreateBackendCommand,
|
|
40
|
-
CreateBackendAPICommand: CreateBackendAPICommand_1.CreateBackendAPICommand,
|
|
41
|
-
CreateBackendAuthCommand: CreateBackendAuthCommand_1.CreateBackendAuthCommand,
|
|
42
|
-
CreateBackendConfigCommand: CreateBackendConfigCommand_1.CreateBackendConfigCommand,
|
|
43
|
-
CreateBackendStorageCommand: CreateBackendStorageCommand_1.CreateBackendStorageCommand,
|
|
44
|
-
CreateTokenCommand: CreateTokenCommand_1.CreateTokenCommand,
|
|
45
|
-
DeleteBackendCommand: DeleteBackendCommand_1.DeleteBackendCommand,
|
|
46
|
-
DeleteBackendAPICommand: DeleteBackendAPICommand_1.DeleteBackendAPICommand,
|
|
47
|
-
DeleteBackendAuthCommand: DeleteBackendAuthCommand_1.DeleteBackendAuthCommand,
|
|
48
|
-
DeleteBackendStorageCommand: DeleteBackendStorageCommand_1.DeleteBackendStorageCommand,
|
|
49
|
-
DeleteTokenCommand: DeleteTokenCommand_1.DeleteTokenCommand,
|
|
50
|
-
GenerateBackendAPIModelsCommand: GenerateBackendAPIModelsCommand_1.GenerateBackendAPIModelsCommand,
|
|
51
|
-
GetBackendCommand: GetBackendCommand_1.GetBackendCommand,
|
|
52
|
-
GetBackendAPICommand: GetBackendAPICommand_1.GetBackendAPICommand,
|
|
53
|
-
GetBackendAPIModelsCommand: GetBackendAPIModelsCommand_1.GetBackendAPIModelsCommand,
|
|
54
|
-
GetBackendAuthCommand: GetBackendAuthCommand_1.GetBackendAuthCommand,
|
|
55
|
-
GetBackendJobCommand: GetBackendJobCommand_1.GetBackendJobCommand,
|
|
56
|
-
GetBackendStorageCommand: GetBackendStorageCommand_1.GetBackendStorageCommand,
|
|
57
|
-
GetTokenCommand: GetTokenCommand_1.GetTokenCommand,
|
|
58
|
-
ImportBackendAuthCommand: ImportBackendAuthCommand_1.ImportBackendAuthCommand,
|
|
59
|
-
ImportBackendStorageCommand: ImportBackendStorageCommand_1.ImportBackendStorageCommand,
|
|
60
|
-
ListBackendJobsCommand: ListBackendJobsCommand_1.ListBackendJobsCommand,
|
|
61
|
-
ListS3BucketsCommand: ListS3BucketsCommand_1.ListS3BucketsCommand,
|
|
62
|
-
RemoveAllBackendsCommand: RemoveAllBackendsCommand_1.RemoveAllBackendsCommand,
|
|
63
|
-
RemoveBackendConfigCommand: RemoveBackendConfigCommand_1.RemoveBackendConfigCommand,
|
|
64
|
-
UpdateBackendAPICommand: UpdateBackendAPICommand_1.UpdateBackendAPICommand,
|
|
65
|
-
UpdateBackendAuthCommand: UpdateBackendAuthCommand_1.UpdateBackendAuthCommand,
|
|
66
|
-
UpdateBackendConfigCommand: UpdateBackendConfigCommand_1.UpdateBackendConfigCommand,
|
|
67
|
-
UpdateBackendJobCommand: UpdateBackendJobCommand_1.UpdateBackendJobCommand,
|
|
68
|
-
UpdateBackendStorageCommand: UpdateBackendStorageCommand_1.UpdateBackendStorageCommand,
|
|
69
|
-
};
|
|
70
|
-
class AmplifyBackend extends AmplifyBackendClient_1.AmplifyBackendClient {
|
|
71
|
-
}
|
|
72
|
-
exports.AmplifyBackend = AmplifyBackend;
|
|
73
|
-
(0, smithy_client_1.createAggregatedClient)(commands, AmplifyBackend);
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,43 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AmplifyBackendClient = exports.__Client = void 0;
|
|
4
|
-
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
5
|
-
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
6
|
-
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
7
|
-
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
8
|
-
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
9
|
-
const config_resolver_1 = require("@smithy/config-resolver");
|
|
10
|
-
const middleware_content_length_1 = require("@smithy/middleware-content-length");
|
|
11
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
12
|
-
const middleware_retry_1 = require("@smithy/middleware-retry");
|
|
13
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
14
|
-
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
15
|
-
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
16
|
-
const runtimeConfig_1 = require("./runtimeConfig");
|
|
17
|
-
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
18
|
-
class AmplifyBackendClient extends smithy_client_1.Client {
|
|
19
|
-
constructor(...[configuration]) {
|
|
20
|
-
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
21
|
-
const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
|
|
22
|
-
const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
|
|
23
|
-
const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
|
|
24
|
-
const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
|
|
25
|
-
const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
|
|
26
|
-
const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
|
|
27
|
-
const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
|
|
28
|
-
const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
|
|
29
|
-
super(_config_8);
|
|
30
|
-
this.config = _config_8;
|
|
31
|
-
this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
|
|
32
|
-
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
33
|
-
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
34
|
-
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
35
|
-
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
36
|
-
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
37
|
-
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
38
|
-
}
|
|
39
|
-
destroy() {
|
|
40
|
-
super.destroy();
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
exports.AmplifyBackendClient = AmplifyBackendClient;
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CloneBackendCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CloneBackendCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "CloneBackend", {})
|
|
22
|
-
.n("AmplifyBackendClient", "CloneBackendCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CloneBackendCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CloneBackendCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CloneBackendCommand = CloneBackendCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateBackendAPICommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateBackendAPICommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "CreateBackendAPI", {})
|
|
22
|
-
.n("AmplifyBackendClient", "CreateBackendAPICommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateBackendAPICommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateBackendAPICommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateBackendAPICommand = CreateBackendAPICommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateBackendAuthCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const models_0_1 = require("../models/models_0");
|
|
10
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class CreateBackendAuthCommand extends smithy_client_1.Command
|
|
12
|
-
.classBuilder()
|
|
13
|
-
.ep({
|
|
14
|
-
...EndpointParameters_1.commonParams,
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmplifyBackend", "CreateBackendAuth", {})
|
|
23
|
-
.n("AmplifyBackendClient", "CreateBackendAuthCommand")
|
|
24
|
-
.f(models_0_1.CreateBackendAuthRequestFilterSensitiveLog, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_CreateBackendAuthCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_CreateBackendAuthCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.CreateBackendAuthCommand = CreateBackendAuthCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateBackendCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateBackendCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "CreateBackend", {})
|
|
22
|
-
.n("AmplifyBackendClient", "CreateBackendCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateBackendCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateBackendCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateBackendCommand = CreateBackendCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateBackendConfigCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateBackendConfigCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "CreateBackendConfig", {})
|
|
22
|
-
.n("AmplifyBackendClient", "CreateBackendConfigCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateBackendConfigCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateBackendConfigCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateBackendConfigCommand = CreateBackendConfigCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateBackendStorageCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateBackendStorageCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "CreateBackendStorage", {})
|
|
22
|
-
.n("AmplifyBackendClient", "CreateBackendStorageCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateBackendStorageCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateBackendStorageCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateBackendStorageCommand = CreateBackendStorageCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateTokenCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateTokenCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "CreateToken", {})
|
|
22
|
-
.n("AmplifyBackendClient", "CreateTokenCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateTokenCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateTokenCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateTokenCommand = CreateTokenCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteBackendAPICommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteBackendAPICommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "DeleteBackendAPI", {})
|
|
22
|
-
.n("AmplifyBackendClient", "DeleteBackendAPICommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteBackendAPICommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteBackendAPICommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteBackendAPICommand = DeleteBackendAPICommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteBackendAuthCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteBackendAuthCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "DeleteBackendAuth", {})
|
|
22
|
-
.n("AmplifyBackendClient", "DeleteBackendAuthCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteBackendAuthCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteBackendAuthCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteBackendAuthCommand = DeleteBackendAuthCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteBackendCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteBackendCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "DeleteBackend", {})
|
|
22
|
-
.n("AmplifyBackendClient", "DeleteBackendCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteBackendCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteBackendCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteBackendCommand = DeleteBackendCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteBackendStorageCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteBackendStorageCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "DeleteBackendStorage", {})
|
|
22
|
-
.n("AmplifyBackendClient", "DeleteBackendStorageCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteBackendStorageCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteBackendStorageCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteBackendStorageCommand = DeleteBackendStorageCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteTokenCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteTokenCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "DeleteToken", {})
|
|
22
|
-
.n("AmplifyBackendClient", "DeleteTokenCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteTokenCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteTokenCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteTokenCommand = DeleteTokenCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GenerateBackendAPIModelsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GenerateBackendAPIModelsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "GenerateBackendAPIModels", {})
|
|
22
|
-
.n("AmplifyBackendClient", "GenerateBackendAPIModelsCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_GenerateBackendAPIModelsCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_GenerateBackendAPIModelsCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GenerateBackendAPIModelsCommand = GenerateBackendAPIModelsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetBackendAPICommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetBackendAPICommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "GetBackendAPI", {})
|
|
22
|
-
.n("AmplifyBackendClient", "GetBackendAPICommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_GetBackendAPICommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_GetBackendAPICommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GetBackendAPICommand = GetBackendAPICommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetBackendAPIModelsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetBackendAPIModelsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "GetBackendAPIModels", {})
|
|
22
|
-
.n("AmplifyBackendClient", "GetBackendAPIModelsCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_GetBackendAPIModelsCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_GetBackendAPIModelsCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GetBackendAPIModelsCommand = GetBackendAPIModelsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetBackendAuthCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const models_0_1 = require("../models/models_0");
|
|
10
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class GetBackendAuthCommand extends smithy_client_1.Command
|
|
12
|
-
.classBuilder()
|
|
13
|
-
.ep({
|
|
14
|
-
...EndpointParameters_1.commonParams,
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmplifyBackend", "GetBackendAuth", {})
|
|
23
|
-
.n("AmplifyBackendClient", "GetBackendAuthCommand")
|
|
24
|
-
.f(void 0, models_0_1.GetBackendAuthResponseFilterSensitiveLog)
|
|
25
|
-
.ser(Aws_restJson1_1.se_GetBackendAuthCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_GetBackendAuthCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.GetBackendAuthCommand = GetBackendAuthCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetBackendCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetBackendCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmplifyBackend", "GetBackend", {})
|
|
22
|
-
.n("AmplifyBackendClient", "GetBackendCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_GetBackendCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_GetBackendCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GetBackendCommand = GetBackendCommand;
|
|
1
|
+
module.exports = require("../index.js");
|