@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,37 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CreateRepositoryInput, CreateRepositoryOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface CreateRepositoryCommandInput extends CreateRepositoryInput {
6
+ }
7
+ export interface CreateRepositoryCommandOutput extends CreateRepositoryOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Create and register a link to a repository that can be used with pull request provisioning or template sync configurations. For more
11
+ * information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-template-bundles.html">Template bundles</a> and <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-template-sync-configs.html">Template sync configurations</a> in the <i>Proton
12
+ * Administrator Guide</i>.</p>
13
+ * @example
14
+ * Use a bare-bones client and the command you need to make an API call.
15
+ * ```javascript
16
+ * import { ProtonClient, CreateRepositoryCommand } from "@aws-sdk/client-proton"; // ES Modules import
17
+ * // const { ProtonClient, CreateRepositoryCommand } = require("@aws-sdk/client-proton"); // CommonJS import
18
+ * const client = new ProtonClient(config);
19
+ * const command = new CreateRepositoryCommand(input);
20
+ * const response = await client.send(command);
21
+ * ```
22
+ *
23
+ * @see {@link CreateRepositoryCommandInput} for command's `input` shape.
24
+ * @see {@link CreateRepositoryCommandOutput} for command's `response` shape.
25
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
26
+ *
27
+ */
28
+ export declare class CreateRepositoryCommand extends $Command<CreateRepositoryCommandInput, CreateRepositoryCommandOutput, ProtonClientResolvedConfig> {
29
+ readonly input: CreateRepositoryCommandInput;
30
+ constructor(input: CreateRepositoryCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRepositoryCommandInput, CreateRepositoryCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -7,9 +7,10 @@ export interface CreateServiceCommandInput extends CreateServiceInput {
7
7
  export interface CreateServiceCommandOutput extends CreateServiceOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Create an AWS Proton service. An AWS Proton service is an instantiation of a service template and often includes several service instances
11
- * and pipeline. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-services.html">Services</a> in
12
- * the <i>AWS Proton Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-service.html">Services</a> in the <i>AWS Proton User Guide</i>.</p>
10
+ * <p>Create an Proton service. An Proton service is an instantiation of a service template and often includes several service instances and
11
+ * pipeline. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-services.html">Services</a> in the
12
+ * <i>Proton Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-service.html">Services</a>
13
+ * in the <i>Proton User Guide</i>.</p>
13
14
  * @example
14
15
  * Use a bare-bones client and the command you need to make an API call.
15
16
  * ```javascript
@@ -22,7 +23,7 @@ export interface CreateServiceCommandOutput extends CreateServiceOutput, __Metad
22
23
  *
23
24
  * @see {@link CreateServiceCommandInput} for command's `input` shape.
24
25
  * @see {@link CreateServiceCommandOutput} for command's `response` shape.
25
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
26
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
26
27
  *
27
28
  */
28
29
  export declare class CreateServiceCommand extends $Command<CreateServiceCommandInput, CreateServiceCommandOutput, ProtonClientResolvedConfig> {
@@ -7,11 +7,11 @@ export interface CreateServiceTemplateCommandInput extends CreateServiceTemplate
7
7
  export interface CreateServiceTemplateCommandOutput extends CreateServiceTemplateOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Create a service template. The administrator creates a service template to define standardized infrastructure and an optional CICD
11
- * service pipeline. Developers, in turn, select the service template from AWS Proton. If the selected service template includes a service
12
- * pipeline definition, they provide a link to their source code repository. AWS Proton then deploys and manages the infrastructure defined by
13
- * the selected service template. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/managing-svc-templates.html">Service Templates</a> in the <i>AWS Proton Administrator
14
- * Guide</i>.</p>
10
+ * <p>Create a service template. The administrator creates a service template to define standardized infrastructure and an optional CICD service
11
+ * pipeline. Developers, in turn, select the service template from Proton. If the selected service template includes a service pipeline definition,
12
+ * they provide a link to their source code repository. Proton then deploys and manages the infrastructure defined by the selected service
13
+ * template. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/managing-svc-templates.html">Service
14
+ * Templates</a> in the <i>Proton Administrator Guide</i>.</p>
15
15
  * @example
16
16
  * Use a bare-bones client and the command you need to make an API call.
17
17
  * ```javascript
@@ -24,7 +24,7 @@ export interface CreateServiceTemplateCommandOutput extends CreateServiceTemplat
24
24
  *
25
25
  * @see {@link CreateServiceTemplateCommandInput} for command's `input` shape.
26
26
  * @see {@link CreateServiceTemplateCommandOutput} for command's `response` shape.
27
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
27
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
28
28
  *
29
29
  */
30
30
  export declare class CreateServiceTemplateCommand extends $Command<CreateServiceTemplateCommandInput, CreateServiceTemplateCommandOutput, ProtonClientResolvedConfig> {
@@ -7,9 +7,8 @@ export interface CreateServiceTemplateVersionCommandInput extends CreateServiceT
7
7
  export interface CreateServiceTemplateVersionCommandOutput extends CreateServiceTemplateVersionOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Create a new major or minor version of a service template. A major version of a service template is a version that
11
- * <i>isn't</i> backwards compatible. A minor version of a service template is a version that's backwards compatible within
12
- * its major version.</p>
10
+ * <p>Create a new major or minor version of a service template. A major version of a service template is a version that <i>isn't</i>
11
+ * backward compatible. A minor version of a service template is a version that's backward compatible within its major version.</p>
13
12
  * @example
14
13
  * Use a bare-bones client and the command you need to make an API call.
15
14
  * ```javascript
@@ -22,7 +21,7 @@ export interface CreateServiceTemplateVersionCommandOutput extends CreateService
22
21
  *
23
22
  * @see {@link CreateServiceTemplateVersionCommandInput} for command's `input` shape.
24
23
  * @see {@link CreateServiceTemplateVersionCommandOutput} for command's `response` shape.
25
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
26
25
  *
27
26
  */
28
27
  export declare class CreateServiceTemplateVersionCommand extends $Command<CreateServiceTemplateVersionCommandInput, CreateServiceTemplateVersionCommandOutput, ProtonClientResolvedConfig> {
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CreateTemplateSyncConfigInput, CreateTemplateSyncConfigOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface CreateTemplateSyncConfigCommandInput extends CreateTemplateSyncConfigInput {
6
+ }
7
+ export interface CreateTemplateSyncConfigCommandOutput extends CreateTemplateSyncConfigOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Set up a template for automated template version creation. When a commit is pushed to your registered <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Repository.html">repository</a>, Proton checks for changes to your repository template bundles. If it
11
+ * detects a template bundle change, a new minor or major version of its template is created, if the version doesn’t already exist. For more
12
+ * information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-template-sync-configs.html">Template sync configurations</a> in
13
+ * the <i>Proton Administrator Guide</i>.</p>
14
+ * @example
15
+ * Use a bare-bones client and the command you need to make an API call.
16
+ * ```javascript
17
+ * import { ProtonClient, CreateTemplateSyncConfigCommand } from "@aws-sdk/client-proton"; // ES Modules import
18
+ * // const { ProtonClient, CreateTemplateSyncConfigCommand } = require("@aws-sdk/client-proton"); // CommonJS import
19
+ * const client = new ProtonClient(config);
20
+ * const command = new CreateTemplateSyncConfigCommand(input);
21
+ * const response = await client.send(command);
22
+ * ```
23
+ *
24
+ * @see {@link CreateTemplateSyncConfigCommandInput} for command's `input` shape.
25
+ * @see {@link CreateTemplateSyncConfigCommandOutput} for command's `response` shape.
26
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
27
+ *
28
+ */
29
+ export declare class CreateTemplateSyncConfigCommand extends $Command<CreateTemplateSyncConfigCommandInput, CreateTemplateSyncConfigCommandOutput, ProtonClientResolvedConfig> {
30
+ readonly input: CreateTemplateSyncConfigCommandInput;
31
+ constructor(input: CreateTemplateSyncConfigCommandInput);
32
+ /**
33
+ * @internal
34
+ */
35
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTemplateSyncConfigCommandInput, CreateTemplateSyncConfigCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -8,11 +8,11 @@ export interface DeleteEnvironmentAccountConnectionCommandOutput extends DeleteE
8
8
  }
9
9
  /**
10
10
  * <p>In an environment account, delete an environment account connection.</p>
11
- * <p>After you delete an environment account connection that’s in use by an AWS Proton environment, AWS Proton <i>can’t</i>
12
- * manage the environment infrastructure resources until a new environment account connection is accepted for the environment account and
13
- * associated environment. You're responsible for cleaning up provisioned resources that remain without an environment connection.</p>
14
- * <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
15
- * connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
11
+ * <p>After you delete an environment account connection that’s in use by an Proton environment, Proton <i>can’t</i> manage the
12
+ * environment infrastructure resources until a new environment account connection is accepted for the environment account and associated environment.
13
+ * You're responsible for cleaning up provisioned resources that remain without an environment connection.</p>
14
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
15
+ * connections</a> in the <i>Proton Administrator guide</i>.</p>
16
16
  * @example
17
17
  * Use a bare-bones client and the command you need to make an API call.
18
18
  * ```javascript
@@ -25,7 +25,7 @@ export interface DeleteEnvironmentAccountConnectionCommandOutput extends DeleteE
25
25
  *
26
26
  * @see {@link DeleteEnvironmentAccountConnectionCommandInput} for command's `input` shape.
27
27
  * @see {@link DeleteEnvironmentAccountConnectionCommandOutput} for command's `response` shape.
28
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
28
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
29
29
  *
30
30
  */
31
31
  export declare class DeleteEnvironmentAccountConnectionCommand extends $Command<DeleteEnvironmentAccountConnectionCommandInput, DeleteEnvironmentAccountConnectionCommandOutput, ProtonClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentOutput,
20
20
  *
21
21
  * @see {@link DeleteEnvironmentCommandInput} for command's `input` shape.
22
22
  * @see {@link DeleteEnvironmentCommandOutput} for command's `response` shape.
23
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DeleteEnvironmentCommand extends $Command<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, ProtonClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DeleteEnvironmentTemplateCommandOutput extends DeleteEnvironmen
20
20
  *
21
21
  * @see {@link DeleteEnvironmentTemplateCommandInput} for command's `input` shape.
22
22
  * @see {@link DeleteEnvironmentTemplateCommandOutput} for command's `response` shape.
23
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DeleteEnvironmentTemplateCommand extends $Command<DeleteEnvironmentTemplateCommandInput, DeleteEnvironmentTemplateCommandOutput, ProtonClientResolvedConfig> {
@@ -8,12 +8,11 @@ export interface DeleteEnvironmentTemplateVersionCommandOutput extends DeleteEnv
8
8
  }
9
9
  /**
10
10
  * <p>If no other minor versions of an environment template exist, delete a major version of the environment template if it's not the
11
- * <code>Recommended</code> version. Delete the <code>Recommended</code> version of the environment template if no other major versions
12
- * or minor versions of the environment template exist. A major version of an environment template is a version that's not backwards
13
- * compatible.</p>
14
- * <p>Delete a minor version of an environment template if it <i>isn't</i> the <code>Recommended</code> version. Delete a
15
- * <code>Recommended</code> minor version of the environment template if no other minor versions of the environment template exist. A
16
- * minor version of an environment template is a version that's backwards compatible.</p>
11
+ * <code>Recommended</code> version. Delete the <code>Recommended</code> version of the environment template if no other major versions or minor
12
+ * versions of the environment template exist. A major version of an environment template is a version that's not backward compatible.</p>
13
+ * <p>Delete a minor version of an environment template if it <i>isn't</i> the <code>Recommended</code> version. Delete a
14
+ * <code>Recommended</code> minor version of the environment template if no other minor versions of the environment template exist. A minor version
15
+ * of an environment template is a version that's backward compatible.</p>
17
16
  * @example
18
17
  * Use a bare-bones client and the command you need to make an API call.
19
18
  * ```javascript
@@ -26,7 +25,7 @@ export interface DeleteEnvironmentTemplateVersionCommandOutput extends DeleteEnv
26
25
  *
27
26
  * @see {@link DeleteEnvironmentTemplateVersionCommandInput} for command's `input` shape.
28
27
  * @see {@link DeleteEnvironmentTemplateVersionCommandOutput} for command's `response` shape.
29
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
28
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
30
29
  *
31
30
  */
32
31
  export declare class DeleteEnvironmentTemplateVersionCommand extends $Command<DeleteEnvironmentTemplateVersionCommandInput, DeleteEnvironmentTemplateVersionCommandOutput, ProtonClientResolvedConfig> {
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DeleteRepositoryInput, DeleteRepositoryOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface DeleteRepositoryCommandInput extends DeleteRepositoryInput {
6
+ }
7
+ export interface DeleteRepositoryCommandOutput extends DeleteRepositoryOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>De-register and unlink your repository.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ProtonClient, DeleteRepositoryCommand } from "@aws-sdk/client-proton"; // ES Modules import
15
+ * // const { ProtonClient, DeleteRepositoryCommand } = require("@aws-sdk/client-proton"); // CommonJS import
16
+ * const client = new ProtonClient(config);
17
+ * const command = new DeleteRepositoryCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link DeleteRepositoryCommandInput} for command's `input` shape.
22
+ * @see {@link DeleteRepositoryCommandOutput} for command's `response` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class DeleteRepositoryCommand extends $Command<DeleteRepositoryCommandInput, DeleteRepositoryCommandOutput, ProtonClientResolvedConfig> {
27
+ readonly input: DeleteRepositoryCommandInput;
28
+ constructor(input: DeleteRepositoryCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRepositoryCommandInput, DeleteRepositoryCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface DeleteServiceCommandOutput extends DeleteServiceOutput, __Metad
20
20
  *
21
21
  * @see {@link DeleteServiceCommandInput} for command's `input` shape.
22
22
  * @see {@link DeleteServiceCommandOutput} for command's `response` shape.
23
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DeleteServiceCommand extends $Command<DeleteServiceCommandInput, DeleteServiceCommandOutput, ProtonClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DeleteServiceTemplateCommandOutput extends DeleteServiceTemplat
20
20
  *
21
21
  * @see {@link DeleteServiceTemplateCommandInput} for command's `input` shape.
22
22
  * @see {@link DeleteServiceTemplateCommandOutput} for command's `response` shape.
23
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DeleteServiceTemplateCommand extends $Command<DeleteServiceTemplateCommandInput, DeleteServiceTemplateCommandOutput, ProtonClientResolvedConfig> {
@@ -8,12 +8,11 @@ export interface DeleteServiceTemplateVersionCommandOutput extends DeleteService
8
8
  }
9
9
  /**
10
10
  * <p>If no other minor versions of a service template exist, delete a major version of the service template if it's not the
11
- * <code>Recommended</code> version. Delete the <code>Recommended</code> version of the service template if no other major versions or
12
- * minor versions of the service template exist. A major version of a service template is a version that <i>isn't</i> backwards
13
- * compatible.</p>
14
- * <p>Delete a minor version of a service template if it's not the <code>Recommended</code> version. Delete a <code>Recommended</code> minor
15
- * version of the service template if no other minor versions of the service template exist. A minor version of a service template is a
16
- * version that's backwards compatible.</p>
11
+ * <code>Recommended</code> version. Delete the <code>Recommended</code> version of the service template if no other major versions or minor versions
12
+ * of the service template exist. A major version of a service template is a version that <i>isn't</i> backwards compatible.</p>
13
+ * <p>Delete a minor version of a service template if it's not the <code>Recommended</code> version. Delete a <code>Recommended</code> minor version
14
+ * of the service template if no other minor versions of the service template exist. A minor version of a service template is a version that's
15
+ * backwards compatible.</p>
17
16
  * @example
18
17
  * Use a bare-bones client and the command you need to make an API call.
19
18
  * ```javascript
@@ -26,7 +25,7 @@ export interface DeleteServiceTemplateVersionCommandOutput extends DeleteService
26
25
  *
27
26
  * @see {@link DeleteServiceTemplateVersionCommandInput} for command's `input` shape.
28
27
  * @see {@link DeleteServiceTemplateVersionCommandOutput} for command's `response` shape.
29
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
28
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
30
29
  *
31
30
  */
32
31
  export declare class DeleteServiceTemplateVersionCommand extends $Command<DeleteServiceTemplateVersionCommandInput, DeleteServiceTemplateVersionCommandOutput, ProtonClientResolvedConfig> {
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DeleteTemplateSyncConfigInput, DeleteTemplateSyncConfigOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface DeleteTemplateSyncConfigCommandInput extends DeleteTemplateSyncConfigInput {
6
+ }
7
+ export interface DeleteTemplateSyncConfigCommandOutput extends DeleteTemplateSyncConfigOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Delete a template sync configuration.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ProtonClient, DeleteTemplateSyncConfigCommand } from "@aws-sdk/client-proton"; // ES Modules import
15
+ * // const { ProtonClient, DeleteTemplateSyncConfigCommand } = require("@aws-sdk/client-proton"); // CommonJS import
16
+ * const client = new ProtonClient(config);
17
+ * const command = new DeleteTemplateSyncConfigCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link DeleteTemplateSyncConfigCommandInput} for command's `input` shape.
22
+ * @see {@link DeleteTemplateSyncConfigCommandOutput} for command's `response` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class DeleteTemplateSyncConfigCommand extends $Command<DeleteTemplateSyncConfigCommandInput, DeleteTemplateSyncConfigCommandOutput, ProtonClientResolvedConfig> {
27
+ readonly input: DeleteTemplateSyncConfigCommandInput;
28
+ constructor(input: DeleteTemplateSyncConfigCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTemplateSyncConfigCommandInput, DeleteTemplateSyncConfigCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -7,7 +7,7 @@ export interface GetAccountSettingsCommandInput extends GetAccountSettingsInput
7
7
  export interface GetAccountSettingsCommandOutput extends GetAccountSettingsOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Get detail data for the AWS Proton pipeline service role.</p>
10
+ * <p>Get detail data for the Proton pipeline service role.</p>
11
11
  * @example
12
12
  * Use a bare-bones client and the command you need to make an API call.
13
13
  * ```javascript
@@ -20,7 +20,7 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsOutpu
20
20
  *
21
21
  * @see {@link GetAccountSettingsCommandInput} for command's `input` shape.
22
22
  * @see {@link GetAccountSettingsCommandOutput} for command's `response` shape.
23
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetAccountSettingsCommand extends $Command<GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput, ProtonClientResolvedConfig> {
@@ -8,8 +8,8 @@ export interface GetEnvironmentAccountConnectionCommandOutput extends GetEnviron
8
8
  }
9
9
  /**
10
10
  * <p>In an environment account, view the detail data for an environment account connection.</p>
11
- * <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
12
- * connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
11
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
12
+ * connections</a> in the <i>Proton Administrator guide</i>.</p>
13
13
  * @example
14
14
  * Use a bare-bones client and the command you need to make an API call.
15
15
  * ```javascript
@@ -22,7 +22,7 @@ export interface GetEnvironmentAccountConnectionCommandOutput extends GetEnviron
22
22
  *
23
23
  * @see {@link GetEnvironmentAccountConnectionCommandInput} for command's `input` shape.
24
24
  * @see {@link GetEnvironmentAccountConnectionCommandOutput} for command's `response` shape.
25
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class GetEnvironmentAccountConnectionCommand extends $Command<GetEnvironmentAccountConnectionCommandInput, GetEnvironmentAccountConnectionCommandOutput, ProtonClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetEnvironmentCommandOutput extends GetEnvironmentOutput, __Met
20
20
  *
21
21
  * @see {@link GetEnvironmentCommandInput} for command's `input` shape.
22
22
  * @see {@link GetEnvironmentCommandOutput} for command's `response` shape.
23
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetEnvironmentCommand extends $Command<GetEnvironmentCommandInput, GetEnvironmentCommandOutput, ProtonClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetEnvironmentTemplateCommandOutput extends GetEnvironmentTempl
20
20
  *
21
21
  * @see {@link GetEnvironmentTemplateCommandInput} for command's `input` shape.
22
22
  * @see {@link GetEnvironmentTemplateCommandOutput} for command's `response` shape.
23
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetEnvironmentTemplateCommand extends $Command<GetEnvironmentTemplateCommandInput, GetEnvironmentTemplateCommandOutput, ProtonClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetEnvironmentTemplateVersionCommandOutput extends GetEnvironme
20
20
  *
21
21
  * @see {@link GetEnvironmentTemplateVersionCommandInput} for command's `input` shape.
22
22
  * @see {@link GetEnvironmentTemplateVersionCommandOutput} for command's `response` shape.
23
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetEnvironmentTemplateVersionCommand extends $Command<GetEnvironmentTemplateVersionCommandInput, GetEnvironmentTemplateVersionCommandOutput, ProtonClientResolvedConfig> {
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetRepositoryInput, GetRepositoryOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface GetRepositoryCommandInput extends GetRepositoryInput {
6
+ }
7
+ export interface GetRepositoryCommandOutput extends GetRepositoryOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Get detail data for a repository.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ProtonClient, GetRepositoryCommand } from "@aws-sdk/client-proton"; // ES Modules import
15
+ * // const { ProtonClient, GetRepositoryCommand } = require("@aws-sdk/client-proton"); // CommonJS import
16
+ * const client = new ProtonClient(config);
17
+ * const command = new GetRepositoryCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetRepositoryCommandInput} for command's `input` shape.
22
+ * @see {@link GetRepositoryCommandOutput} for command's `response` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetRepositoryCommand extends $Command<GetRepositoryCommandInput, GetRepositoryCommandOutput, ProtonClientResolvedConfig> {
27
+ readonly input: GetRepositoryCommandInput;
28
+ constructor(input: GetRepositoryCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRepositoryCommandInput, GetRepositoryCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetRepositorySyncStatusInput, GetRepositorySyncStatusOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface GetRepositorySyncStatusCommandInput extends GetRepositorySyncStatusInput {
6
+ }
7
+ export interface GetRepositorySyncStatusCommandOutput extends GetRepositorySyncStatusOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Get the repository sync status.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ProtonClient, GetRepositorySyncStatusCommand } from "@aws-sdk/client-proton"; // ES Modules import
15
+ * // const { ProtonClient, GetRepositorySyncStatusCommand } = require("@aws-sdk/client-proton"); // CommonJS import
16
+ * const client = new ProtonClient(config);
17
+ * const command = new GetRepositorySyncStatusCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetRepositorySyncStatusCommandInput} for command's `input` shape.
22
+ * @see {@link GetRepositorySyncStatusCommandOutput} for command's `response` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetRepositorySyncStatusCommand extends $Command<GetRepositorySyncStatusCommandInput, GetRepositorySyncStatusCommandOutput, ProtonClientResolvedConfig> {
27
+ readonly input: GetRepositorySyncStatusCommandInput;
28
+ constructor(input: GetRepositorySyncStatusCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRepositorySyncStatusCommandInput, GetRepositorySyncStatusCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface GetServiceCommandOutput extends GetServiceOutput, __MetadataBea
20
20
  *
21
21
  * @see {@link GetServiceCommandInput} for command's `input` shape.
22
22
  * @see {@link GetServiceCommandOutput} for command's `response` shape.
23
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetServiceCommand extends $Command<GetServiceCommandInput, GetServiceCommandOutput, ProtonClientResolvedConfig> {
@@ -8,7 +8,7 @@ export interface GetServiceInstanceCommandOutput extends GetServiceInstanceOutpu
8
8
  }
9
9
  /**
10
10
  * <p>Get detail data for a service instance. A service instance is an instantiation of service template, which is running in a specific
11
- * environment.</p>
11
+ * environment.</p>
12
12
  * @example
13
13
  * Use a bare-bones client and the command you need to make an API call.
14
14
  * ```javascript
@@ -21,7 +21,7 @@ export interface GetServiceInstanceCommandOutput extends GetServiceInstanceOutpu
21
21
  *
22
22
  * @see {@link GetServiceInstanceCommandInput} for command's `input` shape.
23
23
  * @see {@link GetServiceInstanceCommandOutput} for command's `response` shape.
24
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class GetServiceInstanceCommand extends $Command<GetServiceInstanceCommandInput, GetServiceInstanceCommandOutput, ProtonClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetServiceTemplateCommandOutput extends GetServiceTemplateOutpu
20
20
  *
21
21
  * @see {@link GetServiceTemplateCommandInput} for command's `input` shape.
22
22
  * @see {@link GetServiceTemplateCommandOutput} for command's `response` shape.
23
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetServiceTemplateCommand extends $Command<GetServiceTemplateCommandInput, GetServiceTemplateCommandOutput, ProtonClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetServiceTemplateVersionCommandOutput extends GetServiceTempla
20
20
  *
21
21
  * @see {@link GetServiceTemplateVersionCommandInput} for command's `input` shape.
22
22
  * @see {@link GetServiceTemplateVersionCommandOutput} for command's `response` shape.
23
- * @see {@link ProtonClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetServiceTemplateVersionCommand extends $Command<GetServiceTemplateVersionCommandInput, GetServiceTemplateVersionCommandOutput, ProtonClientResolvedConfig> {
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetTemplateSyncConfigInput, GetTemplateSyncConfigOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface GetTemplateSyncConfigCommandInput extends GetTemplateSyncConfigInput {
6
+ }
7
+ export interface GetTemplateSyncConfigCommandOutput extends GetTemplateSyncConfigOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Get detail data for a template sync configuration.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ProtonClient, GetTemplateSyncConfigCommand } from "@aws-sdk/client-proton"; // ES Modules import
15
+ * // const { ProtonClient, GetTemplateSyncConfigCommand } = require("@aws-sdk/client-proton"); // CommonJS import
16
+ * const client = new ProtonClient(config);
17
+ * const command = new GetTemplateSyncConfigCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetTemplateSyncConfigCommandInput} for command's `input` shape.
22
+ * @see {@link GetTemplateSyncConfigCommandOutput} for command's `response` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetTemplateSyncConfigCommand extends $Command<GetTemplateSyncConfigCommandInput, GetTemplateSyncConfigCommandOutput, ProtonClientResolvedConfig> {
27
+ readonly input: GetTemplateSyncConfigCommandInput;
28
+ constructor(input: GetTemplateSyncConfigCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTemplateSyncConfigCommandInput, GetTemplateSyncConfigCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetTemplateSyncStatusInput, GetTemplateSyncStatusOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface GetTemplateSyncStatusCommandInput extends GetTemplateSyncStatusInput {
6
+ }
7
+ export interface GetTemplateSyncStatusCommandOutput extends GetTemplateSyncStatusOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Get the status of a template sync.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ProtonClient, GetTemplateSyncStatusCommand } from "@aws-sdk/client-proton"; // ES Modules import
15
+ * // const { ProtonClient, GetTemplateSyncStatusCommand } = require("@aws-sdk/client-proton"); // CommonJS import
16
+ * const client = new ProtonClient(config);
17
+ * const command = new GetTemplateSyncStatusCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetTemplateSyncStatusCommandInput} for command's `input` shape.
22
+ * @see {@link GetTemplateSyncStatusCommandOutput} for command's `response` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetTemplateSyncStatusCommand extends $Command<GetTemplateSyncStatusCommandInput, GetTemplateSyncStatusCommandOutput, ProtonClientResolvedConfig> {
27
+ readonly input: GetTemplateSyncStatusCommandInput;
28
+ constructor(input: GetTemplateSyncStatusCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTemplateSyncStatusCommandInput, GetTemplateSyncStatusCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }