@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
@@ -8,8 +8,8 @@ export interface ListEnvironmentAccountConnectionsCommandOutput extends ListEnvi
8
8
  }
9
9
  /**
10
10
  * <p>View a list of environment account connections.</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 ListEnvironmentAccountConnectionsCommandOutput extends ListEnvi
22
22
  *
23
23
  * @see {@link ListEnvironmentAccountConnectionsCommandInput} for command's `input` shape.
24
24
  * @see {@link ListEnvironmentAccountConnectionsCommandOutput} 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 ListEnvironmentAccountConnectionsCommand extends $Command<ListEnvironmentAccountConnectionsCommandInput, ListEnvironmentAccountConnectionsCommandOutput, 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 { ListEnvironmentOutputsInput, ListEnvironmentOutputsOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface ListEnvironmentOutputsCommandInput extends ListEnvironmentOutputsInput {
6
+ }
7
+ export interface ListEnvironmentOutputsCommandOutput extends ListEnvironmentOutputsOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>List the infrastructure as code outputs for your environment.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ProtonClient, ListEnvironmentOutputsCommand } from "@aws-sdk/client-proton"; // ES Modules import
15
+ * // const { ProtonClient, ListEnvironmentOutputsCommand } = require("@aws-sdk/client-proton"); // CommonJS import
16
+ * const client = new ProtonClient(config);
17
+ * const command = new ListEnvironmentOutputsCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ListEnvironmentOutputsCommandInput} for command's `input` shape.
22
+ * @see {@link ListEnvironmentOutputsCommandOutput} for command's `response` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ListEnvironmentOutputsCommand extends $Command<ListEnvironmentOutputsCommandInput, ListEnvironmentOutputsCommandOutput, ProtonClientResolvedConfig> {
27
+ readonly input: ListEnvironmentOutputsCommandInput;
28
+ constructor(input: ListEnvironmentOutputsCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEnvironmentOutputsCommandInput, ListEnvironmentOutputsCommandOutput>;
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 { ListEnvironmentProvisionedResourcesInput, ListEnvironmentProvisionedResourcesOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface ListEnvironmentProvisionedResourcesCommandInput extends ListEnvironmentProvisionedResourcesInput {
6
+ }
7
+ export interface ListEnvironmentProvisionedResourcesCommandOutput extends ListEnvironmentProvisionedResourcesOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>List the provisioned resources for your environment.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ProtonClient, ListEnvironmentProvisionedResourcesCommand } from "@aws-sdk/client-proton"; // ES Modules import
15
+ * // const { ProtonClient, ListEnvironmentProvisionedResourcesCommand } = require("@aws-sdk/client-proton"); // CommonJS import
16
+ * const client = new ProtonClient(config);
17
+ * const command = new ListEnvironmentProvisionedResourcesCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ListEnvironmentProvisionedResourcesCommandInput} for command's `input` shape.
22
+ * @see {@link ListEnvironmentProvisionedResourcesCommandOutput} for command's `response` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ListEnvironmentProvisionedResourcesCommand extends $Command<ListEnvironmentProvisionedResourcesCommandInput, ListEnvironmentProvisionedResourcesCommandOutput, ProtonClientResolvedConfig> {
27
+ readonly input: ListEnvironmentProvisionedResourcesCommandInput;
28
+ constructor(input: ListEnvironmentProvisionedResourcesCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEnvironmentProvisionedResourcesCommandInput, ListEnvironmentProvisionedResourcesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface ListEnvironmentTemplateVersionsCommandOutput extends ListEnviro
20
20
  *
21
21
  * @see {@link ListEnvironmentTemplateVersionsCommandInput} for command's `input` shape.
22
22
  * @see {@link ListEnvironmentTemplateVersionsCommandOutput} 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 ListEnvironmentTemplateVersionsCommand extends $Command<ListEnvironmentTemplateVersionsCommandInput, ListEnvironmentTemplateVersionsCommandOutput, ProtonClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListEnvironmentTemplatesCommandOutput extends ListEnvironmentTe
20
20
  *
21
21
  * @see {@link ListEnvironmentTemplatesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListEnvironmentTemplatesCommandOutput} 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 ListEnvironmentTemplatesCommand extends $Command<ListEnvironmentTemplatesCommandInput, ListEnvironmentTemplatesCommandOutput, ProtonClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsOutput, _
20
20
  *
21
21
  * @see {@link ListEnvironmentsCommandInput} for command's `input` shape.
22
22
  * @see {@link ListEnvironmentsCommandOutput} 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 ListEnvironmentsCommand extends $Command<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput, 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 { ListRepositoriesInput, ListRepositoriesOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface ListRepositoriesCommandInput extends ListRepositoriesInput {
6
+ }
7
+ export interface ListRepositoriesCommandOutput extends ListRepositoriesOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>List repositories with detail data.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ProtonClient, ListRepositoriesCommand } from "@aws-sdk/client-proton"; // ES Modules import
15
+ * // const { ProtonClient, ListRepositoriesCommand } = require("@aws-sdk/client-proton"); // CommonJS import
16
+ * const client = new ProtonClient(config);
17
+ * const command = new ListRepositoriesCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ListRepositoriesCommandInput} for command's `input` shape.
22
+ * @see {@link ListRepositoriesCommandOutput} for command's `response` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ListRepositoriesCommand extends $Command<ListRepositoriesCommandInput, ListRepositoriesCommandOutput, ProtonClientResolvedConfig> {
27
+ readonly input: ListRepositoriesCommandInput;
28
+ constructor(input: ListRepositoriesCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRepositoriesCommandInput, ListRepositoriesCommandOutput>;
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 { ListRepositorySyncDefinitionsInput, ListRepositorySyncDefinitionsOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface ListRepositorySyncDefinitionsCommandInput extends ListRepositorySyncDefinitionsInput {
6
+ }
7
+ export interface ListRepositorySyncDefinitionsCommandOutput extends ListRepositorySyncDefinitionsOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>List repository sync definitions with detail data.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ProtonClient, ListRepositorySyncDefinitionsCommand } from "@aws-sdk/client-proton"; // ES Modules import
15
+ * // const { ProtonClient, ListRepositorySyncDefinitionsCommand } = require("@aws-sdk/client-proton"); // CommonJS import
16
+ * const client = new ProtonClient(config);
17
+ * const command = new ListRepositorySyncDefinitionsCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ListRepositorySyncDefinitionsCommandInput} for command's `input` shape.
22
+ * @see {@link ListRepositorySyncDefinitionsCommandOutput} for command's `response` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ListRepositorySyncDefinitionsCommand extends $Command<ListRepositorySyncDefinitionsCommandInput, ListRepositorySyncDefinitionsCommandOutput, ProtonClientResolvedConfig> {
27
+ readonly input: ListRepositorySyncDefinitionsCommandInput;
28
+ constructor(input: ListRepositorySyncDefinitionsCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRepositorySyncDefinitionsCommandInput, ListRepositorySyncDefinitionsCommandOutput>;
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 { ListServiceInstanceOutputsInput, ListServiceInstanceOutputsOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface ListServiceInstanceOutputsCommandInput extends ListServiceInstanceOutputsInput {
6
+ }
7
+ export interface ListServiceInstanceOutputsCommandOutput extends ListServiceInstanceOutputsOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>View a list service instance infrastructure as code outputs with detail data.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ProtonClient, ListServiceInstanceOutputsCommand } from "@aws-sdk/client-proton"; // ES Modules import
15
+ * // const { ProtonClient, ListServiceInstanceOutputsCommand } = require("@aws-sdk/client-proton"); // CommonJS import
16
+ * const client = new ProtonClient(config);
17
+ * const command = new ListServiceInstanceOutputsCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ListServiceInstanceOutputsCommandInput} for command's `input` shape.
22
+ * @see {@link ListServiceInstanceOutputsCommandOutput} for command's `response` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ListServiceInstanceOutputsCommand extends $Command<ListServiceInstanceOutputsCommandInput, ListServiceInstanceOutputsCommandOutput, ProtonClientResolvedConfig> {
27
+ readonly input: ListServiceInstanceOutputsCommandInput;
28
+ constructor(input: ListServiceInstanceOutputsCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListServiceInstanceOutputsCommandInput, ListServiceInstanceOutputsCommandOutput>;
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 { ListServiceInstanceProvisionedResourcesInput, ListServiceInstanceProvisionedResourcesOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface ListServiceInstanceProvisionedResourcesCommandInput extends ListServiceInstanceProvisionedResourcesInput {
6
+ }
7
+ export interface ListServiceInstanceProvisionedResourcesCommandOutput extends ListServiceInstanceProvisionedResourcesOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>List provisioned resources for a service instance with details.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ProtonClient, ListServiceInstanceProvisionedResourcesCommand } from "@aws-sdk/client-proton"; // ES Modules import
15
+ * // const { ProtonClient, ListServiceInstanceProvisionedResourcesCommand } = require("@aws-sdk/client-proton"); // CommonJS import
16
+ * const client = new ProtonClient(config);
17
+ * const command = new ListServiceInstanceProvisionedResourcesCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ListServiceInstanceProvisionedResourcesCommandInput} for command's `input` shape.
22
+ * @see {@link ListServiceInstanceProvisionedResourcesCommandOutput} for command's `response` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ListServiceInstanceProvisionedResourcesCommand extends $Command<ListServiceInstanceProvisionedResourcesCommandInput, ListServiceInstanceProvisionedResourcesCommandOutput, ProtonClientResolvedConfig> {
27
+ readonly input: ListServiceInstanceProvisionedResourcesCommandInput;
28
+ constructor(input: ListServiceInstanceProvisionedResourcesCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListServiceInstanceProvisionedResourcesCommandInput, ListServiceInstanceProvisionedResourcesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface ListServiceInstancesCommandOutput extends ListServiceInstancesO
20
20
  *
21
21
  * @see {@link ListServiceInstancesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListServiceInstancesCommandOutput} 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 ListServiceInstancesCommand extends $Command<ListServiceInstancesCommandInput, ListServiceInstancesCommandOutput, 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 { ListServicePipelineOutputsInput, ListServicePipelineOutputsOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface ListServicePipelineOutputsCommandInput extends ListServicePipelineOutputsInput {
6
+ }
7
+ export interface ListServicePipelineOutputsCommandOutput extends ListServicePipelineOutputsOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>View a list service pipeline infrastructure as code outputs with detail.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ProtonClient, ListServicePipelineOutputsCommand } from "@aws-sdk/client-proton"; // ES Modules import
15
+ * // const { ProtonClient, ListServicePipelineOutputsCommand } = require("@aws-sdk/client-proton"); // CommonJS import
16
+ * const client = new ProtonClient(config);
17
+ * const command = new ListServicePipelineOutputsCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ListServicePipelineOutputsCommandInput} for command's `input` shape.
22
+ * @see {@link ListServicePipelineOutputsCommandOutput} for command's `response` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ListServicePipelineOutputsCommand extends $Command<ListServicePipelineOutputsCommandInput, ListServicePipelineOutputsCommandOutput, ProtonClientResolvedConfig> {
27
+ readonly input: ListServicePipelineOutputsCommandInput;
28
+ constructor(input: ListServicePipelineOutputsCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListServicePipelineOutputsCommandInput, ListServicePipelineOutputsCommandOutput>;
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 { ListServicePipelineProvisionedResourcesInput, ListServicePipelineProvisionedResourcesOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface ListServicePipelineProvisionedResourcesCommandInput extends ListServicePipelineProvisionedResourcesInput {
6
+ }
7
+ export interface ListServicePipelineProvisionedResourcesCommandOutput extends ListServicePipelineProvisionedResourcesOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>List provisioned resources for a service and pipeline with details.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ProtonClient, ListServicePipelineProvisionedResourcesCommand } from "@aws-sdk/client-proton"; // ES Modules import
15
+ * // const { ProtonClient, ListServicePipelineProvisionedResourcesCommand } = require("@aws-sdk/client-proton"); // CommonJS import
16
+ * const client = new ProtonClient(config);
17
+ * const command = new ListServicePipelineProvisionedResourcesCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ListServicePipelineProvisionedResourcesCommandInput} for command's `input` shape.
22
+ * @see {@link ListServicePipelineProvisionedResourcesCommandOutput} for command's `response` shape.
23
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ListServicePipelineProvisionedResourcesCommand extends $Command<ListServicePipelineProvisionedResourcesCommandInput, ListServicePipelineProvisionedResourcesCommandOutput, ProtonClientResolvedConfig> {
27
+ readonly input: ListServicePipelineProvisionedResourcesCommandInput;
28
+ constructor(input: ListServicePipelineProvisionedResourcesCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListServicePipelineProvisionedResourcesCommandInput, ListServicePipelineProvisionedResourcesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface ListServiceTemplateVersionsCommandOutput extends ListServiceTem
20
20
  *
21
21
  * @see {@link ListServiceTemplateVersionsCommandInput} for command's `input` shape.
22
22
  * @see {@link ListServiceTemplateVersionsCommandOutput} 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 ListServiceTemplateVersionsCommand extends $Command<ListServiceTemplateVersionsCommandInput, ListServiceTemplateVersionsCommandOutput, ProtonClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListServiceTemplatesCommandOutput extends ListServiceTemplatesO
20
20
  *
21
21
  * @see {@link ListServiceTemplatesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListServiceTemplatesCommandOutput} 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 ListServiceTemplatesCommand extends $Command<ListServiceTemplatesCommandInput, ListServiceTemplatesCommandOutput, ProtonClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListServicesCommandOutput extends ListServicesOutput, __Metadat
20
20
  *
21
21
  * @see {@link ListServicesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListServicesCommandOutput} 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 ListServicesCommand extends $Command<ListServicesCommandInput, ListServicesCommandOutput, ProtonClientResolvedConfig> {
@@ -7,7 +7,7 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceInpu
7
7
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>List tags for a resource. For more information, see <i>AWS Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">AWS Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">AWS Proton User Guide</a>.</p>
10
+ * <p>List tags for a resource. For more information, see <i>Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">Proton User Guide</a>.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceOut
20
20
  *
21
21
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link ListTagsForResourceCommandOutput} 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 ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ProtonClientResolvedConfig> {
@@ -0,0 +1,41 @@
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 { NotifyResourceDeploymentStatusChangeInput, NotifyResourceDeploymentStatusChangeOutput } from "../models/models_0";
4
+ import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
5
+ export interface NotifyResourceDeploymentStatusChangeCommandInput extends NotifyResourceDeploymentStatusChangeInput {
6
+ }
7
+ export interface NotifyResourceDeploymentStatusChangeCommandOutput extends NotifyResourceDeploymentStatusChangeOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Notify Proton of status changes to a provisioned resource when you use pull request provisioning. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-template-bundles.html">Template bundles</a>.</p>
11
+ * <important>
12
+ * <p>Provisioning by pull request is currently in feature preview and is
13
+ * only usable with Terraform based Proton Templates. To learn more about
14
+ * <a href="https://aws.amazon.com/service-terms">Amazon Web Services Feature Preview terms</a>, see section 2 on Beta and
15
+ * Previews.</p>
16
+ * </important>
17
+ * @example
18
+ * Use a bare-bones client and the command you need to make an API call.
19
+ * ```javascript
20
+ * import { ProtonClient, NotifyResourceDeploymentStatusChangeCommand } from "@aws-sdk/client-proton"; // ES Modules import
21
+ * // const { ProtonClient, NotifyResourceDeploymentStatusChangeCommand } = require("@aws-sdk/client-proton"); // CommonJS import
22
+ * const client = new ProtonClient(config);
23
+ * const command = new NotifyResourceDeploymentStatusChangeCommand(input);
24
+ * const response = await client.send(command);
25
+ * ```
26
+ *
27
+ * @see {@link NotifyResourceDeploymentStatusChangeCommandInput} for command's `input` shape.
28
+ * @see {@link NotifyResourceDeploymentStatusChangeCommandOutput} for command's `response` shape.
29
+ * @see {@link ProtonClientResolvedConfig | config} for ProtonClient's `config` shape.
30
+ *
31
+ */
32
+ export declare class NotifyResourceDeploymentStatusChangeCommand extends $Command<NotifyResourceDeploymentStatusChangeCommandInput, NotifyResourceDeploymentStatusChangeCommandOutput, ProtonClientResolvedConfig> {
33
+ readonly input: NotifyResourceDeploymentStatusChangeCommandInput;
34
+ constructor(input: NotifyResourceDeploymentStatusChangeCommandInput);
35
+ /**
36
+ * @internal
37
+ */
38
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<NotifyResourceDeploymentStatusChangeCommandInput, NotifyResourceDeploymentStatusChangeCommandOutput>;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -8,11 +8,11 @@ export interface RejectEnvironmentAccountConnectionCommandOutput extends RejectE
8
8
  }
