@aws-sdk/client-proton 3.40.0 → 3.45.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 (180) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/README.md +46 -37
  3. package/dist-cjs/Proton.js +270 -0
  4. package/dist-cjs/commands/CreateRepositoryCommand.js +36 -0
  5. package/dist-cjs/commands/CreateTemplateSyncConfigCommand.js +36 -0
  6. package/dist-cjs/commands/DeleteRepositoryCommand.js +36 -0
  7. package/dist-cjs/commands/DeleteTemplateSyncConfigCommand.js +36 -0
  8. package/dist-cjs/commands/GetRepositoryCommand.js +36 -0
  9. package/dist-cjs/commands/GetRepositorySyncStatusCommand.js +36 -0
  10. package/dist-cjs/commands/GetTemplateSyncConfigCommand.js +36 -0
  11. package/dist-cjs/commands/GetTemplateSyncStatusCommand.js +36 -0
  12. package/dist-cjs/commands/ListEnvironmentOutputsCommand.js +36 -0
  13. package/dist-cjs/commands/ListEnvironmentProvisionedResourcesCommand.js +36 -0
  14. package/dist-cjs/commands/ListRepositoriesCommand.js +36 -0
  15. package/dist-cjs/commands/ListRepositorySyncDefinitionsCommand.js +36 -0
  16. package/dist-cjs/commands/ListServiceInstanceOutputsCommand.js +36 -0
  17. package/dist-cjs/commands/ListServiceInstanceProvisionedResourcesCommand.js +36 -0
  18. package/dist-cjs/commands/ListServicePipelineOutputsCommand.js +36 -0
  19. package/dist-cjs/commands/ListServicePipelineProvisionedResourcesCommand.js +36 -0
  20. package/dist-cjs/commands/NotifyResourceDeploymentStatusChangeCommand.js +36 -0
  21. package/dist-cjs/commands/UpdateTemplateSyncConfigCommand.js +36 -0
  22. package/dist-cjs/commands/index.js +18 -0
  23. package/dist-cjs/endpoints.js +9 -0
  24. package/dist-cjs/models/models_0.js +348 -7
  25. package/dist-cjs/pagination/ListEnvironmentOutputsPaginator.js +34 -0
  26. package/dist-cjs/pagination/ListEnvironmentProvisionedResourcesPaginator.js +34 -0
  27. package/dist-cjs/pagination/ListRepositoriesPaginator.js +35 -0
  28. package/dist-cjs/pagination/ListRepositorySyncDefinitionsPaginator.js +34 -0
  29. package/dist-cjs/pagination/ListServiceInstanceOutputsPaginator.js +34 -0
  30. package/dist-cjs/pagination/ListServiceInstanceProvisionedResourcesPaginator.js +34 -0
  31. package/dist-cjs/pagination/ListServicePipelineOutputsPaginator.js +34 -0
  32. package/dist-cjs/pagination/ListServicePipelineProvisionedResourcesPaginator.js +34 -0
  33. package/dist-cjs/pagination/index.js +8 -0
  34. package/dist-cjs/protocols/Aws_json1_0.js +2364 -220
  35. package/dist-es/Proton.js +270 -0
  36. package/dist-es/commands/CreateRepositoryCommand.js +39 -0
  37. package/dist-es/commands/CreateTemplateSyncConfigCommand.js +39 -0
  38. package/dist-es/commands/DeleteRepositoryCommand.js +39 -0
  39. package/dist-es/commands/DeleteTemplateSyncConfigCommand.js +39 -0
  40. package/dist-es/commands/GetRepositoryCommand.js +39 -0
  41. package/dist-es/commands/GetRepositorySyncStatusCommand.js +39 -0
  42. package/dist-es/commands/GetTemplateSyncConfigCommand.js +39 -0
  43. package/dist-es/commands/GetTemplateSyncStatusCommand.js +39 -0
  44. package/dist-es/commands/ListEnvironmentOutputsCommand.js +39 -0
  45. package/dist-es/commands/ListEnvironmentProvisionedResourcesCommand.js +39 -0
  46. package/dist-es/commands/ListRepositoriesCommand.js +39 -0
  47. package/dist-es/commands/ListRepositorySyncDefinitionsCommand.js +39 -0
  48. package/dist-es/commands/ListServiceInstanceOutputsCommand.js +39 -0
  49. package/dist-es/commands/ListServiceInstanceProvisionedResourcesCommand.js +39 -0
  50. package/dist-es/commands/ListServicePipelineOutputsCommand.js +39 -0
  51. package/dist-es/commands/ListServicePipelineProvisionedResourcesCommand.js +39 -0
  52. package/dist-es/commands/NotifyResourceDeploymentStatusChangeCommand.js +39 -0
  53. package/dist-es/commands/UpdateTemplateSyncConfigCommand.js +39 -0
  54. package/dist-es/commands/index.js +18 -0
  55. package/dist-es/endpoints.js +9 -0
  56. package/dist-es/models/models_0.js +241 -4
  57. package/dist-es/pagination/ListEnvironmentOutputsPaginator.js +73 -0
  58. package/dist-es/pagination/ListEnvironmentProvisionedResourcesPaginator.js +73 -0
  59. package/dist-es/pagination/ListRepositoriesPaginator.js +74 -0
  60. package/dist-es/pagination/ListRepositorySyncDefinitionsPaginator.js +73 -0
  61. package/dist-es/pagination/ListServiceInstanceOutputsPaginator.js +73 -0
  62. package/dist-es/pagination/ListServiceInstanceProvisionedResourcesPaginator.js +73 -0
  63. package/dist-es/pagination/ListServicePipelineOutputsPaginator.js +73 -0
  64. package/dist-es/pagination/ListServicePipelineProvisionedResourcesPaginator.js +73 -0
  65. package/dist-es/pagination/index.js +8 -0
  66. package/dist-es/protocols/Aws_json1_0.js +2529 -291
  67. package/dist-types/Proton.d.ts +400 -248
  68. package/dist-types/ProtonClient.d.ts +108 -81
  69. package/dist-types/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +5 -6
  70. package/dist-types/commands/CancelEnvironmentDeploymentCommand.d.ts +10 -9
  71. package/dist-types/commands/CancelServiceInstanceDeploymentCommand.d.ts +8 -8
  72. package/dist-types/commands/CancelServicePipelineDeploymentCommand.d.ts +8 -8
  73. package/dist-types/commands/CreateEnvironmentAccountConnectionCommand.d.ts +6 -6
  74. package/dist-types/commands/CreateEnvironmentCommand.d.ts +17 -4
  75. package/dist-types/commands/CreateEnvironmentTemplateCommand.d.ts +10 -12
  76. package/dist-types/commands/CreateEnvironmentTemplateVersionCommand.d.ts +3 -3
  77. package/dist-types/commands/CreateRepositoryCommand.d.ts +37 -0
  78. package/dist-types/commands/CreateServiceCommand.d.ts +5 -4
  79. package/dist-types/commands/CreateServiceTemplateCommand.d.ts +6 -6
  80. package/dist-types/commands/CreateServiceTemplateVersionCommand.d.ts +3 -4
  81. package/dist-types/commands/CreateTemplateSyncConfigCommand.d.ts +38 -0
  82. package/dist-types/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +6 -6
  83. package/dist-types/commands/DeleteEnvironmentCommand.d.ts +1 -1
  84. package/dist-types/commands/DeleteEnvironmentTemplateCommand.d.ts +1 -1
  85. package/dist-types/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +6 -7
  86. package/dist-types/commands/DeleteRepositoryCommand.d.ts +35 -0
  87. package/dist-types/commands/DeleteServiceCommand.d.ts +1 -1
  88. package/dist-types/commands/DeleteServiceTemplateCommand.d.ts +1 -1
  89. package/dist-types/commands/DeleteServiceTemplateVersionCommand.d.ts +6 -7
  90. package/dist-types/commands/DeleteTemplateSyncConfigCommand.d.ts +35 -0
  91. package/dist-types/commands/GetAccountSettingsCommand.d.ts +2 -2
  92. package/dist-types/commands/GetEnvironmentAccountConnectionCommand.d.ts +3 -3
  93. package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
  94. package/dist-types/commands/GetEnvironmentTemplateCommand.d.ts +1 -1
  95. package/dist-types/commands/GetEnvironmentTemplateVersionCommand.d.ts +1 -1
  96. package/dist-types/commands/GetRepositoryCommand.d.ts +35 -0
  97. package/dist-types/commands/GetRepositorySyncStatusCommand.d.ts +35 -0
  98. package/dist-types/commands/GetServiceCommand.d.ts +1 -1
  99. package/dist-types/commands/GetServiceInstanceCommand.d.ts +2 -2
  100. package/dist-types/commands/GetServiceTemplateCommand.d.ts +1 -1
  101. package/dist-types/commands/GetServiceTemplateVersionCommand.d.ts +1 -1
  102. package/dist-types/commands/GetTemplateSyncConfigCommand.d.ts +35 -0
  103. package/dist-types/commands/GetTemplateSyncStatusCommand.d.ts +35 -0
  104. package/dist-types/commands/ListEnvironmentAccountConnectionsCommand.d.ts +3 -3
  105. package/dist-types/commands/ListEnvironmentOutputsCommand.d.ts +35 -0
  106. package/dist-types/commands/ListEnvironmentProvisionedResourcesCommand.d.ts +35 -0
  107. package/dist-types/commands/ListEnvironmentTemplateVersionsCommand.d.ts +1 -1
  108. package/dist-types/commands/ListEnvironmentTemplatesCommand.d.ts +1 -1
  109. package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
  110. package/dist-types/commands/ListRepositoriesCommand.d.ts +35 -0
  111. package/dist-types/commands/ListRepositorySyncDefinitionsCommand.d.ts +35 -0
  112. package/dist-types/commands/ListServiceInstanceOutputsCommand.d.ts +35 -0
  113. package/dist-types/commands/ListServiceInstanceProvisionedResourcesCommand.d.ts +35 -0
  114. package/dist-types/commands/ListServiceInstancesCommand.d.ts +1 -1
  115. package/dist-types/commands/ListServicePipelineOutputsCommand.d.ts +35 -0
  116. package/dist-types/commands/ListServicePipelineProvisionedResourcesCommand.d.ts +35 -0
  117. package/dist-types/commands/ListServiceTemplateVersionsCommand.d.ts +1 -1
  118. package/dist-types/commands/ListServiceTemplatesCommand.d.ts +1 -1
  119. package/dist-types/commands/ListServicesCommand.d.ts +1 -1
  120. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
  121. package/dist-types/commands/NotifyResourceDeploymentStatusChangeCommand.d.ts +41 -0
  122. package/dist-types/commands/RejectEnvironmentAccountConnectionCommand.d.ts +6 -6
  123. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  124. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  125. package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +2 -2
  126. package/dist-types/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +3 -3
  127. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +31 -29
  128. package/dist-types/commands/UpdateEnvironmentTemplateCommand.d.ts +1 -1
  129. package/dist-types/commands/UpdateEnvironmentTemplateVersionCommand.d.ts +1 -1
  130. package/dist-types/commands/UpdateServiceCommand.d.ts +6 -7
  131. package/dist-types/commands/UpdateServiceInstanceCommand.d.ts +20 -22
  132. package/dist-types/commands/UpdateServicePipelineCommand.d.ts +20 -22
  133. package/dist-types/commands/UpdateServiceTemplateCommand.d.ts +1 -1
  134. package/dist-types/commands/UpdateServiceTemplateVersionCommand.d.ts +1 -1
  135. package/dist-types/commands/UpdateTemplateSyncConfigCommand.d.ts +35 -0
  136. package/dist-types/commands/index.d.ts +18 -0
  137. package/dist-types/models/models_0.d.ts +1457 -330
  138. package/dist-types/pagination/ListEnvironmentOutputsPaginator.d.ts +4 -0
  139. package/dist-types/pagination/ListEnvironmentProvisionedResourcesPaginator.d.ts +4 -0
  140. package/dist-types/pagination/ListRepositoriesPaginator.d.ts +4 -0
  141. package/dist-types/pagination/ListRepositorySyncDefinitionsPaginator.d.ts +4 -0
  142. package/dist-types/pagination/ListServiceInstanceOutputsPaginator.d.ts +4 -0
  143. package/dist-types/pagination/ListServiceInstanceProvisionedResourcesPaginator.d.ts +4 -0
  144. package/dist-types/pagination/ListServicePipelineOutputsPaginator.d.ts +4 -0
  145. package/dist-types/pagination/ListServicePipelineProvisionedResourcesPaginator.d.ts +4 -0
  146. package/dist-types/pagination/index.d.ts +8 -0
  147. package/dist-types/protocols/Aws_json1_0.d.ts +54 -0
  148. package/dist-types/ts3.4/Proton.d.ts +90 -0
  149. package/dist-types/ts3.4/ProtonClient.d.ts +20 -2
  150. package/dist-types/ts3.4/commands/CreateRepositoryCommand.d.ts +17 -0
  151. package/dist-types/ts3.4/commands/CreateTemplateSyncConfigCommand.d.ts +17 -0
  152. package/dist-types/ts3.4/commands/DeleteRepositoryCommand.d.ts +17 -0
  153. package/dist-types/ts3.4/commands/DeleteTemplateSyncConfigCommand.d.ts +17 -0
  154. package/dist-types/ts3.4/commands/GetRepositoryCommand.d.ts +17 -0
  155. package/dist-types/ts3.4/commands/GetRepositorySyncStatusCommand.d.ts +17 -0
  156. package/dist-types/ts3.4/commands/GetTemplateSyncConfigCommand.d.ts +17 -0
  157. package/dist-types/ts3.4/commands/GetTemplateSyncStatusCommand.d.ts +17 -0
  158. package/dist-types/ts3.4/commands/ListEnvironmentOutputsCommand.d.ts +17 -0
  159. package/dist-types/ts3.4/commands/ListEnvironmentProvisionedResourcesCommand.d.ts +17 -0
  160. package/dist-types/ts3.4/commands/ListRepositoriesCommand.d.ts +17 -0
  161. package/dist-types/ts3.4/commands/ListRepositorySyncDefinitionsCommand.d.ts +17 -0
  162. package/dist-types/ts3.4/commands/ListServiceInstanceOutputsCommand.d.ts +17 -0
  163. package/dist-types/ts3.4/commands/ListServiceInstanceProvisionedResourcesCommand.d.ts +17 -0
  164. package/dist-types/ts3.4/commands/ListServicePipelineOutputsCommand.d.ts +17 -0
  165. package/dist-types/ts3.4/commands/ListServicePipelineProvisionedResourcesCommand.d.ts +17 -0
  166. package/dist-types/ts3.4/commands/NotifyResourceDeploymentStatusChangeCommand.d.ts +17 -0
  167. package/dist-types/ts3.4/commands/UpdateTemplateSyncConfigCommand.d.ts +17 -0
  168. package/dist-types/ts3.4/commands/index.d.ts +18 -0
  169. package/dist-types/ts3.4/models/models_0.d.ts +637 -5
  170. package/dist-types/ts3.4/pagination/ListEnvironmentOutputsPaginator.d.ts +4 -0
  171. package/dist-types/ts3.4/pagination/ListEnvironmentProvisionedResourcesPaginator.d.ts +4 -0
  172. package/dist-types/ts3.4/pagination/ListRepositoriesPaginator.d.ts +4 -0
  173. package/dist-types/ts3.4/pagination/ListRepositorySyncDefinitionsPaginator.d.ts +4 -0
  174. package/dist-types/ts3.4/pagination/ListServiceInstanceOutputsPaginator.d.ts +4 -0
  175. package/dist-types/ts3.4/pagination/ListServiceInstanceProvisionedResourcesPaginator.d.ts +4 -0
  176. package/dist-types/ts3.4/pagination/ListServicePipelineOutputsPaginator.d.ts +4 -0
  177. package/dist-types/ts3.4/pagination/ListServicePipelineProvisionedResourcesPaginator.d.ts +4 -0
  178. package/dist-types/ts3.4/pagination/index.d.ts +8 -0
  179. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +54 -0
  180. package/package.json +6 -6
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { GetTemplateSyncStatusInput, GetTemplateSyncStatusOutput } from "../models/models_0";
5
+ import { deserializeAws_json1_0GetTemplateSyncStatusCommand, serializeAws_json1_0GetTemplateSyncStatusCommand, } from "../protocols/Aws_json1_0";
6
+ var GetTemplateSyncStatusCommand = (function (_super) {
7
+ __extends(GetTemplateSyncStatusCommand, _super);
8
+ function GetTemplateSyncStatusCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ GetTemplateSyncStatusCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ProtonClient";
18
+ var commandName = "GetTemplateSyncStatusCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: GetTemplateSyncStatusInput.filterSensitiveLog,
24
+ outputFilterSensitiveLog: GetTemplateSyncStatusOutput.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetTemplateSyncStatusCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0GetTemplateSyncStatusCommand(input, context);
33
+ };
34
+ GetTemplateSyncStatusCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0GetTemplateSyncStatusCommand(output, context);
36
+ };
37
+ return GetTemplateSyncStatusCommand;
38
+ }($Command));
39
+ export { GetTemplateSyncStatusCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListEnvironmentOutputsInput, ListEnvironmentOutputsOutput } from "../models/models_0";
5
+ import { deserializeAws_json1_0ListEnvironmentOutputsCommand, serializeAws_json1_0ListEnvironmentOutputsCommand, } from "../protocols/Aws_json1_0";
6
+ var ListEnvironmentOutputsCommand = (function (_super) {
7
+ __extends(ListEnvironmentOutputsCommand, _super);
8
+ function ListEnvironmentOutputsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListEnvironmentOutputsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ProtonClient";
18
+ var commandName = "ListEnvironmentOutputsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListEnvironmentOutputsInput.filterSensitiveLog,
24
+ outputFilterSensitiveLog: ListEnvironmentOutputsOutput.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListEnvironmentOutputsCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0ListEnvironmentOutputsCommand(input, context);
33
+ };
34
+ ListEnvironmentOutputsCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0ListEnvironmentOutputsCommand(output, context);
36
+ };
37
+ return ListEnvironmentOutputsCommand;
38
+ }($Command));
39
+ export { ListEnvironmentOutputsCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListEnvironmentProvisionedResourcesInput, ListEnvironmentProvisionedResourcesOutput, } from "../models/models_0";
5
+ import { deserializeAws_json1_0ListEnvironmentProvisionedResourcesCommand, serializeAws_json1_0ListEnvironmentProvisionedResourcesCommand, } from "../protocols/Aws_json1_0";
6
+ var ListEnvironmentProvisionedResourcesCommand = (function (_super) {
7
+ __extends(ListEnvironmentProvisionedResourcesCommand, _super);
8
+ function ListEnvironmentProvisionedResourcesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListEnvironmentProvisionedResourcesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ProtonClient";
18
+ var commandName = "ListEnvironmentProvisionedResourcesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListEnvironmentProvisionedResourcesInput.filterSensitiveLog,
24
+ outputFilterSensitiveLog: ListEnvironmentProvisionedResourcesOutput.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListEnvironmentProvisionedResourcesCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0ListEnvironmentProvisionedResourcesCommand(input, context);
33
+ };
34
+ ListEnvironmentProvisionedResourcesCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0ListEnvironmentProvisionedResourcesCommand(output, context);
36
+ };
37
+ return ListEnvironmentProvisionedResourcesCommand;
38
+ }($Command));
39
+ export { ListEnvironmentProvisionedResourcesCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListRepositoriesInput, ListRepositoriesOutput } from "../models/models_0";
5
+ import { deserializeAws_json1_0ListRepositoriesCommand, serializeAws_json1_0ListRepositoriesCommand, } from "../protocols/Aws_json1_0";
6
+ var ListRepositoriesCommand = (function (_super) {
7
+ __extends(ListRepositoriesCommand, _super);
8
+ function ListRepositoriesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListRepositoriesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ProtonClient";
18
+ var commandName = "ListRepositoriesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListRepositoriesInput.filterSensitiveLog,
24
+ outputFilterSensitiveLog: ListRepositoriesOutput.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListRepositoriesCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0ListRepositoriesCommand(input, context);
33
+ };
34
+ ListRepositoriesCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0ListRepositoriesCommand(output, context);
36
+ };
37
+ return ListRepositoriesCommand;
38
+ }($Command));
39
+ export { ListRepositoriesCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListRepositorySyncDefinitionsInput, ListRepositorySyncDefinitionsOutput } from "../models/models_0";
5
+ import { deserializeAws_json1_0ListRepositorySyncDefinitionsCommand, serializeAws_json1_0ListRepositorySyncDefinitionsCommand, } from "../protocols/Aws_json1_0";
6
+ var ListRepositorySyncDefinitionsCommand = (function (_super) {
7
+ __extends(ListRepositorySyncDefinitionsCommand, _super);
8
+ function ListRepositorySyncDefinitionsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListRepositorySyncDefinitionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ProtonClient";
18
+ var commandName = "ListRepositorySyncDefinitionsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListRepositorySyncDefinitionsInput.filterSensitiveLog,
24
+ outputFilterSensitiveLog: ListRepositorySyncDefinitionsOutput.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListRepositorySyncDefinitionsCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0ListRepositorySyncDefinitionsCommand(input, context);
33
+ };
34
+ ListRepositorySyncDefinitionsCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0ListRepositorySyncDefinitionsCommand(output, context);
36
+ };
37
+ return ListRepositorySyncDefinitionsCommand;
38
+ }($Command));
39
+ export { ListRepositorySyncDefinitionsCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListServiceInstanceOutputsInput, ListServiceInstanceOutputsOutput } from "../models/models_0";
5
+ import { deserializeAws_json1_0ListServiceInstanceOutputsCommand, serializeAws_json1_0ListServiceInstanceOutputsCommand, } from "../protocols/Aws_json1_0";
6
+ var ListServiceInstanceOutputsCommand = (function (_super) {
7
+ __extends(ListServiceInstanceOutputsCommand, _super);
8
+ function ListServiceInstanceOutputsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListServiceInstanceOutputsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ProtonClient";
18
+ var commandName = "ListServiceInstanceOutputsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListServiceInstanceOutputsInput.filterSensitiveLog,
24
+ outputFilterSensitiveLog: ListServiceInstanceOutputsOutput.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListServiceInstanceOutputsCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0ListServiceInstanceOutputsCommand(input, context);
33
+ };
34
+ ListServiceInstanceOutputsCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0ListServiceInstanceOutputsCommand(output, context);
36
+ };
37
+ return ListServiceInstanceOutputsCommand;
38
+ }($Command));
39
+ export { ListServiceInstanceOutputsCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListServiceInstanceProvisionedResourcesInput, ListServiceInstanceProvisionedResourcesOutput, } from "../models/models_0";
5
+ import { deserializeAws_json1_0ListServiceInstanceProvisionedResourcesCommand, serializeAws_json1_0ListServiceInstanceProvisionedResourcesCommand, } from "../protocols/Aws_json1_0";
6
+ var ListServiceInstanceProvisionedResourcesCommand = (function (_super) {
7
+ __extends(ListServiceInstanceProvisionedResourcesCommand, _super);
8
+ function ListServiceInstanceProvisionedResourcesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListServiceInstanceProvisionedResourcesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ProtonClient";
18
+ var commandName = "ListServiceInstanceProvisionedResourcesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListServiceInstanceProvisionedResourcesInput.filterSensitiveLog,
24
+ outputFilterSensitiveLog: ListServiceInstanceProvisionedResourcesOutput.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListServiceInstanceProvisionedResourcesCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0ListServiceInstanceProvisionedResourcesCommand(input, context);
33
+ };
34
+ ListServiceInstanceProvisionedResourcesCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0ListServiceInstanceProvisionedResourcesCommand(output, context);
36
+ };
37
+ return ListServiceInstanceProvisionedResourcesCommand;
38
+ }($Command));
39
+ export { ListServiceInstanceProvisionedResourcesCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListServicePipelineOutputsInput, ListServicePipelineOutputsOutput } from "../models/models_0";
5
+ import { deserializeAws_json1_0ListServicePipelineOutputsCommand, serializeAws_json1_0ListServicePipelineOutputsCommand, } from "../protocols/Aws_json1_0";
6
+ var ListServicePipelineOutputsCommand = (function (_super) {
7
+ __extends(ListServicePipelineOutputsCommand, _super);
8
+ function ListServicePipelineOutputsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListServicePipelineOutputsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ProtonClient";
18
+ var commandName = "ListServicePipelineOutputsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListServicePipelineOutputsInput.filterSensitiveLog,
24
+ outputFilterSensitiveLog: ListServicePipelineOutputsOutput.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListServicePipelineOutputsCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0ListServicePipelineOutputsCommand(input, context);
33
+ };
34
+ ListServicePipelineOutputsCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0ListServicePipelineOutputsCommand(output, context);
36
+ };
37
+ return ListServicePipelineOutputsCommand;
38
+ }($Command));
39
+ export { ListServicePipelineOutputsCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListServicePipelineProvisionedResourcesInput, ListServicePipelineProvisionedResourcesOutput, } from "../models/models_0";
5
+ import { deserializeAws_json1_0ListServicePipelineProvisionedResourcesCommand, serializeAws_json1_0ListServicePipelineProvisionedResourcesCommand, } from "../protocols/Aws_json1_0";
6
+ var ListServicePipelineProvisionedResourcesCommand = (function (_super) {
7
+ __extends(ListServicePipelineProvisionedResourcesCommand, _super);
8
+ function ListServicePipelineProvisionedResourcesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListServicePipelineProvisionedResourcesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ProtonClient";
18
+ var commandName = "ListServicePipelineProvisionedResourcesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListServicePipelineProvisionedResourcesInput.filterSensitiveLog,
24
+ outputFilterSensitiveLog: ListServicePipelineProvisionedResourcesOutput.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListServicePipelineProvisionedResourcesCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0ListServicePipelineProvisionedResourcesCommand(input, context);
33
+ };
34
+ ListServicePipelineProvisionedResourcesCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0ListServicePipelineProvisionedResourcesCommand(output, context);
36
+ };
37
+ return ListServicePipelineProvisionedResourcesCommand;
38
+ }($Command));
39
+ export { ListServicePipelineProvisionedResourcesCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { NotifyResourceDeploymentStatusChangeInput, NotifyResourceDeploymentStatusChangeOutput, } from "../models/models_0";
5
+ import { deserializeAws_json1_0NotifyResourceDeploymentStatusChangeCommand, serializeAws_json1_0NotifyResourceDeploymentStatusChangeCommand, } from "../protocols/Aws_json1_0";
6
+ var NotifyResourceDeploymentStatusChangeCommand = (function (_super) {
7
+ __extends(NotifyResourceDeploymentStatusChangeCommand, _super);
8
+ function NotifyResourceDeploymentStatusChangeCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ NotifyResourceDeploymentStatusChangeCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ProtonClient";
18
+ var commandName = "NotifyResourceDeploymentStatusChangeCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: NotifyResourceDeploymentStatusChangeInput.filterSensitiveLog,
24
+ outputFilterSensitiveLog: NotifyResourceDeploymentStatusChangeOutput.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ NotifyResourceDeploymentStatusChangeCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0NotifyResourceDeploymentStatusChangeCommand(input, context);
33
+ };
34
+ NotifyResourceDeploymentStatusChangeCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0NotifyResourceDeploymentStatusChangeCommand(output, context);
36
+ };
37
+ return NotifyResourceDeploymentStatusChangeCommand;
38
+ }($Command));
39
+ export { NotifyResourceDeploymentStatusChangeCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { UpdateTemplateSyncConfigInput, UpdateTemplateSyncConfigOutput } from "../models/models_0";
5
+ import { deserializeAws_json1_0UpdateTemplateSyncConfigCommand, serializeAws_json1_0UpdateTemplateSyncConfigCommand, } from "../protocols/Aws_json1_0";
6
+ var UpdateTemplateSyncConfigCommand = (function (_super) {
7
+ __extends(UpdateTemplateSyncConfigCommand, _super);
8
+ function UpdateTemplateSyncConfigCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ UpdateTemplateSyncConfigCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ProtonClient";
18
+ var commandName = "UpdateTemplateSyncConfigCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: UpdateTemplateSyncConfigInput.filterSensitiveLog,
24
+ outputFilterSensitiveLog: UpdateTemplateSyncConfigOutput.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UpdateTemplateSyncConfigCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0UpdateTemplateSyncConfigCommand(input, context);
33
+ };
34
+ UpdateTemplateSyncConfigCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0UpdateTemplateSyncConfigCommand(output, context);
36
+ };
37
+ return UpdateTemplateSyncConfigCommand;
38
+ }($Command));
39
+ export { UpdateTemplateSyncConfigCommand };
@@ -6,34 +6,51 @@ export * from "./CreateEnvironmentAccountConnectionCommand";
6
6
  export * from "./CreateEnvironmentCommand";
