@aws-sdk/client-appconfig 3.490.0 → 3.496.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 +4006 -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,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AppConfigServiceException = exports.__ServiceException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
- class AppConfigServiceException extends smithy_client_1.ServiceException {
7
- constructor(options) {
8
- super(options);
9
- Object.setPrototypeOf(this, AppConfigServiceException.prototype);
10
- }
11
- }
12
- exports.AppConfigServiceException = AppConfigServiceException;
1
+ module.exports = require("../index.js");
@@ -1,4 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./models_0"), exports);
1
+ module.exports = require("../index.js");
@@ -1,193 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateConfigurationProfileRequestFilterSensitiveLog = exports.ConfigurationFilterSensitiveLog = exports.HostedConfigurationVersionFilterSensitiveLog = exports.CreateHostedConfigurationVersionRequestFilterSensitiveLog = exports.CreateConfigurationProfileRequestFilterSensitiveLog = exports.ConfigurationProfileFilterSensitiveLog = exports.ValidatorFilterSensitiveLog = exports.DeploymentState = exports.TriggeredBy = exports.DeploymentEventType = exports.PayloadTooLargeException = exports.BytesMeasure = exports.ConflictException = exports.EnvironmentState = exports.ReplicateTo = exports.GrowthType = exports.ResourceNotFoundException = exports.ValidatorType = exports.ServiceQuotaExceededException = exports.InternalServerException = exports.BadRequestException = exports.BadRequestReason = exports.BadRequestDetails = exports.ActionPoint = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const AppConfigServiceException_1 = require("./AppConfigServiceException");
6
- exports.ActionPoint = {
7
- ON_DEPLOYMENT_BAKING: "ON_DEPLOYMENT_BAKING",
8
- ON_DEPLOYMENT_COMPLETE: "ON_DEPLOYMENT_COMPLETE",
9
- ON_DEPLOYMENT_ROLLED_BACK: "ON_DEPLOYMENT_ROLLED_BACK",
10
- ON_DEPLOYMENT_START: "ON_DEPLOYMENT_START",
11
- ON_DEPLOYMENT_STEP: "ON_DEPLOYMENT_STEP",
12
- PRE_CREATE_HOSTED_CONFIGURATION_VERSION: "PRE_CREATE_HOSTED_CONFIGURATION_VERSION",
13
- PRE_START_DEPLOYMENT: "PRE_START_DEPLOYMENT",
14
- };
15
- var BadRequestDetails;
16
- (function (BadRequestDetails) {
17
- BadRequestDetails.visit = (value, visitor) => {
18
- if (value.InvalidConfiguration !== undefined)
19
- return visitor.InvalidConfiguration(value.InvalidConfiguration);
20
- return visitor._(value.$unknown[0], value.$unknown[1]);
21
- };
22
- })(BadRequestDetails = exports.BadRequestDetails || (exports.BadRequestDetails = {}));
23
- exports.BadRequestReason = {
24
- INVALID_CONFIGURATION: "InvalidConfiguration",
25
- };
26
- class BadRequestException extends AppConfigServiceException_1.AppConfigServiceException {
27
- constructor(opts) {
28
- super({
29
- name: "BadRequestException",
30
- $fault: "client",
31
- ...opts,
32
- });
33
- this.name = "BadRequestException";
34
- this.$fault = "client";
35
- Object.setPrototypeOf(this, BadRequestException.prototype);
36
- this.Message = opts.Message;
37
- this.Reason = opts.Reason;
38
- this.Details = opts.Details;
39
- }
40
- }
41
- exports.BadRequestException = BadRequestException;
42
- class InternalServerException extends AppConfigServiceException_1.AppConfigServiceException {
43
- constructor(opts) {
44
- super({
45
- name: "InternalServerException",
46
- $fault: "server",
47
- ...opts,
48
- });
49
- this.name = "InternalServerException";
50
- this.$fault = "server";
51
- Object.setPrototypeOf(this, InternalServerException.prototype);
52
- this.Message = opts.Message;
53
- }
54
- }
55
- exports.InternalServerException = InternalServerException;
56
- class ServiceQuotaExceededException extends AppConfigServiceException_1.AppConfigServiceException {
57
- constructor(opts) {
58
- super({
59
- name: "ServiceQuotaExceededException",
60
- $fault: "client",
61
- ...opts,
62
- });
63
- this.name = "ServiceQuotaExceededException";
64
- this.$fault = "client";
65
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
66
- this.Message = opts.Message;
67
- }
68
- }
69
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
70
- exports.ValidatorType = {
71
- JSON_SCHEMA: "JSON_SCHEMA",
72
- LAMBDA: "LAMBDA",
73
- };
74
- class ResourceNotFoundException extends AppConfigServiceException_1.AppConfigServiceException {
75
- constructor(opts) {
76
- super({
77
- name: "ResourceNotFoundException",
78
- $fault: "client",
79
- ...opts,
80
- });
81
- this.name = "ResourceNotFoundException";
82
- this.$fault = "client";
83
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
84
- this.Message = opts.Message;
85
- this.ResourceName = opts.ResourceName;
86
- }
87
- }
88
- exports.ResourceNotFoundException = ResourceNotFoundException;
89
- exports.GrowthType = {
90
- EXPONENTIAL: "EXPONENTIAL",
91
- LINEAR: "LINEAR",
92
- };
93
- exports.ReplicateTo = {
94
- NONE: "NONE",
95
- SSM_DOCUMENT: "SSM_DOCUMENT",
96
- };
97
- exports.EnvironmentState = {
98
- DEPLOYING: "DEPLOYING",
99
- READY_FOR_DEPLOYMENT: "READY_FOR_DEPLOYMENT",
100
- ROLLED_BACK: "ROLLED_BACK",
101
- ROLLING_BACK: "ROLLING_BACK",
102
- };
103
- class ConflictException extends AppConfigServiceException_1.AppConfigServiceException {
104
- constructor(opts) {
105
- super({
106
- name: "ConflictException",
107
- $fault: "client",
108
- ...opts,
109
- });
110
- this.name = "ConflictException";
111
- this.$fault = "client";
112
- Object.setPrototypeOf(this, ConflictException.prototype);
113
- this.Message = opts.Message;
114
- }
115
- }
116
- exports.ConflictException = ConflictException;
117
- exports.BytesMeasure = {
118
- KILOBYTES: "KILOBYTES",
119
- };
120
- class PayloadTooLargeException extends AppConfigServiceException_1.AppConfigServiceException {
121
- constructor(opts) {
122
- super({
123
- name: "PayloadTooLargeException",
124
- $fault: "client",
125
- ...opts,
126
- });
127
- this.name = "PayloadTooLargeException";
128
- this.$fault = "client";
129
- Object.setPrototypeOf(this, PayloadTooLargeException.prototype);
130
- this.Message = opts.Message;
131
- this.Measure = opts.Measure;
132
- this.Limit = opts.Limit;
133
- this.Size = opts.Size;
134
- }
135
- }
136
- exports.PayloadTooLargeException = PayloadTooLargeException;
137
- exports.DeploymentEventType = {
138
- BAKE_TIME_STARTED: "BAKE_TIME_STARTED",
139
- DEPLOYMENT_COMPLETED: "DEPLOYMENT_COMPLETED",
140
- DEPLOYMENT_STARTED: "DEPLOYMENT_STARTED",
141
- PERCENTAGE_UPDATED: "PERCENTAGE_UPDATED",
142
- ROLLBACK_COMPLETED: "ROLLBACK_COMPLETED",
143
- ROLLBACK_STARTED: "ROLLBACK_STARTED",
144
- };
145
- exports.TriggeredBy = {
146
- APPCONFIG: "APPCONFIG",
147
- CLOUDWATCH_ALARM: "CLOUDWATCH_ALARM",
148
- INTERNAL_ERROR: "INTERNAL_ERROR",
149
- USER: "USER",
150
- };
151
- exports.DeploymentState = {
152
- BAKING: "BAKING",
153
- COMPLETE: "COMPLETE",
154
- DEPLOYING: "DEPLOYING",
155
- ROLLED_BACK: "ROLLED_BACK",
156
- ROLLING_BACK: "ROLLING_BACK",
157
- VALIDATING: "VALIDATING",
158
- };
159
- const ValidatorFilterSensitiveLog = (obj) => ({
160
- ...obj,
161
- ...(obj.Content && { Content: smithy_client_1.SENSITIVE_STRING }),
162
- });
163
- exports.ValidatorFilterSensitiveLog = ValidatorFilterSensitiveLog;
164
- const ConfigurationProfileFilterSensitiveLog = (obj) => ({
165
- ...obj,
166
- ...(obj.Validators && { Validators: obj.Validators.map((item) => (0, exports.ValidatorFilterSensitiveLog)(item)) }),
167
- });
168
- exports.ConfigurationProfileFilterSensitiveLog = ConfigurationProfileFilterSensitiveLog;
169
- const CreateConfigurationProfileRequestFilterSensitiveLog = (obj) => ({
170
- ...obj,
171
- ...(obj.Validators && { Validators: obj.Validators.map((item) => (0, exports.ValidatorFilterSensitiveLog)(item)) }),
172
- });
173
- exports.CreateConfigurationProfileRequestFilterSensitiveLog = CreateConfigurationProfileRequestFilterSensitiveLog;
174
- const CreateHostedConfigurationVersionRequestFilterSensitiveLog = (obj) => ({
175
- ...obj,
176
- ...(obj.Content && { Content: smithy_client_1.SENSITIVE_STRING }),
177
- });
178
- exports.CreateHostedConfigurationVersionRequestFilterSensitiveLog = CreateHostedConfigurationVersionRequestFilterSensitiveLog;
179
- const HostedConfigurationVersionFilterSensitiveLog = (obj) => ({
180
- ...obj,
181
- ...(obj.Content && { Content: smithy_client_1.SENSITIVE_STRING }),
182
- });
183
- exports.HostedConfigurationVersionFilterSensitiveLog = HostedConfigurationVersionFilterSensitiveLog;
184
- const ConfigurationFilterSensitiveLog = (obj) => ({
185
- ...obj,
186
- ...(obj.Content && { Content: smithy_client_1.SENSITIVE_STRING }),
187
- });
188
- exports.ConfigurationFilterSensitiveLog = ConfigurationFilterSensitiveLog;
189
- const UpdateConfigurationProfileRequestFilterSensitiveLog = (obj) => ({
190
- ...obj,
191
- ...(obj.Validators && { Validators: obj.Validators.map((item) => (0, exports.ValidatorFilterSensitiveLog)(item)) }),
192
- });
193
- exports.UpdateConfigurationProfileRequestFilterSensitiveLog = UpdateConfigurationProfileRequestFilterSensitiveLog;
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListApplications = void 0;
4
- const core_1 = require("@smithy/core");
5
- const AppConfigClient_1 = require("../AppConfigClient");
6
- const ListApplicationsCommand_1 = require("../commands/ListApplicationsCommand");
7
- exports.paginateListApplications = (0, core_1.createPaginator)(AppConfigClient_1.AppConfigClient, ListApplicationsCommand_1.ListApplicationsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListConfigurationProfiles = void 0;
4
- const core_1 = require("@smithy/core");
5
- const AppConfigClient_1 = require("../AppConfigClient");
6
- const ListConfigurationProfilesCommand_1 = require("../commands/ListConfigurationProfilesCommand");
7
- exports.paginateListConfigurationProfiles = (0, core_1.createPaginator)(AppConfigClient_1.AppConfigClient, ListConfigurationProfilesCommand_1.ListConfigurationProfilesCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListDeploymentStrategies = void 0;
4
- const core_1 = require("@smithy/core");
5
- const AppConfigClient_1 = require("../AppConfigClient");
6
- const ListDeploymentStrategiesCommand_1 = require("../commands/ListDeploymentStrategiesCommand");
7
- exports.paginateListDeploymentStrategies = (0, core_1.createPaginator)(AppConfigClient_1.AppConfigClient, ListDeploymentStrategiesCommand_1.ListDeploymentStrategiesCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListDeployments = void 0;
4
- const core_1 = require("@smithy/core");
5
- const AppConfigClient_1 = require("../AppConfigClient");
6
- const ListDeploymentsCommand_1 = require("../commands/ListDeploymentsCommand");
7
- exports.paginateListDeployments = (0, core_1.createPaginator)(AppConfigClient_1.AppConfigClient, ListDeploymentsCommand_1.ListDeploymentsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListEnvironments = void 0;
4
- const core_1 = require("@smithy/core");
5
- const AppConfigClient_1 = require("../AppConfigClient");
6
- const ListEnvironmentsCommand_1 = require("../commands/ListEnvironmentsCommand");
7
- exports.paginateListEnvironments = (0, core_1.createPaginator)(AppConfigClient_1.AppConfigClient, ListEnvironmentsCommand_1.ListEnvironmentsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListExtensionAssociations = void 0;
4
- const core_1 = require("@smithy/core");
5
- const AppConfigClient_1 = require("../AppConfigClient");
6
- const ListExtensionAssociationsCommand_1 = require("../commands/ListExtensionAssociationsCommand");
7
- exports.paginateListExtensionAssociations = (0, core_1.createPaginator)(AppConfigClient_1.AppConfigClient, ListExtensionAssociationsCommand_1.ListExtensionAssociationsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListExtensions = void 0;
4
- const core_1 = require("@smithy/core");
5
- const AppConfigClient_1 = require("../AppConfigClient");
6
- const ListExtensionsCommand_1 = require("../commands/ListExtensionsCommand");
7
- exports.paginateListExtensions = (0, core_1.createPaginator)(AppConfigClient_1.AppConfigClient, ListExtensionsCommand_1.ListExtensionsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListHostedConfigurationVersions = void 0;
4
- const core_1 = require("@smithy/core");
5
- const AppConfigClient_1 = require("../AppConfigClient");
6
- const ListHostedConfigurationVersionsCommand_1 = require("../commands/ListHostedConfigurationVersionsCommand");
7
- exports.paginateListHostedConfigurationVersions = (0, core_1.createPaginator)(AppConfigClient_1.AppConfigClient, ListHostedConfigurationVersionsCommand_1.ListHostedConfigurationVersionsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./Interfaces"), exports);
5
- tslib_1.__exportStar(require("./ListApplicationsPaginator"), exports);
6
- tslib_1.__exportStar(require("./ListConfigurationProfilesPaginator"), exports);
7
- tslib_1.__exportStar(require("./ListDeploymentStrategiesPaginator"), exports);
8
- tslib_1.__exportStar(require("./ListDeploymentsPaginator"), exports);
9
- tslib_1.__exportStar(require("./ListEnvironmentsPaginator"), exports);
10
- tslib_1.__exportStar(require("./ListExtensionAssociationsPaginator"), exports);
11
- tslib_1.__exportStar(require("./ListExtensionsPaginator"), exports);
12
- tslib_1.__exportStar(require("./ListHostedConfigurationVersionsPaginator"), exports);
1
+ module.exports = require("../index.js");