@aws-sdk/client-proton 3.686.0 → 3.691.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.
- package/dist-types/models/models_0.d.ts +355 -355
- package/dist-types/ts3.4/models/models_0.d.ts +363 -355
- package/package.json +7 -7
|
@@ -20,8 +20,8 @@ export interface EnvironmentAccountConnection {
|
|
|
20
20
|
requestedAt: Date | undefined;
|
|
21
21
|
lastModifiedAt: Date | undefined;
|
|
22
22
|
status: EnvironmentAccountConnectionStatus | undefined;
|
|
23
|
-
componentRoleArn?: string;
|
|
24
|
-
codebuildRoleArn?: string;
|
|
23
|
+
componentRoleArn?: string | undefined;
|
|
24
|
+
codebuildRoleArn?: string | undefined;
|
|
25
25
|
}
|
|
26
26
|
export interface AcceptEnvironmentAccountConnectionOutput {
|
|
27
27
|
environmentAccountConnection: EnvironmentAccountConnection | undefined;
|
|
@@ -84,13 +84,13 @@ export interface RepositoryBranch {
|
|
|
84
84
|
branch: string | undefined;
|
|
85
85
|
}
|
|
86
86
|
export interface AccountSettings {
|
|
87
|
-
pipelineServiceRoleArn?: string;
|
|
88
|
-
pipelineProvisioningRepository?: RepositoryBranch;
|
|
89
|
-
pipelineCodebuildRoleArn?: string;
|
|
87
|
+
pipelineServiceRoleArn?: string | undefined;
|
|
88
|
+
pipelineProvisioningRepository?: RepositoryBranch | undefined;
|
|
89
|
+
pipelineCodebuildRoleArn?: string | undefined;
|
|
90
90
|
}
|
|
91
91
|
export interface GetAccountSettingsInput {}
|
|
92
92
|
export interface GetAccountSettingsOutput {
|
|
93
|
-
accountSettings?: AccountSettings;
|
|
93
|
+
accountSettings?: AccountSettings | undefined;
|
|
94
94
|
}
|
|
95
95
|
export interface RepositoryBranchInput {
|
|
96
96
|
provider: RepositoryProvider | undefined;
|
|
@@ -98,10 +98,10 @@ export interface RepositoryBranchInput {
|
|
|
98
98
|
branch: string | undefined;
|
|
99
99
|
}
|
|
100
100
|
export interface UpdateAccountSettingsInput {
|
|
101
|
-
pipelineServiceRoleArn?: string;
|
|
102
|
-
pipelineProvisioningRepository?: RepositoryBranchInput;
|
|
103
|
-
deletePipelineProvisioningRepository?: boolean;
|
|
104
|
-
pipelineCodebuildRoleArn?: string;
|
|
101
|
+
pipelineServiceRoleArn?: string | undefined;
|
|
102
|
+
pipelineProvisioningRepository?: RepositoryBranchInput | undefined;
|
|
103
|
+
deletePipelineProvisioningRepository?: boolean | undefined;
|
|
104
|
+
pipelineCodebuildRoleArn?: string | undefined;
|
|
105
105
|
}
|
|
106
106
|
export interface UpdateAccountSettingsOutput {
|
|
107
107
|
accountSettings: AccountSettings | undefined;
|
|
@@ -123,21 +123,21 @@ export type DeploymentStatus =
|
|
|
123
123
|
(typeof DeploymentStatus)[keyof typeof DeploymentStatus];
|
|
124
124
|
export interface Component {
|
|
125
125
|
name: string | undefined;
|
|
126
|
-
description?: string;
|
|
126
|
+
description?: string | undefined;
|
|
127
127
|
arn: string | undefined;
|
|
128
128
|
environmentName: string | undefined;
|
|
129
|
-
serviceName?: string;
|
|
130
|
-
serviceInstanceName?: string;
|
|
129
|
+
serviceName?: string | undefined;
|
|
130
|
+
serviceInstanceName?: string | undefined;
|
|
131
131
|
createdAt: Date | undefined;
|
|
132
132
|
lastModifiedAt: Date | undefined;
|
|
133
|
-
lastDeploymentAttemptedAt?: Date;
|
|
134
|
-
lastDeploymentSucceededAt?: Date;
|
|
133
|
+
lastDeploymentAttemptedAt?: Date | undefined;
|
|
134
|
+
lastDeploymentSucceededAt?: Date | undefined;
|
|
135
135
|
deploymentStatus: DeploymentStatus | undefined;
|
|
136
|
-
deploymentStatusMessage?: string;
|
|
137
|
-
serviceSpec?: string;
|
|
138
|
-
lastClientRequestToken?: string;
|
|
139
|
-
lastAttemptedDeploymentId?: string;
|
|
140
|
-
lastSucceededDeploymentId?: string;
|
|
136
|
+
deploymentStatusMessage?: string | undefined;
|
|
137
|
+
serviceSpec?: string | undefined;
|
|
138
|
+
lastClientRequestToken?: string | undefined;
|
|
139
|
+
lastAttemptedDeploymentId?: string | undefined;
|
|
140
|
+
lastSucceededDeploymentId?: string | undefined;
|
|
141
141
|
}
|
|
142
142
|
export interface CancelComponentDeploymentOutput {
|
|
143
143
|
component: Component | undefined;
|
|
@@ -151,7 +151,7 @@ export declare const Provisioning: {
|
|
|
151
151
|
export type Provisioning = (typeof Provisioning)[keyof typeof Provisioning];
|
|
152
152
|
export interface Environment {
|
|
153
153
|
name: string | undefined;
|
|
154
|
-
description?: string;
|
|
154
|
+
description?: string | undefined;
|
|
155
155
|
createdAt: Date | undefined;
|
|
156
156
|
lastDeploymentAttemptedAt: Date | undefined;
|
|
157
157
|
lastDeploymentSucceededAt: Date | undefined;
|
|
@@ -160,17 +160,17 @@ export interface Environment {
|
|
|
160
160
|
templateMajorVersion: string | undefined;
|
|
161
161
|
templateMinorVersion: string | undefined;
|
|
162
162
|
deploymentStatus: DeploymentStatus | undefined;
|
|
163
|
-
deploymentStatusMessage?: string;
|
|
164
|
-
protonServiceRoleArn?: string;
|
|
165
|
-
environmentAccountConnectionId?: string;
|
|
166
|
-
environmentAccountId?: string;
|
|
167
|
-
spec?: string;
|
|
168
|
-
provisioning?: Provisioning;
|
|
169
|
-
provisioningRepository?: RepositoryBranch;
|
|
170
|
-
componentRoleArn?: string;
|
|
171
|
-
codebuildRoleArn?: string;
|
|
172
|
-
lastAttemptedDeploymentId?: string;
|
|
173
|
-
lastSucceededDeploymentId?: string;
|
|
163
|
+
deploymentStatusMessage?: string | undefined;
|
|
164
|
+
protonServiceRoleArn?: string | undefined;
|
|
165
|
+
environmentAccountConnectionId?: string | undefined;
|
|
166
|
+
environmentAccountId?: string | undefined;
|
|
167
|
+
spec?: string | undefined;
|
|
168
|
+
provisioning?: Provisioning | undefined;
|
|
169
|
+
provisioningRepository?: RepositoryBranch | undefined;
|
|
170
|
+
componentRoleArn?: string | undefined;
|
|
171
|
+
codebuildRoleArn?: string | undefined;
|
|
172
|
+
lastAttemptedDeploymentId?: string | undefined;
|
|
173
|
+
lastSucceededDeploymentId?: string | undefined;
|
|
174
174
|
}
|
|
175
175
|
export interface CancelEnvironmentDeploymentOutput {
|
|
176
176
|
environment: Environment | undefined;
|
|
@@ -191,11 +191,11 @@ export interface ServiceInstance {
|
|
|
191
191
|
templateMajorVersion: string | undefined;
|
|
192
192
|
templateMinorVersion: string | undefined;
|
|
193
193
|
deploymentStatus: DeploymentStatus | undefined;
|
|
194
|
-
deploymentStatusMessage?: string;
|
|
195
|
-
spec?: string;
|
|
196
|
-
lastClientRequestToken?: string;
|
|
197
|
-
lastAttemptedDeploymentId?: string;
|
|
198
|
-
lastSucceededDeploymentId?: string;
|
|
194
|
+
deploymentStatusMessage?: string | undefined;
|
|
195
|
+
spec?: string | undefined;
|
|
196
|
+
lastClientRequestToken?: string | undefined;
|
|
197
|
+
lastAttemptedDeploymentId?: string | undefined;
|
|
198
|
+
lastSucceededDeploymentId?: string | undefined;
|
|
199
199
|
}
|
|
200
200
|
export interface CancelServiceInstanceDeploymentOutput {
|
|
201
201
|
serviceInstance: ServiceInstance | undefined;
|
|
@@ -212,30 +212,30 @@ export interface ServicePipeline {
|
|
|
212
212
|
templateMajorVersion: string | undefined;
|
|
213
213
|
templateMinorVersion: string | undefined;
|
|
214
214
|
deploymentStatus: DeploymentStatus | undefined;
|
|
215
|
-
deploymentStatusMessage?: string;
|
|
216
|
-
spec?: string;
|
|
217
|
-
lastAttemptedDeploymentId?: string;
|
|
218
|
-
lastSucceededDeploymentId?: string;
|
|
215
|
+
deploymentStatusMessage?: string | undefined;
|
|
216
|
+
spec?: string | undefined;
|
|
217
|
+
lastAttemptedDeploymentId?: string | undefined;
|
|
218
|
+
lastSucceededDeploymentId?: string | undefined;
|
|
219
219
|
}
|
|
220
220
|
export interface CancelServicePipelineDeploymentOutput {
|
|
221
221
|
pipeline: ServicePipeline | undefined;
|
|
222
222
|
}
|
|
223
223
|
export interface ListComponentOutputsInput {
|
|
224
224
|
componentName: string | undefined;
|
|
225
|
-
nextToken?: string;
|
|
226
|
-
deploymentId?: string;
|
|
225
|
+
nextToken?: string | undefined;
|
|
226
|
+
deploymentId?: string | undefined;
|
|
227
227
|
}
|
|
228
228
|
export interface Output {
|
|
229
|
-
key?: string;
|
|
230
|
-
valueString?: string;
|
|
229
|
+
key?: string | undefined;
|
|
230
|
+
valueString?: string | undefined;
|
|
231
231
|
}
|
|
232
232
|
export interface ListComponentOutputsOutput {
|
|
233
|
-
nextToken?: string;
|
|
233
|
+
nextToken?: string | undefined;
|
|
234
234
|
outputs: Output[] | undefined;
|
|
235
235
|
}
|
|
236
236
|
export interface ListComponentProvisionedResourcesInput {
|
|
237
237
|
componentName: string | undefined;
|
|
238
|
-
nextToken?: string;
|
|
238
|
+
nextToken?: string | undefined;
|
|
239
239
|
}
|
|
240
240
|
export declare const ProvisionedResourceEngine: {
|
|
241
241
|
readonly CLOUDFORMATION: "CLOUDFORMATION";
|
|
@@ -244,12 +244,12 @@ export declare const ProvisionedResourceEngine: {
|
|
|
244
244
|
export type ProvisionedResourceEngine =
|
|
245
245
|
(typeof ProvisionedResourceEngine)[keyof typeof ProvisionedResourceEngine];
|
|
246
246
|
export interface ProvisionedResource {
|
|
247
|
-
name?: string;
|
|
248
|
-
identifier?: string;
|
|
249
|
-
provisioningEngine?: ProvisionedResourceEngine;
|
|
247
|
+
name?: string | undefined;
|
|
248
|
+
identifier?: string | undefined;
|
|
249
|
+
provisioningEngine?: ProvisionedResourceEngine | undefined;
|
|
250
250
|
}
|
|
251
251
|
export interface ListComponentProvisionedResourcesOutput {
|
|
252
|
-
nextToken?: string;
|
|
252
|
+
nextToken?: string | undefined;
|
|
253
253
|
provisionedResources: ProvisionedResource[] | undefined;
|
|
254
254
|
}
|
|
255
255
|
export interface Tag {
|
|
@@ -258,15 +258,15 @@ export interface Tag {
|
|
|
258
258
|
}
|
|
259
259
|
export interface CreateComponentInput {
|
|
260
260
|
name: string | undefined;
|
|
261
|
-
description?: string;
|
|
262
|
-
serviceName?: string;
|
|
263
|
-
serviceInstanceName?: string;
|
|
264
|
-
environmentName?: string;
|
|
261
|
+
description?: string | undefined;
|
|
262
|
+
serviceName?: string | undefined;
|
|
263
|
+
serviceInstanceName?: string | undefined;
|
|
264
|
+
environmentName?: string | undefined;
|
|
265
265
|
templateFile: string | undefined;
|
|
266
266
|
manifest: string | undefined;
|
|
267
|
-
serviceSpec?: string;
|
|
268
|
-
tags?: Tag[];
|
|
269
|
-
clientToken?: string;
|
|
267
|
+
serviceSpec?: string | undefined;
|
|
268
|
+
tags?: Tag[] | undefined;
|
|
269
|
+
clientToken?: string | undefined;
|
|
270
270
|
}
|
|
271
271
|
export interface CreateComponentOutput {
|
|
272
272
|
component: Component | undefined;
|
|
@@ -282,38 +282,38 @@ export interface DeleteComponentInput {
|
|
|
282
282
|
name: string | undefined;
|
|
283
283
|
}
|
|
284
284
|
export interface DeleteComponentOutput {
|
|
285
|
-
component?: Component;
|
|
285
|
+
component?: Component | undefined;
|
|
286
286
|
}
|
|
287
287
|
export interface GetComponentInput {
|
|
288
288
|
name: string | undefined;
|
|
289
289
|
}
|
|
290
290
|
export interface GetComponentOutput {
|
|
291
|
-
component?: Component;
|
|
291
|
+
component?: Component | undefined;
|
|
292
292
|
}
|
|
293
293
|
export interface ListComponentsInput {
|
|
294
|
-
nextToken?: string;
|
|
295
|
-
environmentName?: string;
|
|
296
|
-
serviceName?: string;
|
|
297
|
-
serviceInstanceName?: string;
|
|
298
|
-
maxResults?: number;
|
|
294
|
+
nextToken?: string | undefined;
|
|
295
|
+
environmentName?: string | undefined;
|
|
296
|
+
serviceName?: string | undefined;
|
|
297
|
+
serviceInstanceName?: string | undefined;
|
|
298
|
+
maxResults?: number | undefined;
|
|
299
299
|
}
|
|
300
300
|
export interface ComponentSummary {
|
|
301
301
|
name: string | undefined;
|
|
302
302
|
arn: string | undefined;
|
|
303
303
|
environmentName: string | undefined;
|
|
304
|
-
serviceName?: string;
|
|
305
|
-
serviceInstanceName?: string;
|
|
304
|
+
serviceName?: string | undefined;
|
|
305
|
+
serviceInstanceName?: string | undefined;
|
|
306
306
|
createdAt: Date | undefined;
|
|
307
307
|
lastModifiedAt: Date | undefined;
|
|
308
|
-
lastDeploymentAttemptedAt?: Date;
|
|
309
|
-
lastDeploymentSucceededAt?: Date;
|
|
308
|
+
lastDeploymentAttemptedAt?: Date | undefined;
|
|
309
|
+
lastDeploymentSucceededAt?: Date | undefined;
|
|
310
310
|
deploymentStatus: DeploymentStatus | undefined;
|
|
311
|
-
deploymentStatusMessage?: string;
|
|
312
|
-
lastAttemptedDeploymentId?: string;
|
|
313
|
-
lastSucceededDeploymentId?: string;
|
|
311
|
+
deploymentStatusMessage?: string | undefined;
|
|
312
|
+
lastAttemptedDeploymentId?: string | undefined;
|
|
313
|
+
lastSucceededDeploymentId?: string | undefined;
|
|
314
314
|
}
|
|
315
315
|
export interface ListComponentsOutput {
|
|
316
|
-
nextToken?: string;
|
|
316
|
+
nextToken?: string | undefined;
|
|
317
317
|
components: ComponentSummary[] | undefined;
|
|
318
318
|
}
|
|
319
319
|
export declare const ComponentDeploymentUpdateType: {
|
|
@@ -325,12 +325,12 @@ export type ComponentDeploymentUpdateType =
|
|
|
325
325
|
export interface UpdateComponentInput {
|
|
326
326
|
name: string | undefined;
|
|
327
327
|
deploymentType: ComponentDeploymentUpdateType | undefined;
|
|
328
|
-
description?: string;
|
|
329
|
-
serviceName?: string;
|
|
330
|
-
serviceInstanceName?: string;
|
|
331
|
-
serviceSpec?: string;
|
|
332
|
-
templateFile?: string;
|
|
333
|
-
clientToken?: string;
|
|
328
|
+
description?: string | undefined;
|
|
329
|
+
serviceName?: string | undefined;
|
|
330
|
+
serviceInstanceName?: string | undefined;
|
|
331
|
+
serviceSpec?: string | undefined;
|
|
332
|
+
templateFile?: string | undefined;
|
|
333
|
+
clientToken?: string | undefined;
|
|
334
334
|
}
|
|
335
335
|
export interface UpdateComponentOutput {
|
|
336
336
|
component: Component | undefined;
|
|
@@ -339,13 +339,13 @@ export interface DeleteDeploymentInput {
|
|
|
339
339
|
id: string | undefined;
|
|
340
340
|
}
|
|
341
341
|
export interface ComponentState {
|
|
342
|
-
serviceName?: string;
|
|
343
|
-
serviceInstanceName?: string;
|
|
344
|
-
serviceSpec?: string;
|
|
345
|
-
templateFile?: string;
|
|
342
|
+
serviceName?: string | undefined;
|
|
343
|
+
serviceInstanceName?: string | undefined;
|
|
344
|
+
serviceSpec?: string | undefined;
|
|
345
|
+
templateFile?: string | undefined;
|
|
346
346
|
}
|
|
347
347
|
export interface EnvironmentState {
|
|
348
|
-
spec?: string;
|
|
348
|
+
spec?: string | undefined;
|
|
349
349
|
templateName: string | undefined;
|
|
350
350
|
templateMajorVersion: string | undefined;
|
|
351
351
|
templateMinorVersion: string | undefined;
|
|
@@ -355,12 +355,12 @@ export interface ServiceInstanceState {
|
|
|
355
355
|
templateName: string | undefined;
|
|
356
356
|
templateMajorVersion: string | undefined;
|
|
357
357
|
templateMinorVersion: string | undefined;
|
|
358
|
-
lastSuccessfulComponentDeploymentIds?: string[];
|
|
359
|
-
lastSuccessfulEnvironmentDeploymentId?: string;
|
|
360
|
-
lastSuccessfulServicePipelineDeploymentId?: string;
|
|
358
|
+
lastSuccessfulComponentDeploymentIds?: string[] | undefined;
|
|
359
|
+
lastSuccessfulEnvironmentDeploymentId?: string | undefined;
|
|
360
|
+
lastSuccessfulServicePipelineDeploymentId?: string | undefined;
|
|
361
361
|
}
|
|
362
362
|
export interface ServicePipelineState {
|
|
363
|
-
spec?: string;
|
|
363
|
+
spec?: string | undefined;
|
|
364
364
|
templateName: string | undefined;
|
|
365
365
|
templateMajorVersion: string | undefined;
|
|
366
366
|
templateMinorVersion: string | undefined;
|
|
@@ -431,39 +431,39 @@ export interface Deployment {
|
|
|
431
431
|
targetResourceCreatedAt: Date | undefined;
|
|
432
432
|
targetResourceType: DeploymentTargetResourceType | undefined;
|
|
433
433
|
environmentName: string | undefined;
|
|
434
|
-
serviceName?: string;
|
|
435
|
-
serviceInstanceName?: string;
|
|
436
|
-
componentName?: string;
|
|
434
|
+
serviceName?: string | undefined;
|
|
435
|
+
serviceInstanceName?: string | undefined;
|
|
436
|
+
componentName?: string | undefined;
|
|
437
437
|
deploymentStatus: DeploymentStatus | undefined;
|
|
438
|
-
deploymentStatusMessage?: string;
|
|
438
|
+
deploymentStatusMessage?: string | undefined;
|
|
439
439
|
createdAt: Date | undefined;
|
|
440
440
|
lastModifiedAt: Date | undefined;
|
|
441
|
-
completedAt?: Date;
|
|
442
|
-
lastAttemptedDeploymentId?: string;
|
|
443
|
-
lastSucceededDeploymentId?: string;
|
|
444
|
-
initialState?: DeploymentState;
|
|
445
|
-
targetState?: DeploymentState;
|
|
441
|
+
completedAt?: Date | undefined;
|
|
442
|
+
lastAttemptedDeploymentId?: string | undefined;
|
|
443
|
+
lastSucceededDeploymentId?: string | undefined;
|
|
444
|
+
initialState?: DeploymentState | undefined;
|
|
445
|
+
targetState?: DeploymentState | undefined;
|
|
446
446
|
}
|
|
447
447
|
export interface DeleteDeploymentOutput {
|
|
448
|
-
deployment?: Deployment;
|
|
448
|
+
deployment?: Deployment | undefined;
|
|
449
449
|
}
|
|
450
450
|
export interface GetDeploymentInput {
|
|
451
451
|
id: string | undefined;
|
|
452
|
-
environmentName?: string;
|
|
453
|
-
serviceName?: string;
|
|
454
|
-
serviceInstanceName?: string;
|
|
455
|
-
componentName?: string;
|
|
452
|
+
environmentName?: string | undefined;
|
|
453
|
+
serviceName?: string | undefined;
|
|
454
|
+
serviceInstanceName?: string | undefined;
|
|
455
|
+
componentName?: string | undefined;
|
|
456
456
|
}
|
|
457
457
|
export interface GetDeploymentOutput {
|
|
458
|
-
deployment?: Deployment;
|
|
458
|
+
deployment?: Deployment | undefined;
|
|
459
459
|
}
|
|
460
460
|
export interface ListDeploymentsInput {
|
|
461
|
-
nextToken?: string;
|
|
462
|
-
environmentName?: string;
|
|
463
|
-
serviceName?: string;
|
|
464
|
-
serviceInstanceName?: string;
|
|
465
|
-
componentName?: string;
|
|
466
|
-
maxResults?: number;
|
|
461
|
+
nextToken?: string | undefined;
|
|
462
|
+
environmentName?: string | undefined;
|
|
463
|
+
serviceName?: string | undefined;
|
|
464
|
+
serviceInstanceName?: string | undefined;
|
|
465
|
+
componentName?: string | undefined;
|
|
466
|
+
maxResults?: number | undefined;
|
|
467
467
|
}
|
|
468
468
|
export interface DeploymentSummary {
|
|
469
469
|
id: string | undefined;
|
|
@@ -473,27 +473,27 @@ export interface DeploymentSummary {
|
|
|
473
473
|
targetResourceType: DeploymentTargetResourceType | undefined;
|
|
474
474
|
createdAt: Date | undefined;
|
|
475
475
|
lastModifiedAt: Date | undefined;
|
|
476
|
-
completedAt?: Date;
|
|
476
|
+
completedAt?: Date | undefined;
|
|
477
477
|
environmentName: string | undefined;
|
|
478
|
-
serviceName?: string;
|
|
479
|
-
serviceInstanceName?: string;
|
|
480
|
-
componentName?: string;
|
|
481
|
-
lastAttemptedDeploymentId?: string;
|
|
482
|
-
lastSucceededDeploymentId?: string;
|
|
478
|
+
serviceName?: string | undefined;
|
|
479
|
+
serviceInstanceName?: string | undefined;
|
|
480
|
+
componentName?: string | undefined;
|
|
481
|
+
lastAttemptedDeploymentId?: string | undefined;
|
|
482
|
+
lastSucceededDeploymentId?: string | undefined;
|
|
483
483
|
deploymentStatus: DeploymentStatus | undefined;
|
|
484
484
|
}
|
|
485
485
|
export interface ListDeploymentsOutput {
|
|
486
|
-
nextToken?: string;
|
|
486
|
+
nextToken?: string | undefined;
|
|
487
487
|
deployments: DeploymentSummary[] | undefined;
|
|
488
488
|
}
|
|
489
489
|
export interface CreateEnvironmentAccountConnectionInput {
|
|
490
|
-
clientToken?: string;
|
|
490
|
+
clientToken?: string | undefined;
|
|
491
491
|
managementAccountId: string | undefined;
|
|
492
|
-
roleArn?: string;
|
|
492
|
+
roleArn?: string | undefined;
|
|
493
493
|
environmentName: string | undefined;
|
|
494
|
-
tags?: Tag[];
|
|
495
|
-
componentRoleArn?: string;
|
|
496
|
-
codebuildRoleArn?: string;
|
|
494
|
+
tags?: Tag[] | undefined;
|
|
495
|
+
componentRoleArn?: string | undefined;
|
|
496
|
+
codebuildRoleArn?: string | undefined;
|
|
497
497
|
}
|
|
498
498
|
export interface CreateEnvironmentAccountConnectionOutput {
|
|
499
499
|
environmentAccountConnection: EnvironmentAccountConnection | undefined;
|
|
@@ -502,7 +502,7 @@ export interface DeleteEnvironmentAccountConnectionInput {
|
|
|
502
502
|
id: string | undefined;
|
|
503
503
|
}
|
|
504
504
|
export interface DeleteEnvironmentAccountConnectionOutput {
|
|
505
|
-
environmentAccountConnection?: EnvironmentAccountConnection;
|
|
505
|
+
environmentAccountConnection?: EnvironmentAccountConnection | undefined;
|
|
506
506
|
}
|
|
507
507
|
export interface GetEnvironmentAccountConnectionInput {
|
|
508
508
|
id: string | undefined;
|
|
@@ -518,10 +518,10 @@ export type EnvironmentAccountConnectionRequesterAccountType =
|
|
|
518
518
|
(typeof EnvironmentAccountConnectionRequesterAccountType)[keyof typeof EnvironmentAccountConnectionRequesterAccountType];
|
|
519
519
|
export interface ListEnvironmentAccountConnectionsInput {
|
|
520
520
|
requestedBy: EnvironmentAccountConnectionRequesterAccountType | undefined;
|
|
521
|
-
environmentName?: string;
|
|
522
|
-
statuses?: EnvironmentAccountConnectionStatus[];
|
|
523
|
-
nextToken?: string;
|
|
524
|
-
maxResults?: number;
|
|
521
|
+
environmentName?: string | undefined;
|
|
522
|
+
statuses?: EnvironmentAccountConnectionStatus[] | undefined;
|
|
523
|
+
nextToken?: string | undefined;
|
|
524
|
+
maxResults?: number | undefined;
|
|
525
525
|
}
|
|
526
526
|
export interface EnvironmentAccountConnectionSummary {
|
|
527
527
|
id: string | undefined;
|
|
@@ -533,13 +533,13 @@ export interface EnvironmentAccountConnectionSummary {
|
|
|
533
533
|
requestedAt: Date | undefined;
|
|
534
534
|
lastModifiedAt: Date | undefined;
|
|
535
535
|
status: EnvironmentAccountConnectionStatus | undefined;
|
|
536
|
-
componentRoleArn?: string;
|
|
536
|
+
componentRoleArn?: string | undefined;
|
|
537
537
|
}
|
|
538
538
|
export interface ListEnvironmentAccountConnectionsOutput {
|
|
539
539
|
environmentAccountConnections:
|
|
540
540
|
| EnvironmentAccountConnectionSummary[]
|
|
541
541
|
| undefined;
|
|
542
|
-
nextToken?: string;
|
|
542
|
+
nextToken?: string | undefined;
|
|
543
543
|
}
|
|
544
544
|
export interface RejectEnvironmentAccountConnectionInput {
|
|
545
545
|
id: string | undefined;
|
|
@@ -549,43 +549,43 @@ export interface RejectEnvironmentAccountConnectionOutput {
|
|
|
549
549
|
}
|
|
550
550
|
export interface UpdateEnvironmentAccountConnectionInput {
|
|
551
551
|
id: string | undefined;
|
|
552
|
-
roleArn?: string;
|
|
553
|
-
componentRoleArn?: string;
|
|
554
|
-
codebuildRoleArn?: string;
|
|
552
|
+
roleArn?: string | undefined;
|
|
553
|
+
componentRoleArn?: string | undefined;
|
|
554
|
+
codebuildRoleArn?: string | undefined;
|
|
555
555
|
}
|
|
556
556
|
export interface UpdateEnvironmentAccountConnectionOutput {
|
|
557
557
|
environmentAccountConnection: EnvironmentAccountConnection | undefined;
|
|
558
558
|
}
|
|
559
559
|
export interface ListEnvironmentOutputsInput {
|
|
560
560
|
environmentName: string | undefined;
|
|
561
|
-
nextToken?: string;
|
|
562
|
-
deploymentId?: string;
|
|
561
|
+
nextToken?: string | undefined;
|
|
562
|
+
deploymentId?: string | undefined;
|
|
563
563
|
}
|
|
564
564
|
export interface ListEnvironmentOutputsOutput {
|
|
565
|
-
nextToken?: string;
|
|
565
|
+
nextToken?: string | undefined;
|
|
566
566
|
outputs: Output[] | undefined;
|
|
567
567
|
}
|
|
568
568
|
export interface ListEnvironmentProvisionedResourcesInput {
|
|
569
569
|
environmentName: string | undefined;
|
|
570
|
-
nextToken?: string;
|
|
570
|
+
nextToken?: string | undefined;
|
|
571
571
|
}
|
|
572
572
|
export interface ListEnvironmentProvisionedResourcesOutput {
|
|
573
|
-
nextToken?: string;
|
|
573
|
+
nextToken?: string | undefined;
|
|
574
574
|
provisionedResources: ProvisionedResource[] | undefined;
|
|
575
575
|
}
|
|
576
576
|
export interface CreateEnvironmentInput {
|
|
577
577
|
name: string | undefined;
|
|
578
578
|
templateName: string | undefined;
|
|
579
579
|
templateMajorVersion: string | undefined;
|
|
580
|
-
templateMinorVersion?: string;
|
|
581
|
-
description?: string;
|
|
580
|
+
templateMinorVersion?: string | undefined;
|
|
581
|
+
description?: string | undefined;
|
|
582
582
|
spec: string | undefined;
|
|
583
|
-
protonServiceRoleArn?: string;
|
|
584
|
-
environmentAccountConnectionId?: string;
|
|
585
|
-
tags?: Tag[];
|
|
586
|
-
provisioningRepository?: RepositoryBranchInput;
|
|
587
|
-
componentRoleArn?: string;
|
|
588
|
-
codebuildRoleArn?: string;
|
|
583
|
+
protonServiceRoleArn?: string | undefined;
|
|
584
|
+
environmentAccountConnectionId?: string | undefined;
|
|
585
|
+
tags?: Tag[] | undefined;
|
|
586
|
+
provisioningRepository?: RepositoryBranchInput | undefined;
|
|
587
|
+
componentRoleArn?: string | undefined;
|
|
588
|
+
codebuildRoleArn?: string | undefined;
|
|
589
589
|
}
|
|
590
590
|
export interface CreateEnvironmentOutput {
|
|
591
591
|
environment: Environment | undefined;
|
|
@@ -594,7 +594,7 @@ export interface DeleteEnvironmentInput {
|
|
|
594
594
|
name: string | undefined;
|
|
595
595
|
}
|
|
596
596
|
export interface DeleteEnvironmentOutput {
|
|
597
|
-
environment?: Environment;
|
|
597
|
+
environment?: Environment | undefined;
|
|
598
598
|
}
|
|
599
599
|
export interface GetEnvironmentInput {
|
|
600
600
|
name: string | undefined;
|
|
@@ -607,13 +607,13 @@ export interface EnvironmentTemplateFilter {
|
|
|
607
607
|
majorVersion: string | undefined;
|
|
608
608
|
}
|
|
609
609
|
export interface ListEnvironmentsInput {
|
|
610
|
-
nextToken?: string;
|
|
611
|
-
maxResults?: number;
|
|
612
|
-
environmentTemplates?: EnvironmentTemplateFilter[];
|
|
610
|
+
nextToken?: string | undefined;
|
|
611
|
+
maxResults?: number | undefined;
|
|
612
|
+
environmentTemplates?: EnvironmentTemplateFilter[] | undefined;
|
|
613
613
|
}
|
|
614
614
|
export interface EnvironmentSummary {
|
|
615
615
|
name: string | undefined;
|
|
616
|
-
description?: string;
|
|
616
|
+
description?: string | undefined;
|
|
617
617
|
createdAt: Date | undefined;
|
|
618
618
|
lastDeploymentAttemptedAt: Date | undefined;
|
|
619
619
|
lastDeploymentSucceededAt: Date | undefined;
|
|
@@ -622,17 +622,17 @@ export interface EnvironmentSummary {
|
|
|
622
622
|
templateMajorVersion: string | undefined;
|
|
623
623
|
templateMinorVersion: string | undefined;
|
|
624
624
|
deploymentStatus: DeploymentStatus | undefined;
|
|
625
|
-
deploymentStatusMessage?: string;
|
|
626
|
-
protonServiceRoleArn?: string;
|
|
627
|
-
environmentAccountConnectionId?: string;
|
|
628
|
-
environmentAccountId?: string;
|
|
629
|
-
provisioning?: Provisioning;
|
|
630
|
-
componentRoleArn?: string;
|
|
631
|
-
lastAttemptedDeploymentId?: string;
|
|
632
|
-
lastSucceededDeploymentId?: string;
|
|
625
|
+
deploymentStatusMessage?: string | undefined;
|
|
626
|
+
protonServiceRoleArn?: string | undefined;
|
|
627
|
+
environmentAccountConnectionId?: string | undefined;
|
|
628
|
+
environmentAccountId?: string | undefined;
|
|
629
|
+
provisioning?: Provisioning | undefined;
|
|
630
|
+
componentRoleArn?: string | undefined;
|
|
631
|
+
lastAttemptedDeploymentId?: string | undefined;
|
|
632
|
+
lastSucceededDeploymentId?: string | undefined;
|
|
633
633
|
}
|
|
634
634
|
export interface ListEnvironmentsOutput {
|
|
635
|
-
nextToken?: string;
|
|
635
|
+
nextToken?: string | undefined;
|
|
636
636
|
environments: EnvironmentSummary[] | undefined;
|
|
637
637
|
}
|
|
638
638
|
export declare const DeploymentUpdateType: {
|
|
@@ -645,38 +645,38 @@ export type DeploymentUpdateType =
|
|
|
645
645
|
(typeof DeploymentUpdateType)[keyof typeof DeploymentUpdateType];
|
|
646
646
|
export interface UpdateEnvironmentInput {
|
|
647
647
|
name: string | undefined;
|
|
648
|
-
description?: string;
|
|
649
|
-
spec?: string;
|
|
650
|
-
templateMajorVersion?: string;
|
|
651
|
-
templateMinorVersion?: string;
|
|
652
|
-
protonServiceRoleArn?: string;
|
|
648
|
+
description?: string | undefined;
|
|
649
|
+
spec?: string | undefined;
|
|
650
|
+
templateMajorVersion?: string | undefined;
|
|
651
|
+
templateMinorVersion?: string | undefined;
|
|
652
|
+
protonServiceRoleArn?: string | undefined;
|
|
653
653
|
deploymentType: DeploymentUpdateType | undefined;
|
|
654
|
-
environmentAccountConnectionId?: string;
|
|
655
|
-
provisioningRepository?: RepositoryBranchInput;
|
|
656
|
-
componentRoleArn?: string;
|
|
657
|
-
codebuildRoleArn?: string;
|
|
654
|
+
environmentAccountConnectionId?: string | undefined;
|
|
655
|
+
provisioningRepository?: RepositoryBranchInput | undefined;
|
|
656
|
+
componentRoleArn?: string | undefined;
|
|
657
|
+
codebuildRoleArn?: string | undefined;
|
|
658
658
|
}
|
|
659
659
|
export interface UpdateEnvironmentOutput {
|
|
660
660
|
environment: Environment | undefined;
|
|
661
661
|
}
|
|
662
662
|
export interface CreateEnvironmentTemplateInput {
|
|
663
663
|
name: string | undefined;
|
|
664
|
-
displayName?: string;
|
|
665
|
-
description?: string;
|
|
666
|
-
encryptionKey?: string;
|
|
667
|
-
provisioning?: Provisioning;
|
|
668
|
-
tags?: Tag[];
|
|
664
|
+
displayName?: string | undefined;
|
|
665
|
+
description?: string | undefined;
|
|
666
|
+
encryptionKey?: string | undefined;
|
|
667
|
+
provisioning?: Provisioning | undefined;
|
|
668
|
+
tags?: Tag[] | undefined;
|
|
669
669
|
}
|
|
670
670
|
export interface EnvironmentTemplate {
|
|
671
671
|
name: string | undefined;
|
|
672
672
|
arn: string | undefined;
|
|
673
673
|
createdAt: Date | undefined;
|
|
674
674
|
lastModifiedAt: Date | undefined;
|
|
675
|
-
displayName?: string;
|
|
676
|
-
description?: string;
|
|
677
|
-
recommendedVersion?: string;
|
|
678
|
-
encryptionKey?: string;
|
|
679
|
-
provisioning?: Provisioning;
|
|
675
|
+
displayName?: string | undefined;
|
|
676
|
+
description?: string | undefined;
|
|
677
|
+
recommendedVersion?: string | undefined;
|
|
678
|
+
encryptionKey?: string | undefined;
|
|
679
|
+
provisioning?: Provisioning | undefined;
|
|
680
680
|
}
|
|
681
681
|
export interface CreateEnvironmentTemplateOutput {
|
|
682
682
|
environmentTemplate: EnvironmentTemplate | undefined;
|
|
@@ -685,7 +685,7 @@ export interface DeleteEnvironmentTemplateInput {
|
|
|
685
685
|
name: string | undefined;
|
|
686
686
|
}
|
|
687
687
|
export interface DeleteEnvironmentTemplateOutput {
|
|
688
|
-
environmentTemplate?: EnvironmentTemplate;
|
|
688
|
+
environmentTemplate?: EnvironmentTemplate | undefined;
|
|
689
689
|
}
|
|
690
690
|
export interface GetEnvironmentTemplateInput {
|
|
691
691
|
name: string | undefined;
|
|
@@ -694,27 +694,27 @@ export interface GetEnvironmentTemplateOutput {
|
|
|
694
694
|
environmentTemplate: EnvironmentTemplate | undefined;
|
|
695
695
|
}
|
|
696
696
|
export interface ListEnvironmentTemplatesInput {
|
|
697
|
-
nextToken?: string;
|
|
698
|
-
maxResults?: number;
|
|
697
|
+
nextToken?: string | undefined;
|
|
698
|
+
maxResults?: number | undefined;
|
|
699
699
|
}
|
|
700
700
|
export interface EnvironmentTemplateSummary {
|
|
701
701
|
name: string | undefined;
|
|
702
702
|
arn: string | undefined;
|
|
703
703
|
createdAt: Date | undefined;
|
|
704
704
|
lastModifiedAt: Date | undefined;
|
|
705
|
-
displayName?: string;
|
|
706
|
-
description?: string;
|
|
707
|
-
recommendedVersion?: string;
|
|
708
|
-
provisioning?: Provisioning;
|
|
705
|
+
displayName?: string | undefined;
|
|
706
|
+
description?: string | undefined;
|
|
707
|
+
recommendedVersion?: string | undefined;
|
|
708
|
+
provisioning?: Provisioning | undefined;
|
|
709
709
|
}
|
|
710
710
|
export interface ListEnvironmentTemplatesOutput {
|
|
711
|
-
nextToken?: string;
|
|
711
|
+
nextToken?: string | undefined;
|
|
712
712
|
templates: EnvironmentTemplateSummary[] | undefined;
|
|
713
713
|
}
|
|
714
714
|
export interface UpdateEnvironmentTemplateInput {
|
|
715
715
|
name: string | undefined;
|
|
716
|
-
displayName?: string;
|
|
717
|
-
description?: string;
|
|
716
|
+
displayName?: string | undefined;
|
|
717
|
+
description?: string | undefined;
|
|
718
718
|
}
|
|
719
719
|
export interface UpdateEnvironmentTemplateOutput {
|
|
720
720
|
environmentTemplate: EnvironmentTemplate | undefined;
|
|
@@ -742,12 +742,12 @@ export declare namespace TemplateVersionSourceInput {
|
|
|
742
742
|
const visit: <T>(value: TemplateVersionSourceInput, visitor: Visitor<T>) => T;
|
|
743
743
|
}
|
|
744
744
|
export interface CreateEnvironmentTemplateVersionInput {
|
|
745
|
-
clientToken?: string;
|
|
745
|
+
clientToken?: string | undefined;
|
|
746
746
|
templateName: string | undefined;
|
|
747
|
-
description?: string;
|
|
748
|
-
majorVersion?: string;
|
|
747
|
+
description?: string | undefined;
|
|
748
|
+
majorVersion?: string | undefined;
|
|
749
749
|
source: TemplateVersionSourceInput | undefined;
|
|
750
|
-
tags?: Tag[];
|
|
750
|
+
tags?: Tag[] | undefined;
|
|
751
751
|
}
|
|
752
752
|
export declare const TemplateVersionStatus: {
|
|
753
753
|
readonly DRAFT: "DRAFT";
|
|
@@ -761,14 +761,14 @@ export interface EnvironmentTemplateVersion {
|
|
|
761
761
|
templateName: string | undefined;
|
|
762
762
|
majorVersion: string | undefined;
|
|
763
763
|
minorVersion: string | undefined;
|
|
764
|
-
recommendedMinorVersion?: string;
|
|
764
|
+
recommendedMinorVersion?: string | undefined;
|
|
765
765
|
status: TemplateVersionStatus | undefined;
|
|
766
|
-
statusMessage?: string;
|
|
767
|
-
description?: string;
|
|
766
|
+
statusMessage?: string | undefined;
|
|
767
|
+
description?: string | undefined;
|
|
768
768
|
arn: string | undefined;
|
|
769
769
|
createdAt: Date | undefined;
|
|
770
770
|
lastModifiedAt: Date | undefined;
|
|
771
|
-
schema?: string;
|
|
771
|
+
schema?: string | undefined;
|
|
772
772
|
}
|
|
773
773
|
export interface CreateEnvironmentTemplateVersionOutput {
|
|
774
774
|
environmentTemplateVersion: EnvironmentTemplateVersion | undefined;
|
|
@@ -779,7 +779,7 @@ export interface DeleteEnvironmentTemplateVersionInput {
|
|
|
779
779
|
minorVersion: string | undefined;
|
|
780
780
|
}
|
|
781
781
|
export interface DeleteEnvironmentTemplateVersionOutput {
|
|
782
|
-
environmentTemplateVersion?: EnvironmentTemplateVersion;
|
|
782
|
+
environmentTemplateVersion?: EnvironmentTemplateVersion | undefined;
|
|
783
783
|
}
|
|
784
784
|
export interface GetEnvironmentTemplateVersionInput {
|
|
785
785
|
templateName: string | undefined;
|
|
@@ -790,33 +790,33 @@ export interface GetEnvironmentTemplateVersionOutput {
|
|
|
790
790
|
environmentTemplateVersion: EnvironmentTemplateVersion | undefined;
|
|
791
791
|
}
|
|
792
792
|
export interface ListEnvironmentTemplateVersionsInput {
|
|
793
|
-
nextToken?: string;
|
|
794
|
-
maxResults?: number;
|
|
793
|
+
nextToken?: string | undefined;
|
|
794
|
+
maxResults?: number | undefined;
|
|
795
795
|
templateName: string | undefined;
|
|
796
|
-
majorVersion?: string;
|
|
796
|
+
majorVersion?: string | undefined;
|
|
797
797
|
}
|
|
798
798
|
export interface EnvironmentTemplateVersionSummary {
|
|
799
799
|
templateName: string | undefined;
|
|
800
800
|
majorVersion: string | undefined;
|
|
801
801
|
minorVersion: string | undefined;
|
|
802
|
-
recommendedMinorVersion?: string;
|
|
802
|
+
recommendedMinorVersion?: string | undefined;
|
|
803
803
|
status: TemplateVersionStatus | undefined;
|
|
804
|
-
statusMessage?: string;
|
|
805
|
-
description?: string;
|
|
804
|
+
statusMessage?: string | undefined;
|
|
805
|
+
description?: string | undefined;
|
|
806
806
|
arn: string | undefined;
|
|
807
807
|
createdAt: Date | undefined;
|
|
808
808
|
lastModifiedAt: Date | undefined;
|
|
809
809
|
}
|
|
810
810
|
export interface ListEnvironmentTemplateVersionsOutput {
|
|
811
|
-
nextToken?: string;
|
|
811
|
+
nextToken?: string | undefined;
|
|
812
812
|
templateVersions: EnvironmentTemplateVersionSummary[] | undefined;
|
|
813
813
|
}
|
|
814
814
|
export interface UpdateEnvironmentTemplateVersionInput {
|
|
815
815
|
templateName: string | undefined;
|
|
816
816
|
majorVersion: string | undefined;
|
|
817
817
|
minorVersion: string | undefined;
|
|
818
|
-
description?: string;
|
|
819
|
-
status?: TemplateVersionStatus;
|
|
818
|
+
description?: string | undefined;
|
|
819
|
+
status?: TemplateVersionStatus | undefined;
|
|
820
820
|
}
|
|
821
821
|
export interface UpdateEnvironmentTemplateVersionOutput {
|
|
822
822
|
environmentTemplateVersion: EnvironmentTemplateVersion | undefined;
|
|
@@ -834,7 +834,7 @@ export interface GetRepositorySyncStatusInput {
|
|
|
834
834
|
}
|
|
835
835
|
export interface RepositorySyncEvent {
|
|
836
836
|
type: string | undefined;
|
|
837
|
-
externalId?: string;
|
|
837
|
+
externalId?: string | undefined;
|
|
838
838
|
time: Date | undefined;
|
|
839
839
|
event: string | undefined;
|
|
840
840
|
}
|
|
@@ -853,24 +853,24 @@ export interface RepositorySyncAttempt {
|
|
|
853
853
|
events: RepositorySyncEvent[] | undefined;
|
|
854
854
|
}
|
|
855
855
|
export interface GetRepositorySyncStatusOutput {
|
|
856
|
-
latestSync?: RepositorySyncAttempt;
|
|
856
|
+
latestSync?: RepositorySyncAttempt | undefined;
|
|
857
857
|
}
|
|
858
858
|
export interface GetResourcesSummaryInput {}
|
|
859
859
|
export interface ResourceCountsSummary {
|
|
860
860
|
total: number | undefined;
|
|
861
|
-
failed?: number;
|
|
862
|
-
upToDate?: number;
|
|
863
|
-
behindMajor?: number;
|
|
864
|
-
behindMinor?: number;
|
|
861
|
+
failed?: number | undefined;
|
|
862
|
+
upToDate?: number | undefined;
|
|
863
|
+
behindMajor?: number | undefined;
|
|
864
|
+
behindMinor?: number | undefined;
|
|
865
865
|
}
|
|
866
866
|
export interface CountsSummary {
|
|
867
|
-
components?: ResourceCountsSummary;
|
|
868
|
-
environments?: ResourceCountsSummary;
|
|
869
|
-
environmentTemplates?: ResourceCountsSummary;
|
|
870
|
-
serviceInstances?: ResourceCountsSummary;
|
|
871
|
-
services?: ResourceCountsSummary;
|
|
872
|
-
serviceTemplates?: ResourceCountsSummary;
|
|
873
|
-
pipelines?: ResourceCountsSummary;
|
|
867
|
+
components?: ResourceCountsSummary | undefined;
|
|
868
|
+
environments?: ResourceCountsSummary | undefined;
|
|
869
|
+
environmentTemplates?: ResourceCountsSummary | undefined;
|
|
870
|
+
serviceInstances?: ResourceCountsSummary | undefined;
|
|
871
|
+
services?: ResourceCountsSummary | undefined;
|
|
872
|
+
serviceTemplates?: ResourceCountsSummary | undefined;
|
|
873
|
+
pipelines?: ResourceCountsSummary | undefined;
|
|
874
874
|
}
|
|
875
875
|
export interface GetResourcesSummaryOutput {
|
|
876
876
|
counts: CountsSummary | undefined;
|
|
@@ -888,7 +888,7 @@ export interface Revision {
|
|
|
888
888
|
}
|
|
889
889
|
export interface ResourceSyncEvent {
|
|
890
890
|
type: string | undefined;
|
|
891
|
-
externalId?: string;
|
|
891
|
+
externalId?: string | undefined;
|
|
892
892
|
time: Date | undefined;
|
|
893
893
|
event: string | undefined;
|
|
894
894
|
}
|
|
@@ -909,9 +909,9 @@ export interface ResourceSyncAttempt {
|
|
|
909
909
|
events: ResourceSyncEvent[] | undefined;
|
|
910
910
|
}
|
|
911
911
|
export interface GetServiceInstanceSyncStatusOutput {
|
|
912
|
-
latestSync?: ResourceSyncAttempt;
|
|
913
|
-
latestSuccessfulSync?: ResourceSyncAttempt;
|
|
914
|
-
desiredState?: Revision;
|
|
912
|
+
latestSync?: ResourceSyncAttempt | undefined;
|
|
913
|
+
latestSuccessfulSync?: ResourceSyncAttempt | undefined;
|
|
914
|
+
desiredState?: Revision | undefined;
|
|
915
915
|
}
|
|
916
916
|
export declare const TemplateType: {
|
|
917
917
|
readonly ENVIRONMENT: "ENVIRONMENT";
|
|
@@ -924,15 +924,15 @@ export interface GetTemplateSyncStatusInput {
|
|
|
924
924
|
templateVersion: string | undefined;
|
|
925
925
|
}
|
|
926
926
|
export interface GetTemplateSyncStatusOutput {
|
|
927
|
-
latestSync?: ResourceSyncAttempt;
|
|
928
|
-
latestSuccessfulSync?: ResourceSyncAttempt;
|
|
929
|
-
desiredState?: Revision;
|
|
927
|
+
latestSync?: ResourceSyncAttempt | undefined;
|
|
928
|
+
latestSuccessfulSync?: ResourceSyncAttempt | undefined;
|
|
929
|
+
desiredState?: Revision | undefined;
|
|
930
930
|
}
|
|
931
931
|
export interface ListRepositorySyncDefinitionsInput {
|
|
932
932
|
repositoryName: string | undefined;
|
|
933
933
|
repositoryProvider: RepositoryProvider | undefined;
|
|
934
934
|
syncType: SyncType | undefined;
|
|
935
|
-
nextToken?: string;
|
|
935
|
+
nextToken?: string | undefined;
|
|
936
936
|
}
|
|
937
937
|
export interface RepositorySyncDefinition {
|
|
938
938
|
target: string | undefined;
|
|
@@ -941,17 +941,17 @@ export interface RepositorySyncDefinition {
|
|
|
941
941
|
directory: string | undefined;
|
|
942
942
|
}
|
|
943
943
|
export interface ListRepositorySyncDefinitionsOutput {
|
|
944
|
-
nextToken?: string;
|
|
944
|
+
nextToken?: string | undefined;
|
|
945
945
|
syncDefinitions: RepositorySyncDefinition[] | undefined;
|
|
946
946
|
}
|
|
947
947
|
export interface ListTagsForResourceInput {
|
|
948
948
|
resourceArn: string | undefined;
|
|
949
|
-
nextToken?: string;
|
|
950
|
-
maxResults?: number;
|
|
949
|
+
nextToken?: string | undefined;
|
|
950
|
+
maxResults?: number | undefined;
|
|
951
951
|
}
|
|
952
952
|
export interface ListTagsForResourceOutput {
|
|
953
953
|
tags: Tag[] | undefined;
|
|
954
|
-
nextToken?: string;
|
|
954
|
+
nextToken?: string | undefined;
|
|
955
955
|
}
|
|
956
956
|
export declare const ResourceDeploymentStatus: {
|
|
957
957
|
readonly FAILED: "FAILED";
|
|
@@ -962,25 +962,25 @@ export type ResourceDeploymentStatus =
|
|
|
962
962
|
(typeof ResourceDeploymentStatus)[keyof typeof ResourceDeploymentStatus];
|
|
963
963
|
export interface NotifyResourceDeploymentStatusChangeInput {
|
|
964
964
|
resourceArn: string | undefined;
|
|
965
|
-
status?: ResourceDeploymentStatus;
|
|
966
|
-
outputs?: Output[];
|
|
967
|
-
deploymentId?: string;
|
|
968
|
-
statusMessage?: string;
|
|
965
|
+
status?: ResourceDeploymentStatus | undefined;
|
|
966
|
+
outputs?: Output[] | undefined;
|
|
967
|
+
deploymentId?: string | undefined;
|
|
968
|
+
statusMessage?: string | undefined;
|
|
969
969
|
}
|
|
970
970
|
export interface NotifyResourceDeploymentStatusChangeOutput {}
|
|
971
971
|
export interface CreateRepositoryInput {
|
|
972
972
|
provider: RepositoryProvider | undefined;
|
|
973
973
|
name: string | undefined;
|
|
974
974
|
connectionArn: string | undefined;
|
|
975
|
-
encryptionKey?: string;
|
|
976
|
-
tags?: Tag[];
|
|
975
|
+
encryptionKey?: string | undefined;
|
|
976
|
+
tags?: Tag[] | undefined;
|
|
977
977
|
}
|
|
978
978
|
export interface Repository {
|
|
979
979
|
arn: string | undefined;
|
|
980
980
|
provider: RepositoryProvider | undefined;
|
|
981
981
|
name: string | undefined;
|
|
982
982
|
connectionArn: string | undefined;
|
|
983
|
-
encryptionKey?: string;
|
|
983
|
+
encryptionKey?: string | undefined;
|
|
984
984
|
}
|
|
985
985
|
export interface CreateRepositoryOutput {
|
|
986
986
|
repository: Repository | undefined;
|
|
@@ -990,7 +990,7 @@ export interface DeleteRepositoryInput {
|
|
|
990
990
|
name: string | undefined;
|
|
991
991
|
}
|
|
992
992
|
export interface DeleteRepositoryOutput {
|
|
993
|
-
repository?: Repository;
|
|
993
|
+
repository?: Repository | undefined;
|
|
994
994
|
}
|
|
995
995
|
export interface GetRepositoryInput {
|
|
996
996
|
provider: RepositoryProvider | undefined;
|
|
@@ -1000,8 +1000,8 @@ export interface GetRepositoryOutput {
|
|
|
1000
1000
|
repository: Repository | undefined;
|
|
1001
1001
|
}
|
|
1002
1002
|
export interface ListRepositoriesInput {
|
|
1003
|
-
nextToken?: string;
|
|
1004
|
-
maxResults?: number;
|
|
1003
|
+
nextToken?: string | undefined;
|
|
1004
|
+
maxResults?: number | undefined;
|
|
1005
1005
|
}
|
|
1006
1006
|
export interface RepositorySummary {
|
|
1007
1007
|
arn: string | undefined;
|
|
@@ -1010,36 +1010,36 @@ export interface RepositorySummary {
|
|
|
1010
1010
|
connectionArn: string | undefined;
|
|
1011
1011
|
}
|
|
1012
1012
|
export interface ListRepositoriesOutput {
|
|
1013
|
-
nextToken?: string;
|
|
1013
|
+
nextToken?: string | undefined;
|
|
1014
1014
|
repositories: RepositorySummary[] | undefined;
|
|
1015
1015
|
}
|
|
1016
1016
|
export interface ListServiceInstanceOutputsInput {
|
|
1017
1017
|
serviceInstanceName: string | undefined;
|
|
1018
1018
|
serviceName: string | undefined;
|
|
1019
|
-
nextToken?: string;
|
|
1020
|
-
deploymentId?: string;
|
|
1019
|
+
nextToken?: string | undefined;
|
|
1020
|
+
deploymentId?: string | undefined;
|
|
1021
1021
|
}
|
|
1022
1022
|
export interface ListServiceInstanceOutputsOutput {
|
|
1023
|
-
nextToken?: string;
|
|
1023
|
+
nextToken?: string | undefined;
|
|
1024
1024
|
outputs: Output[] | undefined;
|
|
1025
1025
|
}
|
|
1026
1026
|
export interface ListServiceInstanceProvisionedResourcesInput {
|
|
1027
1027
|
serviceName: string | undefined;
|
|
1028
1028
|
serviceInstanceName: string | undefined;
|
|
1029
|
-
nextToken?: string;
|
|
1029
|
+
nextToken?: string | undefined;
|
|
1030
1030
|
}
|
|
1031
1031
|
export interface ListServiceInstanceProvisionedResourcesOutput {
|
|
1032
|
-
nextToken?: string;
|
|
1032
|
+
nextToken?: string | undefined;
|
|
1033
1033
|
provisionedResources: ProvisionedResource[] | undefined;
|
|
1034
1034
|
}
|
|
1035
1035
|
export interface CreateServiceInstanceInput {
|
|
1036
1036
|
name: string | undefined;
|
|
1037
1037
|
serviceName: string | undefined;
|
|
1038
1038
|
spec: string | undefined;
|
|
1039
|
-
templateMajorVersion?: string;
|
|
1040
|
-
templateMinorVersion?: string;
|
|
1041
|
-
tags?: Tag[];
|
|
1042
|
-
clientToken?: string;
|
|
1039
|
+
templateMajorVersion?: string | undefined;
|
|
1040
|
+
templateMinorVersion?: string | undefined;
|
|
1041
|
+
tags?: Tag[] | undefined;
|
|
1042
|
+
clientToken?: string | undefined;
|
|
1043
1043
|
}
|
|
1044
1044
|
export interface CreateServiceInstanceOutput {
|
|
1045
1045
|
serviceInstance: ServiceInstance | undefined;
|
|
@@ -1066,8 +1066,8 @@ export declare const ListServiceInstancesFilterBy: {
|
|
|
1066
1066
|
export type ListServiceInstancesFilterBy =
|
|
1067
1067
|
(typeof ListServiceInstancesFilterBy)[keyof typeof ListServiceInstancesFilterBy];
|
|
1068
1068
|
export interface ListServiceInstancesFilter {
|
|
1069
|
-
key?: ListServiceInstancesFilterBy;
|
|
1070
|
-
value?: string;
|
|
1069
|
+
key?: ListServiceInstancesFilterBy | undefined;
|
|
1070
|
+
value?: string | undefined;
|
|
1071
1071
|
}
|
|
1072
1072
|
export declare const ListServiceInstancesSortBy: {
|
|
1073
1073
|
readonly CREATED_AT: "createdAt";
|
|
@@ -1086,12 +1086,12 @@ export declare const SortOrder: {
|
|
|
1086
1086
|
};
|
|
1087
1087
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1088
1088
|
export interface ListServiceInstancesInput {
|
|
1089
|
-
serviceName?: string;
|
|
1090
|
-
nextToken?: string;
|
|
1091
|
-
maxResults?: number;
|
|
1092
|
-
filters?: ListServiceInstancesFilter[];
|
|
1093
|
-
sortBy?: ListServiceInstancesSortBy;
|
|
1094
|
-
sortOrder?: SortOrder;
|
|
1089
|
+
serviceName?: string | undefined;
|
|
1090
|
+
nextToken?: string | undefined;
|
|
1091
|
+
maxResults?: number | undefined;
|
|
1092
|
+
filters?: ListServiceInstancesFilter[] | undefined;
|
|
1093
|
+
sortBy?: ListServiceInstancesSortBy | undefined;
|
|
1094
|
+
sortOrder?: SortOrder | undefined;
|
|
1095
1095
|
}
|
|
1096
1096
|
export interface ServiceInstanceSummary {
|
|
1097
1097
|
name: string | undefined;
|
|
@@ -1105,64 +1105,64 @@ export interface ServiceInstanceSummary {
|
|
|
1105
1105
|
templateMajorVersion: string | undefined;
|
|
1106
1106
|
templateMinorVersion: string | undefined;
|
|
1107
1107
|
deploymentStatus: DeploymentStatus | undefined;
|
|
1108
|
-
deploymentStatusMessage?: string;
|
|
1109
|
-
lastAttemptedDeploymentId?: string;
|
|
1110
|
-
lastSucceededDeploymentId?: string;
|
|
1108
|
+
deploymentStatusMessage?: string | undefined;
|
|
1109
|
+
lastAttemptedDeploymentId?: string | undefined;
|
|
1110
|
+
lastSucceededDeploymentId?: string | undefined;
|
|
1111
1111
|
}
|
|
1112
1112
|
export interface ListServiceInstancesOutput {
|
|
1113
|
-
nextToken?: string;
|
|
1113
|
+
nextToken?: string | undefined;
|
|
1114
1114
|
serviceInstances: ServiceInstanceSummary[] | undefined;
|
|
1115
1115
|
}
|
|
1116
1116
|
export interface UpdateServiceInstanceInput {
|
|
1117
1117
|
name: string | undefined;
|
|
1118
1118
|
serviceName: string | undefined;
|
|
1119
1119
|
deploymentType: DeploymentUpdateType | undefined;
|
|
1120
|
-
spec?: string;
|
|
1121
|
-
templateMajorVersion?: string;
|
|
1122
|
-
templateMinorVersion?: string;
|
|
1123
|
-
clientToken?: string;
|
|
1120
|
+
spec?: string | undefined;
|
|
1121
|
+
templateMajorVersion?: string | undefined;
|
|
1122
|
+
templateMinorVersion?: string | undefined;
|
|
1123
|
+
clientToken?: string | undefined;
|
|
1124
1124
|
}
|
|
1125
1125
|
export interface UpdateServiceInstanceOutput {
|
|
1126
1126
|
serviceInstance: ServiceInstance | undefined;
|
|
1127
1127
|
}
|
|
1128
1128
|
export interface ListServicePipelineOutputsInput {
|
|
1129
1129
|
serviceName: string | undefined;
|
|
1130
|
-
nextToken?: string;
|
|
1131
|
-
deploymentId?: string;
|
|
1130
|
+
nextToken?: string | undefined;
|
|
1131
|
+
deploymentId?: string | undefined;
|
|
1132
1132
|
}
|
|
1133
1133
|
export interface ListServicePipelineOutputsOutput {
|
|
1134
|
-
nextToken?: string;
|
|
1134
|
+
nextToken?: string | undefined;
|
|
1135
1135
|
outputs: Output[] | undefined;
|
|
1136
1136
|
}
|
|
1137
1137
|
export interface ListServicePipelineProvisionedResourcesInput {
|
|
1138
1138
|
serviceName: string | undefined;
|
|
1139
|
-
nextToken?: string;
|
|
1139
|
+
nextToken?: string | undefined;
|
|
1140
1140
|
}
|
|
1141
1141
|
export interface ListServicePipelineProvisionedResourcesOutput {
|
|
1142
|
-
nextToken?: string;
|
|
1142
|
+
nextToken?: string | undefined;
|
|
1143
1143
|
provisionedResources: ProvisionedResource[] | undefined;
|
|
1144
1144
|
}
|
|
1145
1145
|
export interface UpdateServicePipelineInput {
|
|
1146
1146
|
serviceName: string | undefined;
|
|
1147
1147
|
spec: string | undefined;
|
|
1148
1148
|
deploymentType: DeploymentUpdateType | undefined;
|
|
1149
|
-
templateMajorVersion?: string;
|
|
1150
|
-
templateMinorVersion?: string;
|
|
1149
|
+
templateMajorVersion?: string | undefined;
|
|
1150
|
+
templateMinorVersion?: string | undefined;
|
|
1151
1151
|
}
|
|
1152
1152
|
export interface UpdateServicePipelineOutput {
|
|
1153
1153
|
pipeline: ServicePipeline | undefined;
|
|
1154
1154
|
}
|
|
1155
1155
|
export interface CreateServiceInput {
|
|
1156
1156
|
name: string | undefined;
|
|
1157
|
-
description?: string;
|
|
1157
|
+
description?: string | undefined;
|
|
1158
1158
|
templateName: string | undefined;
|
|
1159
1159
|
templateMajorVersion: string | undefined;
|
|
1160
|
-
templateMinorVersion?: string;
|
|
1160
|
+
templateMinorVersion?: string | undefined;
|
|
1161
1161
|
spec: string | undefined;
|
|
1162
|
-
repositoryConnectionArn?: string;
|
|
1163
|
-
repositoryId?: string;
|
|
1164
|
-
branchName?: string;
|
|
1165
|
-
tags?: Tag[];
|
|
1162
|
+
repositoryConnectionArn?: string | undefined;
|
|
1163
|
+
repositoryId?: string | undefined;
|
|
1164
|
+
branchName?: string | undefined;
|
|
1165
|
+
tags?: Tag[] | undefined;
|
|
1166
1166
|
}
|
|
1167
1167
|
export declare const ServiceStatus: {
|
|
1168
1168
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -1183,18 +1183,18 @@ export declare const ServiceStatus: {
|
|
|
1183
1183
|
export type ServiceStatus = (typeof ServiceStatus)[keyof typeof ServiceStatus];
|
|
1184
1184
|
export interface Service {
|
|
1185
1185
|
name: string | undefined;
|
|
1186
|
-
description?: string;
|
|
1186
|
+
description?: string | undefined;
|
|
1187
1187
|
arn: string | undefined;
|
|
1188
1188
|
templateName: string | undefined;
|
|
1189
1189
|
createdAt: Date | undefined;
|
|
1190
1190
|
lastModifiedAt: Date | undefined;
|
|
1191
1191
|
status: ServiceStatus | undefined;
|
|
1192
|
-
statusMessage?: string;
|
|
1192
|
+
statusMessage?: string | undefined;
|
|
1193
1193
|
spec: string | undefined;
|
|
1194
|
-
pipeline?: ServicePipeline;
|
|
1195
|
-
repositoryConnectionArn?: string;
|
|
1196
|
-
repositoryId?: string;
|
|
1197
|
-
branchName?: string;
|
|
1194
|
+
pipeline?: ServicePipeline | undefined;
|
|
1195
|
+
repositoryConnectionArn?: string | undefined;
|
|
1196
|
+
repositoryId?: string | undefined;
|
|
1197
|
+
branchName?: string | undefined;
|
|
1198
1198
|
}
|
|
1199
1199
|
export interface CreateServiceOutput {
|
|
1200
1200
|
service: Service | undefined;
|
|
@@ -1203,43 +1203,43 @@ export interface DeleteServiceInput {
|
|
|
1203
1203
|
name: string | undefined;
|
|
1204
1204
|
}
|
|
1205
1205
|
export interface DeleteServiceOutput {
|
|
1206
|
-
service?: Service;
|
|
1206
|
+
service?: Service | undefined;
|
|
1207
1207
|
}
|
|
1208
1208
|
export interface GetServiceInput {
|
|
1209
1209
|
name: string | undefined;
|
|
1210
1210
|
}
|
|
1211
1211
|
export interface GetServiceOutput {
|
|
1212
|
-
service?: Service;
|
|
1212
|
+
service?: Service | undefined;
|
|
1213
1213
|
}
|
|
1214
1214
|
export interface ListServicesInput {
|
|
1215
|
-
nextToken?: string;
|
|
1216
|
-
maxResults?: number;
|
|
1215
|
+
nextToken?: string | undefined;
|
|
1216
|
+
maxResults?: number | undefined;
|
|
1217
1217
|
}
|
|
1218
1218
|
export interface ServiceSummary {
|
|
1219
1219
|
name: string | undefined;
|
|
1220
|
-
description?: string;
|
|
1220
|
+
description?: string | undefined;
|
|
1221
1221
|
arn: string | undefined;
|
|
1222
1222
|
templateName: string | undefined;
|
|
1223
1223
|
createdAt: Date | undefined;
|
|
1224
1224
|
lastModifiedAt: Date | undefined;
|
|
1225
1225
|
status: ServiceStatus | undefined;
|
|
1226
|
-
statusMessage?: string;
|
|
1226
|
+
statusMessage?: string | undefined;
|
|
1227
1227
|
}
|
|
1228
1228
|
export interface ListServicesOutput {
|
|
1229
|
-
nextToken?: string;
|
|
1229
|
+
nextToken?: string | undefined;
|
|
1230
1230
|
services: ServiceSummary[] | undefined;
|
|
1231
1231
|
}
|
|
1232
1232
|
export interface UpdateServiceInput {
|
|
1233
1233
|
name: string | undefined;
|
|
1234
|
-
description?: string;
|
|
1235
|
-
spec?: string;
|
|
1234
|
+
description?: string | undefined;
|
|
1235
|
+
spec?: string | undefined;
|
|
1236
1236
|
}
|
|
1237
1237
|
export interface UpdateServiceOutput {
|
|
1238
1238
|
service: Service | undefined;
|
|
1239
1239
|
}
|
|
1240
1240
|
export interface GetServiceSyncBlockerSummaryInput {
|
|
1241
1241
|
serviceName: string | undefined;
|
|
1242
|
-
serviceInstanceName?: string;
|
|
1242
|
+
serviceInstanceName?: string | undefined;
|
|
1243
1243
|
}
|
|
1244
1244
|
export interface SyncBlockerContext {
|
|
1245
1245
|
key: string | undefined;
|
|
@@ -1260,17 +1260,17 @@ export interface SyncBlocker {
|
|
|
1260
1260
|
status: BlockerStatus | undefined;
|
|
1261
1261
|
createdReason: string | undefined;
|
|
1262
1262
|
createdAt: Date | undefined;
|
|
1263
|
-
contexts?: SyncBlockerContext[];
|
|
1264
|
-
resolvedReason?: string;
|
|
1265
|
-
resolvedAt?: Date;
|
|
1263
|
+
contexts?: SyncBlockerContext[] | undefined;
|
|
1264
|
+
resolvedReason?: string | undefined;
|
|
1265
|
+
resolvedAt?: Date | undefined;
|
|
1266
1266
|
}
|
|
1267
1267
|
export interface ServiceSyncBlockerSummary {
|
|
1268
1268
|
serviceName: string | undefined;
|
|
1269
|
-
serviceInstanceName?: string;
|
|
1270
|
-
latestBlockers?: SyncBlocker[];
|
|
1269
|
+
serviceInstanceName?: string | undefined;
|
|
1270
|
+
latestBlockers?: SyncBlocker[] | undefined;
|
|
1271
1271
|
}
|
|
1272
1272
|
export interface GetServiceSyncBlockerSummaryOutput {
|
|
1273
|
-
serviceSyncBlockerSummary?: ServiceSyncBlockerSummary;
|
|
1273
|
+
serviceSyncBlockerSummary?: ServiceSyncBlockerSummary | undefined;
|
|
1274
1274
|
}
|
|
1275
1275
|
export interface UpdateServiceSyncBlockerInput {
|
|
1276
1276
|
id: string | undefined;
|
|
@@ -1278,7 +1278,7 @@ export interface UpdateServiceSyncBlockerInput {
|
|
|
1278
1278
|
}
|
|
1279
1279
|
export interface UpdateServiceSyncBlockerOutput {
|
|
1280
1280
|
serviceName: string | undefined;
|
|
1281
|
-
serviceInstanceName?: string;
|
|
1281
|
+
serviceInstanceName?: string | undefined;
|
|
1282
1282
|
serviceSyncBlocker: SyncBlocker | undefined;
|
|
1283
1283
|
}
|
|
1284
1284
|
export interface CreateServiceSyncConfigInput {
|
|
@@ -1296,19 +1296,19 @@ export interface ServiceSyncConfig {
|
|
|
1296
1296
|
filePath: string | undefined;
|
|
1297
1297
|
}
|
|
1298
1298
|
export interface CreateServiceSyncConfigOutput {
|
|
1299
|
-
serviceSyncConfig?: ServiceSyncConfig;
|
|
1299
|
+
serviceSyncConfig?: ServiceSyncConfig | undefined;
|
|
1300
1300
|
}
|
|
1301
1301
|
export interface DeleteServiceSyncConfigInput {
|
|
1302
1302
|
serviceName: string | undefined;
|
|
1303
1303
|
}
|
|
1304
1304
|
export interface DeleteServiceSyncConfigOutput {
|
|
1305
|
-
serviceSyncConfig?: ServiceSyncConfig;
|
|
1305
|
+
serviceSyncConfig?: ServiceSyncConfig | undefined;
|
|
1306
1306
|
}
|
|
1307
1307
|
export interface GetServiceSyncConfigInput {
|
|
1308
1308
|
serviceName: string | undefined;
|
|
1309
1309
|
}
|
|
1310
1310
|
export interface GetServiceSyncConfigOutput {
|
|
1311
|
-
serviceSyncConfig?: ServiceSyncConfig;
|
|
1311
|
+
serviceSyncConfig?: ServiceSyncConfig | undefined;
|
|
1312
1312
|
}
|
|
1313
1313
|
export interface UpdateServiceSyncConfigInput {
|
|
1314
1314
|
serviceName: string | undefined;
|
|
@@ -1318,26 +1318,26 @@ export interface UpdateServiceSyncConfigInput {
|
|
|
1318
1318
|
filePath: string | undefined;
|
|
1319
1319
|
}
|
|
1320
1320
|
export interface UpdateServiceSyncConfigOutput {
|
|
1321
|
-
serviceSyncConfig?: ServiceSyncConfig;
|
|
1321
|
+
serviceSyncConfig?: ServiceSyncConfig | undefined;
|
|
1322
1322
|
}
|
|
1323
1323
|
export interface CreateServiceTemplateInput {
|
|
1324
1324
|
name: string | undefined;
|
|
1325
|
-
displayName?: string;
|
|
1326
|
-
description?: string;
|
|
1327
|
-
encryptionKey?: string;
|
|
1328
|
-
pipelineProvisioning?: Provisioning;
|
|
1329
|
-
tags?: Tag[];
|
|
1325
|
+
displayName?: string | undefined;
|
|
1326
|
+
description?: string | undefined;
|
|
1327
|
+
encryptionKey?: string | undefined;
|
|
1328
|
+
pipelineProvisioning?: Provisioning | undefined;
|
|
1329
|
+
tags?: Tag[] | undefined;
|
|
1330
1330
|
}
|
|
1331
1331
|
export interface ServiceTemplate {
|
|
1332
1332
|
name: string | undefined;
|
|
1333
1333
|
arn: string | undefined;
|
|
1334
1334
|
createdAt: Date | undefined;
|
|
1335
1335
|
lastModifiedAt: Date | undefined;
|
|
1336
|
-
displayName?: string;
|
|
1337
|
-
description?: string;
|
|
1338
|
-
recommendedVersion?: string;
|
|
1339
|
-
encryptionKey?: string;
|
|
1340
|
-
pipelineProvisioning?: Provisioning;
|
|
1336
|
+
displayName?: string | undefined;
|
|
1337
|
+
description?: string | undefined;
|
|
1338
|
+
recommendedVersion?: string | undefined;
|
|
1339
|
+
encryptionKey?: string | undefined;
|
|
1340
|
+
pipelineProvisioning?: Provisioning | undefined;
|
|
1341
1341
|
}
|
|
1342
1342
|
export interface CreateServiceTemplateOutput {
|
|
1343
1343
|
serviceTemplate: ServiceTemplate | undefined;
|
|
@@ -1346,7 +1346,7 @@ export interface DeleteServiceTemplateInput {
|
|
|
1346
1346
|
name: string | undefined;
|
|
1347
1347
|
}
|
|
1348
1348
|
export interface DeleteServiceTemplateOutput {
|
|
1349
|
-
serviceTemplate?: ServiceTemplate;
|
|
1349
|
+
serviceTemplate?: ServiceTemplate | undefined;
|
|
1350
1350
|
}
|
|
1351
1351
|
export interface GetServiceTemplateInput {
|
|
1352
1352
|
name: string | undefined;
|
|
@@ -1355,27 +1355,27 @@ export interface GetServiceTemplateOutput {
|
|
|
1355
1355
|
serviceTemplate: ServiceTemplate | undefined;
|
|
1356
1356
|
}
|
|
1357
1357
|
export interface ListServiceTemplatesInput {
|
|
1358
|
-
nextToken?: string;
|
|
1359
|
-
maxResults?: number;
|
|
1358
|
+
nextToken?: string | undefined;
|
|
1359
|
+
maxResults?: number | undefined;
|
|
1360
1360
|
}
|
|
1361
1361
|
export interface ServiceTemplateSummary {
|
|
1362
1362
|
name: string | undefined;
|
|
1363
1363
|
arn: string | undefined;
|
|
1364
1364
|
createdAt: Date | undefined;
|
|
1365
1365
|
lastModifiedAt: Date | undefined;
|
|
1366
|
-
displayName?: string;
|
|
1367
|
-
description?: string;
|
|
1368
|
-
recommendedVersion?: string;
|
|
1369
|
-
pipelineProvisioning?: Provisioning;
|
|
1366
|
+
displayName?: string | undefined;
|
|
1367
|
+
description?: string | undefined;
|
|
1368
|
+
recommendedVersion?: string | undefined;
|
|
1369
|
+
pipelineProvisioning?: Provisioning | undefined;
|
|
1370
1370
|
}
|
|
1371
1371
|
export interface ListServiceTemplatesOutput {
|
|
1372
|
-
nextToken?: string;
|
|
1372
|
+
nextToken?: string | undefined;
|
|
1373
1373
|
templates: ServiceTemplateSummary[] | undefined;
|
|
1374
1374
|
}
|
|
1375
1375
|
export interface UpdateServiceTemplateInput {
|
|
1376
1376
|
name: string | undefined;
|
|
1377
|
-
displayName?: string;
|
|
1378
|
-
description?: string;
|
|
1377
|
+
displayName?: string | undefined;
|
|
1378
|
+
description?: string | undefined;
|
|
1379
1379
|
}
|
|
1380
1380
|
export interface UpdateServiceTemplateOutput {
|
|
1381
1381
|
serviceTemplate: ServiceTemplate | undefined;
|
|
@@ -1390,16 +1390,18 @@ export declare const ServiceTemplateSupportedComponentSourceType: {
|
|
|
1390
1390
|
export type ServiceTemplateSupportedComponentSourceType =
|
|
1391
1391
|
(typeof ServiceTemplateSupportedComponentSourceType)[keyof typeof ServiceTemplateSupportedComponentSourceType];
|
|
1392
1392
|
export interface CreateServiceTemplateVersionInput {
|
|
1393
|
-
clientToken?: string;
|
|
1393
|
+
clientToken?: string | undefined;
|
|
1394
1394
|
templateName: string | undefined;
|
|
1395
|
-
description?: string;
|
|
1396
|
-
majorVersion?: string;
|
|
1395
|
+
description?: string | undefined;
|
|
1396
|
+
majorVersion?: string | undefined;
|
|
1397
1397
|
source: TemplateVersionSourceInput | undefined;
|
|
1398
1398
|
compatibleEnvironmentTemplates:
|
|
1399
1399
|
| CompatibleEnvironmentTemplateInput[]
|
|
1400
1400
|
| undefined;
|
|
1401
|
-
tags?: Tag[];
|
|
1402
|
-
supportedComponentSources?:
|
|
1401
|
+
tags?: Tag[] | undefined;
|
|
1402
|
+
supportedComponentSources?:
|
|
1403
|
+
| ServiceTemplateSupportedComponentSourceType[]
|
|
1404
|
+
| undefined;
|
|
1403
1405
|
}
|
|
1404
1406
|
export interface CompatibleEnvironmentTemplate {
|
|
1405
1407
|
templateName: string | undefined;
|
|
@@ -1409,16 +1411,18 @@ export interface ServiceTemplateVersion {
|
|
|
1409
1411
|
templateName: string | undefined;
|
|
1410
1412
|
majorVersion: string | undefined;
|
|
1411
1413
|
minorVersion: string | undefined;
|
|
1412
|
-
recommendedMinorVersion?: string;
|
|
1414
|
+
recommendedMinorVersion?: string | undefined;
|
|
1413
1415
|
status: TemplateVersionStatus | undefined;
|
|
1414
|
-
statusMessage?: string;
|
|
1415
|
-
description?: string;
|
|
1416
|
+
statusMessage?: string | undefined;
|
|
1417
|
+
description?: string | undefined;
|
|
1416
1418
|
arn: string | undefined;
|
|
1417
1419
|
createdAt: Date | undefined;
|
|
1418
1420
|
lastModifiedAt: Date | undefined;
|
|
1419
1421
|
compatibleEnvironmentTemplates: CompatibleEnvironmentTemplate[] | undefined;
|
|
1420
|
-
schema?: string;
|
|
1421
|
-
supportedComponentSources?:
|
|
1422
|
+
schema?: string | undefined;
|
|
1423
|
+
supportedComponentSources?:
|
|
1424
|
+
| ServiceTemplateSupportedComponentSourceType[]
|
|
1425
|
+
| undefined;
|
|
1422
1426
|
}
|
|
1423
1427
|
export interface CreateServiceTemplateVersionOutput {
|
|
1424
1428
|
serviceTemplateVersion: ServiceTemplateVersion | undefined;
|
|
@@ -1429,7 +1433,7 @@ export interface DeleteServiceTemplateVersionInput {
|
|
|
1429
1433
|
minorVersion: string | undefined;
|
|
1430
1434
|
}
|
|
1431
1435
|
export interface DeleteServiceTemplateVersionOutput {
|
|
1432
|
-
serviceTemplateVersion?: ServiceTemplateVersion;
|
|
1436
|
+
serviceTemplateVersion?: ServiceTemplateVersion | undefined;
|
|
1433
1437
|
}
|
|
1434
1438
|
export interface GetServiceTemplateVersionInput {
|
|
1435
1439
|
templateName: string | undefined;
|
|
@@ -1440,35 +1444,39 @@ export interface GetServiceTemplateVersionOutput {
|
|
|
1440
1444
|
serviceTemplateVersion: ServiceTemplateVersion | undefined;
|
|
1441
1445
|
}
|
|
1442
1446
|
export interface ListServiceTemplateVersionsInput {
|
|
1443
|
-
nextToken?: string;
|
|
1444
|
-
maxResults?: number;
|
|
1447
|
+
nextToken?: string | undefined;
|
|
1448
|
+
maxResults?: number | undefined;
|
|
1445
1449
|
templateName: string | undefined;
|
|
1446
|
-
majorVersion?: string;
|
|
1450
|
+
majorVersion?: string | undefined;
|
|
1447
1451
|
}
|
|
1448
1452
|
export interface ServiceTemplateVersionSummary {
|
|
1449
1453
|
templateName: string | undefined;
|
|
1450
1454
|
majorVersion: string | undefined;
|
|
1451
1455
|
minorVersion: string | undefined;
|
|
1452
|
-
recommendedMinorVersion?: string;
|
|
1456
|
+
recommendedMinorVersion?: string | undefined;
|
|
1453
1457
|
status: TemplateVersionStatus | undefined;
|
|
1454
|
-
statusMessage?: string;
|
|
1455
|
-
description?: string;
|
|
1458
|
+
statusMessage?: string | undefined;
|
|
1459
|
+
description?: string | undefined;
|
|
1456
1460
|
arn: string | undefined;
|
|
1457
1461
|
createdAt: Date | undefined;
|
|
1458
1462
|
lastModifiedAt: Date | undefined;
|
|
1459
1463
|
}
|
|
1460
1464
|
export interface ListServiceTemplateVersionsOutput {
|
|
1461
|
-
nextToken?: string;
|
|
1465
|
+
nextToken?: string | undefined;
|
|
1462
1466
|
templateVersions: ServiceTemplateVersionSummary[] | undefined;
|
|
1463
1467
|
}
|
|
1464
1468
|
export interface UpdateServiceTemplateVersionInput {
|
|
1465
1469
|
templateName: string | undefined;
|
|
1466
1470
|
majorVersion: string | undefined;
|
|
1467
1471
|
minorVersion: string | undefined;
|
|
1468
|
-
description?: string;
|
|
1469
|
-
status?: TemplateVersionStatus;
|
|
1470
|
-
compatibleEnvironmentTemplates?:
|
|
1471
|
-
|
|
1472
|
+
description?: string | undefined;
|
|
1473
|
+
status?: TemplateVersionStatus | undefined;
|
|
1474
|
+
compatibleEnvironmentTemplates?:
|
|
1475
|
+
| CompatibleEnvironmentTemplateInput[]
|
|
1476
|
+
| undefined;
|
|
1477
|
+
supportedComponentSources?:
|
|
1478
|
+
| ServiceTemplateSupportedComponentSourceType[]
|
|
1479
|
+
| undefined;
|
|
1472
1480
|
}
|
|
1473
1481
|
export interface UpdateServiceTemplateVersionOutput {
|
|
1474
1482
|
serviceTemplateVersion: ServiceTemplateVersion | undefined;
|
|
@@ -1484,7 +1492,7 @@ export interface CreateTemplateSyncConfigInput {
|
|
|
1484
1492
|
repositoryProvider: RepositoryProvider | undefined;
|
|
1485
1493
|
repositoryName: string | undefined;
|
|
1486
1494
|
branch: string | undefined;
|
|
1487
|
-
subdirectory?: string;
|
|
1495
|
+
subdirectory?: string | undefined;
|
|
1488
1496
|
}
|
|
1489
1497
|
export interface TemplateSyncConfig {
|
|
1490
1498
|
templateName: string | undefined;
|
|
@@ -1492,24 +1500,24 @@ export interface TemplateSyncConfig {
|
|
|
1492
1500
|
repositoryProvider: RepositoryProvider | undefined;
|
|
1493
1501
|
repositoryName: string | undefined;
|
|
1494
1502
|
branch: string | undefined;
|
|
1495
|
-
subdirectory?: string;
|
|
1503
|
+
subdirectory?: string | undefined;
|
|
1496
1504
|
}
|
|
1497
1505
|
export interface CreateTemplateSyncConfigOutput {
|
|
1498
|
-
templateSyncConfig?: TemplateSyncConfig;
|
|
1506
|
+
templateSyncConfig?: TemplateSyncConfig | undefined;
|
|
1499
1507
|
}
|
|
1500
1508
|
export interface DeleteTemplateSyncConfigInput {
|
|
1501
1509
|
templateName: string | undefined;
|
|
1502
1510
|
templateType: TemplateType | undefined;
|
|
1503
1511
|
}
|
|
1504
1512
|
export interface DeleteTemplateSyncConfigOutput {
|
|
1505
|
-
templateSyncConfig?: TemplateSyncConfig;
|
|
1513
|
+
templateSyncConfig?: TemplateSyncConfig | undefined;
|
|
1506
1514
|
}
|
|
1507
1515
|
export interface GetTemplateSyncConfigInput {
|
|
1508
1516
|
templateName: string | undefined;
|
|
1509
1517
|
templateType: TemplateType | undefined;
|
|
1510
1518
|
}
|
|
1511
1519
|
export interface GetTemplateSyncConfigOutput {
|
|
1512
|
-
templateSyncConfig?: TemplateSyncConfig;
|
|
1520
|
+
templateSyncConfig?: TemplateSyncConfig | undefined;
|
|
1513
1521
|
}
|
|
1514
1522
|
export interface UpdateTemplateSyncConfigInput {
|
|
1515
1523
|
templateName: string | undefined;
|
|
@@ -1517,10 +1525,10 @@ export interface UpdateTemplateSyncConfigInput {
|
|
|
1517
1525
|
repositoryProvider: RepositoryProvider | undefined;
|
|
1518
1526
|
repositoryName: string | undefined;
|
|
1519
1527
|
branch: string | undefined;
|
|
1520
|
-
subdirectory?: string;
|
|
1528
|
+
subdirectory?: string | undefined;
|
|
1521
1529
|
}
|
|
1522
1530
|
export interface UpdateTemplateSyncConfigOutput {
|
|
1523
|
-
templateSyncConfig?: TemplateSyncConfig;
|
|
1531
|
+
templateSyncConfig?: TemplateSyncConfig | undefined;
|
|
1524
1532
|
}
|
|
1525
1533
|
export interface UntagResourceInput {
|
|
1526
1534
|
resourceArn: string | undefined;
|