7
7
  export * from "./CreateEnvironmentTemplateCommand";
8
8
  export * from "./CreateEnvironmentTemplateVersionCommand";
9
+ export * from "./CreateRepositoryCommand";
9
10
  export * from "./CreateServiceCommand";
10
11
  export * from "./CreateServiceTemplateCommand";
11
12
  export * from "./CreateServiceTemplateVersionCommand";
13
+ export * from "./CreateTemplateSyncConfigCommand";
12
14
  export * from "./DeleteEnvironmentAccountConnectionCommand";
13
15
  export * from "./DeleteEnvironmentCommand";
14
16
  export * from "./DeleteEnvironmentTemplateCommand";
15
17
  export * from "./DeleteEnvironmentTemplateVersionCommand";
18
+ export * from "./DeleteRepositoryCommand";
16
19
  export * from "./DeleteServiceCommand";
17
20
  export * from "./DeleteServiceTemplateCommand";
18
21
  export * from "./DeleteServiceTemplateVersionCommand";
22
+ export * from "./DeleteTemplateSyncConfigCommand";
19
23
  export * from "./GetAccountSettingsCommand";
20
24
  export * from "./GetEnvironmentAccountConnectionCommand";
21
25
  export * from "./GetEnvironmentCommand";
22
26
  export * from "./GetEnvironmentTemplateCommand";
