@aws-sdk/client-proton 3.99.0 → 3.105.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/CHANGELOG.md +30 -0
- package/dist-cjs/Proton.js +120 -0
- package/dist-cjs/ProtonClient.js +2 -0
- package/dist-cjs/commands/CancelComponentDeploymentCommand.js +36 -0
- package/dist-cjs/commands/CreateComponentCommand.js +36 -0
- package/dist-cjs/commands/DeleteComponentCommand.js +36 -0
- package/dist-cjs/commands/GetComponentCommand.js +36 -0
- package/dist-cjs/commands/ListComponentOutputsCommand.js +36 -0
- package/dist-cjs/commands/ListComponentProvisionedResourcesCommand.js +36 -0
- package/dist-cjs/commands/ListComponentsCommand.js +36 -0
- package/dist-cjs/commands/UpdateComponentCommand.js +36 -0
- package/dist-cjs/commands/index.js +8 -0
- package/dist-cjs/models/models_0.js +169 -33
- package/dist-cjs/pagination/ListComponentOutputsPaginator.js +35 -0
- package/dist-cjs/pagination/ListComponentProvisionedResourcesPaginator.js +35 -0
- package/dist-cjs/pagination/ListComponentsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_json1_0.js +741 -34
- package/dist-cjs/waiters/index.js +2 -0
- package/dist-cjs/waiters/waitForComponentDeleted.js +39 -0
- package/dist-cjs/waiters/waitForComponentDeployed.js +45 -0
- package/dist-es/Proton.js +120 -0
- package/dist-es/ProtonClient.js +2 -0
- package/dist-es/commands/CancelComponentDeploymentCommand.js +39 -0
- package/dist-es/commands/CreateComponentCommand.js +39 -0
- package/dist-es/commands/DeleteComponentCommand.js +39 -0
- package/dist-es/commands/GetComponentCommand.js +39 -0
- package/dist-es/commands/ListComponentOutputsCommand.js +39 -0
- package/dist-es/commands/ListComponentProvisionedResourcesCommand.js +39 -0
- package/dist-es/commands/ListComponentsCommand.js +39 -0
- package/dist-es/commands/UpdateComponentCommand.js +39 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +106 -25
- package/dist-es/pagination/ListComponentOutputsPaginator.js +74 -0
- package/dist-es/pagination/ListComponentProvisionedResourcesPaginator.js +74 -0
- package/dist-es/pagination/ListComponentsPaginator.js +75 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_json1_0.js +899 -77
- package/dist-es/waiters/index.js +2 -0
- package/dist-es/waiters/waitForComponentDeleted.js +54 -0
- package/dist-es/waiters/waitForComponentDeployed.js +60 -0
- package/dist-types/Proton.d.ts +117 -46
- package/dist-types/ProtonClient.d.ts +10 -2
- package/dist-types/commands/CancelComponentDeploymentCommand.d.ts +38 -0
- package/dist-types/commands/CreateComponentCommand.d.ts +38 -0
- package/dist-types/commands/DeleteComponentCommand.d.ts +38 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +7 -1
- package/dist-types/commands/GetComponentCommand.d.ts +38 -0
- package/dist-types/commands/GetEnvironmentAccountConnectionCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentTemplateVersionCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceInstanceCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceTemplateVersionCommand.d.ts +1 -1
- package/dist-types/commands/ListComponentOutputsCommand.d.ts +38 -0
- package/dist-types/commands/ListComponentProvisionedResourcesCommand.d.ts +38 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +38 -0
- package/dist-types/commands/ListServiceInstanceOutputsCommand.d.ts +1 -1
- package/dist-types/commands/ListServiceInstancesCommand.d.ts +1 -1
- package/dist-types/commands/ListServicePipelineOutputsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateComponentCommand.d.ts +43 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateServiceInstanceCommand.d.ts +8 -34
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +683 -124
- package/dist-types/pagination/ListComponentOutputsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListComponentProvisionedResourcesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListComponentsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +24 -0
- package/dist-types/ts3.4/Proton.d.ts +40 -0
- package/dist-types/ts3.4/ProtonClient.d.ts +10 -2
- package/dist-types/ts3.4/commands/CancelComponentDeploymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListComponentOutputsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListComponentProvisionedResourcesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +305 -40
- package/dist-types/ts3.4/pagination/ListComponentOutputsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListComponentProvisionedResourcesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +24 -0
- package/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForComponentDeleted.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForComponentDeployed.d.ts +7 -0
- package/dist-types/waiters/index.d.ts +2 -0
- package/dist-types/waiters/waitForComponentDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForComponentDeployed.d.ts +14 -0
- package/package.json +4 -3
|
@@ -33,6 +33,8 @@ export interface EnvironmentAccountConnection {
|
|
|
33
33
|
lastModifiedAt: Date | undefined;
|
|
34
34
|
|
|
35
35
|
status: EnvironmentAccountConnectionStatus | string | undefined;
|
|
36
|
+
|
|
37
|
+
componentRoleArn?: string;
|
|
36
38
|
}
|
|
37
39
|
export declare namespace EnvironmentAccountConnection {
|
|
38
40
|
|
|
@@ -168,13 +170,13 @@ export declare namespace UpdateAccountSettingsOutput {
|
|
|
168
170
|
|
|
169
171
|
const filterSensitiveLog: (obj: UpdateAccountSettingsOutput) => any;
|
|
170
172
|
}
|
|
171
|
-
export interface
|
|
173
|
+
export interface CancelComponentDeploymentInput {
|
|
172
174
|
|
|
173
|
-
|
|
175
|
+
componentName: string | undefined;
|
|
174
176
|
}
|
|
175
|
-
export declare namespace
|
|
177
|
+
export declare namespace CancelComponentDeploymentInput {
|
|
176
178
|
|
|
177
|
-
const filterSensitiveLog: (obj:
|
|
179
|
+
const filterSensitiveLog: (obj: CancelComponentDeploymentInput) => any;
|
|
178
180
|
}
|
|
179
181
|
export declare enum DeploymentStatus {
|
|
180
182
|
CANCELLED = "CANCELLED",
|
|
@@ -186,6 +188,55 @@ export declare enum DeploymentStatus {
|
|
|
186
188
|
IN_PROGRESS = "IN_PROGRESS",
|
|
187
189
|
SUCCEEDED = "SUCCEEDED"
|
|
188
190
|
}
|
|
191
|
+
|
|
192
|
+
export interface Component {
|
|
193
|
+
|
|
194
|
+
name: string | undefined;
|
|
195
|
+
|
|
196
|
+
description?: string;
|
|
197
|
+
|
|
198
|
+
arn: string | undefined;
|
|
199
|
+
|
|
200
|
+
environmentName: string | undefined;
|
|
201
|
+
|
|
202
|
+
serviceName?: string;
|
|
203
|
+
|
|
204
|
+
serviceInstanceName?: string;
|
|
205
|
+
|
|
206
|
+
createdAt: Date | undefined;
|
|
207
|
+
|
|
208
|
+
lastModifiedAt: Date | undefined;
|
|
209
|
+
|
|
210
|
+
lastDeploymentAttemptedAt?: Date;
|
|
211
|
+
|
|
212
|
+
lastDeploymentSucceededAt?: Date;
|
|
213
|
+
|
|
214
|
+
deploymentStatus: DeploymentStatus | string | undefined;
|
|
215
|
+
|
|
216
|
+
deploymentStatusMessage?: string;
|
|
217
|
+
|
|
218
|
+
serviceSpec?: string;
|
|
219
|
+
}
|
|
220
|
+
export declare namespace Component {
|
|
221
|
+
|
|
222
|
+
const filterSensitiveLog: (obj: Component) => any;
|
|
223
|
+
}
|
|
224
|
+
export interface CancelComponentDeploymentOutput {
|
|
225
|
+
|
|
226
|
+
component: Component | undefined;
|
|
227
|
+
}
|
|
228
|
+
export declare namespace CancelComponentDeploymentOutput {
|
|
229
|
+
|
|
230
|
+
const filterSensitiveLog: (obj: CancelComponentDeploymentOutput) => any;
|
|
231
|
+
}
|
|
232
|
+
export interface CancelEnvironmentDeploymentInput {
|
|
233
|
+
|
|
234
|
+
environmentName: string | undefined;
|
|
235
|
+
}
|
|
236
|
+
export declare namespace CancelEnvironmentDeploymentInput {
|
|
237
|
+
|
|
238
|
+
const filterSensitiveLog: (obj: CancelEnvironmentDeploymentInput) => any;
|
|
239
|
+
}
|
|
189
240
|
export declare enum Provisioning {
|
|
190
241
|
CUSTOMER_MANAGED = "CUSTOMER_MANAGED"
|
|
191
242
|
}
|
|
@@ -225,6 +276,8 @@ export interface Environment {
|
|
|
225
276
|
provisioning?: Provisioning | string;
|
|
226
277
|
|
|
227
278
|
provisioningRepository?: RepositoryBranch;
|
|
279
|
+
|
|
280
|
+
componentRoleArn?: string;
|
|
228
281
|
}
|
|
229
282
|
export declare namespace Environment {
|
|
230
283
|
|
|
@@ -332,6 +385,74 @@ export declare namespace CancelServicePipelineDeploymentOutput {
|
|
|
332
385
|
|
|
333
386
|
const filterSensitiveLog: (obj: CancelServicePipelineDeploymentOutput) => any;
|
|
334
387
|
}
|
|
388
|
+
export interface ListComponentOutputsInput {
|
|
389
|
+
|
|
390
|
+
componentName: string | undefined;
|
|
391
|
+
|
|
392
|
+
nextToken?: string;
|
|
393
|
+
}
|
|
394
|
+
export declare namespace ListComponentOutputsInput {
|
|
395
|
+
|
|
396
|
+
const filterSensitiveLog: (obj: ListComponentOutputsInput) => any;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
export interface Output {
|
|
400
|
+
|
|
401
|
+
key?: string;
|
|
402
|
+
|
|
403
|
+
valueString?: string;
|
|
404
|
+
}
|
|
405
|
+
export declare namespace Output {
|
|
406
|
+
|
|
407
|
+
const filterSensitiveLog: (obj: Output) => any;
|
|
408
|
+
}
|
|
409
|
+
export interface ListComponentOutputsOutput {
|
|
410
|
+
|
|
411
|
+
nextToken?: string;
|
|
412
|
+
|
|
413
|
+
outputs: Output[] | undefined;
|
|
414
|
+
}
|
|
415
|
+
export declare namespace ListComponentOutputsOutput {
|
|
416
|
+
|
|
417
|
+
const filterSensitiveLog: (obj: ListComponentOutputsOutput) => any;
|
|
418
|
+
}
|
|
419
|
+
export interface ListComponentProvisionedResourcesInput {
|
|
420
|
+
|
|
421
|
+
componentName: string | undefined;
|
|
422
|
+
|
|
423
|
+
nextToken?: string;
|
|
424
|
+
}
|
|
425
|
+
export declare namespace ListComponentProvisionedResourcesInput {
|
|
426
|
+
|
|
427
|
+
const filterSensitiveLog: (obj: ListComponentProvisionedResourcesInput) => any;
|
|
428
|
+
}
|
|
429
|
+
export declare enum ProvisionedResourceEngine {
|
|
430
|
+
CLOUDFORMATION = "CLOUDFORMATION",
|
|
431
|
+
TERRAFORM = "TERRAFORM"
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
export interface ProvisionedResource {
|
|
435
|
+
|
|
436
|
+
name?: string;
|
|
437
|
+
|
|
438
|
+
identifier?: string;
|
|
439
|
+
|
|
440
|
+
provisioningEngine?: ProvisionedResourceEngine | string;
|
|
441
|
+
}
|
|
442
|
+
export declare namespace ProvisionedResource {
|
|
443
|
+
|
|
444
|
+
const filterSensitiveLog: (obj: ProvisionedResource) => any;
|
|
445
|
+
}
|
|
446
|
+
export interface ListComponentProvisionedResourcesOutput {
|
|
447
|
+
|
|
448
|
+
nextToken?: string;
|
|
449
|
+
|
|
450
|
+
provisionedResources: ProvisionedResource[] | undefined;
|
|
451
|
+
}
|
|
452
|
+
export declare namespace ListComponentProvisionedResourcesOutput {
|
|
453
|
+
|
|
454
|
+
const filterSensitiveLog: (obj: ListComponentProvisionedResourcesOutput) => any;
|
|
455
|
+
}
|
|
335
456
|
|
|
336
457
|
export interface Tag {
|
|
337
458
|
|
|
@@ -343,6 +464,164 @@ export declare namespace Tag {
|
|
|
343
464
|
|
|
344
465
|
const filterSensitiveLog: (obj: Tag) => any;
|
|
345
466
|
}
|
|
467
|
+
export interface CreateComponentInput {
|
|
468
|
+
|
|
469
|
+
name: string | undefined;
|
|
470
|
+
|
|
471
|
+
description?: string;
|
|
472
|
+
|
|
473
|
+
serviceName?: string;
|
|
474
|
+
|
|
475
|
+
serviceInstanceName?: string;
|
|
476
|
+
|
|
477
|
+
environmentName?: string;
|
|
478
|
+
|
|
479
|
+
templateFile: string | undefined;
|
|
480
|
+
|
|
481
|
+
manifest: string | undefined;
|
|
482
|
+
|
|
483
|
+
serviceSpec?: string;
|
|
484
|
+
|
|
485
|
+
tags?: Tag[];
|
|
486
|
+
}
|
|
487
|
+
export declare namespace CreateComponentInput {
|
|
488
|
+
|
|
489
|
+
const filterSensitiveLog: (obj: CreateComponentInput) => any;
|
|
490
|
+
}
|
|
491
|
+
export interface CreateComponentOutput {
|
|
492
|
+
|
|
493
|
+
component: Component | undefined;
|
|
494
|
+
}
|
|
495
|
+
export declare namespace CreateComponentOutput {
|
|
496
|
+
|
|
497
|
+
const filterSensitiveLog: (obj: CreateComponentOutput) => any;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
501
|
+
readonly name: "ServiceQuotaExceededException";
|
|
502
|
+
readonly $fault: "client";
|
|
503
|
+
|
|
504
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
505
|
+
}
|
|
506
|
+
export interface DeleteComponentInput {
|
|
507
|
+
|
|
508
|
+
name: string | undefined;
|
|
509
|
+
}
|
|
510
|
+
export declare namespace DeleteComponentInput {
|
|
511
|
+
|
|
512
|
+
const filterSensitiveLog: (obj: DeleteComponentInput) => any;
|
|
513
|
+
}
|
|
514
|
+
export interface DeleteComponentOutput {
|
|
515
|
+
|
|
516
|
+
component?: Component;
|
|
517
|
+
}
|
|
518
|
+
export declare namespace DeleteComponentOutput {
|
|
519
|
+
|
|
520
|
+
const filterSensitiveLog: (obj: DeleteComponentOutput) => any;
|
|
521
|
+
}
|
|
522
|
+
export interface GetComponentInput {
|
|
523
|
+
|
|
524
|
+
name: string | undefined;
|
|
525
|
+
}
|
|
526
|
+
export declare namespace GetComponentInput {
|
|
527
|
+
|
|
528
|
+
const filterSensitiveLog: (obj: GetComponentInput) => any;
|
|
529
|
+
}
|
|
530
|
+
export interface GetComponentOutput {
|
|
531
|
+
|
|
532
|
+
component?: Component;
|
|
533
|
+
}
|
|
534
|
+
export declare namespace GetComponentOutput {
|
|
535
|
+
|
|
536
|
+
const filterSensitiveLog: (obj: GetComponentOutput) => any;
|
|
537
|
+
}
|
|
538
|
+
export interface ListComponentsInput {
|
|
539
|
+
|
|
540
|
+
nextToken?: string;
|
|
541
|
+
|
|
542
|
+
environmentName?: string;
|
|
543
|
+
|
|
544
|
+
serviceName?: string;
|
|
545
|
+
|
|
546
|
+
serviceInstanceName?: string;
|
|
547
|
+
|
|
548
|
+
maxResults?: number;
|
|
549
|
+
}
|
|
550
|
+
export declare namespace ListComponentsInput {
|
|
551
|
+
|
|
552
|
+
const filterSensitiveLog: (obj: ListComponentsInput) => any;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
export interface ComponentSummary {
|
|
556
|
+
|
|
557
|
+
name: string | undefined;
|
|
558
|
+
|
|
559
|
+
arn: string | undefined;
|
|
560
|
+
|
|
561
|
+
environmentName: string | undefined;
|
|
562
|
+
|
|
563
|
+
serviceName?: string;
|
|
564
|
+
|
|
565
|
+
serviceInstanceName?: string;
|
|
566
|
+
|
|
567
|
+
createdAt: Date | undefined;
|
|
568
|
+
|
|
569
|
+
lastModifiedAt: Date | undefined;
|
|
570
|
+
|
|
571
|
+
lastDeploymentAttemptedAt?: Date;
|
|
572
|
+
|
|
573
|
+
lastDeploymentSucceededAt?: Date;
|
|
574
|
+
|
|
575
|
+
deploymentStatus: DeploymentStatus | string | undefined;
|
|
576
|
+
|
|
577
|
+
deploymentStatusMessage?: string;
|
|
578
|
+
}
|
|
579
|
+
export declare namespace ComponentSummary {
|
|
580
|
+
|
|
581
|
+
const filterSensitiveLog: (obj: ComponentSummary) => any;
|
|
582
|
+
}
|
|
583
|
+
export interface ListComponentsOutput {
|
|
584
|
+
|
|
585
|
+
nextToken?: string;
|
|
586
|
+
|
|
587
|
+
components: ComponentSummary[] | undefined;
|
|
588
|
+
}
|
|
589
|
+
export declare namespace ListComponentsOutput {
|
|
590
|
+
|
|
591
|
+
const filterSensitiveLog: (obj: ListComponentsOutput) => any;
|
|
592
|
+
}
|
|
593
|
+
export declare enum ComponentDeploymentUpdateType {
|
|
594
|
+
CURRENT_VERSION = "CURRENT_VERSION",
|
|
595
|
+
NONE = "NONE"
|
|
596
|
+
}
|
|
597
|
+
export interface UpdateComponentInput {
|
|
598
|
+
|
|
599
|
+
name: string | undefined;
|
|
600
|
+
|
|
601
|
+
deploymentType: ComponentDeploymentUpdateType | string | undefined;
|
|
602
|
+
|
|
603
|
+
description?: string;
|
|
604
|
+
|
|
605
|
+
serviceName?: string;
|
|
606
|
+
|
|
607
|
+
serviceInstanceName?: string;
|
|
608
|
+
|
|
609
|
+
serviceSpec?: string;
|
|
610
|
+
|
|
611
|
+
templateFile?: string;
|
|
612
|
+
}
|
|
613
|
+
export declare namespace UpdateComponentInput {
|
|
614
|
+
|
|
615
|
+
const filterSensitiveLog: (obj: UpdateComponentInput) => any;
|
|
616
|
+
}
|
|
617
|
+
export interface UpdateComponentOutput {
|
|
618
|
+
|
|
619
|
+
component: Component | undefined;
|
|
620
|
+
}
|
|
621
|
+
export declare namespace UpdateComponentOutput {
|
|
622
|
+
|
|
623
|
+
const filterSensitiveLog: (obj: UpdateComponentOutput) => any;
|
|
624
|
+
}
|
|
346
625
|
export interface CreateEnvironmentAccountConnectionInput {
|
|
347
626
|
|
|
348
627
|
clientToken?: string;
|
|
@@ -354,6 +633,8 @@ export interface CreateEnvironmentAccountConnectionInput {
|
|
|
354
633
|
environmentName: string | undefined;
|
|
355
634
|
|
|
356
635
|
tags?: Tag[];
|
|
636
|
+
|
|
637
|
+
componentRoleArn?: string;
|
|
357
638
|
}
|
|
358
639
|
export declare namespace CreateEnvironmentAccountConnectionInput {
|
|
359
640
|
|
|
@@ -367,13 +648,6 @@ export declare namespace CreateEnvironmentAccountConnectionOutput {
|
|
|
367
648
|
|
|
368
649
|
const filterSensitiveLog: (obj: CreateEnvironmentAccountConnectionOutput) => any;
|
|
369
650
|
}
|
|
370
|
-
|
|
371
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
372
|
-
readonly name: "ServiceQuotaExceededException";
|
|
373
|
-
readonly $fault: "client";
|
|
374
|
-
|
|
375
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
376
|
-
}
|
|
377
651
|
export interface DeleteEnvironmentAccountConnectionInput {
|
|
378
652
|
|
|
379
653
|
id: string | undefined;
|
|
@@ -446,6 +720,8 @@ export interface EnvironmentAccountConnectionSummary {
|
|
|
446
720
|
lastModifiedAt: Date | undefined;
|
|
447
721
|
|
|
448
722
|
status: EnvironmentAccountConnectionStatus | string | undefined;
|
|
723
|
+
|
|
724
|
+
componentRoleArn?: string;
|
|
449
725
|
}
|
|
450
726
|
export declare namespace EnvironmentAccountConnectionSummary {
|
|
451
727
|
|
|
@@ -481,7 +757,9 @@ export interface UpdateEnvironmentAccountConnectionInput {
|
|
|
481
757
|
|
|
482
758
|
id: string | undefined;
|
|
483
759
|
|
|
484
|
-
roleArn
|
|
760
|
+
roleArn?: string;
|
|
761
|
+
|
|
762
|
+
componentRoleArn?: string;
|
|
485
763
|
}
|
|
486
764
|
export declare namespace UpdateEnvironmentAccountConnectionInput {
|
|
487
765
|
|
|
@@ -505,17 +783,6 @@ export declare namespace ListEnvironmentOutputsInput {
|
|
|
505
783
|
|
|
506
784
|
const filterSensitiveLog: (obj: ListEnvironmentOutputsInput) => any;
|
|
507
785
|
}
|
|
508
|
-
|
|
509
|
-
export interface Output {
|
|
510
|
-
|
|
511
|
-
key?: string;
|
|
512
|
-
|
|
513
|
-
valueString?: string;
|
|
514
|
-
}
|
|
515
|
-
export declare namespace Output {
|
|
516
|
-
|
|
517
|
-
const filterSensitiveLog: (obj: Output) => any;
|
|
518
|
-
}
|
|
519
786
|
export interface ListEnvironmentOutputsOutput {
|
|
520
787
|
|
|
521
788
|
nextToken?: string;
|
|
@@ -536,23 +803,6 @@ export declare namespace ListEnvironmentProvisionedResourcesInput {
|
|
|
536
803
|
|
|
537
804
|
const filterSensitiveLog: (obj: ListEnvironmentProvisionedResourcesInput) => any;
|
|
538
805
|
}
|
|
539
|
-
export declare enum ProvisionedResourceEngine {
|
|
540
|
-
CLOUDFORMATION = "CLOUDFORMATION",
|
|
541
|
-
TERRAFORM = "TERRAFORM"
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
export interface ProvisionedResource {
|
|
545
|
-
|
|
546
|
-
name?: string;
|
|
547
|
-
|
|
548
|
-
identifier?: string;
|
|
549
|
-
|
|
550
|
-
provisioningEngine?: ProvisionedResourceEngine | string;
|
|
551
|
-
}
|
|
552
|
-
export declare namespace ProvisionedResource {
|
|
553
|
-
|
|
554
|
-
const filterSensitiveLog: (obj: ProvisionedResource) => any;
|
|
555
|
-
}
|
|
556
806
|
export interface ListEnvironmentProvisionedResourcesOutput {
|
|
557
807
|
|
|
558
808
|
nextToken?: string;
|
|
@@ -584,6 +834,8 @@ export interface CreateEnvironmentInput {
|
|
|
584
834
|
tags?: Tag[];
|
|
585
835
|
|
|
586
836
|
provisioningRepository?: RepositoryBranchInput;
|
|
837
|
+
|
|
838
|
+
componentRoleArn?: string;
|
|
587
839
|
}
|
|
588
840
|
export declare namespace CreateEnvironmentInput {
|
|
589
841
|
|
|
@@ -684,6 +936,8 @@ export interface EnvironmentSummary {
|
|
|
684
936
|
environmentAccountId?: string;
|
|
685
937
|
|
|
686
938
|
provisioning?: Provisioning | string;
|
|
939
|
+
|
|
940
|
+
componentRoleArn?: string;
|
|
687
941
|
}
|
|
688
942
|
export declare namespace EnvironmentSummary {
|
|
689
943
|
|
|
@@ -724,6 +978,8 @@ export interface UpdateEnvironmentInput {
|
|
|
724
978
|
environmentAccountConnectionId?: string;
|
|
725
979
|
|
|
726
980
|
provisioningRepository?: RepositoryBranchInput;
|
|
981
|
+
|
|
982
|
+
componentRoleArn?: string;
|
|
727
983
|
}
|
|
728
984
|
export declare namespace UpdateEnvironmentInput {
|
|
729
985
|
|
|
@@ -1985,6 +2241,9 @@ export declare namespace CompatibleEnvironmentTemplateInput {
|
|
|
1985
2241
|
|
|
1986
2242
|
const filterSensitiveLog: (obj: CompatibleEnvironmentTemplateInput) => any;
|
|
1987
2243
|
}
|
|
2244
|
+
export declare enum ServiceTemplateSupportedComponentSourceType {
|
|
2245
|
+
DIRECTLY_DEFINED = "DIRECTLY_DEFINED"
|
|
2246
|
+
}
|
|
1988
2247
|
export interface CreateServiceTemplateVersionInput {
|
|
1989
2248
|
|
|
1990
2249
|
clientToken?: string;
|
|
@@ -2000,6 +2259,8 @@ export interface CreateServiceTemplateVersionInput {
|
|
|
2000
2259
|
compatibleEnvironmentTemplates: CompatibleEnvironmentTemplateInput[] | undefined;
|
|
2001
2260
|
|
|
2002
2261
|
tags?: Tag[];
|
|
2262
|
+
|
|
2263
|
+
supportedComponentSources?: (ServiceTemplateSupportedComponentSourceType | string)[];
|
|
2003
2264
|
}
|
|
2004
2265
|
export declare namespace CreateServiceTemplateVersionInput {
|
|
2005
2266
|
|
|
@@ -2042,6 +2303,8 @@ export interface ServiceTemplateVersion {
|
|
|
2042
2303
|
compatibleEnvironmentTemplates: CompatibleEnvironmentTemplate[] | undefined;
|
|
2043
2304
|
|
|
2044
2305
|
schema?: string;
|
|
2306
|
+
|
|
2307
|
+
supportedComponentSources?: (ServiceTemplateSupportedComponentSourceType | string)[];
|
|
2045
2308
|
}
|
|
2046
2309
|
export declare namespace ServiceTemplateVersion {
|
|
2047
2310
|
|
|
@@ -2159,6 +2422,8 @@ export interface UpdateServiceTemplateVersionInput {
|
|
|
2159
2422
|
status?: TemplateVersionStatus | string;
|
|
2160
2423
|
|
|
2161
2424
|
compatibleEnvironmentTemplates?: CompatibleEnvironmentTemplateInput[];
|
|
2425
|
+
|
|
2426
|
+
supportedComponentSources?: (ServiceTemplateSupportedComponentSourceType | string)[];
|
|
2162
2427
|
}
|
|
2163
2428
|
export declare namespace UpdateServiceTemplateVersionInput {
|
|
2164
2429
|
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListComponentOutputsCommandInput, ListComponentOutputsCommandOutput } from "../commands/ListComponentOutputsCommand";
|
|
3
|
+
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListComponentOutputs(config: ProtonPaginationConfiguration, input: ListComponentOutputsCommandInput, ...additionalArguments: any): Paginator<ListComponentOutputsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListComponentProvisionedResourcesCommandInput, ListComponentProvisionedResourcesCommandOutput } from "../commands/ListComponentProvisionedResourcesCommand";
|
|
3
|
+
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListComponentProvisionedResources(config: ProtonPaginationConfiguration, input: ListComponentProvisionedResourcesCommandInput, ...additionalArguments: any): Paginator<ListComponentProvisionedResourcesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
|
|
3
|
+
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListComponents(config: ProtonPaginationConfiguration, input: ListComponentsCommandInput, ...additionalArguments: any): Paginator<ListComponentsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListComponentOutputsPaginator";
|
|
3
|
+
export * from "./ListComponentProvisionedResourcesPaginator";
|
|
4
|
+
export * from "./ListComponentsPaginator";
|
|
2
5
|
export * from "./ListEnvironmentAccountConnectionsPaginator";
|
|
3
6
|
export * from "./ListEnvironmentOutputsPaginator";
|
|
4
7
|
export * from "./ListEnvironmentProvisionedResourcesPaginator";
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { AcceptEnvironmentAccountConnectionCommandInput, AcceptEnvironmentAccountConnectionCommandOutput } from "../commands/AcceptEnvironmentAccountConnectionCommand";
|
|
4
|
+
import { CancelComponentDeploymentCommandInput, CancelComponentDeploymentCommandOutput } from "../commands/CancelComponentDeploymentCommand";
|
|
4
5
|
import { CancelEnvironmentDeploymentCommandInput, CancelEnvironmentDeploymentCommandOutput } from "../commands/CancelEnvironmentDeploymentCommand";
|
|
5
6
|
import { CancelServiceInstanceDeploymentCommandInput, CancelServiceInstanceDeploymentCommandOutput } from "../commands/CancelServiceInstanceDeploymentCommand";
|
|
6
7
|
import { CancelServicePipelineDeploymentCommandInput, CancelServicePipelineDeploymentCommandOutput } from "../commands/CancelServicePipelineDeploymentCommand";
|
|
8
|
+
import { CreateComponentCommandInput, CreateComponentCommandOutput } from "../commands/CreateComponentCommand";
|
|
7
9
|
import { CreateEnvironmentAccountConnectionCommandInput, CreateEnvironmentAccountConnectionCommandOutput } from "../commands/CreateEnvironmentAccountConnectionCommand";
|
|
8
10
|
import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "../commands/CreateEnvironmentCommand";
|
|
9
11
|
import { CreateEnvironmentTemplateCommandInput, CreateEnvironmentTemplateCommandOutput } from "../commands/CreateEnvironmentTemplateCommand";
|
|
@@ -13,6 +15,7 @@ import { CreateServiceCommandInput, CreateServiceCommandOutput } from "../comman
|
|
|
13
15
|
import { CreateServiceTemplateCommandInput, CreateServiceTemplateCommandOutput } from "../commands/CreateServiceTemplateCommand";
|
|
14
16
|
import { CreateServiceTemplateVersionCommandInput, CreateServiceTemplateVersionCommandOutput } from "../commands/CreateServiceTemplateVersionCommand";
|
|
15
17
|
import { CreateTemplateSyncConfigCommandInput, CreateTemplateSyncConfigCommandOutput } from "../commands/CreateTemplateSyncConfigCommand";
|
|
18
|
+
import { DeleteComponentCommandInput, DeleteComponentCommandOutput } from "../commands/DeleteComponentCommand";
|
|
16
19
|
import { DeleteEnvironmentAccountConnectionCommandInput, DeleteEnvironmentAccountConnectionCommandOutput } from "../commands/DeleteEnvironmentAccountConnectionCommand";
|
|
17
20
|
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "../commands/DeleteEnvironmentCommand";
|
|
18
21
|
import { DeleteEnvironmentTemplateCommandInput, DeleteEnvironmentTemplateCommandOutput } from "../commands/DeleteEnvironmentTemplateCommand";
|
|
@@ -23,6 +26,7 @@ import { DeleteServiceTemplateCommandInput, DeleteServiceTemplateCommandOutput }
|
|
|
23
26
|
import { DeleteServiceTemplateVersionCommandInput, DeleteServiceTemplateVersionCommandOutput } from "../commands/DeleteServiceTemplateVersionCommand";
|
|
24
27
|
import { DeleteTemplateSyncConfigCommandInput, DeleteTemplateSyncConfigCommandOutput } from "../commands/DeleteTemplateSyncConfigCommand";
|
|
25
28
|
import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "../commands/GetAccountSettingsCommand";
|
|
29
|
+
import { GetComponentCommandInput, GetComponentCommandOutput } from "../commands/GetComponentCommand";
|
|
26
30
|
import { GetEnvironmentAccountConnectionCommandInput, GetEnvironmentAccountConnectionCommandOutput } from "../commands/GetEnvironmentAccountConnectionCommand";
|
|
27
31
|
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
|
|
28
32
|
import { GetEnvironmentTemplateCommandInput, GetEnvironmentTemplateCommandOutput } from "../commands/GetEnvironmentTemplateCommand";
|
|
@@ -35,6 +39,9 @@ import { GetServiceTemplateCommandInput, GetServiceTemplateCommandOutput } from
|
|
|
35
39
|
import { GetServiceTemplateVersionCommandInput, GetServiceTemplateVersionCommandOutput } from "../commands/GetServiceTemplateVersionCommand";
|
|
36
40
|
import { GetTemplateSyncConfigCommandInput, GetTemplateSyncConfigCommandOutput } from "../commands/GetTemplateSyncConfigCommand";
|
|
37
41
|
import { GetTemplateSyncStatusCommandInput, GetTemplateSyncStatusCommandOutput } from "../commands/GetTemplateSyncStatusCommand";
|
|
42
|
+
import { ListComponentOutputsCommandInput, ListComponentOutputsCommandOutput } from "../commands/ListComponentOutputsCommand";
|
|
43
|
+
import { ListComponentProvisionedResourcesCommandInput, ListComponentProvisionedResourcesCommandOutput } from "../commands/ListComponentProvisionedResourcesCommand";
|
|
44
|
+
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
|
|
38
45
|
import { ListEnvironmentAccountConnectionsCommandInput, ListEnvironmentAccountConnectionsCommandOutput } from "../commands/ListEnvironmentAccountConnectionsCommand";
|
|
39
46
|
import { ListEnvironmentOutputsCommandInput, ListEnvironmentOutputsCommandOutput } from "../commands/ListEnvironmentOutputsCommand";
|
|
40
47
|
import { ListEnvironmentProvisionedResourcesCommandInput, ListEnvironmentProvisionedResourcesCommandOutput } from "../commands/ListEnvironmentProvisionedResourcesCommand";
|
|
@@ -57,6 +64,7 @@ import { RejectEnvironmentAccountConnectionCommandInput, RejectEnvironmentAccoun
|
|
|
57
64
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
58
65
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
59
66
|
import { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput } from "../commands/UpdateAccountSettingsCommand";
|
|
67
|
+
import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "../commands/UpdateComponentCommand";
|
|
60
68
|
import { UpdateEnvironmentAccountConnectionCommandInput, UpdateEnvironmentAccountConnectionCommandOutput } from "../commands/UpdateEnvironmentAccountConnectionCommand";
|
|
61
69
|
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "../commands/UpdateEnvironmentCommand";
|
|
62
70
|
import { UpdateEnvironmentTemplateCommandInput, UpdateEnvironmentTemplateCommandOutput } from "../commands/UpdateEnvironmentTemplateCommand";
|
|
@@ -68,9 +76,11 @@ import { UpdateServiceTemplateCommandInput, UpdateServiceTemplateCommandOutput }
|
|
|
68
76
|
import { UpdateServiceTemplateVersionCommandInput, UpdateServiceTemplateVersionCommandOutput } from "../commands/UpdateServiceTemplateVersionCommand";
|
|
69
77
|
import { UpdateTemplateSyncConfigCommandInput, UpdateTemplateSyncConfigCommandOutput } from "../commands/UpdateTemplateSyncConfigCommand";
|
|
70
78
|
export declare const serializeAws_json1_0AcceptEnvironmentAccountConnectionCommand: (input: AcceptEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
|
+
export declare const serializeAws_json1_0CancelComponentDeploymentCommand: (input: CancelComponentDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
80
|
export declare const serializeAws_json1_0CancelEnvironmentDeploymentCommand: (input: CancelEnvironmentDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
81
|
export declare const serializeAws_json1_0CancelServiceInstanceDeploymentCommand: (input: CancelServiceInstanceDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
82
|
export declare const serializeAws_json1_0CancelServicePipelineDeploymentCommand: (input: CancelServicePipelineDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
+
export declare const serializeAws_json1_0CreateComponentCommand: (input: CreateComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
84
|
export declare const serializeAws_json1_0CreateEnvironmentCommand: (input: CreateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
85
|
export declare const serializeAws_json1_0CreateEnvironmentAccountConnectionCommand: (input: CreateEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
86
|
export declare const serializeAws_json1_0CreateEnvironmentTemplateCommand: (input: CreateEnvironmentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -80,6 +90,7 @@ export declare const serializeAws_json1_0CreateServiceCommand: (input: CreateSer
|
|
|
80
90
|
export declare const serializeAws_json1_0CreateServiceTemplateCommand: (input: CreateServiceTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
91
|
export declare const serializeAws_json1_0CreateServiceTemplateVersionCommand: (input: CreateServiceTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
92
|
export declare const serializeAws_json1_0CreateTemplateSyncConfigCommand: (input: CreateTemplateSyncConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
+
export declare const serializeAws_json1_0DeleteComponentCommand: (input: DeleteComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
94
|
export declare const serializeAws_json1_0DeleteEnvironmentCommand: (input: DeleteEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
95
|
export declare const serializeAws_json1_0DeleteEnvironmentAccountConnectionCommand: (input: DeleteEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
96
|
export declare const serializeAws_json1_0DeleteEnvironmentTemplateCommand: (input: DeleteEnvironmentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -90,6 +101,7 @@ export declare const serializeAws_json1_0DeleteServiceTemplateCommand: (input: D
|
|
|
90
101
|
export declare const serializeAws_json1_0DeleteServiceTemplateVersionCommand: (input: DeleteServiceTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
102
|
export declare const serializeAws_json1_0DeleteTemplateSyncConfigCommand: (input: DeleteTemplateSyncConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
103
|
export declare const serializeAws_json1_0GetAccountSettingsCommand: (input: GetAccountSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
|
+
export declare const serializeAws_json1_0GetComponentCommand: (input: GetComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
105
|
export declare const serializeAws_json1_0GetEnvironmentCommand: (input: GetEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
106
|
export declare const serializeAws_json1_0GetEnvironmentAccountConnectionCommand: (input: GetEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
107
|
export declare const serializeAws_json1_0GetEnvironmentTemplateCommand: (input: GetEnvironmentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -102,6 +114,9 @@ export declare const serializeAws_json1_0GetServiceTemplateCommand: (input: GetS
|
|
|
102
114
|
export declare const serializeAws_json1_0GetServiceTemplateVersionCommand: (input: GetServiceTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
115
|
export declare const serializeAws_json1_0GetTemplateSyncConfigCommand: (input: GetTemplateSyncConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
116
|
export declare const serializeAws_json1_0GetTemplateSyncStatusCommand: (input: GetTemplateSyncStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
|
+
export declare const serializeAws_json1_0ListComponentOutputsCommand: (input: ListComponentOutputsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_json1_0ListComponentProvisionedResourcesCommand: (input: ListComponentProvisionedResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
|
+
export declare const serializeAws_json1_0ListComponentsCommand: (input: ListComponentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
120
|
export declare const serializeAws_json1_0ListEnvironmentAccountConnectionsCommand: (input: ListEnvironmentAccountConnectionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
121
|
export declare const serializeAws_json1_0ListEnvironmentOutputsCommand: (input: ListEnvironmentOutputsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
122
|
export declare const serializeAws_json1_0ListEnvironmentProvisionedResourcesCommand: (input: ListEnvironmentProvisionedResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -124,6 +139,7 @@ export declare const serializeAws_json1_0RejectEnvironmentAccountConnectionComma
|
|
|
124
139
|
export declare const serializeAws_json1_0TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
140
|
export declare const serializeAws_json1_0UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
126
141
|
export declare const serializeAws_json1_0UpdateAccountSettingsCommand: (input: UpdateAccountSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_json1_0UpdateComponentCommand: (input: UpdateComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
127
143
|
export declare const serializeAws_json1_0UpdateEnvironmentCommand: (input: UpdateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
128
144
|
export declare const serializeAws_json1_0UpdateEnvironmentAccountConnectionCommand: (input: UpdateEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
145
|
export declare const serializeAws_json1_0UpdateEnvironmentTemplateCommand: (input: UpdateEnvironmentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -135,9 +151,11 @@ export declare const serializeAws_json1_0UpdateServiceTemplateCommand: (input: U
|
|
|
135
151
|
export declare const serializeAws_json1_0UpdateServiceTemplateVersionCommand: (input: UpdateServiceTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
136
152
|
export declare const serializeAws_json1_0UpdateTemplateSyncConfigCommand: (input: UpdateTemplateSyncConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
137
153
|
export declare const deserializeAws_json1_0AcceptEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptEnvironmentAccountConnectionCommandOutput>;
|
|
154
|
+
export declare const deserializeAws_json1_0CancelComponentDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelComponentDeploymentCommandOutput>;
|
|
138
155
|
export declare const deserializeAws_json1_0CancelEnvironmentDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelEnvironmentDeploymentCommandOutput>;
|
|
139
156
|
export declare const deserializeAws_json1_0CancelServiceInstanceDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelServiceInstanceDeploymentCommandOutput>;
|
|
140
157
|
export declare const deserializeAws_json1_0CancelServicePipelineDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelServicePipelineDeploymentCommandOutput>;
|
|
158
|
+
export declare const deserializeAws_json1_0CreateComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateComponentCommandOutput>;
|
|
141
159
|
export declare const deserializeAws_json1_0CreateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentCommandOutput>;
|
|
142
160
|
export declare const deserializeAws_json1_0CreateEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentAccountConnectionCommandOutput>;
|
|
143
161
|
export declare const deserializeAws_json1_0CreateEnvironmentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentTemplateCommandOutput>;
|
|
@@ -147,6 +165,7 @@ export declare const deserializeAws_json1_0CreateServiceCommand: (output: __Http
|
|
|
147
165
|
export declare const deserializeAws_json1_0CreateServiceTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateServiceTemplateCommandOutput>;
|
|
148
166
|
export declare const deserializeAws_json1_0CreateServiceTemplateVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateServiceTemplateVersionCommandOutput>;
|
|
149
167
|
export declare const deserializeAws_json1_0CreateTemplateSyncConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTemplateSyncConfigCommandOutput>;
|
|
168
|
+
export declare const deserializeAws_json1_0DeleteComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteComponentCommandOutput>;
|
|
150
169
|
export declare const deserializeAws_json1_0DeleteEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentCommandOutput>;
|
|
151
170
|
export declare const deserializeAws_json1_0DeleteEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentAccountConnectionCommandOutput>;
|
|
152
171
|
export declare const deserializeAws_json1_0DeleteEnvironmentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentTemplateCommandOutput>;
|
|
@@ -157,6 +176,7 @@ export declare const deserializeAws_json1_0DeleteServiceTemplateCommand: (output
|
|
|
157
176
|
export declare const deserializeAws_json1_0DeleteServiceTemplateVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceTemplateVersionCommandOutput>;
|
|
158
177
|
export declare const deserializeAws_json1_0DeleteTemplateSyncConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTemplateSyncConfigCommandOutput>;
|
|
159
178
|
export declare const deserializeAws_json1_0GetAccountSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccountSettingsCommandOutput>;
|
|
179
|
+
export declare const deserializeAws_json1_0GetComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComponentCommandOutput>;
|
|
160
180
|
export declare const deserializeAws_json1_0GetEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentCommandOutput>;
|
|
161
181
|
export declare const deserializeAws_json1_0GetEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentAccountConnectionCommandOutput>;
|
|
162
182
|
export declare const deserializeAws_json1_0GetEnvironmentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentTemplateCommandOutput>;
|
|
@@ -169,6 +189,9 @@ export declare const deserializeAws_json1_0GetServiceTemplateCommand: (output: _
|
|
|
169
189
|
export declare const deserializeAws_json1_0GetServiceTemplateVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetServiceTemplateVersionCommandOutput>;
|
|
170
190
|
export declare const deserializeAws_json1_0GetTemplateSyncConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTemplateSyncConfigCommandOutput>;
|
|
171
191
|
export declare const deserializeAws_json1_0GetTemplateSyncStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTemplateSyncStatusCommandOutput>;
|
|
192
|
+
export declare const deserializeAws_json1_0ListComponentOutputsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentOutputsCommandOutput>;
|
|
193
|
+
export declare const deserializeAws_json1_0ListComponentProvisionedResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentProvisionedResourcesCommandOutput>;
|
|
194
|
+
export declare const deserializeAws_json1_0ListComponentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentsCommandOutput>;
|
|
172
195
|
export declare const deserializeAws_json1_0ListEnvironmentAccountConnectionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentAccountConnectionsCommandOutput>;
|
|
173
196
|
export declare const deserializeAws_json1_0ListEnvironmentOutputsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentOutputsCommandOutput>;
|
|
174
197
|
export declare const deserializeAws_json1_0ListEnvironmentProvisionedResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentProvisionedResourcesCommandOutput>;
|
|
@@ -191,6 +214,7 @@ export declare const deserializeAws_json1_0RejectEnvironmentAccountConnectionCom
|
|
|
191
214
|
export declare const deserializeAws_json1_0TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
192
215
|
export declare const deserializeAws_json1_0UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
193
216
|
export declare const deserializeAws_json1_0UpdateAccountSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAccountSettingsCommandOutput>;
|
|
217
|
+
export declare const deserializeAws_json1_0UpdateComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateComponentCommandOutput>;
|
|
194
218
|
export declare const deserializeAws_json1_0UpdateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentCommandOutput>;
|
|
195
219
|
export declare const deserializeAws_json1_0UpdateEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentAccountConnectionCommandOutput>;
|
|
196
220
|
export declare const deserializeAws_json1_0UpdateEnvironmentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentTemplateCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
+
import { GetComponentCommandInput } from "../commands/GetComponentCommand";
|
|
3
|
+
import { ProtonClient } from "../ProtonClient";
|
|
4
|
+
|
|
5
|
+
export declare const waitForComponentDeleted: (params: WaiterConfiguration<ProtonClient>, input: GetComponentCommandInput) => Promise<WaiterResult>;
|
|
6
|
+
|
|
7
|
+
export declare const waitUntilComponentDeleted: (params: WaiterConfiguration<ProtonClient>, input: GetComponentCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
+
import { GetComponentCommandInput } from "../commands/GetComponentCommand";
|
|
3
|
+
import { ProtonClient } from "../ProtonClient";
|
|
4
|
+
|
|
5
|
+
export declare const waitForComponentDeployed: (params: WaiterConfiguration<ProtonClient>, input: GetComponentCommandInput) => Promise<WaiterResult>;
|
|
6
|
+
|
|
7
|
+
export declare const waitUntilComponentDeployed: (params: WaiterConfiguration<ProtonClient>, input: GetComponentCommandInput) => Promise<WaiterResult>;
|