9
9
  /**
10
10
  * <p>In a management account, reject an environment account connection from another environment account.</p>
11
- * <p>After you reject an environment account connection request, you <i>won’t</i> be able to accept or use the rejected
12
- * environment account connection.</p>
13
- * <p>You <i>can’t</i> reject an environment account connection that is connected to an environment.</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 reject an environment account connection request, you <i>won’t</i> be able to accept or use the rejected environment
12
+ * account connection.</p>
13
+ * <p>You <i>can’t</i> reject an environment account connection that is connected to an environment.</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 RejectEnvironmentAccountConnectionCommandOutput extends RejectE
25
25
  *
26
26
  * @see {@link RejectEnvironmentAccountConnectionCommandInput} for command's `input` shape.
27
27
  * @see {@link RejectEnvironmentAccountConnectionCommandOutput} 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 RejectEnvironmentAccountConnectionCommand extends $Command<RejectEnvironmentAccountConnectionCommandInput, RejectEnvironmentAccountConnectionCommandOutput, ProtonClientResolvedConfig> {
@@ -7,7 +7,7 @@ export interface TagResourceCommandInput extends TagResourceInput {
7
7
  export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Tag a resource. For more information, see <i>AWS Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">AWS Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">AWS Proton User Guide</a>.</p>
10
+ * <p>Tag a resource. For more information, see <i>Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">Proton User Guide</a>.</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 TagResourceCommandOutput extends TagResourceOutput, __MetadataB
20
20
  *
21
21
  * @see {@link TagResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link TagResourceCommandOutput} 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 TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ProtonClientResolvedConfig> {
@@ -7,7 +7,7 @@ export interface UntagResourceCommandInput extends UntagResourceInput {
7
7
  export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Remove a tag from a resource. For more information, see <i>AWS Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">AWS Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">AWS Proton User Guide</a>.</p>
10
+ * <p>Remove a tag from a resource. For more information, see <i>Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">Proton User Guide</a>.</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 UntagResourceCommandOutput extends UntagResourceOutput, __Metad
20
20
  *
21
21
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link UntagResourceCommandOutput} 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 UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ProtonClientResolvedConfig> {
@@ -7,7 +7,7 @@ export interface UpdateAccountSettingsCommandInput extends UpdateAccountSettings
7
7
  export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSettingsOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Update the AWS Proton pipeline service account settings.</p>
10
+ * <p>Update the Proton service pipeline role or repository settings.</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 UpdateAccountSettingsCommandOutput extends UpdateAccountSetting
20
20
  *
21
21
  * @see {@link UpdateAccountSettingsCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateAccountSettingsCommandOutput} 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 UpdateAccountSettingsCommand extends $Command<UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput, ProtonClientResolvedConfig> {
@@ -8,8 +8,8 @@ export interface UpdateEnvironmentAccountConnectionCommandOutput extends UpdateE
8
8
  }
9
9
  /**
10
10
  * <p>In an environment account, update an environment account connection to use a new IAM role.</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 UpdateEnvironmentAccountConnectionCommandOutput extends UpdateE
22
22
  *
23
23
  * @see {@link UpdateEnvironmentAccountConnectionCommandInput} for command's `input` shape.
24
24
  * @see {@link UpdateEnvironmentAccountConnectionCommandOutput} 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 UpdateEnvironmentAccountConnectionCommand extends $Command<UpdateEnvironmentAccountConnectionCommandInput, UpdateEnvironmentAccountConnectionCommandOutput, ProtonClientResolvedConfig> {