@aws-sdk/client-proton 3.42.0 → 3.47.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 (169) hide show
  1. package/CHANGELOG.md +50 -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 +1 -0
  24. package/dist-cjs/models/models_0.js +348 -56
  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-cjs/runtimeConfig.browser.js +7 -2
  36. package/dist-cjs/runtimeConfig.js +9 -3
  37. package/dist-es/Proton.js +270 -0
  38. package/dist-es/commands/CreateRepositoryCommand.js +39 -0
  39. package/dist-es/commands/CreateTemplateSyncConfigCommand.js +39 -0
  40. package/dist-es/commands/DeleteRepositoryCommand.js +39 -0
  41. package/dist-es/commands/DeleteTemplateSyncConfigCommand.js +39 -0
  42. package/dist-es/commands/GetRepositoryCommand.js +39 -0
  43. package/dist-es/commands/GetRepositorySyncStatusCommand.js +39 -0
  44. package/dist-es/commands/GetTemplateSyncConfigCommand.js +39 -0
  45. package/dist-es/commands/GetTemplateSyncStatusCommand.js +39 -0
  46. package/dist-es/commands/ListEnvironmentOutputsCommand.js +39 -0
  47. package/dist-es/commands/ListEnvironmentProvisionedResourcesCommand.js +39 -0
  48. package/dist-es/commands/ListRepositoriesCommand.js +39 -0
  49. package/dist-es/commands/ListRepositorySyncDefinitionsCommand.js +39 -0
  50. package/dist-es/commands/ListServiceInstanceOutputsCommand.js +39 -0
  51. package/dist-es/commands/ListServiceInstanceProvisionedResourcesCommand.js +39 -0
  52. package/dist-es/commands/ListServicePipelineOutputsCommand.js +39 -0
  53. package/dist-es/commands/ListServicePipelineProvisionedResourcesCommand.js +39 -0
  54. package/dist-es/commands/NotifyResourceDeploymentStatusChangeCommand.js +39 -0
  55. package/dist-es/commands/UpdateTemplateSyncConfigCommand.js +39 -0
  56. package/dist-es/commands/index.js +18 -0
  57. package/dist-es/endpoints.js +1 -0
  58. package/dist-es/models/models_0.js +241 -32
  59. package/dist-es/pagination/ListEnvironmentOutputsPaginator.js +73 -0
  60. package/dist-es/pagination/ListEnvironmentProvisionedResourcesPaginator.js +73 -0
  61. package/dist-es/pagination/ListRepositoriesPaginator.js +74 -0
  62. package/dist-es/pagination/ListRepositorySyncDefinitionsPaginator.js +73 -0
  63. package/dist-es/pagination/ListServiceInstanceOutputsPaginator.js +73 -0
  64. package/dist-es/pagination/ListServiceInstanceProvisionedResourcesPaginator.js +73 -0
  65. package/dist-es/pagination/ListServicePipelineOutputsPaginator.js +73 -0
  66. package/dist-es/pagination/ListServicePipelineProvisionedResourcesPaginator.js +73 -0
  67. package/dist-es/pagination/index.js +8 -0
  68. package/dist-es/protocols/Aws_json1_0.js +2529 -291
  69. package/dist-es/runtimeConfig.browser.js +12 -3
  70. package/dist-es/runtimeConfig.js +13 -6
  71. package/dist-types/Proton.d.ts +400 -248
  72. package/dist-types/ProtonClient.d.ts +113 -82
  73. package/dist-types/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +4 -5
  74. package/dist-types/commands/CancelEnvironmentDeploymentCommand.d.ts +9 -8
  75. package/dist-types/commands/CancelServiceInstanceDeploymentCommand.d.ts +7 -7
  76. package/dist-types/commands/CancelServicePipelineDeploymentCommand.d.ts +7 -7
  77. package/dist-types/commands/CreateEnvironmentAccountConnectionCommand.d.ts +5 -5
  78. package/dist-types/commands/CreateEnvironmentCommand.d.ts +16 -3
  79. package/dist-types/commands/CreateEnvironmentTemplateCommand.d.ts +9 -11
  80. package/dist-types/commands/CreateEnvironmentTemplateVersionCommand.d.ts +2 -2
  81. package/dist-types/commands/CreateRepositoryCommand.d.ts +37 -0
  82. package/dist-types/commands/CreateServiceCommand.d.ts +4 -3
  83. package/dist-types/commands/CreateServiceTemplateCommand.d.ts +5 -5
  84. package/dist-types/commands/CreateServiceTemplateVersionCommand.d.ts +2 -3
  85. package/dist-types/commands/CreateTemplateSyncConfigCommand.d.ts +38 -0
  86. package/dist-types/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +5 -5
  87. package/dist-types/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +5 -6
  88. package/dist-types/commands/DeleteRepositoryCommand.d.ts +35 -0
  89. package/dist-types/commands/DeleteServiceTemplateVersionCommand.d.ts +5 -6
  90. package/dist-types/commands/DeleteTemplateSyncConfigCommand.d.ts +35 -0
  91. package/dist-types/commands/GetAccountSettingsCommand.d.ts +1 -1
  92. package/dist-types/commands/GetEnvironmentAccountConnectionCommand.d.ts +2 -2
  93. package/dist-types/commands/GetRepositoryCommand.d.ts +35 -0
  94. package/dist-types/commands/GetRepositorySyncStatusCommand.d.ts +35 -0
  95. package/dist-types/commands/GetServiceInstanceCommand.d.ts +1 -1
  96. package/dist-types/commands/GetTemplateSyncConfigCommand.d.ts +35 -0
  97. package/dist-types/commands/GetTemplateSyncStatusCommand.d.ts +35 -0
  98. package/dist-types/commands/ListEnvironmentAccountConnectionsCommand.d.ts +2 -2
  99. package/dist-types/commands/ListEnvironmentOutputsCommand.d.ts +35 -0
  100. package/dist-types/commands/ListEnvironmentProvisionedResourcesCommand.d.ts +35 -0
  101. package/dist-types/commands/ListRepositoriesCommand.d.ts +35 -0
  102. package/dist-types/commands/ListRepositorySyncDefinitionsCommand.d.ts +35 -0
  103. package/dist-types/commands/ListServiceInstanceOutputsCommand.d.ts +35 -0
  104. package/dist-types/commands/ListServiceInstanceProvisionedResourcesCommand.d.ts +35 -0
  105. package/dist-types/commands/ListServicePipelineOutputsCommand.d.ts +35 -0
  106. package/dist-types/commands/ListServicePipelineProvisionedResourcesCommand.d.ts +35 -0
  107. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  108. package/dist-types/commands/NotifyResourceDeploymentStatusChangeCommand.d.ts +41 -0
  109. package/dist-types/commands/RejectEnvironmentAccountConnectionCommand.d.ts +5 -5
  110. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  111. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  112. package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +1 -1
  113. package/dist-types/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +2 -2
  114. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +30 -28
  115. package/dist-types/commands/UpdateServiceCommand.d.ts +5 -6
  116. package/dist-types/commands/UpdateServiceInstanceCommand.d.ts +19 -21
  117. package/dist-types/commands/UpdateServicePipelineCommand.d.ts +19 -21
  118. package/dist-types/commands/UpdateTemplateSyncConfigCommand.d.ts +35 -0
  119. package/dist-types/commands/index.d.ts +18 -0
  120. package/dist-types/models/models_0.d.ts +1440 -355
  121. package/dist-types/pagination/ListEnvironmentOutputsPaginator.d.ts +4 -0
  122. package/dist-types/pagination/ListEnvironmentProvisionedResourcesPaginator.d.ts +4 -0
  123. package/dist-types/pagination/ListRepositoriesPaginator.d.ts +4 -0
  124. package/dist-types/pagination/ListRepositorySyncDefinitionsPaginator.d.ts +4 -0
  125. package/dist-types/pagination/ListServiceInstanceOutputsPaginator.d.ts +4 -0
  126. package/dist-types/pagination/ListServiceInstanceProvisionedResourcesPaginator.d.ts +4 -0
  127. package/dist-types/pagination/ListServicePipelineOutputsPaginator.d.ts +4 -0
  128. package/dist-types/pagination/ListServicePipelineProvisionedResourcesPaginator.d.ts +4 -0
  129. package/dist-types/pagination/index.d.ts +8 -0
  130. package/dist-types/protocols/Aws_json1_0.d.ts +54 -0
  131. package/dist-types/runtimeConfig.browser.d.ts +3 -2
  132. package/dist-types/runtimeConfig.d.ts +4 -3
  133. package/dist-types/runtimeConfig.native.d.ts +1 -0
  134. package/dist-types/ts3.4/Proton.d.ts +90 -0
  135. package/dist-types/ts3.4/ProtonClient.d.ts +23 -3
  136. package/dist-types/ts3.4/commands/CreateRepositoryCommand.d.ts +17 -0
  137. package/dist-types/ts3.4/commands/CreateTemplateSyncConfigCommand.d.ts +17 -0
  138. package/dist-types/ts3.4/commands/DeleteRepositoryCommand.d.ts +17 -0
  139. package/dist-types/ts3.4/commands/DeleteTemplateSyncConfigCommand.d.ts +17 -0
  140. package/dist-types/ts3.4/commands/GetRepositoryCommand.d.ts +17 -0
  141. package/dist-types/ts3.4/commands/GetRepositorySyncStatusCommand.d.ts +17 -0
  142. package/dist-types/ts3.4/commands/GetTemplateSyncConfigCommand.d.ts +17 -0
  143. package/dist-types/ts3.4/commands/GetTemplateSyncStatusCommand.d.ts +17 -0
  144. package/dist-types/ts3.4/commands/ListEnvironmentOutputsCommand.d.ts +17 -0
  145. package/dist-types/ts3.4/commands/ListEnvironmentProvisionedResourcesCommand.d.ts +17 -0
  146. package/dist-types/ts3.4/commands/ListRepositoriesCommand.d.ts +17 -0
  147. package/dist-types/ts3.4/commands/ListRepositorySyncDefinitionsCommand.d.ts +17 -0
  148. package/dist-types/ts3.4/commands/ListServiceInstanceOutputsCommand.d.ts +17 -0
  149. package/dist-types/ts3.4/commands/ListServiceInstanceProvisionedResourcesCommand.d.ts +17 -0
  150. package/dist-types/ts3.4/commands/ListServicePipelineOutputsCommand.d.ts +17 -0
  151. package/dist-types/ts3.4/commands/ListServicePipelineProvisionedResourcesCommand.d.ts +17 -0
  152. package/dist-types/ts3.4/commands/NotifyResourceDeploymentStatusChangeCommand.d.ts +17 -0
  153. package/dist-types/ts3.4/commands/UpdateTemplateSyncConfigCommand.d.ts +17 -0
  154. package/dist-types/ts3.4/commands/index.d.ts +18 -0
  155. package/dist-types/ts3.4/models/models_0.d.ts +635 -31
  156. package/dist-types/ts3.4/pagination/ListEnvironmentOutputsPaginator.d.ts +4 -0
  157. package/dist-types/ts3.4/pagination/ListEnvironmentProvisionedResourcesPaginator.d.ts +4 -0
  158. package/dist-types/ts3.4/pagination/ListRepositoriesPaginator.d.ts +4 -0
  159. package/dist-types/ts3.4/pagination/ListRepositorySyncDefinitionsPaginator.d.ts +4 -0
  160. package/dist-types/ts3.4/pagination/ListServiceInstanceOutputsPaginator.d.ts +4 -0
  161. package/dist-types/ts3.4/pagination/ListServiceInstanceProvisionedResourcesPaginator.d.ts +4 -0
  162. package/dist-types/ts3.4/pagination/ListServicePipelineOutputsPaginator.d.ts +4 -0
  163. package/dist-types/ts3.4/pagination/ListServicePipelineProvisionedResourcesPaginator.d.ts +4 -0
  164. package/dist-types/ts3.4/pagination/index.d.ts +8 -0
  165. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +54 -0
  166. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  167. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
  168. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
  169. package/package.json +39 -46
@@ -65,7 +65,7 @@ export declare namespace EnvironmentAccountConnection {
65
65
  }
66
66
  export interface AcceptEnvironmentAccountConnectionOutput {
67
67
  /**
68
- * <p>The environment account connection data that's returned by AWS Proton.</p>
68
+ * <p>The environment account connection data that's returned by Proton.</p>
69
69
  */
70
70
  environmentAccountConnection: EnvironmentAccountConnection | undefined;
71
71
  }
@@ -83,12 +83,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
83
83
  $fault: "client";
84
84
  message: string | undefined;
85
85
  }
86
- export declare namespace AccessDeniedException {
87
- /**
88
- * @internal
89
- */
90
- const filterSensitiveLog: (obj: AccessDeniedException) => any;
91
- }
92
86
  /**
93
87
  * <p>The request <i>couldn't</i> be made due to a conflicting operation or resource.</p>
94
88
  */
@@ -97,12 +91,6 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
97
91
  $fault: "client";
98
92
  message: string | undefined;
99
93
  }
100
- export declare namespace ConflictException {
101
- /**
102
- * @internal
103
- */
104
- const filterSensitiveLog: (obj: ConflictException) => any;
105
- }
106
94
  /**
107
95
  * <p>The request failed to register with the service.</p>
108
96
  */
@@ -112,12 +100,6 @@ export interface InternalServerException extends __SmithyException, $MetadataBea
112
100
  $retryable: {};
113
101
  message: string | undefined;
114
102
  }
115
- export declare namespace InternalServerException {
116
- /**
117
- * @internal
118
- */
119
- const filterSensitiveLog: (obj: InternalServerException) => any;
120
- }
121
103
  /**
122
104
  * <p>The requested resource <i>wasn't</i> found.</p>
123
105
  */
@@ -126,12 +108,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
126
108
  $fault: "client";
127
109
  message: string | undefined;
128
110
  }
129
- export declare namespace ResourceNotFoundException {
130
- /**
131
- * @internal
132
- */
133
- const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
134
- }
135
111
  /**
136
112
  * <p>The request was denied due to request throttling.</p>
137
113
  */
@@ -143,12 +119,6 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
143
119
  };
144
120
  message: string | undefined;
145
121
  }
146
- export declare namespace ThrottlingException {
147
- /**
148
- * @internal
149
- */
150
- const filterSensitiveLog: (obj: ThrottlingException) => any;
151
- }
152
122
  /**
153
123
  * <p>The input is invalid or an out-of-range value was supplied for the input parameter.</p>
154
124
  */
@@ -157,20 +127,62 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
157
127
  $fault: "client";
158
128
  message: string | undefined;
159
129
  }
