@aws-sdk/client-appconfig 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.
Files changed (65) hide show
  1. package/dist-cjs/AppConfig.js +1 -97
  2. package/dist-cjs/AppConfigClient.js +1 -43
  3. package/dist-cjs/commands/CreateApplicationCommand.js +1 -28
  4. package/dist-cjs/commands/CreateConfigurationProfileCommand.js +1 -29
  5. package/dist-cjs/commands/CreateDeploymentStrategyCommand.js +1 -28
  6. package/dist-cjs/commands/CreateEnvironmentCommand.js +1 -28
  7. package/dist-cjs/commands/CreateExtensionAssociationCommand.js +1 -28
  8. package/dist-cjs/commands/CreateExtensionCommand.js +1 -28
  9. package/dist-cjs/commands/CreateHostedConfigurationVersionCommand.js +1 -29
  10. package/dist-cjs/commands/DeleteApplicationCommand.js +1 -28
  11. package/dist-cjs/commands/DeleteConfigurationProfileCommand.js +1 -28
  12. package/dist-cjs/commands/DeleteDeploymentStrategyCommand.js +1 -28
  13. package/dist-cjs/commands/DeleteEnvironmentCommand.js +1 -28
  14. package/dist-cjs/commands/DeleteExtensionAssociationCommand.js +1 -28
  15. package/dist-cjs/commands/DeleteExtensionCommand.js +1 -28
  16. package/dist-cjs/commands/DeleteHostedConfigurationVersionCommand.js +1 -28
  17. package/dist-cjs/commands/GetApplicationCommand.js +1 -28
  18. package/dist-cjs/commands/GetConfigurationCommand.js +1 -29
  19. package/dist-cjs/commands/GetConfigurationProfileCommand.js +1 -29
  20. package/dist-cjs/commands/GetDeploymentCommand.js +1 -28
  21. package/dist-cjs/commands/GetDeploymentStrategyCommand.js +1 -28
  22. package/dist-cjs/commands/GetEnvironmentCommand.js +1 -28
  23. package/dist-cjs/commands/GetExtensionAssociationCommand.js +1 -28
  24. package/dist-cjs/commands/GetExtensionCommand.js +1 -28
  25. package/dist-cjs/commands/GetHostedConfigurationVersionCommand.js +1 -29
  26. package/dist-cjs/commands/ListApplicationsCommand.js +1 -28
  27. package/dist-cjs/commands/ListConfigurationProfilesCommand.js +1 -28
  28. package/dist-cjs/commands/ListDeploymentStrategiesCommand.js +1 -28
  29. package/dist-cjs/commands/ListDeploymentsCommand.js +1 -28
  30. package/dist-cjs/commands/ListEnvironmentsCommand.js +1 -28
  31. package/dist-cjs/commands/ListExtensionAssociationsCommand.js +1 -28
  32. package/dist-cjs/commands/ListExtensionsCommand.js +1 -28
  33. package/dist-cjs/commands/ListHostedConfigurationVersionsCommand.js +1 -28
  34. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  35. package/dist-cjs/commands/StartDeploymentCommand.js +1 -28
  36. package/dist-cjs/commands/StopDeploymentCommand.js +1 -28
  37. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  38. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  39. package/dist-cjs/commands/UpdateApplicationCommand.js +1 -28
  40. package/dist-cjs/commands/UpdateConfigurationProfileCommand.js +1 -29
  41. package/dist-cjs/commands/UpdateDeploymentStrategyCommand.js +1 -28
  42. package/dist-cjs/commands/UpdateEnvironmentCommand.js +1 -28
  43. package/dist-cjs/commands/UpdateExtensionAssociationCommand.js +1 -28
  44. package/dist-cjs/commands/UpdateExtensionCommand.js +1 -28
  45. package/dist-cjs/commands/ValidateConfigurationCommand.js +1 -28
  46. package/dist-cjs/commands/index.js +1 -46
  47. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  48. package/dist-cjs/extensionConfiguration.js +1 -2
  49. package/dist-cjs/index.js +4004 -11
  50. package/dist-cjs/models/AppConfigServiceException.js +1 -12
  51. package/dist-cjs/models/index.js +1 -4
  52. package/dist-cjs/models/models_0.js +1 -193
  53. package/dist-cjs/pagination/Interfaces.js +1 -2
  54. package/dist-cjs/pagination/ListApplicationsPaginator.js +1 -7
  55. package/dist-cjs/pagination/ListConfigurationProfilesPaginator.js +1 -7
  56. package/dist-cjs/pagination/ListDeploymentStrategiesPaginator.js +1 -7
  57. package/dist-cjs/pagination/ListDeploymentsPaginator.js +1 -7
  58. package/dist-cjs/pagination/ListEnvironmentsPaginator.js +1 -7
  59. package/dist-cjs/pagination/ListExtensionAssociationsPaginator.js +1 -7
  60. package/dist-cjs/pagination/ListExtensionsPaginator.js +1 -7
  61. package/dist-cjs/pagination/ListHostedConfigurationVersionsPaginator.js +1 -7
  62. package/dist-cjs/pagination/index.js +1 -12
  63. package/dist-cjs/protocols/Aws_restJson1.js +1 -2755
  64. package/dist-cjs/runtimeExtensions.js +1 -22
  65. package/package.json +41 -41