23
27
  export * from "./GetEnvironmentTemplateVersionCommand";
28
+ export * from "./GetRepositoryCommand";
29
+ export * from "./GetRepositorySyncStatusCommand";
24
30
  export * from "./GetServiceCommand";
25
31
  export * from "./GetServiceInstanceCommand";
26
32
  export * from "./GetServiceTemplateCommand";
27
33
  export * from "./GetServiceTemplateVersionCommand";
34
+ export * from "./GetTemplateSyncConfigCommand";
35
+ export * from "./GetTemplateSyncStatusCommand";
28
36
  export * from "./ListEnvironmentAccountConnectionsCommand";
37
+ export * from "./ListEnvironmentOutputsCommand";
38
+ export * from "./ListEnvironmentProvisionedResourcesCommand";
29
39
  export * from "./ListEnvironmentTemplateVersionsCommand";
30
40
  export * from "./ListEnvironmentTemplatesCommand";
31
41
  export * from "./ListEnvironmentsCommand";
42
+ export * from "./ListRepositoriesCommand";
43
+ export * from "./ListRepositorySyncDefinitionsCommand";
44
+ export * from "./ListServiceInstanceOutputsCommand";
45
+ export * from "./ListServiceInstanceProvisionedResourcesCommand";
32
46
  export * from "./ListServiceInstancesCommand";