160
- export declare namespace ValidationException {
130
+ export declare enum RepositoryProvider {
131
+ BITBUCKET = "BITBUCKET",
132
+ GITHUB = "GITHUB",
133
+ GITHUB_ENTERPRISE = "GITHUB_ENTERPRISE"
134
+ }
135
+ /**
136
+ * <p>Detail data for a repository branch.</p>
137
+ * <important>
138
+ * <p>Provisioning by pull request is currently in feature preview and is
139
+ * only usable with Terraform based Proton Templates. To learn more about
140
+ * <a href="https://aws.amazon.com/service-terms">Amazon Web Services Feature Preview terms</a>, see section 2 on Beta and
141
+ * Previews.</p>
142
+ * </important>
143
+ */
144
+ export interface RepositoryBranch {
145
+ /**
146
+ * <p>The Amazon Resource Name (ARN) of the repository branch.</p>
147
+ */
148
+ arn: string | undefined;
149
+ /**
150
+ * <p>The repository provider.</p>
151
+ */
152
+ provider: RepositoryProvider | string | undefined;
153
+ /**
154
+ * <p>The repository name.</p>
155
+ */
156
+ name: string | undefined;
157
+ /**
158
+ * <p>The repository branch.</p>
159
+ */
160
+ branch: string | undefined;
161
+ }
162
+ export declare namespace RepositoryBranch {
161
163
  /**
162
164
  * @internal
163
165
  */
164
- const filterSensitiveLog: (obj: ValidationException) => any;
166
+ const filterSensitiveLog: (obj: RepositoryBranch) => any;
165
167
  }
166
168
  /**
167
- * <p>The AWS Proton pipeline service role data.</p>
169
+ * <p>The Proton pipeline service role and repository data.</p>
168
170
  */
169
171
  export interface AccountSettings {
170
172
  /**
171
- * <p>The Amazon Resource Name (ARN) of the AWS Proton pipeline service role.</p>
173
+ * <p>The Amazon Resource Name (ARN) of the Proton pipeline service role.</p>
172
174
  */
173
175
  pipelineServiceRoleArn?: string;
176
+ /**
177
+ * <p>The repository that you provide with pull request provisioning.</p>
178
+ * <important>
179
+ * <p>Provisioning by pull request is currently in feature preview and is
180
+ * only usable with Terraform based Proton Templates. To learn more about
181
+ * <a href="https://aws.amazon.com/service-terms">Amazon Web Services Feature Preview terms</a>, see section 2 on Beta and
182
+ * Previews.</p>
183
+ * </important>
184
+ */
185
+ pipelineProvisioningRepository?: RepositoryBranch;
174
186
  }
175
187
  export declare namespace AccountSettings {
176
188
  /**
@@ -188,7 +200,7 @@ export declare namespace GetAccountSettingsInput {
188
200
  }
189
201
  export interface GetAccountSettingsOutput {
190
202
  /**
191
- * <p>The AWS Proton pipeline service role detail data that's returned by AWS Proton.</p>
203
+ * <p>The Proton pipeline service role detail data that's returned by Proton.</p>
192
204
  */
193
205
  accountSettings?: AccountSettings;
194
206
  }
@@ -198,11 +210,56 @@ export declare namespace GetAccountSettingsOutput {
198
210
  */
199
211
  const filterSensitiveLog: (obj: GetAccountSettingsOutput) => any;
200
212
  }
213
+ /**
214
+ * <p>Detail input data for a repository branch.</p>
215
+ * <important>
216
+ * <p>Provisioning by pull request is currently in feature preview and is
217
+ * only usable with Terraform based Proton Templates. To learn more about
218
+ * <a href="https://aws.amazon.com/service-terms">Amazon Web Services Feature Preview terms</a>, see section 2 on Beta and
219
+ * Previews.</p>
220
+ * </important>
221
+ */
222
+ export interface RepositoryBranchInput {
223
+ /**
224
+ * <p>The repository provider.</p>
225
+ */
226
+ provider: RepositoryProvider | string | undefined;
227
+ /**
228
+ * <p>The repository name.</p>
229
+ */
230
+ name: string | undefined;
231
+ /**
232
+ * <p>The repository branch.</p>
233
+ */
234
+ branch: string | undefined;
235
+ }
236
+ export declare namespace RepositoryBranchInput {
237
+ /**
238
+ * @internal
239
+ */
240
+ const filterSensitiveLog: (obj: RepositoryBranchInput) => any;
241
+ }
201
242
  export interface UpdateAccountSettingsInput {
202
243
  /**
203
- * <p>The Amazon Resource Name (ARN) of the AWS Proton pipeline service role.</p>
244
+ * <p>The Amazon Resource Name (ARN) of the Proton pipeline service role.</p>
245
+ * <important>
246
+ * <p>Provisioning by pull request is currently in feature preview and is
247
+ * only usable with Terraform based Proton Templates. To learn more about
248
+ * <a href="https://aws.amazon.com/service-terms">Amazon Web Services Feature Preview terms</a>, see section 2 on Beta and
249
+ * Previews.</p>
250
+ * </important>
204
251
  */
205
252
  pipelineServiceRoleArn?: string;
253
+ /**
254
+ * <p>The repository that you provide with pull request provisioning.</p>
255
+ * <important>
256
+ * <p>Provisioning by pull request is currently in feature preview and is
257
+ * only usable with Terraform based Proton Templates. To learn more about
258
+ * <a href="https://aws.amazon.com/service-terms">Amazon Web Services Feature Preview terms</a>, see section 2 on Beta and
259
+ * Previews.</p>
260
+ * </important>
261
+ */
262
+ pipelineProvisioningRepository?: RepositoryBranchInput;
206
263
  }
207
264
  export declare namespace UpdateAccountSettingsInput {
208
265
  /**
@@ -212,7 +269,7 @@ export declare namespace UpdateAccountSettingsInput {
212
269
  }
213
270
  export interface UpdateAccountSettingsOutput {
214
271
  /**
215
- * <p>The AWS Proton pipeline service role detail data that's returned by AWS Proton.</p>
272
+ * <p>The Proton pipeline service role repository detail data that's returned by Proton.</p>
216
273
  */
217
274
  accountSettings: AccountSettings | undefined;
218
275
  }
@@ -248,7 +305,7 @@ export declare enum Provisioning {
248
305
  CUSTOMER_MANAGED = "CUSTOMER_MANAGED"
249
306
  }
250
307
  /**
251
- * <p>The environment detail data. An AWS Proton environment is a set resources shared across an AWS Proton service.</p>
308
+ * <p>The environment detail data. An Proton environment is a set resources shared across an Proton service.</p>
252
309
  */
253
310
  export interface Environment {
254
311
  /**
@@ -296,8 +353,7 @@ export interface Environment {
296
353
  */
297
354
  deploymentStatusMessage?: string;
298
355
  /**
299
- * <p>The Amazon Resource Name (ARN) of the AWS Proton service role that allows AWS Proton to make calls to other services on your
300
- * behalf.</p>
356
+ * <p>The Amazon Resource Name (ARN) of the Proton service role that allows Proton to make calls to other services on your behalf.</p>
301
357
  */
302
358
  protonServiceRoleArn?: string;
303
359
  /**
@@ -316,6 +372,16 @@ export interface Environment {
316
372
  * <p>When included, indicates that the environment template is for customer provisioned and managed infrastructure.</p>
317
373
  */
318
374
  provisioning?: Provisioning | string;
375
+ /**
376
+ * <p>The repository that you provide with pull request provisioning.</p>
377
+ * <important>
378
+ * <p>Provisioning by pull request is currently in feature preview and is
379
+ * only usable with Terraform based Proton Templates. To learn more about
380
+ * <a href="https://aws.amazon.com/service-terms">Amazon Web Services Feature Preview terms</a>, see section 2 on Beta and
381
+ * Previews.</p>
382
+ * </important>
383
+ */
384
+ provisioningRepository?: RepositoryBranch;
319
385
  }
320
386
  export declare namespace Environment {
321
387
  /**
@@ -325,7 +391,7 @@ export declare namespace Environment {
325
391
  }
326
392
  export interface CancelEnvironmentDeploymentOutput {
327
393
  /**
328
- * <p>The environment summary data that's returned by AWS Proton.</p>
394
+ * <p>The environment summary data that's returned by Proton.</p>
329
395
  */
330
396
  environment: Environment | undefined;
331
397
  }
@@ -388,11 +454,11 @@ export interface ServiceInstance {
388
454
  */
389
455
  templateName: string | undefined;
390
456
  /**
391
- * <p>The ID of the major version of the service template that was used to create the service instance.</p>
457
+ * <p>The major version of the service template that was used to create the service instance.</p>
392
458
  */
393
459
  templateMajorVersion: string | undefined;
394
460
  /**
395
- * <p>The ID of the minor version of the service template that was used to create the service instance.</p>
461
+ * <p>The minor version of the service template that was used to create the service instance.</p>
396
462
  */
397
463
  templateMinorVersion: string | undefined;
398
464
  /**
@@ -416,7 +482,7 @@ export declare namespace ServiceInstance {
416
482
  }
417
483
  export interface CancelServiceInstanceDeploymentOutput {
418
484
  /**
419
- * <p>The service instance summary data that's returned by AWS Proton.</p>
485
+ * <p>The service instance summary data that's returned by Proton.</p>
420
486
  */
421
487
  serviceInstance: ServiceInstance | undefined;
422
488
  }
@@ -463,11 +529,11 @@ export interface ServicePipeline {
463
529
  */
464
530
  templateName: string | undefined;
465
531
  /**
466
- * <p>The ID of the major version of the service template that was used to create the service pipeline.</p>
532
+ * <p>The major version of the service template that was used to create the service pipeline.</p>
467
533
  */
468
534
  templateMajorVersion: string | undefined;
469
535
  /**
470
- * <p>The ID of the minor version of the service template that was used to create the service pipeline.</p>
536
+ * <p>The minor version of the service template that was used to create the service pipeline.</p>
471
537
  */
472
538
  templateMinorVersion: string | undefined;
473
539
  /**
@@ -491,7 +557,7 @@ export declare namespace ServicePipeline {
491
557
  }
492
558
  export interface CancelServicePipelineDeploymentOutput {
493
559
  /**
494
- * <p>The service pipeline detail data that's returned by AWS Proton.</p>
560
+ * <p>The service pipeline detail data that's returned by Proton.</p>
495
561
  */
496
562
  pipeline: ServicePipeline | undefined;
497
563
  }
@@ -501,27 +567,51 @@ export declare namespace CancelServicePipelineDeploymentOutput {
501
567
  */
502
568
  const filterSensitiveLog: (obj: CancelServicePipelineDeploymentOutput) => any;
503
569
  }
570
+ /**
571
+ * <p>A description of a resource tag.</p>
572
+ */
573
+ export interface Tag {
574
+ /**
575
+ * <p>The key of the resource tag.</p>
576
+ */
577
+ key: string | undefined;
578
+ /**
579
+ * <p>The value of the resource tag.</p>
580
+ */
581
+ value: string | undefined;
582
+ }
583
+ export declare namespace Tag {
584
+ /**
585
+ * @internal
586
+ */
587
+ const filterSensitiveLog: (obj: Tag) => any;
588
+ }
504
589
  export interface CreateEnvironmentAccountConnectionInput {
505
590
  /**
506
- * <p>When included, if two identicial requests are made with the same client token, AWS Proton returns the environment account connection that
507
- * the first request created.</p>
591
+ * <p>When included, if two identical requests are made with the same client token, Proton returns the environment account connection that the
592
+ * first request created.</p>
508
593
  */
509
594
  clientToken?: string;
510
595
  /**
511
- * <p>The ID of the management account that accepts or rejects the environment account connection. You create an manage the AWS Proton
512
- * environment in this account. If the management account accepts the environment account connection, AWS Proton can use the associated IAM
513
- * role to provision environment infrastructure resources in the associated environment account.</p>
596
+ * <p>The ID of the management account that accepts or rejects the environment account connection. You create an manage the Proton environment in
597
+ * this account. If the management account accepts the environment account connection, Proton can use the associated IAM role to provision
598
+ * environment infrastructure resources in the associated environment account.</p>
514
599
  */
515
600
  managementAccountId: string | undefined;
516
601
  /**
517
- * <p>The Amazon Resource Name (ARN) of the IAM service role that's created in the environment account. AWS Proton uses this role to provision
518
- * infrastructure resources in the associated environment account.</p>
602
+ * <p>The Amazon Resource Name (ARN) of the IAM service role that's created in the environment account. Proton uses this role to provision
603
+ * infrastructure resources in the associated environment account.</p>
519
604
  */
520
605
  roleArn: string | undefined;
521
606
  /**
522
- * <p>The name of the AWS Proton environment that's created in the associated management account.</p>
607
+ * <p>The name of the Proton environment that's created in the associated management account.</p>
523
608
  */
524
609
  environmentName: string | undefined;
610
+ /**
611
+ * <p>Tags for your environment account connection. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">Proton resources and tagging</a> in the <i>Proton Administrator
612
+ * Guide</i>.</p>
613
+ */
614
+ tags?: Tag[];
525
615
  }
526
616
  export declare namespace CreateEnvironmentAccountConnectionInput {
527
617
  /**
@@ -531,7 +621,7 @@ export declare namespace CreateEnvironmentAccountConnectionInput {
531
621
  }
532
622
  export interface CreateEnvironmentAccountConnectionOutput {
533
623
  /**
534
- * <p>The environment account connection detail data that's returned by AWS Proton.</p>
624
+ * <p>The environment account connection detail data that's returned by Proton.</p>
535
625
  */
536
626
  environmentAccountConnection: EnvironmentAccountConnection | undefined;
537
627
  }
@@ -542,20 +632,14 @@ export declare namespace CreateEnvironmentAccountConnectionOutput {
542
632
  const filterSensitiveLog: (obj: CreateEnvironmentAccountConnectionOutput) => any;
543
633
  }
544
634
  /**
545
- * <p>A quota was exceeded. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-limits.html">AWS Proton
546
- * Quotas</a> in the <i>AWS Proton Administrator Guide</i>.</p>
635
+ * <p>A quota was exceeded. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-limits.html">Proton Quotas</a> in the <i>Proton Administrator
636
+ * Guide</i>.</p>
547
637
  */
548
638
  export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
549
639
  name: "ServiceQuotaExceededException";
550
640
  $fault: "client";
551
641
  message: string | undefined;
552
642
  }
553
- export declare namespace ServiceQuotaExceededException {
554
- /**
555
- * @internal
556
- */
557
- const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
558
- }
559
643
  export interface DeleteEnvironmentAccountConnectionInput {
560
644
  /**
561
645
  * <p>The ID of the environment account connection to delete.</p>
@@ -570,7 +654,7 @@ export declare namespace DeleteEnvironmentAccountConnectionInput {
570
654
  }
571
655
  export interface DeleteEnvironmentAccountConnectionOutput {
572
656
  /**
573
- * <p>The environment account connection detail data that's returned by AWS Proton.</p>
657
+ * <p>The environment account connection detail data that's returned by Proton.</p>
574
658
  */
575
659
  environmentAccountConnection?: EnvironmentAccountConnection;
576
660
  }
@@ -594,7 +678,7 @@ export declare namespace GetEnvironmentAccountConnectionInput {
594
678
  }
595
679
  export interface GetEnvironmentAccountConnectionOutput {
596
680
  /**
597
- * <p>The environment account connection detail data that's returned by AWS Proton.</p>
681
+ * <p>The environment account connection detail data that's returned by Proton.</p>
598
682
  */
599
683
  environmentAccountConnection: EnvironmentAccountConnection | undefined;
600
684
  }
@@ -622,8 +706,8 @@ export interface ListEnvironmentAccountConnectionsInput {
622
706
  */
623
707
  statuses?: (EnvironmentAccountConnectionStatus | string)[];
624
708
  /**
625
- * <p>A token to indicate the location of the next environment account connection in the array of environment account connections, after the
626
- * list of environment account connections that was previously requested.</p>
709
+ * <p>A token to indicate the location of the next environment account connection in the array of environment account connections, after the list of
710
+ * environment account connections that was previously requested.</p>
627
711
  */
628
712
  nextToken?: string;
629
713
  /**
@@ -686,12 +770,12 @@ export declare namespace EnvironmentAccountConnectionSummary {
686
770
  }
687
771
  export interface ListEnvironmentAccountConnectionsOutput {
688
772
  /**
689
- * <p>An array of environment account connections with details that's returned by AWS Proton. </p>
773
+ * <p>An array of environment account connections with details that's returned by Proton. </p>
690
774
  */
691
775
  environmentAccountConnections: EnvironmentAccountConnectionSummary[] | undefined;
692
776
  /**
693
- * <p>A token to indicate the location of the next environment account connection in the array of environment account connections, after the
694
- * current requested list of environment account connections.</p>
777
+ * <p>A token to indicate the location of the next environment account connection in the array of environment account connections, after the current
778
+ * requested list of environment account connections.</p>
695
779
  */
696
780
  nextToken?: string;
697
781
  }
@@ -715,7 +799,7 @@ export declare namespace RejectEnvironmentAccountConnectionInput {
715
799
  }
716
800
  export interface RejectEnvironmentAccountConnectionOutput {
717
801
  /**
718
- * <p>The environment connection account detail data that's returned by AWS Proton.</p>
802
+ * <p>The environment connection account detail data that's returned by Proton.</p>
719
803
  */
720
804
  environmentAccountConnection: EnvironmentAccountConnection | undefined;
721
805
  }
@@ -743,7 +827,7 @@ export declare namespace UpdateEnvironmentAccountConnectionInput {
743
827
  }
744
828
  export interface UpdateEnvironmentAccountConnectionOutput {
745
829
  /**
746
- * <p>The environment account connection detail data that's returned by AWS Proton.</p>
830
+ * <p>The environment account connection detail data that's returned by Proton.</p>
747
831
  */
748
832
  environmentAccountConnection: EnvironmentAccountConnection | undefined;
749
833
  }
@@ -753,24 +837,125 @@ export declare namespace UpdateEnvironmentAccountConnectionOutput {
753
837
  */
754
838
  const filterSensitiveLog: (obj: UpdateEnvironmentAccountConnectionOutput) => any;
755
839
  }
840
+ export interface ListEnvironmentOutputsInput {
841
+ /**
842
+ * <p>The environment name.</p>
843
+ */
844
+ environmentName: string | undefined;
845
+ /**
846
+ * <p>A token to indicate the location of the next environment output in the array of environment outputs, after the list of environment outputs
847
+ * that was previously requested.</p>
848
+ */
849
+ nextToken?: string;
850
+ }
851
+ export declare namespace ListEnvironmentOutputsInput {
852
+ /**
853
+ * @internal
854
+ */
855
+ const filterSensitiveLog: (obj: ListEnvironmentOutputsInput) => any;
856
+ }
756
857
  /**
757
- * <p>A description of a resource tag.</p>
858
+ * <p>An infrastructure as code defined resource output.</p>
758
859
  */