@@ -1,97 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AppConfig = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const AppConfigClient_1 = require("./AppConfigClient");
6
- const CreateApplicationCommand_1 = require("./commands/CreateApplicationCommand");
7
- const CreateConfigurationProfileCommand_1 = require("./commands/CreateConfigurationProfileCommand");
8
- const CreateDeploymentStrategyCommand_1 = require("./commands/CreateDeploymentStrategyCommand");
9
- const CreateEnvironmentCommand_1 = require("./commands/CreateEnvironmentCommand");
10
- const CreateExtensionAssociationCommand_1 = require("./commands/CreateExtensionAssociationCommand");
11
- const CreateExtensionCommand_1 = require("./commands/CreateExtensionCommand");
12
- const CreateHostedConfigurationVersionCommand_1 = require("./commands/CreateHostedConfigurationVersionCommand");
13
- const DeleteApplicationCommand_1 = require("./commands/DeleteApplicationCommand");
14
- const DeleteConfigurationProfileCommand_1 = require("./commands/DeleteConfigurationProfileCommand");
15
- const DeleteDeploymentStrategyCommand_1 = require("./commands/DeleteDeploymentStrategyCommand");
16
- const DeleteEnvironmentCommand_1 = require("./commands/DeleteEnvironmentCommand");
17
- const DeleteExtensionAssociationCommand_1 = require("./commands/DeleteExtensionAssociationCommand");
18
- const DeleteExtensionCommand_1 = require("./commands/DeleteExtensionCommand");
19
- const DeleteHostedConfigurationVersionCommand_1 = require("./commands/DeleteHostedConfigurationVersionCommand");
20
- const GetApplicationCommand_1 = require("./commands/GetApplicationCommand");
21
- const GetConfigurationCommand_1 = require("./commands/GetConfigurationCommand");
22
- const GetConfigurationProfileCommand_1 = require("./commands/GetConfigurationProfileCommand");
23
- const GetDeploymentCommand_1 = require("./commands/GetDeploymentCommand");
24
- const GetDeploymentStrategyCommand_1 = require("./commands/GetDeploymentStrategyCommand");
25
- const GetEnvironmentCommand_1 = require("./commands/GetEnvironmentCommand");
26
- const GetExtensionAssociationCommand_1 = require("./commands/GetExtensionAssociationCommand");
27
- const GetExtensionCommand_1 = require("./commands/GetExtensionCommand");
28
- const GetHostedConfigurationVersionCommand_1 = require("./commands/GetHostedConfigurationVersionCommand");
29
- const ListApplicationsCommand_1 = require("./commands/ListApplicationsCommand");
30
- const ListConfigurationProfilesCommand_1 = require("./commands/ListConfigurationProfilesCommand");
31
- const ListDeploymentsCommand_1 = require("./commands/ListDeploymentsCommand");
32
- const ListDeploymentStrategiesCommand_1 = require("./commands/ListDeploymentStrategiesCommand");
33
- const ListEnvironmentsCommand_1 = require("./commands/ListEnvironmentsCommand");
34
- const ListExtensionAssociationsCommand_1 = require("./commands/ListExtensionAssociationsCommand");
35
- const ListExtensionsCommand_1 = require("./commands/ListExtensionsCommand");
36
- const ListHostedConfigurationVersionsCommand_1 = require("./commands/ListHostedConfigurationVersionsCommand");
37
- const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
38
- const StartDeploymentCommand_1 = require("./commands/StartDeploymentCommand");
39
- const StopDeploymentCommand_1 = require("./commands/StopDeploymentCommand");
40
- const TagResourceCommand_1 = require("./commands/TagResourceCommand");
41
- const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
42
- const UpdateApplicationCommand_1 = require("./commands/UpdateApplicationCommand");
43
- const UpdateConfigurationProfileCommand_1 = require("./commands/UpdateConfigurationProfileCommand");
44
- const UpdateDeploymentStrategyCommand_1 = require("./commands/UpdateDeploymentStrategyCommand");
45
- const UpdateEnvironmentCommand_1 = require("./commands/UpdateEnvironmentCommand");
46
- const UpdateExtensionAssociationCommand_1 = require("./commands/UpdateExtensionAssociationCommand");
47
- const UpdateExtensionCommand_1 = require("./commands/UpdateExtensionCommand");
48
- const ValidateConfigurationCommand_1 = require("./commands/ValidateConfigurationCommand");
49
- const commands = {
50
- CreateApplicationCommand: CreateApplicationCommand_1.CreateApplicationCommand,
51
- CreateConfigurationProfileCommand: CreateConfigurationProfileCommand_1.CreateConfigurationProfileCommand,
52
- CreateDeploymentStrategyCommand: CreateDeploymentStrategyCommand_1.CreateDeploymentStrategyCommand,
53
- CreateEnvironmentCommand: CreateEnvironmentCommand_1.CreateEnvironmentCommand,
54
- CreateExtensionCommand: CreateExtensionCommand_1.CreateExtensionCommand,
55
- CreateExtensionAssociationCommand: CreateExtensionAssociationCommand_1.CreateExtensionAssociationCommand,
56
- CreateHostedConfigurationVersionCommand: CreateHostedConfigurationVersionCommand_1.CreateHostedConfigurationVersionCommand,
57
- DeleteApplicationCommand: DeleteApplicationCommand_1.DeleteApplicationCommand,
58
- DeleteConfigurationProfileCommand: DeleteConfigurationProfileCommand_1.DeleteConfigurationProfileCommand,
59
- DeleteDeploymentStrategyCommand: DeleteDeploymentStrategyCommand_1.DeleteDeploymentStrategyCommand,
60
- DeleteEnvironmentCommand: DeleteEnvironmentCommand_1.DeleteEnvironmentCommand,
61
- DeleteExtensionCommand: DeleteExtensionCommand_1.DeleteExtensionCommand,
62
- DeleteExtensionAssociationCommand: DeleteExtensionAssociationCommand_1.DeleteExtensionAssociationCommand,
63
- DeleteHostedConfigurationVersionCommand: DeleteHostedConfigurationVersionCommand_1.DeleteHostedConfigurationVersionCommand,
64
- GetApplicationCommand: GetApplicationCommand_1.GetApplicationCommand,
65
- GetConfigurationCommand: GetConfigurationCommand_1.GetConfigurationCommand,
66
- GetConfigurationProfileCommand: GetConfigurationProfileCommand_1.GetConfigurationProfileCommand,
67
- GetDeploymentCommand: GetDeploymentCommand_1.GetDeploymentCommand,
68
- GetDeploymentStrategyCommand: GetDeploymentStrategyCommand_1.GetDeploymentStrategyCommand,
69
- GetEnvironmentCommand: GetEnvironmentCommand_1.GetEnvironmentCommand,
70
- GetExtensionCommand: GetExtensionCommand_1.GetExtensionCommand,
71
- GetExtensionAssociationCommand: GetExtensionAssociationCommand_1.GetExtensionAssociationCommand,
72
- GetHostedConfigurationVersionCommand: GetHostedConfigurationVersionCommand_1.GetHostedConfigurationVersionCommand,
73
- ListApplicationsCommand: ListApplicationsCommand_1.ListApplicationsCommand,
74
- ListConfigurationProfilesCommand: ListConfigurationProfilesCommand_1.ListConfigurationProfilesCommand,
75
- ListDeploymentsCommand: ListDeploymentsCommand_1.ListDeploymentsCommand,
76
- ListDeploymentStrategiesCommand: ListDeploymentStrategiesCommand_1.ListDeploymentStrategiesCommand,
77
- ListEnvironmentsCommand: ListEnvironmentsCommand_1.ListEnvironmentsCommand,
78
- ListExtensionAssociationsCommand: ListExtensionAssociationsCommand_1.ListExtensionAssociationsCommand,
79
- ListExtensionsCommand: ListExtensionsCommand_1.ListExtensionsCommand,
80
- ListHostedConfigurationVersionsCommand: ListHostedConfigurationVersionsCommand_1.ListHostedConfigurationVersionsCommand,
81
- ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
82
- StartDeploymentCommand: StartDeploymentCommand_1.StartDeploymentCommand,
83
- StopDeploymentCommand: StopDeploymentCommand_1.StopDeploymentCommand,
84
- TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
85
- UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
86
- UpdateApplicationCommand: UpdateApplicationCommand_1.UpdateApplicationCommand,
87
- UpdateConfigurationProfileCommand: UpdateConfigurationProfileCommand_1.UpdateConfigurationProfileCommand,
88
- UpdateDeploymentStrategyCommand: UpdateDeploymentStrategyCommand_1.UpdateDeploymentStrategyCommand,
89
- UpdateEnvironmentCommand: UpdateEnvironmentCommand_1.UpdateEnvironmentCommand,
90
- UpdateExtensionCommand: UpdateExtensionCommand_1.UpdateExtensionCommand,
91
- UpdateExtensionAssociationCommand: UpdateExtensionAssociationCommand_1.UpdateExtensionAssociationCommand,
92
- ValidateConfigurationCommand: ValidateConfigurationCommand_1.ValidateConfigurationCommand,
93
- };
94
- class AppConfig extends AppConfigClient_1.AppConfigClient {
95
- }
96
- exports.AppConfig = AppConfig;
97
- (0, smithy_client_1.createAggregatedClient)(commands, AppConfig);
1
+ module.exports = require("./index.js");
@@ -1,43 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AppConfigClient = 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 AppConfigClient 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.AppConfigClient = AppConfigClient;
1
+ module.exports = require("./index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateApplicationCommand = 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 CreateApplicationCommand 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("AmazonAppConfig", "CreateApplication", {})
22
- .n("AppConfigClient", "CreateApplicationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_CreateApplicationCommand)
25
- .de(Aws_restJson1_1.de_CreateApplicationCommand)
26
- .build() {
27
- }
28
- exports.CreateApplicationCommand = CreateApplicationCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateConfigurationProfileCommand = 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 CreateConfigurationProfileCommand 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("AmazonAppConfig", "CreateConfigurationProfile", {})
23
- .n("AppConfigClient", "CreateConfigurationProfileCommand")
24
- .f(models_0_1.CreateConfigurationProfileRequestFilterSensitiveLog, models_0_1.ConfigurationProfileFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_CreateConfigurationProfileCommand)
26
- .de(Aws_restJson1_1.de_CreateConfigurationProfileCommand)
27
- .build() {
28
- }
29
- exports.CreateConfigurationProfileCommand = CreateConfigurationProfileCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateDeploymentStrategyCommand = 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 CreateDeploymentStrategyCommand 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("AmazonAppConfig", "CreateDeploymentStrategy", {})
22
- .n("AppConfigClient", "CreateDeploymentStrategyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_CreateDeploymentStrategyCommand)
25
- .de(Aws_restJson1_1.de_CreateDeploymentStrategyCommand)
26
- .build() {
27
- }
28
- exports.CreateDeploymentStrategyCommand = CreateDeploymentStrategyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateEnvironmentCommand = 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 CreateEnvironmentCommand 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("AmazonAppConfig", "CreateEnvironment", {})
22
- .n("AppConfigClient", "CreateEnvironmentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_CreateEnvironmentCommand)
25
- .de(Aws_restJson1_1.de_CreateEnvironmentCommand)
26
- .build() {
27
- }
28
- exports.CreateEnvironmentCommand = CreateEnvironmentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateExtensionAssociationCommand = 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 CreateExtensionAssociationCommand 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("AmazonAppConfig", "CreateExtensionAssociation", {})
22
- .n("AppConfigClient", "CreateExtensionAssociationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_CreateExtensionAssociationCommand)
25
- .de(Aws_restJson1_1.de_CreateExtensionAssociationCommand)
26
- .build() {
27
- }
28
- exports.CreateExtensionAssociationCommand = CreateExtensionAssociationCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateExtensionCommand = 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 CreateExtensionCommand 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("AmazonAppConfig", "CreateExtension", {})
22
- .n("AppConfigClient", "CreateExtensionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_CreateExtensionCommand)
25
- .de(Aws_restJson1_1.de_CreateExtensionCommand)
26
- .build() {
27
- }
28
- exports.CreateExtensionCommand = CreateExtensionCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateHostedConfigurationVersionCommand = 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 CreateHostedConfigurationVersionCommand 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("AmazonAppConfig", "CreateHostedConfigurationVersion", {})
23
- .n("AppConfigClient", "CreateHostedConfigurationVersionCommand")
24
- .f(models_0_1.CreateHostedConfigurationVersionRequestFilterSensitiveLog, models_0_1.HostedConfigurationVersionFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_CreateHostedConfigurationVersionCommand)
26
- .de(Aws_restJson1_1.de_CreateHostedConfigurationVersionCommand)
27
- .build() {
28
- }
29
- exports.CreateHostedConfigurationVersionCommand = CreateHostedConfigurationVersionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteApplicationCommand = 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 DeleteApplicationCommand 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("AmazonAppConfig", "DeleteApplication", {})
22
- .n("AppConfigClient", "DeleteApplicationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteApplicationCommand)
25
- .de(Aws_restJson1_1.de_DeleteApplicationCommand)
26
- .build() {
27
- }
28
- exports.DeleteApplicationCommand = DeleteApplicationCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteConfigurationProfileCommand = 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 DeleteConfigurationProfileCommand 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("AmazonAppConfig", "DeleteConfigurationProfile", {})
22
- .n("AppConfigClient", "DeleteConfigurationProfileCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteConfigurationProfileCommand)
25
- .de(Aws_restJson1_1.de_DeleteConfigurationProfileCommand)
26
- .build() {
27
- }
28
- exports.DeleteConfigurationProfileCommand = DeleteConfigurationProfileCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteDeploymentStrategyCommand = 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 DeleteDeploymentStrategyCommand 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("AmazonAppConfig", "DeleteDeploymentStrategy", {})
22
- .n("AppConfigClient", "DeleteDeploymentStrategyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteDeploymentStrategyCommand)
25
- .de(Aws_restJson1_1.de_DeleteDeploymentStrategyCommand)
26
- .build() {
27
- }
28
- exports.DeleteDeploymentStrategyCommand = DeleteDeploymentStrategyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteEnvironmentCommand = 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 DeleteEnvironmentCommand 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("AmazonAppConfig", "DeleteEnvironment", {})
22
- .n("AppConfigClient", "DeleteEnvironmentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteEnvironmentCommand)
25
- .de(Aws_restJson1_1.de_DeleteEnvironmentCommand)
26
- .build() {
27
- }
28
- exports.DeleteEnvironmentCommand = DeleteEnvironmentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteExtensionAssociationCommand = 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 DeleteExtensionAssociationCommand 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("AmazonAppConfig", "DeleteExtensionAssociation", {})
22
- .n("AppConfigClient", "DeleteExtensionAssociationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteExtensionAssociationCommand)
25
- .de(Aws_restJson1_1.de_DeleteExtensionAssociationCommand)
26
- .build() {
27
- }
28
- exports.DeleteExtensionAssociationCommand = DeleteExtensionAssociationCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteExtensionCommand = 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 DeleteExtensionCommand 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("AmazonAppConfig", "DeleteExtension", {})
22
- .n("AppConfigClient", "DeleteExtensionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteExtensionCommand)
25
- .de(Aws_restJson1_1.de_DeleteExtensionCommand)
26
- .build() {
27
- }
28
- exports.DeleteExtensionCommand = DeleteExtensionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteHostedConfigurationVersionCommand = 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 DeleteHostedConfigurationVersionCommand 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("AmazonAppConfig", "DeleteHostedConfigurationVersion", {})
22
- .n("AppConfigClient", "DeleteHostedConfigurationVersionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteHostedConfigurationVersionCommand)
25
- .de(Aws_restJson1_1.de_DeleteHostedConfigurationVersionCommand)
26
- .build() {
27
- }
28
- exports.DeleteHostedConfigurationVersionCommand = DeleteHostedConfigurationVersionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetApplicationCommand = 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 GetApplicationCommand 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("AmazonAppConfig", "GetApplication", {})
22
- .n("AppConfigClient", "GetApplicationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetApplicationCommand)
25
- .de(Aws_restJson1_1.de_GetApplicationCommand)
26
- .build() {
27
- }
28
- exports.GetApplicationCommand = GetApplicationCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetConfigurationCommand = 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 GetConfigurationCommand 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("AmazonAppConfig", "GetConfiguration", {})
23
- .n("AppConfigClient", "GetConfigurationCommand")
24
- .f(void 0, models_0_1.ConfigurationFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_GetConfigurationCommand)
26
- .de(Aws_restJson1_1.de_GetConfigurationCommand)
27
- .build() {
28
- }
29
- exports.GetConfigurationCommand = GetConfigurationCommand;
1
+ module.exports = require("../index.js");