47
+ export * from "./ListServicePipelineOutputsCommand";
48
+ export * from "./ListServicePipelineProvisionedResourcesCommand";
33
49
  export * from "./ListServiceTemplateVersionsCommand";
34
50
  export * from "./ListServiceTemplatesCommand";
35
51
  export * from "./ListServicesCommand";
36
52
  export * from "./ListTagsForResourceCommand";
53
+ export * from "./NotifyResourceDeploymentStatusChangeCommand";
37
54
  export * from "./RejectEnvironmentAccountConnectionCommand";
38
55
  export * from "./TagResourceCommand";
39
56
  export * from "./UntagResourceCommand";
@@ -47,3 +64,4 @@ export * from "./UpdateServiceInstanceCommand";
47
64
  export * from "./UpdateServicePipelineCommand";
48
65
  export * from "./UpdateServiceTemplateCommand";
49
66
  export * from "./UpdateServiceTemplateVersionCommand";
67
+ export * from "./UpdateTemplateSyncConfigCommand";
@@ -12,6 +12,7 @@ var partitionHash = {
12
12
  "ap-south-1",
13
13
  "ap-southeast-1",
14
14
  "ap-southeast-2",
15
+ "ap-southeast-3",
15
16
  "ca-central-1",
16
17
  "eu-central-1",
17
18
  "eu-north-1",
@@ -76,6 +77,10 @@ var partitionHash = {
76
77
  hostname: "proton.{region}.c2s.ic.gov",
77
78
  tags: [],
78
79
  },
80
+ {
81
+ hostname: "proton-fips.{region}.c2s.ic.gov",
82
+ tags: ["fips"],
83
+ },
79
84
  ],
80
85
  },
81
86
  "aws-iso-b": {
@@ -86,6 +91,10 @@ var partitionHash = {
86
91
  hostname: "proton.{region}.sc2s.sgov.gov",
87
92
  tags: [],
88
93
  },
94
+ {
95
+ hostname: "proton-fips.{region}.sc2s.sgov.gov",
96
+ tags: ["fips"],
97
+ },
89
98
  ],
90
99
  },
91
100
  "aws-us-gov": {