759
- export interface Tag {
860
+ export interface Output {
760
861
  /**
761
- * <p>The key of the resource tag.</p>
862
+ * <p>The output key.</p>
762
863
  */
763
- key: string | undefined;
864
+ key?: string;
764
865
  /**
765
- * <p>The value of the resource tag.</p>
866
+ * <p>The output value.</p>
766
867
  */
767
- value: string | undefined;
868
+ valueString?: string;
768
869
  }
769
- export declare namespace Tag {
870
+ export declare namespace Output {
770
871
  /**
771
872
  * @internal
772
873
  */
773
- const filterSensitiveLog: (obj: Tag) => any;
874
+ const filterSensitiveLog: (obj: Output) => any;
875
+ }
876
+ export interface ListEnvironmentOutputsOutput {
877
+ /**
878
+ * <p>A token to indicate the location of the next environment output in the array of environment outputs, after the current requested list of
879
+ * environment outputs.</p>
880
+ */
881
+ nextToken?: string;
882
+ /**
883
+ * <p>An array of environment outputs with detail data.</p>
884
+ */
885
+ outputs: Output[] | undefined;
886
+ }
887
+ export declare namespace ListEnvironmentOutputsOutput {
888
+ /**
889
+ * @internal
890
+ */
891
+ const filterSensitiveLog: (obj: ListEnvironmentOutputsOutput) => any;
892
+ }
893
+ export interface ListEnvironmentProvisionedResourcesInput {
894
+ /**
895
+ * <p>The environment name.</p>
896
+ */
897
+ environmentName: string | undefined;
898
+ /**
899
+ * <p>A token to indicate the location of the next environment provisioned resource in the array of environment provisioned resources, after the
900
+ * list of environment provisioned resources that was previously requested.</p>
901
+ */
902
+ nextToken?: string;
903
+ }
904
+ export declare namespace ListEnvironmentProvisionedResourcesInput {
905
+ /**
906
+ * @internal
907
+ */
908
+ const filterSensitiveLog: (obj: ListEnvironmentProvisionedResourcesInput) => any;
909
+ }
910
+ export declare enum ProvisionedResourceEngine {
911
+ CLOUDFORMATION = "CLOUDFORMATION",
912
+ TERRAFORM = "TERRAFORM"
913
+ }
914
+ /**
915
+ * <p>Detail data for a provisioned resource.</p>
916
+ */
917
+ export interface ProvisionedResource {
918
+ /**
919
+ * <p>The provisioned resource name.</p>
920
+ */
921
+ name?: string;
922
+ /**
923
+ * <p>The provisioned resource identifier.</p>
924
+ */
925
+ identifier?: string;
926
+ /**
927
+ * <p>The resource provisioning engine.</p>
928
+ * <important>
929
+ * <p>Provisioning by pull request is currently in feature preview and is
930
+ * only usable with Terraform based Proton Templates. To learn more about
931
+ * <a href="https://aws.amazon.com/service-terms">Amazon Web Services Feature Preview terms</a>, see section 2 on Beta and
932
+ * Previews.</p>
933
+ * </important>
934
+ */
935
+ provisioningEngine?: ProvisionedResourceEngine | string;
936
+ }
937
+ export declare namespace ProvisionedResource {
938
+ /**
939
+ * @internal
940
+ */
941
+ const filterSensitiveLog: (obj: ProvisionedResource) => any;
942
+ }
943
+ export interface ListEnvironmentProvisionedResourcesOutput {
944
+ /**
945
+ * <p>A token to indicate the location of the next environment provisioned resource in the array of provisioned resources, after the current
946
+ * requested list of environment provisioned resources.</p>
947
+ */
948
+ nextToken?: string;
949
+ /**
950
+ * <p>An array of environment provisioned resources.</p>
951
+ */
952
+ provisionedResources: ProvisionedResource[] | undefined;
953
+ }
954
+ export declare namespace ListEnvironmentProvisionedResourcesOutput {
955
+ /**
956
+ * @internal
957
+ */
958
+ const filterSensitiveLog: (obj: ListEnvironmentProvisionedResourcesOutput) => any;
774
959
  }
775
960
  export interface CreateEnvironmentInput {
776
961
  /**
@@ -778,16 +963,15 @@ export interface CreateEnvironmentInput {
778
963
  */
779
964
  name: string | undefined;
780
965
  /**
781
- * <p>The name of the environment template. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-templates.html">Environment Templates</a> in the <i>AWS Proton Administrator
782
- * Guide</i>.</p>
966
+ * <p>The name of the environment template. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-templates.html">Environment Templates</a> in the <i>Proton Administrator Guide</i>.</p>
783
967
  */
784
968
  templateName: string | undefined;
785
969
  /**
786
- * <p>The ID of the major version of the environment template.</p>
970
+ * <p>The major version of the environment template.</p>
787
971
  */
788
972
  templateMajorVersion: string | undefined;
789
973
  /**
790
- * <p>The ID of the minor version of the environment template.</p>
974
+ * <p>The minor version of the environment template.</p>
791
975
  */
792
976
  templateMinorVersion?: string;
793
977
  /**
@@ -795,26 +979,39 @@ export interface CreateEnvironmentInput {
795
979
  */
796
980
  description?: string;
797
981
  /**
798
- * <p>A link to a YAML formatted spec file that provides inputs as defined in the environment template bundle schema file. For more
799
- * information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-environments.html">Environments</a> in the
800
- * <i>AWS Proton Administrator Guide</i>.</p>
982
+ * <p>A link to a YAML formatted spec file that provides inputs as defined in the environment template bundle schema file. For more information, see
983
+ * <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-environments.html">Environments</a> in the <i>Proton Administrator
984
+ * Guide</i>.</p>
801
985
  */
802
986
  spec: string | undefined;
803
987
  /**
804
- * <p>The Amazon Resource Name (ARN) of the AWS Proton service role that allows AWS Proton to make calls to other services on your behalf. You
805
- * must include either the <code>environmentAccountConnectionId</code> or <code>protonServiceRoleArn</code> parameter and value.</p>
988
+ * <p>The Amazon Resource Name (ARN) of the Proton service role that allows Proton to make calls to other services on your behalf. You must
989
+ * include either the <code>environmentAccountConnectionId</code> or <code>protonServiceRoleArn</code> parameter and value and omit the
990
+ * <code>provisioningRepository</code> parameter when you use standard provisioning.</p>
806
991
  */
807
992
  protonServiceRoleArn?: string;
808
993
  /**
809
994
  * <p>The ID of the environment account connection that you provide if you're provisioning your environment infrastructure resources to an
810
- * environment account. You must include either the <code>environmentAccountConnectionId</code> or <code>protonServiceRoleArn</code>
811
- * parameter and value. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
995
+ * environment account. You must include either the <code>environmentAccountConnectionId</code> or <code>protonServiceRoleArn</code> parameter and
996
+ * value and omit the <code>provisioningRepository</code> parameter and values. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account connections</a> in the <i>Proton Administrator
997
+ * guide</i>.</p>
812
998
  */
813
999
  environmentAccountConnectionId?: string;
814
1000
  /**
815
- * <p>Create tags for your environment. 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>
1001
+ * <p>Create tags for your environment. 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>
816
1002
  */
817
1003
  tags?: Tag[];
1004
+ /**
1005
+ * <p>The repository that you provide with pull request provisioning. If you provide this parameter, you must omit the
1006
+ * <code>environmentAccountConnectionId</code> and <code>protonServiceRoleArn</code> parameters.</p>
1007
+ * <important>
1008
+ * <p>Provisioning by pull request is currently in feature preview and is
1009
+ * only usable with Terraform based Proton Templates. To learn more about
1010
+ * <a href="https://aws.amazon.com/service-terms">Amazon Web Services Feature Preview terms</a>, see section 2 on Beta and
1011
+ * Previews.</p>
1012
+ * </important>
1013
+ */
1014
+ provisioningRepository?: RepositoryBranchInput;
818
1015
  }
819
1016
  export declare namespace CreateEnvironmentInput {
820
1017
  /**
@@ -824,7 +1021,7 @@ export declare namespace CreateEnvironmentInput {
824
1021
  }
825
1022
  export interface CreateEnvironmentOutput {
826
1023
  /**
827
- * <p>The environment detail data that's returned by AWS Proton.</p>
1024
+ * <p>The environment detail data that's returned by Proton.</p>
828
1025
  */
829
1026
  environment: Environment | undefined;
830
1027
  }
@@ -848,7 +1045,7 @@ export declare namespace DeleteEnvironmentInput {
848
1045
  }
849
1046
  export interface DeleteEnvironmentOutput {
850
1047
  /**
851
- * <p>The environment detail data that's returned by AWS Proton.</p>
1048
+ * <p>The environment detail data that's returned by Proton.</p>
852
1049
  */
853
1050
  environment?: Environment;
854
1051
  }
@@ -872,7 +1069,7 @@ export declare namespace GetEnvironmentInput {
872
1069
  }
873
1070
  export interface GetEnvironmentOutput {
874
1071
  /**
875
- * <p>The environment detail data that's returned by AWS Proton.</p>
1072
+ * <p>The environment detail data that's returned by Proton.</p>
876
1073
  */
877
1074
  environment: Environment | undefined;
878
1075
  }
@@ -903,8 +1100,8 @@ export declare namespace EnvironmentTemplateFilter {
903
1100
  }
904
1101
  export interface ListEnvironmentsInput {
905
1102
  /**
906
- * <p>A token to indicate the location of the next environment in the array of environments, after the list of environments that was
907
- * previously requested.</p>
1103
+ * <p>A token to indicate the location of the next environment in the array of environments, after the list of environments that was previously
1104
+ * requested.</p>
908
1105
  */
909
1106
  nextToken?: string;
910
1107
  /**
@@ -955,11 +1152,11 @@ export interface EnvironmentSummary {
955
1152
  */
956
1153
  templateName: string | undefined;
957
1154
  /**
958
- * <p>The ID of the major version of the environment template.</p>
1155
+ * <p>The major version of the environment template.</p>
959
1156
  */
960
1157
  templateMajorVersion: string | undefined;
961
1158
  /**
962
- * <p>The ID of the minor version of the environment template.</p>
1159
+ * <p>The minor version of the environment template.</p>
963
1160
  */
964
1161
  templateMinorVersion: string | undefined;
965
1162
  /**
@@ -971,8 +1168,7 @@ export interface EnvironmentSummary {
971
1168
  */
972
1169
  deploymentStatusMessage?: string;
973
1170
  /**
974
- * <p>The Amazon Resource Name (ARN) of the AWS Proton service role that allows AWS Proton to make calls to other services on your
975
- * behalf.</p>
1171
+ * <p>The Amazon Resource Name (ARN) of the Proton service role that allows Proton to make calls to other services on your behalf.</p>
976
1172
  */
977
1173
  protonServiceRoleArn?: string;
978
1174
  /**
@@ -997,7 +1193,7 @@ export declare namespace EnvironmentSummary {
997
1193
  export interface ListEnvironmentsOutput {
998
1194
  /**
999
1195
  * <p>A token to indicate the location of the next environment in the array of environments, after the current requested list of
1000
- * environments.</p>
1196
+ * environments.</p>
1001
1197
  */
1002
1198
  nextToken?: string;
1003
1199
  /**
@@ -1031,64 +1227,71 @@ export interface UpdateEnvironmentInput {
1031
1227
  */
1032
1228
  spec?: string;
1033
1229
  /**
1034
- * <p>The ID of the major version of the environment to update.</p>
1230
+ * <p>The major version of the environment to update.</p>
1035
1231
  */
1036
1232
  templateMajorVersion?: string;
1037
1233
  /**
1038
- * <p>The ID of the minor version of the environment to update.</p>
1234
+ * <p>The minor version of the environment to update.</p>
1039
1235
  */
1040
1236
  templateMinorVersion?: string;
1041
1237
  /**
1042
- * <p>The Amazon Resource Name (ARN) of the AWS Proton service role that allows AWS Proton to make API calls to other services your
1043
- * behalf.</p>
1238
+ * <p>The Amazon Resource Name (ARN) of the Proton service role that allows Proton to make API calls to other services your behalf.</p>
1044
1239
  */
1045
1240
  protonServiceRoleArn?: string;
1046
1241
  /**
1047
- * <p>There are four modes for updating an environment as described in the following. The <code>deploymentType</code> field defines the
1048
- * mode.</p>
1049
- * <dl>
1242
+ * <p>There are four modes for updating an environment as described in the following. The <code>deploymentType</code> field defines the mode.</p>
1243
+ * <dl>
1050
1244
  * <dt/>
1051
1245
  * <dd>
1052
- * <p>
1246
+ * <p>
1053
1247
  * <code>NONE</code>
1054
1248
  * </p>
1055
- * <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
1056
- * </dd>
1249
+ * <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
1250
+ * </dd>
1057
1251
  * <dt/>
1058
1252
  * <dd>
1059
- * <p>
1253
+ * <p>
1060
1254
  * <code>CURRENT_VERSION</code>
1061
1255
  * </p>
1062
- * <p>In this mode, the environment is deployed and updated with the new spec that you provide. Only requested parameters are
1063
- * updated. <i>Don’t</i> include minor or major version parameters when you use this
1064
- * <code>deployment-type</code>.</p>
1065
- * </dd>
1256
+ * <p>In this mode, the environment is deployed and updated with the new spec that you provide. Only requested parameters are updated.
1257
+ * <i>Don’t</i> include minor or major version parameters when you use this <code>deployment-type</code>.</p>
1258
+ * </dd>
1066
1259
  * <dt/>
1067
1260
  * <dd>
1068
- * <p>
1261
+ * <p>
1069
1262
  * <code>MINOR_VERSION</code>
1070
1263
  * </p>
1071
- * <p>In this mode, the environment is deployed and updated with the published, recommended (latest) minor version of the current
1072
- * major version in use, by default. You can also specify a different minor version of the current major version in use.</p>
1073
- * </dd>
1264
+ * <p>In this mode, the environment is deployed and updated with the published, recommended (latest) minor version of the current major version
1265
+ * in use, by default. You can also specify a different minor version of the current major version in use.</p>
1266
+ * </dd>
1074
1267
  * <dt/>
1075
1268
  * <dd>
1076
- * <p>
1269
+ * <p>
1077
1270
  * <code>MAJOR_VERSION</code>
1078
1271
  * </p>
1079
- * <p>In this mode, the environment is deployed and updated with the published, recommended (latest) major and minor version of
1080
- * the current template, by default. You can also specify a different major version that is higher than the major version in use
1081
- * and a minor version (optional).</p>
1082
- * </dd>
1272
+ * <p>In this mode, the environment is deployed and updated with the published, recommended (latest) major and minor version of the current
1273
+ * template, by default. You can also specify a different major version that is higher than the major version in use and a minor version
1274
+ * (optional).</p>
1275
+ * </dd>
1083
1276
  * </dl>
1084
1277
  */
1085
1278
  deploymentType: DeploymentUpdateType | string | undefined;
1086
1279
  /**
1087
1280
  * <p>The ID of the environment account connection.</p>
1088
- * <p>You can only update to a new environment account connection if it was created in the same environment account that the current
1089
- * environment account connection was created in and is associated with the current environment.</p>
1281
+ * <p>You can only update to a new environment account connection if it was created in the same environment account that the current environment
1282
+ * account connection was created in and is associated with the current environment.</p>
1090
1283
  */
1091
1284
  environmentAccountConnectionId?: string;
1285
+ /**
1286
+ * <p>The repository that you provide with pull request provisioning.</p>
1287
+ * <important>
1288
+ * <p>Provisioning by pull request is currently in feature preview and is
1289
+ * only usable with Terraform based Proton Templates. To learn more about
1290
+ * <a href="https://aws.amazon.com/service-terms">Amazon Web Services Feature Preview terms</a>, see section 2 on Beta and
1291
+ * Previews.</p>
1292
+ * </important>
1293
+ */
1294
+ provisioningRepository?: RepositoryBranchInput;
1092
1295
  }
1093
1296
  export declare namespace UpdateEnvironmentInput {
1094
1297
  /**
@@ -1098,7 +1301,7 @@ export declare namespace UpdateEnvironmentInput {
1098
1301
  }
1099
1302
  export interface UpdateEnvironmentOutput {
1100
1303
  /**
1101
- * <p>The environment detail data that's returned by AWS Proton.</p>
1304
+ * <p>The environment detail data that's returned by Proton.</p>
1102
1305
  */
1103
1306
  environment: Environment | undefined;
1104
1307
  }
@@ -1122,7 +1325,7 @@ export interface CreateEnvironmentTemplateInput {
1122
1325
  */
1123
1326
  description?: string;
1124
1327
  /**
1125
- * <p>A customer provided encryption key that AWS Proton uses to encrypt data.</p>
1328
+ * <p>A customer provided encryption key that Proton uses to encrypt data.</p>
1126
1329
  */
1127
1330
  encryptionKey?: string;
1128
1331
  /**
@@ -1130,7 +1333,7 @@ export interface CreateEnvironmentTemplateInput {
1130
1333
  */
1131
1334
  provisioning?: Provisioning | string;
1132
1335
  /**
1133
- * <p>Create tags for your environment template. 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>
1336
+ * <p>Create tags for your environment template. 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>
1134
1337
  */
1135
1338
  tags?: Tag[];
1136
1339
  }
@@ -1189,7 +1392,7 @@ export declare namespace EnvironmentTemplate {
1189
1392
  }
1190
1393
  export interface CreateEnvironmentTemplateOutput {
1191
1394
  /**
1192
- * <p>The environment template detail data that's returned by AWS Proton.</p>
1395
+ * <p>The environment template detail data that's returned by Proton.</p>
1193
1396
  */
1194
1397
  environmentTemplate: EnvironmentTemplate | undefined;
1195
1398
  }
@@ -1213,7 +1416,7 @@ export declare namespace DeleteEnvironmentTemplateInput {
1213
1416
  }
1214
1417
  export interface DeleteEnvironmentTemplateOutput {
1215
1418
  /**
1216
- * <p>The environment template detail data that's returned by AWS Proton.</p>
1419
+ * <p>The environment template detail data that's returned by Proton.</p>
1217
1420
  */
1218
1421
  environmentTemplate?: EnvironmentTemplate;
1219
1422
  }
@@ -1237,7 +1440,7 @@ export declare namespace GetEnvironmentTemplateInput {
1237
1440
  }
1238
1441
  export interface GetEnvironmentTemplateOutput {
1239
1442
  /**
1240
- * <p>The environment template detail data that's returned by AWS Proton.</p>
1443
+ * <p>The environment template detail data that's returned by Proton.</p>
1241
1444
  */
1242
1445
  environmentTemplate: EnvironmentTemplate | undefined;
1243
1446
  }
@@ -1250,7 +1453,7 @@ export declare namespace GetEnvironmentTemplateOutput {
1250
1453
  export interface ListEnvironmentTemplatesInput {
1251
1454
  /**
1252
1455
  * <p>A token to indicate the location of the next environment template in the array of environment templates, after the list of environment
1253
- * templates that was previously requested.</p>
1456
+ * templates that was previously requested.</p>
1254
1457
  */
1255
1458
  nextToken?: string;
1256
1459
  /**
@@ -1293,7 +1496,7 @@ export interface EnvironmentTemplateSummary {
1293
1496
  */
1294
1497
  description?: string;
1295
1498
  /**
1296
- * <p>The ID of the recommended version of the environment template.</p>
1499
+ * <p>The recommended version of the environment template.</p>
1297
1500
  */
1298
1501
  recommendedVersion?: string;
1299
1502
  /**
@@ -1309,8 +1512,8 @@ export declare namespace EnvironmentTemplateSummary {
1309
1512
  }
1310
1513
  export interface ListEnvironmentTemplatesOutput {
1311
1514
  /**
1312
- * <p>A token to indicate the location of the next environment template in the array of environment templates, after the current requested
1313
- * list of environment templates.</p>
1515
+ * <p>A token to indicate the location of the next environment template in the array of environment templates, after the current requested list of
1516
+ * environment templates.</p>
1314
1517
  */
1315
1518
  nextToken?: string;
1316
1519
  /**
@@ -1346,7 +1549,7 @@ export declare namespace UpdateEnvironmentTemplateInput {
1346
1549
  }
1347
1550
  export interface UpdateEnvironmentTemplateOutput {
1348
1551
  /**
1349
- * <p>The environment template detail data that's returned by AWS Proton.</p>
1552
+ * <p>The environment template detail data that's returned by Proton.</p>
1350
1553
  */
1351
1554
  environmentTemplate: EnvironmentTemplate | undefined;
1352
1555
  }
@@ -1403,8 +1606,8 @@ export declare namespace TemplateVersionSourceInput {
1403
1606
  }
1404
1607
  export interface CreateEnvironmentTemplateVersionInput {
1405
1608
  /**
1406
- * <p>When included, if two identicial requests are made with the same client token, AWS Proton returns the environment template version that
1407
- * the first request created.</p>
1609
+ * <p>When included, if two identical requests are made with the same client token, Proton returns the environment template version that the
1610
+ * first request created.</p>
1408
1611
  */
1409
1612
  clientToken?: string;
1410
1613
  /**
@@ -1416,9 +1619,9 @@ export interface CreateEnvironmentTemplateVersionInput {
1416
1619
  */
1417
1620
  description?: string;
1418
1621
  /**
1419
- * <p>To create a new minor version of the environment template, include a <code>majorVersion</code>.</p>
1420
- * <p>To create a new major and minor version of the environment template, <i>exclude</i>
1421
- * <code>majorVersion</code>.</p>
1622
+ * <p>To create a new minor version of the environment template, include a <code>major Version</code>.</p>
1623
+ * <p>To create a new major and minor version of the environment template, <i>exclude</i>
1624
+ * <code>major Version</code>.</p>
1422
1625
  */
1423
1626
  majorVersion?: string;
1424
1627
  /**
@@ -1451,15 +1654,15 @@ export interface EnvironmentTemplateVersion {
1451
1654
  */
1452
1655
  templateName: string | undefined;
1453
1656
  /**
1454
- * <p>The ID of the latest major version that's associated with the version of an environment template.</p>
1657
+ * <p>The latest major version that's associated with the version of an environment template.</p>
1455
1658
  */
1456
1659
  majorVersion: string | undefined;
1457
1660
  /**
1458
- * <p>The ID of the minor version of an environment template.</p>
1661
+ * <p>The minor version of an environment template.</p>
1459
1662
  */
1460
1663
  minorVersion: string | undefined;
1461
1664
  /**
1462
- * <p>The ID of the recommended minor version of the environment template.</p>
1665
+ * <p>The recommended minor version of the environment template.</p>
1463
1666
  */
1464
1667
  recommendedMinorVersion?: string;
1465
1668
  /**
@@ -1499,7 +1702,7 @@ export declare namespace EnvironmentTemplateVersion {
1499
1702
  }
1500
1703
  export interface CreateEnvironmentTemplateVersionOutput {
1501
1704
  /**
1502
- * <p>The environment template detail data that's returned by AWS Proton.</p>
1705
+ * <p>The environment template detail data that's returned by Proton.</p>
1503
1706
  */
1504
1707
  environmentTemplateVersion: EnvironmentTemplateVersion | undefined;
1505
1708
  }
@@ -1531,7 +1734,7 @@ export declare namespace DeleteEnvironmentTemplateVersionInput {
1531
1734
  }
1532
1735
  export interface DeleteEnvironmentTemplateVersionOutput {
1533
1736
  /**
1534
- * <p>The environment template version detail data that's returned by AWS Proton.</p>
1737
+ * <p>The environment template version detail data that's returned by Proton.</p>
1535
1738
  */
1536
1739
  environmentTemplateVersion?: EnvironmentTemplateVersion;
1537
1740
  }
@@ -1547,7 +1750,7 @@ export interface GetEnvironmentTemplateVersionInput {
1547
1750
  */
1548
1751
  templateName: string | undefined;
1549
1752
  /**
1550
- * <p>To view environment template major version detail data, include <code>majorVersion</code>.</p>
1753
+ * <p>To view environment template major version detail data, include <code>major Version</code>.</p>
1551
1754
  */
1552
1755
  majorVersion: string | undefined;
1553
1756
  /**
@@ -1563,7 +1766,7 @@ export declare namespace GetEnvironmentTemplateVersionInput {
1563
1766
  }
1564
1767
  export interface GetEnvironmentTemplateVersionOutput {
1565
1768
  /**
1566
- * <p>The environment template version detail data that's returned by AWS Proton.</p>
1769
+ * <p>The environment template version detail data that's returned by Proton.</p>
1567
1770
  */
1568
1771
  environmentTemplateVersion: EnvironmentTemplateVersion | undefined;
1569
1772
  }
@@ -1575,8 +1778,8 @@ export declare namespace GetEnvironmentTemplateVersionOutput {
1575
1778
  }
1576
1779
  export interface ListEnvironmentTemplateVersionsInput {
1577
1780
  /**
1578
- * <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of an environment template,
1579
- * after the list of major or minor versions that was previously requested.</p>
1781
+ * <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of an environment template, after
1782
+ * the list of major or minor versions that was previously requested.</p>
1580
1783
  */
1581
1784
  nextToken?: string;
1582
1785
  /**
@@ -1588,9 +1791,9 @@ export interface ListEnvironmentTemplateVersionsInput {
1588
1791
  */
1589
1792
  templateName: string | undefined;
1590
1793
  /**
1591
- * <p>To view a list of minor of versions under a major version of an environment template, include <code>majorVersion</code>.</p>
1592
- * <p>To view a list of major versions of an environment template, <i>exclude</i>
1593
- * <code>majorVersion</code>.</p>
1794
+ * <p>To view a list of minor of versions under a major version of an environment template, include <code>major Version</code>.</p>
1795
+ * <p>To view a list of major versions of an environment template, <i>exclude</i>
1796
+ * <code>major Version</code>.</p>
1594
1797
  */
1595
1798
  majorVersion?: string;
1596
1799
  }
@@ -1609,15 +1812,15 @@ export interface EnvironmentTemplateVersionSummary {
1609
1812
  */
1610
1813
  templateName: string | undefined;
1611
1814
  /**
1612
- * <p>The ID of the latest major version that's associated with the version of an environment template.</p>
1815
+ * <p>The latest major version that's associated with the version of an environment template.</p>
1613
1816
  */
1614
1817
  majorVersion: string | undefined;
1615
1818
  /**
1616
- * <p>The ID of the version of an environment template.</p>
1819
+ * <p>The version of an environment template.</p>
1617
1820
  */
1618
1821
  minorVersion: string | undefined;
1619
1822
  /**
1620
- * <p>The ID of the recommended minor version of the environment template.</p>
1823
+ * <p>The recommended minor version of the environment template.</p>
1621
1824
  */
1622
1825
  recommendedMinorVersion?: string;
1623
1826
  /**
@@ -1653,8 +1856,8 @@ export declare namespace EnvironmentTemplateVersionSummary {
1653
1856
  }
1654
1857
  export interface ListEnvironmentTemplateVersionsOutput {
1655
1858
  /**
1656
- * <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of an environment template,
1657
- * after the list of major or minor versions that was previously requested.</p>
1859
+ * <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of an environment template, after
1860
+ * the list of major or minor versions that was previously requested.</p>
1658
1861
  */
1659
1862
  nextToken?: string;
1660
1863
  /**
@@ -1674,7 +1877,7 @@ export interface UpdateEnvironmentTemplateVersionInput {
1674
1877
  */
1675
1878
  templateName: string | undefined;
1676
1879
  /**
1677
- * <p>To update a major version of an environment template, include <code>majorVersion</code>.</p>
1880
+ * <p>To update a major version of an environment template, include <code>major Version</code>.</p>
1678
1881
  */
1679
1882
  majorVersion: string | undefined;
1680
1883
  /**
@@ -1698,7 +1901,7 @@ export declare namespace UpdateEnvironmentTemplateVersionInput {
1698
1901
  }
1699
1902
  export interface UpdateEnvironmentTemplateVersionOutput {
1700
1903
  /**
1701
- * <p>The environment template version detail data that's returned by AWS Proton.</p>
1904
+ * <p>The environment template version detail data that's returned by Proton.</p>
1702
1905
  */
1703
1906
  environmentTemplateVersion: EnvironmentTemplateVersion | undefined;
1704
1907
  }
@@ -1708,160 +1911,799 @@ export declare namespace UpdateEnvironmentTemplateVersionOutput {
1708
1911
  */
1709
1912
  const filterSensitiveLog: (obj: UpdateEnvironmentTemplateVersionOutput) => any;
1710
1913
  }
1711
- export interface ListTagsForResourceInput {
1914
+ export declare enum SyncType {
1915
+ TEMPLATE_SYNC = "TEMPLATE_SYNC"
1916
+ }
1917
+ export interface GetRepositorySyncStatusInput {
1712
1918
  /**
1713
- * <p>The Amazon Resource Name (ARN) of the resource for the listed tags.</p>
1919
+ * <p>The repository name.</p>
1714
1920
  */
1715
- resourceArn: string | undefined;
1921
+ repositoryName: string | undefined;
1716
1922
  /**
1717
- * <p>A token to indicate the location of the next resource tag in the array of resource tags, after the list of resource tags that was
1718
- * previously requested.</p>
1923
+ * <p>The repository provider.</p>
1719
1924
  */
1720
- nextToken?: string;
1925
+ repositoryProvider: RepositoryProvider | string | undefined;
1721
1926
  /**
1722
- * <p>The maximum number of tags to list.</p>
1927
+ * <p>The repository branch.</p>
1723
1928
  */
1724
- maxResults?: number;
1929
+ branch: string | undefined;
1930
+ /**
1931
+ * <p>The repository sync type.</p>
1932
+ */
1933
+ syncType: SyncType | string | undefined;
1725
1934
  }
1726
- export declare namespace ListTagsForResourceInput {
1935
+ export declare namespace GetRepositorySyncStatusInput {
1727
1936
  /**
1728
1937
  * @internal
1729
1938
  */
1730
- const filterSensitiveLog: (obj: ListTagsForResourceInput) => any;
1939
+ const filterSensitiveLog: (obj: GetRepositorySyncStatusInput) => any;
1731
1940
  }
1732
- export interface ListTagsForResourceOutput {
1941
+ /**
1942
+ * <p>Repository sync event detail data for a sync attempt.</p>
1943
+ */
1944
+ export interface RepositorySyncEvent {
1733
1945
  /**
1734
- * <p>An array of resource tags with detail data.</p>
1946
+ * <p>The type of event.</p>
1735
1947
  */
1736
- tags: Tag[] | undefined;
1948
+ type: string | undefined;
1737
1949
  /**
1738
- * <p>A token to indicate the location of the next resource tag in the array of resource tags, after the current requested list of resource
1739
- * tags.</p>
1950
+ * <p>The external ID of the sync event.</p>
1740
1951
  */
1741
- nextToken?: string;
1952
+ externalId?: string;
1953
+ /**
1954
+ * <p>The time that the sync event occurred.</p>
1955
+ */
1956
+ time: Date | undefined;
1957
+ /**
1958
+ * <p>Event detail for a repository sync attempt.</p>
1959
+ */
1960
+ event: string | undefined;
1742
1961
  }
1743
- export declare namespace ListTagsForResourceOutput {
1962
+ export declare namespace RepositorySyncEvent {
1744
1963
  /**
1745
1964
  * @internal
1746
1965
  */
1747
- const filterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
1966
+ const filterSensitiveLog: (obj: RepositorySyncEvent) => any;
1748
1967
  }
1749
- export interface GetServiceInstanceInput {
1968
+ export declare enum RepositorySyncStatus {
1750
1969
  /**
1751
- * <p>The name of a service instance that you want to get the detail data for.</p>
1970
+ * The repository sync attempt has failed.
1971
+ *
1752
1972
  */
1753
- name: string | undefined;
1973
+ FAILED = "FAILED",
1754
1974
  /**
1755
- * <p>The name of the service that the service instance belongs to.</p>
1975
+ * A repository sync attempt has been created and will begin soon.
1976
+ *
1756
1977
  */
1757
- serviceName: string | undefined;
1978
+ INITIATED = "INITIATED",
1979
+ /**
1980
+ * A repository sync attempt has started and work is being done to reconcile the branch.
1981
+ *
1982
+ */
1983
+ IN_PROGRESS = "IN_PROGRESS",
1984
+ /**
1985
+ * The repository sync attempt didn't execute and was queued.
1986
+ *
1987
+ */
1988
+ QUEUED = "QUEUED",
1989
+ /**
1990
+ * The repository sync attempt has completed successfully.
1991
+ *
1992
+ */
1993
+ SUCCEEDED = "SUCCEEDED"
1758
1994
  }
1759
- export declare namespace GetServiceInstanceInput {
1995
+ /**
1996
+ * <p>Detail data for a repository sync attempt activated by a push to a repository.</p>
1997
+ */
1998
+ export interface RepositorySyncAttempt {
1999
+ /**
2000
+ * <p>The time when the sync attempt started.</p>
2001
+ */
2002
+ startedAt: Date | undefined;
2003
+ /**
2004
+ * <p>The sync attempt status.</p>
2005
+ */
2006
+ status: RepositorySyncStatus | string | undefined;
2007
+ /**
2008
+ * <p>Detail data for sync attempt events.</p>
2009
+ */
2010
+ events: RepositorySyncEvent[] | undefined;
2011
+ }
2012
+ export declare namespace RepositorySyncAttempt {
1760
2013
  /**
1761
2014
  * @internal
1762
2015
  */
1763
- const filterSensitiveLog: (obj: GetServiceInstanceInput) => any;
2016
+ const filterSensitiveLog: (obj: RepositorySyncAttempt) => any;
1764
2017
  }
1765
- export interface GetServiceInstanceOutput {
2018
+ export interface GetRepositorySyncStatusOutput {
1766
2019
  /**
1767
- * <p>The service instance detail data that's returned by AWS Proton.</p>
2020
+ * <p>The repository sync status detail data that's returned by Proton.</p>
1768
2021
  */
1769
- serviceInstance: ServiceInstance | undefined;
2022
+ latestSync?: RepositorySyncAttempt;
1770
2023
  }
1771
- export declare namespace GetServiceInstanceOutput {
2024
+ export declare namespace GetRepositorySyncStatusOutput {
1772
2025
  /**
1773
2026
  * @internal
1774
2027
  */
1775
- const filterSensitiveLog: (obj: GetServiceInstanceOutput) => any;
2028
+ const filterSensitiveLog: (obj: GetRepositorySyncStatusOutput) => any;
1776
2029
  }
1777
- export interface ListServiceInstancesInput {
2030
+ export declare enum TemplateType {
2031
+ ENVIRONMENT = "ENVIRONMENT",
2032
+ SERVICE = "SERVICE"
2033
+ }
2034
+ export interface GetTemplateSyncStatusInput {
1778
2035
  /**
1779
- * <p>The name of the service that the service instance belongs to.</p>
2036
+ * <p>The template name.</p>
1780
2037
  */
1781
- serviceName?: string;
2038
+ templateName: string | undefined;
1782
2039
  /**
1783
- * <p>A token to indicate the location of the next service in the array of service instances, after the list of service instances that was
1784
- * previously requested.</p>
2040
+ * <p>The template type.</p>
1785
2041
  */
1786
- nextToken?: string;
2042
+ templateType: TemplateType | string | undefined;
1787
2043
  /**
1788
- * <p>The maximum number of service instances to list.</p>
2044
+ * <p>The template version.</p>
1789
2045
  */
1790
- maxResults?: number;
2046
+ templateVersion: string | undefined;
1791
2047
  }
1792
- export declare namespace ListServiceInstancesInput {
2048
+ export declare namespace GetTemplateSyncStatusInput {
1793
2049
  /**
1794
2050
  * @internal
1795
2051
  */
1796
- const filterSensitiveLog: (obj: ListServiceInstancesInput) => any;
2052
+ const filterSensitiveLog: (obj: GetTemplateSyncStatusInput) => any;
1797
2053
  }
1798
2054
  /**
1799
- * <p>A summary of the service instance detail data.</p>
2055
+ * <p>Revision detail data for a commit and push that activates a sync attempt</p>
1800
2056
  */
1801
- export interface ServiceInstanceSummary {
1802
- /**
1803
- * <p>The name of the service instance.</p>
1804
- */
1805
- name: string | undefined;
1806
- /**
1807
- * <p>The Amazon Resource Name (ARN) of the service instance.</p>
1808
- */
1809
- arn: string | undefined;
2057
+ export interface Revision {
1810
2058
  /**
1811
- * <p>The time when the service instance was created.</p>
2059
+ * <p>The repository name.</p>
1812
2060
  */
1813
- createdAt: Date | undefined;
2061
+ repositoryName: string | undefined;
1814
2062
  /**
1815
- * <p>The time when a deployment of the service was last attempted.</p>
2063
+ * <p>The repository provider.</p>
1816
2064
  */
1817
- lastDeploymentAttemptedAt: Date | undefined;
2065
+ repositoryProvider: RepositoryProvider | string | undefined;
1818
2066
  /**
1819
- * <p>The time when the service was last deployed successfully.</p>
2067
+ * <p>The secure hash algorithm (SHA) hash for the revision.</p>
1820
2068
  */
1821
- lastDeploymentSucceededAt: Date | undefined;
2069
+ sha: string | undefined;
1822
2070
  /**
1823
- * <p>The name of the service that the service instance belongs to.</p>
2071
+ * <p>The repository directory changed by a commit and push that activated the sync attempt.</p>
1824
2072
  */
1825
- serviceName: string | undefined;
2073
+ directory: string | undefined;
1826
2074
  /**
1827
- * <p>The name of the environment that the service instance was deployed into.</p>
2075
+ * <p>The repository branch.</p>
1828
2076
  */
1829
- environmentName: string | undefined;
2077
+ branch: string | undefined;
2078
+ }
2079
+ export declare namespace Revision {
1830
2080
  /**
1831
- * <p>The name of the service template.</p>
2081
+ * @internal
1832
2082
  */
1833
- templateName: string | undefined;
2083
+ const filterSensitiveLog: (obj: Revision) => any;
2084
+ }
2085
+ /**
2086
+ * <p>Detail data for a resource sync event.</p>
2087
+ */
2088
+ export interface ResourceSyncEvent {
1834
2089
  /**
1835
- * <p>The ID of the major version of a service template.</p>
2090
+ * <p>The type of event.</p>
1836
2091
  */
1837
- templateMajorVersion: string | undefined;
2092
+ type: string | undefined;
1838
2093
  /**
1839
- * <p>The ID of the minor version of a service template.</p>
2094
+ * <p>The external ID for the event.</p>
1840
2095
  */
1841
- templateMinorVersion: string | undefined;
2096
+ externalId?: string;
1842
2097
  /**
1843
- * <p>The service instance deployment status.</p>
2098
+ * <p>The time when the event occurred.</p>
1844
2099
  */
1845
- deploymentStatus: DeploymentStatus | string | undefined;
2100
+ time: Date | undefined;
1846
2101
  /**
1847
- * <p>A service instance deployment status message.</p>
2102
+ * <p>A resource sync event.</p>
1848
2103
  */
1849
- deploymentStatusMessage?: string;
2104
+ event: string | undefined;
1850
2105
  }
1851
- export declare namespace ServiceInstanceSummary {
2106
+ export declare namespace ResourceSyncEvent {
1852
2107
  /**
1853
2108
  * @internal
1854
2109
  */
1855
- const filterSensitiveLog: (obj: ServiceInstanceSummary) => any;
2110
+ const filterSensitiveLog: (obj: ResourceSyncEvent) => any;
1856
2111
  }
1857
- export interface ListServiceInstancesOutput {
2112
+ export declare enum ResourceSyncStatus {
1858
2113
  /**
1859
- * <p>A token to indicate the location of the next service instance in the array of service instances, after the current requested list of
1860
- * service instances.</p>
2114
+ * Syncing has failed.
2115
+ *
1861
2116
  */
1862
- nextToken?: string;
2117
+ FAILED = "FAILED",
1863
2118
  /**
1864
- * <p>An array of service instances with summaries of detail data.</p>
2119
+ * A sync attempt has been created and will begin soon.
2120
+ *
2121
+ */
2122
+ INITIATED = "INITIATED",
2123
+ /**
2124
+ * Syncing has started and work is being done to reconcile state.
2125
+ *
2126
+ */
2127
+ IN_PROGRESS = "IN_PROGRESS",
2128
+ /**
2129
+ * Syncing has completed successfully.
2130
+ *
2131
+ */
2132
+ SUCCEEDED = "SUCCEEDED"
2133
+ }
2134
+ /**
2135
+ * <p>Detail data for a resource sync attempt activated by a push to a repository.</p>
2136
+ */
2137
+ export interface ResourceSyncAttempt {
2138
+ /**
2139
+ * <p>Detail data for the initial repository commit, path and push.</p>
2140
+ */
2141
+ initialRevision: Revision | undefined;
2142
+ /**
2143
+ * <p>Detail data for the target revision.</p>
2144
+ */
2145
+ targetRevision: Revision | undefined;
2146
+ /**
2147
+ * <p>The resource that is synced to.</p>
2148
+ */
2149
+ target: string | undefined;
2150
+ /**
2151
+ * <p>The time when the sync attempt started.</p>
2152
+ */
2153
+ startedAt: Date | undefined;
2154
+ /**
2155
+ * <p>The status of the sync attempt.</p>
2156
+ */
2157
+ status: ResourceSyncStatus | string | undefined;
2158
+ /**
2159
+ * <p>An array of events with detail data.</p>
2160
+ */
2161
+ events: ResourceSyncEvent[] | undefined;
2162
+ }
2163
+ export declare namespace ResourceSyncAttempt {
2164
+ /**
2165
+ * @internal
2166
+ */
2167
+ const filterSensitiveLog: (obj: ResourceSyncAttempt) => any;
2168
+ }
2169
+ export interface GetTemplateSyncStatusOutput {
2170
+ /**
2171
+ * <p>The details of the last sync that's returned by Proton.</p>
2172
+ */
2173
+ latestSync?: ResourceSyncAttempt;
2174
+ /**
2175
+ * <p>The details of the last successful sync that's returned by Proton.</p>
2176
+ */
2177
+ latestSuccessfulSync?: ResourceSyncAttempt;
2178
+ /**
2179
+ * <p>The template sync desired state that's returned by Proton.</p>
2180
+ */
2181
+ desiredState?: Revision;
2182
+ }
2183
+ export declare namespace GetTemplateSyncStatusOutput {
2184
+ /**
2185
+ * @internal
2186
+ */
2187
+ const filterSensitiveLog: (obj: GetTemplateSyncStatusOutput) => any;
2188
+ }
2189
+ export interface ListRepositorySyncDefinitionsInput {
2190
+ /**
2191
+ * <p>The repository name.</p>
2192
+ */
2193
+ repositoryName: string | undefined;
2194
+ /**
2195
+ * <p>The repository provider.</p>
2196
+ */
2197
+ repositoryProvider: RepositoryProvider | string | undefined;
2198
+ /**
2199
+ * <p>The sync type. The only supported value is <code>TEMPLATE_SYNC</code>.</p>
2200
+ */
2201
+ syncType: SyncType | string | undefined;
2202
+ /**
2203
+ * <p>A token to indicate the location of the next repository sync definition in the array of repository sync definitions, after the list of
2204
+ * repository sync definitions previously requested.</p>
2205
+ */
2206
+ nextToken?: string;
2207
+ }
2208
+ export declare namespace ListRepositorySyncDefinitionsInput {
2209
+ /**
2210
+ * @internal
2211
+ */
2212
+ const filterSensitiveLog: (obj: ListRepositorySyncDefinitionsInput) => any;
2213
+ }
2214
+ /**
2215
+ * <p>The repository sync definition.</p>
2216
+ */
2217
+ export interface RepositorySyncDefinition {
2218
+ /**
2219
+ * <p>The resource that is synced to.</p>
2220
+ */
2221
+ target: string | undefined;
2222
+ /**
2223
+ * <p>The resource that is synced from.</p>
2224
+ */
2225
+ parent: string | undefined;
2226
+ /**
2227
+ * <p>The repository branch.</p>
2228
+ */
2229
+ branch: string | undefined;
2230
+ /**
2231
+ * <p>The directory in the repository.</p>
2232
+ */
2233
+ directory: string | undefined;
2234
+ }
2235
+ export declare namespace RepositorySyncDefinition {
2236
+ /**
2237
+ * @internal
2238
+ */
2239
+ const filterSensitiveLog: (obj: RepositorySyncDefinition) => any;
2240
+ }
2241
+ export interface ListRepositorySyncDefinitionsOutput {
2242
+ /**
2243
+ * <p>A token to indicate the location of the next repository sync definition in the array of repository sync definitions, after the current
2244
+ * requested list of repository sync definitions.</p>
2245
+ */
2246
+ nextToken?: string;
2247
+ /**
2248
+ * <p>An array of repository sync definitions.</p>
2249
+ */
2250
+ syncDefinitions: RepositorySyncDefinition[] | undefined;
2251
+ }
2252
+ export declare namespace ListRepositorySyncDefinitionsOutput {
2253
+ /**
2254
+ * @internal
2255
+ */
2256
+ const filterSensitiveLog: (obj: ListRepositorySyncDefinitionsOutput) => any;
2257
+ }
2258
+ export interface ListTagsForResourceInput {
2259
+ /**
2260
+ * <p>The Amazon Resource Name (ARN) of the resource for the listed tags.</p>
2261
+ */
2262
+ resourceArn: string | undefined;
2263
+ /**
2264
+ * <p>A token to indicate the location of the next resource tag in the array of resource tags, after the list of resource tags that was previously
2265
+ * requested.</p>
2266
+ */
2267
+ nextToken?: string;
2268
+ /**
2269
+ * <p>The maximum number of tags to list.</p>
2270
+ */
2271
+ maxResults?: number;
2272
+ }
2273
+ export declare namespace ListTagsForResourceInput {
2274
+ /**
2275
+ * @internal
2276
+ */
2277
+ const filterSensitiveLog: (obj: ListTagsForResourceInput) => any;
2278
+ }
2279
+ export interface ListTagsForResourceOutput {
2280
+ /**
2281
+ * <p>An array of resource tags with detail data.</p>
2282
+ */
2283
+ tags: Tag[] | undefined;
2284
+ /**
2285
+ * <p>A token to indicate the location of the next resource tag in the array of resource tags, after the current requested list of resource
2286
+ * tags.</p>
2287
+ */
2288
+ nextToken?: string;
2289
+ }
2290
+ export declare namespace ListTagsForResourceOutput {
2291
+ /**
2292
+ * @internal
2293
+ */
2294
+ const filterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
2295
+ }
2296
+ export declare enum ResourceDeploymentStatus {
2297
+ FAILED = "FAILED",
2298
+ IN_PROGRESS = "IN_PROGRESS",
2299
+ SUCCEEDED = "SUCCEEDED"
2300
+ }
2301
+ export interface NotifyResourceDeploymentStatusChangeInput {
2302
+ /**
2303
+ * <p>The provisioned resource Amazon Resource Name (ARN).</p>
2304
+ */
2305
+ resourceArn: string | undefined;
2306
+ /**
2307
+ * <p>The status of your provisioned resource.</p>
2308
+ */
2309
+ status: ResourceDeploymentStatus | string | undefined;
2310
+ /**
2311
+ * <p>The provisioned resource state change detail data that's returned by Proton.</p>
2312
+ */
2313
+ outputs?: Output[];
2314
+ /**
2315
+ * <p>The deployment ID for your provisioned resource.</p>
2316
+ */
2317
+ deploymentId?: string;
2318
+ /**
2319
+ * <p>The deployment status message for your provisioned resource.</p>
2320
+ */
2321
+ statusMessage?: string;
2322
+ }
2323
+ export declare namespace NotifyResourceDeploymentStatusChangeInput {
2324
+ /**
2325
+ * @internal
2326
+ */
2327
+ const filterSensitiveLog: (obj: NotifyResourceDeploymentStatusChangeInput) => any;
2328
+ }
2329
+ export interface NotifyResourceDeploymentStatusChangeOutput {
2330
+ }
2331
+ export declare namespace NotifyResourceDeploymentStatusChangeOutput {
2332
+ /**
2333
+ * @internal
2334
+ */
2335
+ const filterSensitiveLog: (obj: NotifyResourceDeploymentStatusChangeOutput) => any;
2336
+ }
2337
+ export interface CreateRepositoryInput {
2338
+ /**
2339
+ * <p>The repository provider.</p>
2340
+ */
2341
+ provider: RepositoryProvider | string | undefined;
2342
+ /**
2343
+ * <p>The repository name, for example <code>myrepos/myrepo</code>.</p>
2344
+ */
2345
+ name: string | undefined;
2346
+ /**
2347
+ * <p>The Amazon Resource Name (ARN) of your Amazon Web Services CodeStar connection. For more information, see <a href="https://docs.aws.amazon.com/setting-up-for-service">Setting up for Proton</a> in the <i>Proton Administrator Guide</i>.</p>
2348
+ */
2349
+ connectionArn: string | undefined;
2350
+ /**
2351
+ * <p>The ARN of your customer Amazon Web Services Key Management Service (Amazon Web Services KMS) key.</p>
2352
+ */
2353
+ encryptionKey?: string;
2354
+ }
2355
+ export declare namespace CreateRepositoryInput {
2356
+ /**
2357
+ * @internal
2358
+ */
2359
+ const filterSensitiveLog: (obj: CreateRepositoryInput) => any;
2360
+ }
2361
+ /**
2362
+ * <p>Detail date for a repository that has been registered with Proton.</p>
2363
+ */
2364
+ export interface Repository {
2365
+ /**
2366
+ * <p>The repository Amazon Resource Name (ARN).</p>
2367
+ */
2368
+ arn: string | undefined;
2369
+ /**
2370
+ * <p>The repository provider.</p>
2371
+ */
2372
+ provider: RepositoryProvider | string | undefined;
2373
+ /**
2374
+ * <p>The repository name.</p>
2375
+ */
2376
+ name: string | undefined;
2377
+ /**
2378
+ * <p>The repository Amazon Web Services CodeStar connection that connects Proton to your repository.</p>
2379
+ */
2380
+ connectionArn: string | undefined;
2381
+ /**
2382
+ * <p>Your customer Amazon Web Services KMS encryption key.</p>
2383
+ */
2384
+ encryptionKey?: string;
2385
+ }
2386
+ export declare namespace Repository {
2387
+ /**
2388
+ * @internal
2389
+ */
2390
+ const filterSensitiveLog: (obj: Repository) => any;
2391
+ }
2392
+ export interface CreateRepositoryOutput {
2393
+ /**
2394
+ * <p>The repository detail data that's returned by Proton.</p>
2395
+ */
2396
+ repository: Repository | undefined;
2397
+ }
2398
+ export declare namespace CreateRepositoryOutput {
2399
+ /**
2400
+ * @internal
2401
+ */
2402
+ const filterSensitiveLog: (obj: CreateRepositoryOutput) => any;
2403
+ }
2404
+ export interface DeleteRepositoryInput {
2405
+ /**
2406
+ * <p>The repository provider.</p>
2407
+ */
2408
+ provider: RepositoryProvider | string | undefined;
2409
+ /**
2410
+ * <p>The name of the repository.</p>
2411
+ */
2412
+ name: string | undefined;
2413
+ }
2414
+ export declare namespace DeleteRepositoryInput {
2415
+ /**
2416
+ * @internal
2417
+ */
2418
+ const filterSensitiveLog: (obj: DeleteRepositoryInput) => any;
2419
+ }
2420
+ export interface DeleteRepositoryOutput {
2421
+ /**
2422
+ * <p>The repository detail data that's returned by Proton.</p>
2423
+ */
2424
+ repository?: Repository;
2425
+ }
2426
+ export declare namespace DeleteRepositoryOutput {
2427
+ /**
2428
+ * @internal
2429
+ */
2430
+ const filterSensitiveLog: (obj: DeleteRepositoryOutput) => any;
2431
+ }
2432
+ export interface GetRepositoryInput {
2433
+ /**
2434
+ * <p>The repository provider.</p>
2435
+ */
2436
+ provider: RepositoryProvider | string | undefined;
2437
+ /**
2438
+ * <p>The repository name, for example <code>myrepos/myrepo</code>.</p>
2439
+ */
2440
+ name: string | undefined;
2441
+ }
2442
+ export declare namespace GetRepositoryInput {
2443
+ /**
2444
+ * @internal
2445
+ */
2446
+ const filterSensitiveLog: (obj: GetRepositoryInput) => any;
2447
+ }
2448
+ export interface GetRepositoryOutput {
2449
+ /**
2450
+ * <p>The repository detail data that's returned by Proton.</p>
2451
+ */
2452
+ repository: Repository | undefined;
2453
+ }
2454
+ export declare namespace GetRepositoryOutput {
2455
+ /**
2456
+ * @internal
2457
+ */
2458
+ const filterSensitiveLog: (obj: GetRepositoryOutput) => any;
2459
+ }
2460
+ export interface ListRepositoriesInput {
2461
+ /**
2462
+ * <p>A token to indicate the location of the next repository in the array of repositories, after the list of repositories previously
2463
+ * requested.</p>
2464
+ */
2465
+ nextToken?: string;
2466
+ /**
2467
+ * <p>The maximum number of repositories to list.</p>
2468
+ */
2469
+ maxResults?: number;
2470
+ }
2471
+ export declare namespace ListRepositoriesInput {
2472
+ /**
2473
+ * @internal
2474
+ */
2475
+ const filterSensitiveLog: (obj: ListRepositoriesInput) => any;
2476
+ }
2477
+ /**
2478
+ * <p>A summary of detail data for a registered repository.</p>
2479
+ */
2480
+ export interface RepositorySummary {
2481
+ /**
2482
+ * <p>The Amazon Resource Name (ARN) for a repository.</p>
2483
+ */
2484
+ arn: string | undefined;
2485
+ /**
2486
+ * <p>The repository provider.</p>
2487
+ */
2488
+ provider: RepositoryProvider | string | undefined;
2489
+ /**
2490
+ * <p>The repository name.</p>
2491
+ */
2492
+ name: string | undefined;
2493
+ }
2494
+ export declare namespace RepositorySummary {
2495
+ /**
2496
+ * @internal
2497
+ */
2498
+ const filterSensitiveLog: (obj: RepositorySummary) => any;
2499
+ }
2500
+ export interface ListRepositoriesOutput {
2501
+ /**
2502
+ * <p>A token to indicate the location of the next repository in the array of repositories, after the current requested list of repositories.
2503
+ * </p>
2504
+ */
2505
+ nextToken?: string;
2506
+ /**
2507
+ * <p>An array of repositories.</p>
2508
+ */
2509
+ repositories: RepositorySummary[] | undefined;
2510
+ }
2511
+ export declare namespace ListRepositoriesOutput {
2512
+ /**
2513
+ * @internal
2514
+ */
2515
+ const filterSensitiveLog: (obj: ListRepositoriesOutput) => any;
2516
+ }
2517
+ export interface ListServiceInstanceOutputsInput {
2518
+ /**
2519
+ * <p>The service instance name.</p>
2520
+ */
2521
+ serviceInstanceName: string | undefined;
2522
+ /**
2523
+ * <p>The service name.</p>
2524
+ */
2525
+ serviceName: string | undefined;
2526
+ /**
2527
+ * <p>A token to indicate the location of the next output in the array of outputs, after the list of outputs that was previously requested.</p>
2528
+ */
2529
+ nextToken?: string;
2530
+ }
2531
+ export declare namespace ListServiceInstanceOutputsInput {
2532
+ /**
2533
+ * @internal
2534
+ */
2535
+ const filterSensitiveLog: (obj: ListServiceInstanceOutputsInput) => any;
2536
+ }
2537
+ export interface ListServiceInstanceOutputsOutput {
2538
+ /**
2539
+ * <p>A token to indicate the location of the next output in the array of outputs, after the current requested list of outputs.</p>
2540
+ */
2541
+ nextToken?: string;
2542
+ /**
2543
+ * <p>An array of service instance infrastructure as code outputs.</p>
2544
+ */
2545
+ outputs: Output[] | undefined;
2546
+ }
2547
+ export declare namespace ListServiceInstanceOutputsOutput {
2548
+ /**
2549
+ * @internal
2550
+ */
2551
+ const filterSensitiveLog: (obj: ListServiceInstanceOutputsOutput) => any;
2552
+ }
2553
+ export interface ListServiceInstanceProvisionedResourcesInput {
2554
+ /**
2555
+ * <p>The service name.</p>
2556
+ */
2557
+ serviceName: string | undefined;
2558
+ /**
2559
+ * <p>The service instance name.</p>
2560
+ */
2561
+ serviceInstanceName: string | undefined;
2562
+ /**
2563
+ * <p>A token to indicate the location of the next provisioned resource in the array of provisioned resources, after the list of provisioned
2564
+ * resources that was previously requested.</p>
2565
+ */
2566
+ nextToken?: string;
2567
+ }
2568
+ export declare namespace ListServiceInstanceProvisionedResourcesInput {
2569
+ /**
2570
+ * @internal
2571
+ */
2572
+ const filterSensitiveLog: (obj: ListServiceInstanceProvisionedResourcesInput) => any;
2573
+ }
2574
+ export interface ListServiceInstanceProvisionedResourcesOutput {
2575
+ /**
2576
+ * <p>A token to indicate the location of the next provisioned resource in the array of provisioned resources, after the current requested list of
2577
+ * provisioned resources.</p>
2578
+ */
2579
+ nextToken?: string;
2580
+ /**
2581
+ * <p>An array of provisioned resources for a service instance.</p>
2582
+ */
2583
+ provisionedResources: ProvisionedResource[] | undefined;
2584
+ }
2585
+ export declare namespace ListServiceInstanceProvisionedResourcesOutput {
2586
+ /**
2587
+ * @internal
2588
+ */
2589
+ const filterSensitiveLog: (obj: ListServiceInstanceProvisionedResourcesOutput) => any;
2590
+ }
2591
+ export interface GetServiceInstanceInput {
2592
+ /**
2593
+ * <p>The name of a service instance that you want to get the detail data for.</p>
2594
+ */
2595
+ name: string | undefined;
2596
+ /**
2597
+ * <p>The name of the service that the service instance belongs to.</p>
2598
+ */
2599
+ serviceName: string | undefined;
2600
+ }
2601
+ export declare namespace GetServiceInstanceInput {
2602
+ /**
2603
+ * @internal
2604
+ */
2605
+ const filterSensitiveLog: (obj: GetServiceInstanceInput) => any;
2606
+ }
2607
+ export interface GetServiceInstanceOutput {
2608
+ /**
2609
+ * <p>The service instance detail data that's returned by Proton.</p>
2610
+ */
2611
+ serviceInstance: ServiceInstance | undefined;
2612
+ }
2613
+ export declare namespace GetServiceInstanceOutput {
2614
+ /**
2615
+ * @internal
2616
+ */
2617
+ const filterSensitiveLog: (obj: GetServiceInstanceOutput) => any;
2618
+ }
2619
+ export interface ListServiceInstancesInput {
2620
+ /**
2621
+ * <p>The name of the service that the service instance belongs to.</p>
2622
+ */
2623
+ serviceName?: string;
2624
+ /**
2625
+ * <p>A token to indicate the location of the next service in the array of service instances, after the list of service instances that was
2626
+ * previously requested.</p>
2627
+ */
2628
+ nextToken?: string;
2629
+ /**
2630
+ * <p>The maximum number of service instances to list.</p>
2631
+ */
2632
+ maxResults?: number;
2633
+ }
2634
+ export declare namespace ListServiceInstancesInput {
2635
+ /**
2636
+ * @internal
2637
+ */
2638
+ const filterSensitiveLog: (obj: ListServiceInstancesInput) => any;
2639
+ }
2640
+ /**
2641
+ * <p>A summary of the service instance detail data.</p>
2642
+ */
2643
+ export interface ServiceInstanceSummary {
2644
+ /**
2645
+ * <p>The name of the service instance.</p>
2646
+ */
2647
+ name: string | undefined;
2648
+ /**
2649
+ * <p>The Amazon Resource Name (ARN) of the service instance.</p>
2650
+ */
2651
+ arn: string | undefined;
2652
+ /**
2653
+ * <p>The time when the service instance was created.</p>
2654
+ */
2655
+ createdAt: Date | undefined;
2656
+ /**
2657
+ * <p>The time when a deployment of the service was last attempted.</p>
2658
+ */
2659
+ lastDeploymentAttemptedAt: Date | undefined;
2660
+ /**
2661
+ * <p>The time when the service was last deployed successfully.</p>
2662
+ */
2663
+ lastDeploymentSucceededAt: Date | undefined;
2664
+ /**
2665
+ * <p>The name of the service that the service instance belongs to.</p>
2666
+ */
2667
+ serviceName: string | undefined;
2668
+ /**
2669
+ * <p>The name of the environment that the service instance was deployed into.</p>
2670
+ */
2671
+ environmentName: string | undefined;
2672
+ /**
2673
+ * <p>The name of the service template.</p>
2674
+ */
2675
+ templateName: string | undefined;
2676
+ /**
2677
+ * <p>The service instance template major version.</p>
2678
+ */
2679
+ templateMajorVersion: string | undefined;
2680
+ /**
2681
+ * <p>The service instance template minor version.</p>
2682
+ */
2683
+ templateMinorVersion: string | undefined;
2684
+ /**
2685
+ * <p>The service instance deployment status.</p>
2686
+ */
2687
+ deploymentStatus: DeploymentStatus | string | undefined;
2688
+ /**
2689
+ * <p>A service instance deployment status message.</p>
2690
+ */
2691
+ deploymentStatusMessage?: string;
2692
+ }
2693
+ export declare namespace ServiceInstanceSummary {
2694
+ /**
2695
+ * @internal
2696
+ */
2697
+ const filterSensitiveLog: (obj: ServiceInstanceSummary) => any;
2698
+ }
2699
+ export interface ListServiceInstancesOutput {
2700
+ /**
2701
+ * <p>A token to indicate the location of the next service instance in the array of service instances, after the current requested list of service
2702
+ * instances.</p>
2703
+ */
2704
+ nextToken?: string;
2705
+ /**
2706
+ * <p>An array of service instances with summaries of detail data.</p>
1865
2707
  */
1866
2708
  serviceInstances: ServiceInstanceSummary[] | undefined;
1867
2709
  }
@@ -1882,43 +2724,41 @@ export interface UpdateServiceInstanceInput {
1882
2724
  serviceName: string | undefined;
1883
2725
  /**
1884
2726
  * <p>The deployment type.</p>
1885
- * <p>There are four modes for updating a service instance as described in the following. The <code>deploymentType</code> field defines the
1886
- * mode.</p>
1887
- * <dl>
2727
+ * <p>There are four modes for updating a service instance as described in the following. The <code>deploymentType</code> field defines the
2728
+ * mode.</p>
2729
+ * <dl>
1888
2730
  * <dt/>
1889
2731
  * <dd>
1890
- * <p>
2732
+ * <p>
1891
2733
  * <code>NONE</code>
1892
2734
  * </p>
1893
- * <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
1894
- * </dd>
2735
+ * <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
2736
+ * </dd>
1895
2737
  * <dt/>
1896
2738
  * <dd>
1897
- * <p>
2739
+ * <p>
1898
2740
  * <code>CURRENT_VERSION</code>
1899
2741
  * </p>
1900
- * <p>In this mode, the service instance is deployed and updated with the new spec that you provide. Only requested parameters are
1901
- * updated. <i>Don’t</i> include minor or major version parameters when you use this
1902
- * <code>deployment-type</code>.</p>
1903
- * </dd>
2742
+ * <p>In this mode, the service instance is deployed and updated with the new spec that you provide. Only requested parameters are updated.
2743
+ * <i>Don’t</i> include minor or major version parameters when you use this <code>deployment-type</code>.</p>
2744
+ * </dd>
1904
2745
  * <dt/>
1905
2746
  * <dd>
1906
- * <p>
2747
+ * <p>
1907
2748
  * <code>MINOR_VERSION</code>
1908
2749
  * </p>
1909
- * <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) minor version of the
1910
- * current major version in use, by default. You can also specify a different minor version of the current major version in
1911
- * use.</p>
1912
- * </dd>
2750
+ * <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) minor version of the current major
2751
+ * version in use, by default. You can also specify a different minor version of the current major version in use.</p>
2752
+ * </dd>
1913
2753
  * <dt/>
1914
2754
  * <dd>
1915
- * <p>
2755
+ * <p>
1916
2756
  * <code>MAJOR_VERSION</code>
1917
2757
  * </p>
1918
- * <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) major and minor version
1919
- * of the current template, by default. You can also specify a different major version that is higher than the major version in
1920
- * use and a minor version (optional).</p>
1921
- * </dd>
2758
+ * <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) major and minor version of the current
2759
+ * template, by default. You can also specify a different major version that is higher than the major version in use and a minor version
2760
+ * (optional).</p>
2761
+ * </dd>
1922
2762
  * </dl>
1923
2763
  */
1924
2764
  deploymentType: DeploymentUpdateType | string | undefined;
@@ -1943,7 +2783,7 @@ export declare namespace UpdateServiceInstanceInput {
1943
2783
  }
1944
2784
  export interface UpdateServiceInstanceOutput {
1945
2785
  /**
1946
- * <p>The service instance summary data returned by AWS Proton.</p>
2786
+ * <p>The service instance summary data returned by Proton.</p>
1947
2787
  */
1948
2788
  serviceInstance: ServiceInstance | undefined;
1949
2789
  }
@@ -1953,6 +2793,72 @@ export declare namespace UpdateServiceInstanceOutput {
1953
2793
  */
1954
2794
  const filterSensitiveLog: (obj: UpdateServiceInstanceOutput) => any;
1955
2795
  }
2796
+ export interface ListServicePipelineOutputsInput {
2797
+ /**
2798
+ * <p>The service name.</p>
2799
+ */
2800
+ serviceName: string | undefined;
2801
+ /**
2802
+ * <p>A token to indicate the location of the next output in the array of outputs, after the list of outputs that was previously requested.</p>
2803
+ */
2804
+ nextToken?: string;
2805
+ }
2806
+ export declare namespace ListServicePipelineOutputsInput {
2807
+ /**
2808
+ * @internal
2809
+ */
2810
+ const filterSensitiveLog: (obj: ListServicePipelineOutputsInput) => any;
2811
+ }
2812
+ export interface ListServicePipelineOutputsOutput {
2813
+ /**
2814
+ * <p>A token to indicate the location of the next output in the array of outputs, after the current requested list of outputs.</p>
2815
+ */
2816
+ nextToken?: string;
2817
+ /**
2818
+ * <p>An array of outputs.</p>
2819
+ */
2820
+ outputs: Output[] | undefined;
2821
+ }
2822
+ export declare namespace ListServicePipelineOutputsOutput {
2823
+ /**
2824
+ * @internal
2825
+ */
2826
+ const filterSensitiveLog: (obj: ListServicePipelineOutputsOutput) => any;
2827
+ }
2828
+ export interface ListServicePipelineProvisionedResourcesInput {
2829
+ /**
2830
+ * <p>The service name.</p>
2831
+ */
2832
+ serviceName: string | undefined;
2833
+ /**
2834
+ * <p>A token to indicate the location of the next provisioned resource in the array of provisioned resources, after the list of provisioned
2835
+ * resources that was previously requested.</p>
2836
+ */
2837
+ nextToken?: string;
2838
+ }
2839
+ export declare namespace ListServicePipelineProvisionedResourcesInput {
2840
+ /**
2841
+ * @internal
2842
+ */
2843
+ const filterSensitiveLog: (obj: ListServicePipelineProvisionedResourcesInput) => any;
2844
+ }
2845
+ export interface ListServicePipelineProvisionedResourcesOutput {
2846
+ /**
2847
+ * <p>A token to indicate the location of the next provisioned resource in the array of provisioned resources, after the current requested list of
2848
+ * provisioned resources.</p>
2849
+ */
2850
+ nextToken?: string;
2851
+ /**
2852
+ * <p>An array of provisioned resources for a service and pipeline.</p>
2853
+ */
2854
+ provisionedResources: ProvisionedResource[] | undefined;
2855
+ }
2856
+ export declare namespace ListServicePipelineProvisionedResourcesOutput {
2857
+ /**
2858
+ * @internal
2859
+ */
2860
+ const filterSensitiveLog: (obj: ListServicePipelineProvisionedResourcesOutput) => any;
2861
+ }
1956
2862
  export interface UpdateServicePipelineInput {
1957
2863
  /**
1958
2864
  * <p>The name of the service to that the pipeline is associated with.</p>
@@ -1964,43 +2870,41 @@ export interface UpdateServicePipelineInput {
1964
2870
  spec: string | undefined;
1965
2871
  /**
1966
2872
  * <p>The deployment type.</p>
1967
- * <p>There are four modes for updating a service pipeline as described in the following. The <code>deploymentType</code> field defines the
1968
- * mode.</p>
1969
- * <dl>
2873
+ * <p>There are four modes for updating a service pipeline as described in the following. The <code>deploymentType</code> field defines the
2874
+ * mode.</p>
2875
+ * <dl>
1970
2876
  * <dt/>
1971
2877
  * <dd>
1972
- * <p>
2878
+ * <p>
1973
2879
  * <code>NONE</code>
1974
2880
  * </p>
1975
- * <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
1976
- * </dd>
2881
+ * <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
2882
+ * </dd>
1977
2883
  * <dt/>
1978
2884
  * <dd>
1979
- * <p>
2885
+ * <p>
1980
2886
  * <code>CURRENT_VERSION</code>
1981
2887
  * </p>
1982
- * <p>In this mode, the service pipeline is deployed and updated with the new spec that you provide. Only requested parameters are
1983
- * updated. <i>Don’t</i> include minor or major version parameters when you use this
1984
- * <code>deployment-type</code>.</p>
1985
- * </dd>
2888
+ * <p>In this mode, the service pipeline is deployed and updated with the new spec that you provide. Only requested parameters are updated.
2889
+ * <i>Don’t</i> include minor or major version parameters when you use this <code>deployment-type</code>.</p>
2890
+ * </dd>
1986
2891
  * <dt/>
1987
2892
  * <dd>
1988
- * <p>
2893
+ * <p>
1989
2894
  * <code>MINOR_VERSION</code>
1990
2895
  * </p>
1991
- * <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) minor version of the
1992
- * current major version in use, by default. You can also specify a different minor version of the current major version in
1993
- * use.</p>
1994
- * </dd>
2896
+ * <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) minor version of the current major
2897
+ * version in use, by default. You can also specify a different minor version of the current major version in use.</p>
2898
+ * </dd>
1995
2899
  * <dt/>
1996
2900
  * <dd>
1997
- * <p>
2901
+ * <p>
1998
2902
  * <code>MAJOR_VERSION</code>
1999
2903
  * </p>
2000
- * <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) major and minor version
2001
- * of the current template, by default. You can also specify a different major version that is higher than the major version in
2002
- * use and a minor version (optional).</p>
2003
- * </dd>
2904
+ * <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) major and minor version of the current
2905
+ * template, by default. You can also specify a different major version that is higher than the major version in use and a minor version
2906
+ * (optional).</p>
2907
+ * </dd>
2004
2908
  * </dl>
2005
2909
  */
2006
2910
  deploymentType: DeploymentUpdateType | string | undefined;
@@ -2021,7 +2925,7 @@ export declare namespace UpdateServicePipelineInput {
2021
2925
  }
2022
2926
  export interface UpdateServicePipelineOutput {
2023
2927
  /**
2024
- * <p>The pipeline details returned by AWS Proton.</p>
2928
+ * <p>The pipeline details returned by Proton.</p>
2025
2929
  */
2026
2930
  pipeline: ServicePipeline | undefined;
2027
2931
  }
@@ -2037,7 +2941,7 @@ export interface CreateServiceInput {
2037
2941
  */
2038
2942
  name: string | undefined;
2039
2943
  /**
2040
- * <p>A description of the AWS Proton service.</p>
2944
+ * <p>A description of the Proton service.</p>
2041
2945
  */
2042
2946
  description?: string;
2043
2947
  /**
@@ -2045,39 +2949,40 @@ export interface CreateServiceInput {
2045
2949
  */
2046
2950
  templateName: string | undefined;
2047
2951
  /**
2048
- * <p>The ID of the major version of the service template that was used to create the service.</p>
2952
+ * <p>The major version of the service template that was used to create the service.</p>
2049
2953
  */
2050
2954
  templateMajorVersion: string | undefined;
2051
2955
  /**
2052
- * <p>The ID of the minor version of the service template that was used to create the service.</p>
2956
+ * <p>The minor version of the service template that was used to create the service.</p>
2053
2957
  */
2054
2958
  templateMinorVersion?: string;
2055
2959
  /**
2056
2960
  * <p>A link to a spec file that provides inputs as defined in the service template bundle schema file. The spec file is in YAML format. Don’t
2057
- * include pipeline inputs in the spec if your service template <i>doesn’t</i> include a service pipeline. For more
2058
- * information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-create-svc.html.html">Create a service</a> in the
2059
- * <i>AWS Proton Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-create.html">Create a service</a> in the <i>AWS Proton User Guide</i>.</p>
2961
+ * include pipeline inputs in the spec if your service template <i>doesn’t</i> include a service pipeline. For more information, see
2962
+ * <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-create-svc.html.html">Create a service</a> in the <i>Proton
2963
+ * Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-create.html">Create a service</a> in the
2964
+ * <i>Proton User Guide</i>.</p>
2060
2965
  */
2061
2966
  spec: string | undefined;
2062
2967
  /**
2063
- * <p>The Amazon Resource Name (ARN) of the repository connection. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/setting-up-for-service.html#setting-up-vcontrol">Set up repository connection</a> in the
2064
- * <i>AWS Proton Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/proton-setup.html#setup-repo-connection">Setting up with AWS Proton</a> in the <i>AWS Proton
2065
- * User Guide</i>. <i>Don't</i> include this parameter if your service template <i>doesn't</i> include
2066
- * a service pipeline.</p>
2968
+ * <p>The Amazon Resource Name (ARN) of the repository connection. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/setting-up-for-service.html#setting-up-vcontrol">Set up repository connection</a> in the <i>Proton
2969
+ * Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/proton-setup.html#setup-repo-connection">Setting up
2970
+ * with Proton</a> in the <i>Proton User Guide</i>. <i>Don't</i> include this parameter if your service
2971
+ * template <i>doesn't</i> include a service pipeline.</p>
2067
2972
  */
2068
2973
  repositoryConnectionArn?: string;
2069
2974
  /**
2070
- * <p>The ID of the code repository. <i>Don't</i> include this parameter if your service template <i>doesn't</i>
2071
- * include a service pipeline.</p>
2975
+ * <p>The ID of the code repository. <i>Don't</i> include this parameter if your service template <i>doesn't</i> include
2976
+ * a service pipeline.</p>
2072
2977
  */
2073
2978
  repositoryId?: string;
2074
2979
  /**
2075
- * <p>The name of the code repository branch that holds the code that's deployed in AWS Proton. <i>Don't</i> include this
2076
- * parameter if your service template <i>doesn't</i> include a service pipeline.</p>
2980
+ * <p>The name of the code repository branch that holds the code that's deployed in Proton. <i>Don't</i> include this parameter if
2981
+ * your service template <i>doesn't</i> include a service pipeline.</p>
2077
2982
  */
2078
2983
  branchName?: string;
2079
2984
  /**
2080
- * <p>Create tags for your service. 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>
2985
+ * <p>Create tags for your service. 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>
2081
2986
  */
2082
2987
  tags?: Tag[];
2083
2988
  }
@@ -2148,17 +3053,17 @@ export interface Service {
2148
3053
  */
2149
3054
  pipeline?: ServicePipeline;
2150
3055
  /**
2151
- * <p>The Amazon Resource Name (ARN) of the repository connection. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/setting-up-for-service.html#setting-up-vcontrol">Set up a repository connection</a> in the
2152
- * <i>AWS Proton Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/proton-setup.html#setup-repo-connection">Setting up with AWS Proton</a> in the <i>AWS Proton
2153
- * User Guide</i>.</p>
3056
+ * <p>The Amazon Resource Name (ARN) of the repository connection. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/setting-up-for-service.html#setting-up-vcontrol">Set up a repository connection</a> in the <i>Proton
3057
+ * Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/proton-setup.html#setup-repo-connection">Setting up
3058
+ * with Proton</a> in the <i>Proton User Guide</i>.</p>
2154
3059
  */
2155
3060
  repositoryConnectionArn?: string;
2156
3061
  /**
2157
- * <p>The ID of the code repository.</p>
3062
+ * <p>The ID of the source code repository.</p>
2158
3063
  */
2159
3064
  repositoryId?: string;
2160
3065
  /**
2161
- * <p>The name of the code repository branch that holds the code that's deployed in AWS Proton.</p>
3066
+ * <p>The name of the code repository branch that holds the code that's deployed in Proton.</p>
2162
3067
  */
2163
3068
  branchName?: string;
2164
3069
  }
@@ -2170,7 +3075,7 @@ export declare namespace Service {
2170
3075
  }
2171
3076
  export interface CreateServiceOutput {
2172
3077
  /**
2173
- * <p>The service detail data that's returned by AWS Proton.</p>
3078
+ * <p>The service detail data that's returned by Proton.</p>
2174
3079
  */
2175
3080
  service: Service | undefined;
2176
3081
  }
@@ -2194,7 +3099,7 @@ export declare namespace DeleteServiceInput {
2194
3099
  }
2195
3100
  export interface DeleteServiceOutput {
2196
3101
  /**
2197
- * <p>The service detail data that's returned by AWS Proton.</p>
3102
+ * <p>The service detail data that's returned by Proton.</p>
2198
3103
  */
2199
3104
  service?: Service;
2200
3105
  }
@@ -2218,7 +3123,7 @@ export declare namespace GetServiceInput {
2218
3123
  }
2219
3124
  export interface GetServiceOutput {
2220
3125
  /**
2221
- * <p>The service detail data that's returned by AWS Proton.</p>
3126
+ * <p>The service detail data that's returned by Proton.</p>
2222
3127
  */
2223
3128
  service?: Service;
2224
3129
  }
@@ -2231,7 +3136,7 @@ export declare namespace GetServiceOutput {
2231
3136
  export interface ListServicesInput {
2232
3137
  /**
2233
3138
  * <p>A token to indicate the location of the next service in the array of services, after the list of services that was previously
2234
- * requested.</p>
3139
+ * requested.</p>
2235
3140
  */
2236
3141
  nextToken?: string;
2237
3142
  /**
@@ -2314,10 +3219,10 @@ export interface UpdateServiceInput {
2314
3219
  */
2315
3220
  description?: string;
2316
3221
  /**
2317
- * <p>Lists the service instances to add and the existing service instances to remain. Omit the existing service instances to delete from the
2318
- * list. <i>Don't</i> include edits to the existing service instances or pipeline. For more information, see <i>Edit a
2319
- * service</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-svc-update.html">AWS Proton Administrator
2320
- * Guide</a> or the <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-update.html">AWS Proton User Guide</a>.</p>
3222
+ * <p>Lists the service instances to add and the existing service instances to remain. Omit the existing service instances to delete from the list.
3223
+ * <i>Don't</i> include edits to the existing service instances or pipeline. For more information, see <i>Edit a
3224
+ * service</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-svc-update.html">Proton Administrator Guide</a> or
3225
+ * the <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-update.html">Proton User Guide</a>.</p>
2321
3226
  */
2322
3227
  spec?: string;
2323
3228
  }
@@ -2329,7 +3234,7 @@ export declare namespace UpdateServiceInput {
2329
3234
  }
2330
3235
  export interface UpdateServiceOutput {
2331
3236
  /**
2332
- * <p>The service detail data that's returned by AWS Proton.</p>
3237
+ * <p>The service detail data that's returned by Proton.</p>
2333
3238
  */
2334
3239
  service: Service | undefined;
2335
3240
  }
@@ -2357,14 +3262,14 @@ export interface CreateServiceTemplateInput {
2357
3262
  */
2358
3263
  encryptionKey?: string;
2359
3264
  /**
2360
- * <p>AWS Proton includes a service pipeline for your service by default. When included, this parameter indicates that an AWS Proton service
2361
- * pipeline <i>won't</i> be included for your service. Once specified, this parameter <i>can't</i> be changed.
2362
- * For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-template-bundles.html">Service template
2363
- * bundles</a> in the <i>AWS Proton Administrator Guide</i>.</p>
3265
+ * <p>Proton includes a service pipeline for your service by default. When included, this parameter indicates that an Proton service pipeline
3266
+ * <i>won't</i> be included for your service. Once specified, this parameter <i>can't</i> be changed. For more
3267
+ * information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-template-bundles.html">Service template bundles</a> in the
3268
+ * <i>Proton Administrator Guide</i>.</p>
2364
3269
  */
2365
3270
  pipelineProvisioning?: Provisioning | string;
2366
3271
  /**
2367
- * <p>Create tags for your service template. 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>
3272
+ * <p>Create tags for your service template. 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>
2368
3273
  */
2369
3274
  tags?: Tag[];
2370
3275
  }
@@ -2403,7 +3308,7 @@ export interface ServiceTemplate {
2403
3308
  */
2404
3309
  description?: string;
2405
3310
  /**
2406
- * <p>The ID of the recommended version of the service template.</p>
3311
+ * <p>The recommended version of the service template.</p>
2407
3312
  */
2408
3313
  recommendedVersion?: string;
2409
3314
  /**
@@ -2412,7 +3317,7 @@ export interface ServiceTemplate {
2412
3317
  encryptionKey?: string;
2413
3318
  /**
2414
3319
  * <p>If <code>pipelineProvisioning</code> is <code>true</code>, a service pipeline is included in the service template. Otherwise, a service
2415
- * pipeline <i>isn't</i> included in the service template.</p>
3320
+ * pipeline <i>isn't</i> included in the service template.</p>
2416
3321
  */
2417
3322
  pipelineProvisioning?: Provisioning | string;
2418
3323
  }
@@ -2424,7 +3329,7 @@ export declare namespace ServiceTemplate {
2424
3329
  }
2425
3330
  export interface CreateServiceTemplateOutput {
2426
3331
  /**
2427
- * <p>The service template detail data that's returned by AWS Proton.</p>
3332
+ * <p>The service template detail data that's returned by Proton.</p>
2428
3333
  */
2429
3334
  serviceTemplate: ServiceTemplate | undefined;
2430
3335
  }
@@ -2448,7 +3353,7 @@ export declare namespace DeleteServiceTemplateInput {
2448
3353
  }
2449
3354
  export interface DeleteServiceTemplateOutput {
2450
3355
  /**
2451
- * <p>The service template detail data that's returned by AWS Proton.</p>
3356
+ * <p>The service template detail data that's returned by Proton.</p>
2452
3357
  */
2453
3358
  serviceTemplate?: ServiceTemplate;
2454
3359
  }
@@ -2472,7 +3377,7 @@ export declare namespace GetServiceTemplateInput {
2472
3377
  }
2473
3378
  export interface GetServiceTemplateOutput {
2474
3379
  /**
2475
- * <p>The service template detail data that's returned by AWS Proton.</p>
3380
+ * <p>The service template detail data that's returned by Proton.</p>
2476
3381
  */
2477
3382
  serviceTemplate: ServiceTemplate | undefined;
2478
3383
  }
@@ -2485,7 +3390,7 @@ export declare namespace GetServiceTemplateOutput {
2485
3390
  export interface ListServiceTemplatesInput {
2486
3391
  /**
2487
3392
  * <p>A token to indicate the location of the next service template in the array of service templates, after the list of service templates
2488
- * previously requested.</p>
3393
+ * previously requested.</p>
2489
3394
  */
2490
3395
  nextToken?: string;
2491
3396
  /**
@@ -2528,12 +3433,12 @@ export interface ServiceTemplateSummary {
2528
3433
  */
2529
3434
  description?: string;
2530
3435
  /**
2531
- * <p>The ID of the recommended version of the service template.</p>
3436
+ * <p>The recommended version of the service template.</p>
2532
3437
  */
2533
3438
  recommendedVersion?: string;
2534
3439
  /**
2535
3440
  * <p>If <code>pipelineProvisioning</code> is <code>true</code>, a service pipeline is included in the service template, otherwise a service
2536
- * pipeline <i>isn't</i> included in the service template.</p>
3441
+ * pipeline <i>isn't</i> included in the service template.</p>
2537
3442
  */
2538
3443
  pipelineProvisioning?: Provisioning | string;
2539
3444
  }
@@ -2545,8 +3450,8 @@ export declare namespace ServiceTemplateSummary {
2545
3450
  }
2546
3451
  export interface ListServiceTemplatesOutput {
2547
3452
  /**
2548
- * <p>A token to indicate the location of the next service template in the array of service templates, after the current requested list of
2549
- * service templates.</p>
3453
+ * <p>A token to indicate the location of the next service template in the array of service templates, after the current requested list of service
3454
+ * templates.</p>
2550
3455
  */
2551
3456
  nextToken?: string;
2552
3457
  /**
@@ -2582,7 +3487,7 @@ export declare namespace UpdateServiceTemplateInput {
2582
3487
  }
2583
3488
  export interface UpdateServiceTemplateOutput {
2584
3489
  /**
2585
- * <p>The service template detail data that's returned by AWS Proton.</p>
3490
+ * <p>The service template detail data that's returned by Proton.</p>
2586
3491
  */
2587
3492
  serviceTemplate: ServiceTemplate | undefined;
2588
3493
  }
@@ -2613,8 +3518,8 @@ export declare namespace CompatibleEnvironmentTemplateInput {
2613
3518
  }
2614
3519
  export interface CreateServiceTemplateVersionInput {
2615
3520
  /**
2616
- * <p>When included, if two identicial requests are made with the same client token, AWS Proton returns the service template version that the
2617
- * first request created.</p>
3521
+ * <p>When included, if two identical requests are made with the same client token, Proton returns the service template version that the first
3522
+ * request created.</p>
2618
3523
  */
2619
3524
  clientToken?: string;
2620
3525
  /**
@@ -2626,9 +3531,9 @@ export interface CreateServiceTemplateVersionInput {
2626
3531
  */
2627
3532
  description?: string;
2628
3533
  /**
2629
- * <p>To create a new minor version of the service template, include a <code>majorVersion</code>.</p>
2630
- * <p>To create a new major and minor version of the service template, <i>exclude</i>
2631
- * <code>majorVersion</code>.</p>
3534
+ * <p>To create a new minor version of the service template, include a <code>major Version</code>.</p>
3535
+ * <p>To create a new major and minor version of the service template, <i>exclude</i>
3536
+ * <code>major Version</code>.</p>
2632
3537
  */
2633
3538
  majorVersion?: string;
2634
3539
  /**
@@ -2678,15 +3583,15 @@ export interface ServiceTemplateVersion {
2678
3583
  */
2679
3584
  templateName: string | undefined;
2680
3585
  /**
2681
- * <p>The ID of the latest major version that's associated with the version of a service template.</p>
3586
+ * <p>The latest major version that's associated with the version of a service template.</p>
2682
3587
  */
2683
3588
  majorVersion: string | undefined;
2684
3589
  /**
2685
- * <p>The ID of the minor version of a service template.</p>
3590
+ * <p>The minor version of a service template.</p>
2686
3591
  */
2687
3592
  minorVersion: string | undefined;
2688
3593
  /**
2689
- * <p>The ID of the recommended minor version of the service template.</p>
3594
+ * <p>The recommended minor version of the service template.</p>
2690
3595
  */
2691
3596
  recommendedMinorVersion?: string;
2692
3597
  /**
@@ -2730,7 +3635,7 @@ export declare namespace ServiceTemplateVersion {
2730
3635
  }
2731
3636
  export interface CreateServiceTemplateVersionOutput {
2732
3637
  /**
2733
- * <p>The service template version summary of detail data that's returned by AWS Proton.</p>
3638
+ * <p>The service template version summary of detail data that's returned by Proton.</p>
2734
3639
  */
2735
3640
  serviceTemplateVersion: ServiceTemplateVersion | undefined;
2736
3641
  }
@@ -2762,7 +3667,7 @@ export declare namespace DeleteServiceTemplateVersionInput {
2762
3667
  }
2763
3668
  export interface DeleteServiceTemplateVersionOutput {
2764
3669
  /**
2765
- * <p>The service template version detail data that's returned by AWS Proton.</p>
3670
+ * <p>The service template version detail data that's returned by Proton.</p>
2766
3671
  */
2767
3672
  serviceTemplateVersion?: ServiceTemplateVersion;
2768
3673
  }
@@ -2778,7 +3683,7 @@ export interface GetServiceTemplateVersionInput {
2778
3683
  */
2779
3684
  templateName: string | undefined;
2780
3685
  /**
2781
- * <p>To view service template major version detail data, include <code>majorVersion</code>.</p>
3686
+ * <p>To view service template major version detail data, include <code>major Version</code>.</p>
2782
3687
  */
2783
3688
  majorVersion: string | undefined;
2784
3689
  /**
@@ -2794,7 +3699,7 @@ export declare namespace GetServiceTemplateVersionInput {
2794
3699
  }
2795
3700
  export interface GetServiceTemplateVersionOutput {
2796
3701
  /**
2797
- * <p>The service template version detail data that's returned by AWS Proton.</p>
3702
+ * <p>The service template version detail data that's returned by Proton.</p>
2798
3703
  */
2799
3704
  serviceTemplateVersion: ServiceTemplateVersion | undefined;
2800
3705
  }
@@ -2806,8 +3711,8 @@ export declare namespace GetServiceTemplateVersionOutput {
2806
3711
  }
2807
3712
  export interface ListServiceTemplateVersionsInput {
2808
3713
  /**
2809
- * <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of a service template, after
2810
- * the list of major or minor versions that was previously requested.</p>
3714
+ * <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of a service template, after the
3715
+ * list of major or minor versions that was previously requested.</p>
2811
3716
  */
2812
3717
  nextToken?: string;
2813
3718
  /**
@@ -2819,9 +3724,9 @@ export interface ListServiceTemplateVersionsInput {
2819
3724
  */
2820
3725
  templateName: string | undefined;
2821
3726
  /**
2822
- * <p>To view a list of minor of versions under a major version of a service template, include <code>majorVersion</code>.</p>
2823
- * <p>To view a list of major versions of a service template, <i>exclude</i>
2824
- * <code>majorVersion</code>.</p>
3727
+ * <p>To view a list of minor of versions under a major version of a service template, include <code>major Version</code>.</p>
3728
+ * <p>To view a list of major versions of a service template, <i>exclude</i>
3729
+ * <code>major Version</code>.</p>
2825
3730
  */
2826
3731
  majorVersion?: string;
2827
3732
  }
@@ -2840,15 +3745,15 @@ export interface ServiceTemplateVersionSummary {
2840
3745
  */
2841
3746
  templateName: string | undefined;
2842
3747
  /**
2843
- * <p>The ID of the latest major version that's associated with the version of a service template.</p>
3748
+ * <p>The latest major version that's associated with the version of a service template.</p>
2844
3749
  */
2845
3750
  majorVersion: string | undefined;
2846
3751
  /**
2847
- * <p>The ID of the minor version of a service template.</p>
3752
+ * <p>The minor version of a service template.</p>
2848
3753
  */
2849
3754
  minorVersion: string | undefined;
2850
3755
  /**
2851
- * <p>The ID of the recommended minor version of the service template.</p>
3756
+ * <p>The recommended minor version of the service template.</p>
2852
3757
  */
2853
3758
  recommendedMinorVersion?: string;
2854
3759
  /**
@@ -2884,8 +3789,8 @@ export declare namespace ServiceTemplateVersionSummary {
2884
3789
  }
2885
3790
  export interface ListServiceTemplateVersionsOutput {
2886
3791
  /**
2887
- * <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of a service template, after
2888
- * the list of major or minor versions that was previously requested.</p>
3792
+ * <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of a service template, after the
3793
+ * current requested list of service major or minor versions.</p>
2889
3794
  */
2890
3795
  nextToken?: string;
2891
3796
  /**
@@ -2905,7 +3810,7 @@ export interface UpdateServiceTemplateVersionInput {
2905
3810
  */
2906
3811
  templateName: string | undefined;
2907
3812
  /**
2908
- * <p>To update a major version of a service template, include <code>majorVersion</code>.</p>
3813
+ * <p>To update a major version of a service template, include <code>major Version</code>.</p>
2909
3814
  */
2910
3815
  majorVersion: string | undefined;
2911
3816
  /**
@@ -2933,7 +3838,7 @@ export declare namespace UpdateServiceTemplateVersionInput {
2933
3838
  }
2934
3839
  export interface UpdateServiceTemplateVersionOutput {
2935
3840
  /**
2936
- * <p>The service template version detail data that's returned by AWS Proton.</p>
3841
+ * <p>The service template version detail data that's returned by Proton.</p>
2937
3842
  */
2938
3843
  serviceTemplateVersion: ServiceTemplateVersion | undefined;
2939
3844
  }
@@ -2967,6 +3872,186 @@ export declare namespace TagResourceOutput {
2967
3872
  */
2968
3873
  const filterSensitiveLog: (obj: TagResourceOutput) => any;
2969
3874
  }
3875
+ export interface CreateTemplateSyncConfigInput {
3876
+ /**
3877
+ * <p>The name of your registered template.</p>
3878
+ */
3879
+ templateName: string | undefined;
3880
+ /**
3881
+ * <p>The type of the registered template.</p>
3882
+ */
3883
+ templateType: TemplateType | string | undefined;
3884
+ /**
3885
+ * <p>The provider type for your repository.</p>
3886
+ */
3887
+ repositoryProvider: RepositoryProvider | string | undefined;
3888
+ /**
3889
+ * <p>The name of your repository, for example <code>myrepos/myrepo</code>.</p>
3890
+ */
3891
+ repositoryName: string | undefined;
3892
+ /**
3893
+ * <p>The branch of the registered repository for your template.</p>
3894
+ */
3895
+ branch: string | undefined;
3896
+ /**
3897
+ * <p>A repository subdirectory path to your template bundle directory. When included, Proton limits the template bundle search to this
3898
+ * repository directory.</p>
3899
+ */
3900
+ subdirectory?: string;
3901
+ }
3902
+ export declare namespace CreateTemplateSyncConfigInput {
3903
+ /**
3904
+ * @internal
3905
+ */
3906
+ const filterSensitiveLog: (obj: CreateTemplateSyncConfigInput) => any;
3907
+ }
3908
+ /**
3909
+ * <p>The detail data for a template sync configuration.</p>
3910
+ */
3911
+ export interface TemplateSyncConfig {
3912
+ /**
3913
+ * <p>The template name.</p>
3914
+ */
3915
+ templateName: string | undefined;
3916
+ /**
3917
+ * <p>The template type.</p>
3918
+ */
3919
+ templateType: TemplateType | string | undefined;
3920
+ /**
3921
+ * <p>The repository provider.</p>
3922
+ */
3923
+ repositoryProvider: RepositoryProvider | string | undefined;
3924
+ /**
3925
+ * <p>The name of the repository, for example <code>myrepos/myrepo</code>.</p>
3926
+ */
3927
+ repositoryName: string | undefined;
3928
+ /**
3929
+ * <p>The repository branch.</p>
3930
+ */
3931
+ branch: string | undefined;
3932
+ /**
3933
+ * <p>A subdirectory path to your template bundle version.</p>
3934
+ */
3935
+ subdirectory?: string;
3936
+ }
3937
+ export declare namespace TemplateSyncConfig {
3938
+ /**
3939
+ * @internal
3940
+ */
3941
+ const filterSensitiveLog: (obj: TemplateSyncConfig) => any;
3942
+ }
3943
+ export interface CreateTemplateSyncConfigOutput {
3944
+ /**
3945
+ * <p>The template sync configuration detail data that's returned by Proton.</p>
3946
+ */
3947
+ templateSyncConfig?: TemplateSyncConfig;
3948
+ }
3949
+ export declare namespace CreateTemplateSyncConfigOutput {
3950
+ /**
3951
+ * @internal
3952
+ */
3953
+ const filterSensitiveLog: (obj: CreateTemplateSyncConfigOutput) => any;
3954
+ }
3955
+ export interface DeleteTemplateSyncConfigInput {
3956
+ /**
3957
+ * <p>The template name.</p>
3958
+ */
3959
+ templateName: string | undefined;
3960
+ /**
3961
+ * <p>The template type.</p>
3962
+ */
3963
+ templateType: TemplateType | string | undefined;
3964
+ }
3965
+ export declare namespace DeleteTemplateSyncConfigInput {
3966
+ /**
3967
+ * @internal
3968
+ */
3969
+ const filterSensitiveLog: (obj: DeleteTemplateSyncConfigInput) => any;
3970
+ }
3971
+ export interface DeleteTemplateSyncConfigOutput {
3972
+ /**
3973
+ * <p>The template sync configuration detail data that's returned by Proton.</p>
3974
+ */
3975
+ templateSyncConfig?: TemplateSyncConfig;
3976
+ }
3977
+ export declare namespace DeleteTemplateSyncConfigOutput {
3978
+ /**
3979
+ * @internal
3980
+ */
3981
+ const filterSensitiveLog: (obj: DeleteTemplateSyncConfigOutput) => any;
3982
+ }
3983
+ export interface GetTemplateSyncConfigInput {
3984
+ /**
3985
+ * <p>The template name.</p>
3986
+ */
3987
+ templateName: string | undefined;
3988
+ /**
3989
+ * <p>The template type.</p>
3990
+ */
3991
+ templateType: TemplateType | string | undefined;
3992
+ }
3993
+ export declare namespace GetTemplateSyncConfigInput {
3994
+ /**
3995
+ * @internal
3996
+ */
3997
+ const filterSensitiveLog: (obj: GetTemplateSyncConfigInput) => any;
3998
+ }
3999
+ export interface GetTemplateSyncConfigOutput {
4000
+ /**
4001
+ * <p>The template sync configuration detail data that's returned by Proton.</p>
4002
+ */
4003
+ templateSyncConfig?: TemplateSyncConfig;
4004
+ }
4005
+ export declare namespace GetTemplateSyncConfigOutput {
4006
+ /**
4007
+ * @internal
4008
+ */
4009
+ const filterSensitiveLog: (obj: GetTemplateSyncConfigOutput) => any;
4010
+ }
4011
+ export interface UpdateTemplateSyncConfigInput {
4012
+ /**
4013
+ * <p>The synced template name.</p>
4014
+ */
4015
+ templateName: string | undefined;
4016
+ /**
4017
+ * <p>The synced template type.</p>
4018
+ */
4019
+ templateType: TemplateType | string | undefined;
4020
+ /**
4021
+ * <p>The repository provider.</p>
4022
+ */
4023
+ repositoryProvider: RepositoryProvider | string | undefined;
4024
+ /**
4025
+ * <p>The name of the repository, for example <code>myrepos/myrepo</code>.</p>
4026
+ */
4027
+ repositoryName: string | undefined;
4028
+ /**
4029
+ * <p>The repository branch.</p>
4030
+ */
4031
+ branch: string | undefined;
4032
+ /**
4033
+ * <p>A subdirectory path to your template bundle version. When included, limits the template bundle search to this repository directory.</p>
4034
+ */
4035
+ subdirectory?: string;
4036
+ }
4037
+ export declare namespace UpdateTemplateSyncConfigInput {
4038
+ /**
4039
+ * @internal
4040
+ */
4041
+ const filterSensitiveLog: (obj: UpdateTemplateSyncConfigInput) => any;
4042
+ }
4043
+ export interface UpdateTemplateSyncConfigOutput {
4044
+ /**
4045
+ * <p>The template sync configuration detail data that's returned by Proton.</p>
4046
+ */
4047
+ templateSyncConfig?: TemplateSyncConfig;
4048
+ }
4049
+ export declare namespace UpdateTemplateSyncConfigOutput {
4050
+ /**
4051
+ * @internal
4052
+ */
4053
+ const filterSensitiveLog: (obj: UpdateTemplateSyncConfigOutput) => any;
4054
+ }
2970
4055
  export interface UntagResourceInput {
2971
4056
  /**
2972
4057
  * <p>The Amazon Resource Name (ARN) of the resource that the tag is to be removed from.</p>