@aws-sdk/client-proton 3.363.0 → 3.370.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/README.md +24 -0
- package/dist-cjs/Proton.js +6 -0
- package/dist-cjs/commands/DeleteDeploymentCommand.js +47 -0
- package/dist-cjs/commands/GetDeploymentCommand.js +47 -0
- package/dist-cjs/commands/ListDeploymentsCommand.js +46 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +74 -3
- package/dist-cjs/pagination/ListDeploymentsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_0.js +297 -4
- package/dist-es/Proton.js +6 -0
- package/dist-es/commands/DeleteDeploymentCommand.js +43 -0
- package/dist-es/commands/GetDeploymentCommand.js +43 -0
- package/dist-es/commands/ListDeploymentsCommand.js +42 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +63 -0
- package/dist-es/pagination/ListDeploymentsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +288 -1
- package/dist-types/Proton.d.ts +21 -0
- package/dist-types/ProtonClient.d.ts +5 -2
- package/dist-types/commands/CancelComponentDeploymentCommand.d.ts +2 -0
- package/dist-types/commands/CancelEnvironmentDeploymentCommand.d.ts +2 -0
- package/dist-types/commands/CancelServiceInstanceDeploymentCommand.d.ts +2 -0
- package/dist-types/commands/CancelServicePipelineDeploymentCommand.d.ts +2 -0
- package/dist-types/commands/CreateComponentCommand.d.ts +2 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +2 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +2 -0
- package/dist-types/commands/CreateServiceInstanceCommand.d.ts +2 -0
- package/dist-types/commands/CreateTemplateSyncConfigCommand.d.ts +5 -8
- package/dist-types/commands/DeleteComponentCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDeploymentCommand.d.ts +167 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +2 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +2 -0
- package/dist-types/commands/GetComponentCommand.d.ts +2 -0
- package/dist-types/commands/GetDeploymentCommand.d.ts +171 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +2 -0
- package/dist-types/commands/GetResourcesSummaryCommand.d.ts +7 -11
- package/dist-types/commands/GetServiceCommand.d.ts +2 -0
- package/dist-types/commands/GetServiceInstanceCommand.d.ts +2 -0
- package/dist-types/commands/ListComponentOutputsCommand.d.ts +1 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +2 -0
- package/dist-types/commands/ListDeploymentsCommand.d.ts +112 -0
- package/dist-types/commands/ListEnvironmentOutputsCommand.d.ts +1 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +2 -0
- package/dist-types/commands/ListServiceInstanceOutputsCommand.d.ts +1 -0
- package/dist-types/commands/ListServiceInstancesCommand.d.ts +2 -0
- package/dist-types/commands/ListServicePipelineOutputsCommand.d.ts +1 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
- package/dist-types/commands/NotifyResourceDeploymentStatusChangeCommand.d.ts +2 -4
- package/dist-types/commands/TagResourceCommand.d.ts +3 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -4
- package/dist-types/commands/UpdateComponentCommand.d.ts +2 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +2 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateServiceInstanceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateServicePipelineCommand.d.ts +2 -0
- package/dist-types/commands/UpdateTemplateSyncConfigCommand.d.ts +3 -4
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +544 -23
- package/dist-types/pagination/ListDeploymentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +27 -0
- package/dist-types/ts3.4/Proton.d.ts +51 -0
- package/dist-types/ts3.4/ProtonClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteDeploymentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetDeploymentCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListDeploymentsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +191 -0
- package/dist-types/ts3.4/pagination/ListDeploymentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +36 -0
- package/package.json +17 -18
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "../commands/ListDeploymentsCommand";
|
|
3
|
+
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListDeployments(config: ProtonPaginationConfiguration, input: ListDeploymentsCommandInput, ...additionalArguments: any): Paginator<ListDeploymentsCommandOutput>;
|
|
@@ -2,6 +2,7 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListComponentOutputsPaginator";
|
|
3
3
|
export * from "./ListComponentProvisionedResourcesPaginator";
|
|
4
4
|
export * from "./ListComponentsPaginator";
|
|
5
|
+
export * from "./ListDeploymentsPaginator";
|
|
5
6
|
export * from "./ListEnvironmentAccountConnectionsPaginator";
|
|
6
7
|
export * from "./ListEnvironmentOutputsPaginator";
|
|
7
8
|
export * from "./ListEnvironmentProvisionedResourcesPaginator";
|
|
@@ -18,6 +18,7 @@ import { CreateServiceTemplateCommandInput, CreateServiceTemplateCommandOutput }
|
|
|
18
18
|
import { CreateServiceTemplateVersionCommandInput, CreateServiceTemplateVersionCommandOutput } from "../commands/CreateServiceTemplateVersionCommand";
|
|
19
19
|
import { CreateTemplateSyncConfigCommandInput, CreateTemplateSyncConfigCommandOutput } from "../commands/CreateTemplateSyncConfigCommand";
|
|
20
20
|
import { DeleteComponentCommandInput, DeleteComponentCommandOutput } from "../commands/DeleteComponentCommand";
|
|
21
|
+
import { DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput } from "../commands/DeleteDeploymentCommand";
|
|
21
22
|
import { DeleteEnvironmentAccountConnectionCommandInput, DeleteEnvironmentAccountConnectionCommandOutput } from "../commands/DeleteEnvironmentAccountConnectionCommand";
|
|
22
23
|
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "../commands/DeleteEnvironmentCommand";
|
|
23
24
|
import { DeleteEnvironmentTemplateCommandInput, DeleteEnvironmentTemplateCommandOutput } from "../commands/DeleteEnvironmentTemplateCommand";
|
|
@@ -30,6 +31,7 @@ import { DeleteServiceTemplateVersionCommandInput, DeleteServiceTemplateVersionC
|
|
|
30
31
|
import { DeleteTemplateSyncConfigCommandInput, DeleteTemplateSyncConfigCommandOutput } from "../commands/DeleteTemplateSyncConfigCommand";
|
|
31
32
|
import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "../commands/GetAccountSettingsCommand";
|
|
32
33
|
import { GetComponentCommandInput, GetComponentCommandOutput } from "../commands/GetComponentCommand";
|
|
34
|
+
import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "../commands/GetDeploymentCommand";
|
|
33
35
|
import { GetEnvironmentAccountConnectionCommandInput, GetEnvironmentAccountConnectionCommandOutput } from "../commands/GetEnvironmentAccountConnectionCommand";
|
|
34
36
|
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
|
|
35
37
|
import { GetEnvironmentTemplateCommandInput, GetEnvironmentTemplateCommandOutput } from "../commands/GetEnvironmentTemplateCommand";
|
|
@@ -49,6 +51,7 @@ import { GetTemplateSyncStatusCommandInput, GetTemplateSyncStatusCommandOutput }
|
|
|
49
51
|
import { ListComponentOutputsCommandInput, ListComponentOutputsCommandOutput } from "../commands/ListComponentOutputsCommand";
|
|
50
52
|
import { ListComponentProvisionedResourcesCommandInput, ListComponentProvisionedResourcesCommandOutput } from "../commands/ListComponentProvisionedResourcesCommand";
|
|
51
53
|
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
|
|
54
|
+
import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "../commands/ListDeploymentsCommand";
|
|
52
55
|
import { ListEnvironmentAccountConnectionsCommandInput, ListEnvironmentAccountConnectionsCommandOutput } from "../commands/ListEnvironmentAccountConnectionsCommand";
|
|
53
56
|
import { ListEnvironmentOutputsCommandInput, ListEnvironmentOutputsCommandOutput } from "../commands/ListEnvironmentOutputsCommand";
|
|
54
57
|
import { ListEnvironmentProvisionedResourcesCommandInput, ListEnvironmentProvisionedResourcesCommandOutput } from "../commands/ListEnvironmentProvisionedResourcesCommand";
|
|
@@ -156,6 +159,10 @@ export declare const se_CreateTemplateSyncConfigCommand: (input: CreateTemplateS
|
|
|
156
159
|
* serializeAws_json1_0DeleteComponentCommand
|
|
157
160
|
*/
|
|
158
161
|
export declare const se_DeleteComponentCommand: (input: DeleteComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
162
|
+
/**
|
|
163
|
+
* serializeAws_json1_0DeleteDeploymentCommand
|
|
164
|
+
*/
|
|
165
|
+
export declare const se_DeleteDeploymentCommand: (input: DeleteDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
159
166
|
/**
|
|
160
167
|
* serializeAws_json1_0DeleteEnvironmentCommand
|
|
161
168
|
*/
|
|
@@ -204,6 +211,10 @@ export declare const se_GetAccountSettingsCommand: (input: GetAccountSettingsCom
|
|
|
204
211
|
* serializeAws_json1_0GetComponentCommand
|
|
205
212
|
*/
|
|
206
213
|
export declare const se_GetComponentCommand: (input: GetComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
214
|
+
/**
|
|
215
|
+
* serializeAws_json1_0GetDeploymentCommand
|
|
216
|
+
*/
|
|
217
|
+
export declare const se_GetDeploymentCommand: (input: GetDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
207
218
|
/**
|
|
208
219
|
* serializeAws_json1_0GetEnvironmentCommand
|
|
209
220
|
*/
|
|
@@ -280,6 +291,10 @@ export declare const se_ListComponentProvisionedResourcesCommand: (input: ListCo
|
|
|
280
291
|
* serializeAws_json1_0ListComponentsCommand
|
|
281
292
|
*/
|
|
282
293
|
export declare const se_ListComponentsCommand: (input: ListComponentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
294
|
+
/**
|
|
295
|
+
* serializeAws_json1_0ListDeploymentsCommand
|
|
296
|
+
*/
|
|
297
|
+
export declare const se_ListDeploymentsCommand: (input: ListDeploymentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
283
298
|
/**
|
|
284
299
|
* serializeAws_json1_0ListEnvironmentAccountConnectionsCommand
|
|
285
300
|
*/
|
|
@@ -492,6 +507,10 @@ export declare const de_CreateTemplateSyncConfigCommand: (output: __HttpResponse
|
|
|
492
507
|
* deserializeAws_json1_0DeleteComponentCommand
|
|
493
508
|
*/
|
|
494
509
|
export declare const de_DeleteComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteComponentCommandOutput>;
|
|
510
|
+
/**
|
|
511
|
+
* deserializeAws_json1_0DeleteDeploymentCommand
|
|
512
|
+
*/
|
|
513
|
+
export declare const de_DeleteDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDeploymentCommandOutput>;
|
|
495
514
|
/**
|
|
496
515
|
* deserializeAws_json1_0DeleteEnvironmentCommand
|
|
497
516
|
*/
|
|
@@ -540,6 +559,10 @@ export declare const de_GetAccountSettingsCommand: (output: __HttpResponse, cont
|
|
|
540
559
|
* deserializeAws_json1_0GetComponentCommand
|
|
541
560
|
*/
|
|
542
561
|
export declare const de_GetComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComponentCommandOutput>;
|
|
562
|
+
/**
|
|
563
|
+
* deserializeAws_json1_0GetDeploymentCommand
|
|
564
|
+
*/
|
|
565
|
+
export declare const de_GetDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDeploymentCommandOutput>;
|
|
543
566
|
/**
|
|
544
567
|
* deserializeAws_json1_0GetEnvironmentCommand
|
|
545
568
|
*/
|
|
@@ -616,6 +639,10 @@ export declare const de_ListComponentProvisionedResourcesCommand: (output: __Htt
|
|
|
616
639
|
* deserializeAws_json1_0ListComponentsCommand
|
|
617
640
|
*/
|
|
618
641
|
export declare const de_ListComponentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentsCommandOutput>;
|
|
642
|
+
/**
|
|
643
|
+
* deserializeAws_json1_0ListDeploymentsCommand
|
|
644
|
+
*/
|
|
645
|
+
export declare const de_ListDeploymentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeploymentsCommandOutput>;
|
|
619
646
|
/**
|
|
620
647
|
* deserializeAws_json1_0ListEnvironmentAccountConnectionsCommand
|
|
621
648
|
*/
|
|
@@ -71,6 +71,10 @@ import {
|
|
|
71
71
|
DeleteComponentCommandInput,
|
|
72
72
|
DeleteComponentCommandOutput,
|
|
73
73
|
} from "./commands/DeleteComponentCommand";
|
|
74
|
+
import {
|
|
75
|
+
DeleteDeploymentCommandInput,
|
|
76
|
+
DeleteDeploymentCommandOutput,
|
|
77
|
+
} from "./commands/DeleteDeploymentCommand";
|
|
74
78
|
import {
|
|
75
79
|
DeleteEnvironmentAccountConnectionCommandInput,
|
|
76
80
|
DeleteEnvironmentAccountConnectionCommandOutput,
|
|
@@ -119,6 +123,10 @@ import {
|
|
|
119
123
|
GetComponentCommandInput,
|
|
120
124
|
GetComponentCommandOutput,
|
|
121
125
|
} from "./commands/GetComponentCommand";
|
|
126
|
+
import {
|
|
127
|
+
GetDeploymentCommandInput,
|
|
128
|
+
GetDeploymentCommandOutput,
|
|
129
|
+
} from "./commands/GetDeploymentCommand";
|
|
122
130
|
import {
|
|
123
131
|
GetEnvironmentAccountConnectionCommandInput,
|
|
124
132
|
GetEnvironmentAccountConnectionCommandOutput,
|
|
@@ -195,6 +203,10 @@ import {
|
|
|
195
203
|
ListComponentsCommandInput,
|
|
196
204
|
ListComponentsCommandOutput,
|
|
197
205
|
} from "./commands/ListComponentsCommand";
|
|
206
|
+
import {
|
|
207
|
+
ListDeploymentsCommandInput,
|
|
208
|
+
ListDeploymentsCommandOutput,
|
|
209
|
+
} from "./commands/ListDeploymentsCommand";
|
|
198
210
|
import {
|
|
199
211
|
ListEnvironmentAccountConnectionsCommandInput,
|
|
200
212
|
ListEnvironmentAccountConnectionsCommandOutput,
|
|
@@ -583,6 +595,19 @@ export interface Proton {
|
|
|
583
595
|
options: __HttpHandlerOptions,
|
|
584
596
|
cb: (err: any, data?: DeleteComponentCommandOutput) => void
|
|
585
597
|
): void;
|
|
598
|
+
deleteDeployment(
|
|
599
|
+
args: DeleteDeploymentCommandInput,
|
|
600
|
+
options?: __HttpHandlerOptions
|
|
601
|
+
): Promise<DeleteDeploymentCommandOutput>;
|
|
602
|
+
deleteDeployment(
|
|
603
|
+
args: DeleteDeploymentCommandInput,
|
|
604
|
+
cb: (err: any, data?: DeleteDeploymentCommandOutput) => void
|
|
605
|
+
): void;
|
|
606
|
+
deleteDeployment(
|
|
607
|
+
args: DeleteDeploymentCommandInput,
|
|
608
|
+
options: __HttpHandlerOptions,
|
|
609
|
+
cb: (err: any, data?: DeleteDeploymentCommandOutput) => void
|
|
610
|
+
): void;
|
|
586
611
|
deleteEnvironment(
|
|
587
612
|
args: DeleteEnvironmentCommandInput,
|
|
588
613
|
options?: __HttpHandlerOptions
|
|
@@ -745,6 +770,19 @@ export interface Proton {
|
|
|
745
770
|
options: __HttpHandlerOptions,
|
|
746
771
|
cb: (err: any, data?: GetComponentCommandOutput) => void
|
|
747
772
|
): void;
|
|
773
|
+
getDeployment(
|
|
774
|
+
args: GetDeploymentCommandInput,
|
|
775
|
+
options?: __HttpHandlerOptions
|
|
776
|
+
): Promise<GetDeploymentCommandOutput>;
|
|
777
|
+
getDeployment(
|
|
778
|
+
args: GetDeploymentCommandInput,
|
|
779
|
+
cb: (err: any, data?: GetDeploymentCommandOutput) => void
|
|
780
|
+
): void;
|
|
781
|
+
getDeployment(
|
|
782
|
+
args: GetDeploymentCommandInput,
|
|
783
|
+
options: __HttpHandlerOptions,
|
|
784
|
+
cb: (err: any, data?: GetDeploymentCommandOutput) => void
|
|
785
|
+
): void;
|
|
748
786
|
getEnvironment(
|
|
749
787
|
args: GetEnvironmentCommandInput,
|
|
750
788
|
options?: __HttpHandlerOptions
|
|
@@ -998,6 +1036,19 @@ export interface Proton {
|
|
|
998
1036
|
options: __HttpHandlerOptions,
|
|
999
1037
|
cb: (err: any, data?: ListComponentsCommandOutput) => void
|
|
1000
1038
|
): void;
|
|
1039
|
+
listDeployments(
|
|
1040
|
+
args: ListDeploymentsCommandInput,
|
|
1041
|
+
options?: __HttpHandlerOptions
|
|
1042
|
+
): Promise<ListDeploymentsCommandOutput>;
|
|
1043
|
+
listDeployments(
|
|
1044
|
+
args: ListDeploymentsCommandInput,
|
|
1045
|
+
cb: (err: any, data?: ListDeploymentsCommandOutput) => void
|
|
1046
|
+
): void;
|
|
1047
|
+
listDeployments(
|
|
1048
|
+
args: ListDeploymentsCommandInput,
|
|
1049
|
+
options: __HttpHandlerOptions,
|
|
1050
|
+
cb: (err: any, data?: ListDeploymentsCommandOutput) => void
|
|
1051
|
+
): void;
|
|
1001
1052
|
listEnvironmentAccountConnections(
|
|
1002
1053
|
args: ListEnvironmentAccountConnectionsCommandInput,
|
|
1003
1054
|
options?: __HttpHandlerOptions
|
|
@@ -116,6 +116,10 @@ import {
|
|
|
116
116
|
DeleteComponentCommandInput,
|
|
117
117
|
DeleteComponentCommandOutput,
|
|
118
118
|
} from "./commands/DeleteComponentCommand";
|
|
119
|
+
import {
|
|
120
|
+
DeleteDeploymentCommandInput,
|
|
121
|
+
DeleteDeploymentCommandOutput,
|
|
122
|
+
} from "./commands/DeleteDeploymentCommand";
|
|
119
123
|
import {
|
|
120
124
|
DeleteEnvironmentAccountConnectionCommandInput,
|
|
121
125
|
DeleteEnvironmentAccountConnectionCommandOutput,
|
|
@@ -164,6 +168,10 @@ import {
|
|
|
164
168
|
GetComponentCommandInput,
|
|
165
169
|
GetComponentCommandOutput,
|
|
166
170
|
} from "./commands/GetComponentCommand";
|
|
171
|
+
import {
|
|
172
|
+
GetDeploymentCommandInput,
|
|
173
|
+
GetDeploymentCommandOutput,
|
|
174
|
+
} from "./commands/GetDeploymentCommand";
|
|
167
175
|
import {
|
|
168
176
|
GetEnvironmentAccountConnectionCommandInput,
|
|
169
177
|
GetEnvironmentAccountConnectionCommandOutput,
|
|
@@ -240,6 +248,10 @@ import {
|
|
|
240
248
|
ListComponentsCommandInput,
|
|
241
249
|
ListComponentsCommandOutput,
|
|
242
250
|
} from "./commands/ListComponentsCommand";
|
|
251
|
+
import {
|
|
252
|
+
ListDeploymentsCommandInput,
|
|
253
|
+
ListDeploymentsCommandOutput,
|
|
254
|
+
} from "./commands/ListDeploymentsCommand";
|
|
243
255
|
import {
|
|
244
256
|
ListEnvironmentAccountConnectionsCommandInput,
|
|
245
257
|
ListEnvironmentAccountConnectionsCommandOutput,
|
|
@@ -405,6 +417,7 @@ export type ServiceInputTypes =
|
|
|
405
417
|
| CreateServiceTemplateVersionCommandInput
|
|
406
418
|
| CreateTemplateSyncConfigCommandInput
|
|
407
419
|
| DeleteComponentCommandInput
|
|
420
|
+
| DeleteDeploymentCommandInput
|
|
408
421
|
| DeleteEnvironmentAccountConnectionCommandInput
|
|
409
422
|
| DeleteEnvironmentCommandInput
|
|
410
423
|
| DeleteEnvironmentTemplateCommandInput
|
|
@@ -417,6 +430,7 @@ export type ServiceInputTypes =
|
|
|
417
430
|
| DeleteTemplateSyncConfigCommandInput
|
|
418
431
|
| GetAccountSettingsCommandInput
|
|
419
432
|
| GetComponentCommandInput
|
|
433
|
+
| GetDeploymentCommandInput
|
|
420
434
|
| GetEnvironmentAccountConnectionCommandInput
|
|
421
435
|
| GetEnvironmentCommandInput
|
|
422
436
|
| GetEnvironmentTemplateCommandInput
|
|
@@ -436,6 +450,7 @@ export type ServiceInputTypes =
|
|
|
436
450
|
| ListComponentOutputsCommandInput
|
|
437
451
|
| ListComponentProvisionedResourcesCommandInput
|
|
438
452
|
| ListComponentsCommandInput
|
|
453
|
+
| ListDeploymentsCommandInput
|
|
439
454
|
| ListEnvironmentAccountConnectionsCommandInput
|
|
440
455
|
| ListEnvironmentOutputsCommandInput
|
|
441
456
|
| ListEnvironmentProvisionedResourcesCommandInput
|
|
@@ -490,6 +505,7 @@ export type ServiceOutputTypes =
|
|
|
490
505
|
| CreateServiceTemplateVersionCommandOutput
|
|
491
506
|
| CreateTemplateSyncConfigCommandOutput
|
|
492
507
|
| DeleteComponentCommandOutput
|
|
508
|
+
| DeleteDeploymentCommandOutput
|
|
493
509
|
| DeleteEnvironmentAccountConnectionCommandOutput
|
|
494
510
|
| DeleteEnvironmentCommandOutput
|
|
495
511
|
| DeleteEnvironmentTemplateCommandOutput
|
|
@@ -502,6 +518,7 @@ export type ServiceOutputTypes =
|
|
|
502
518
|
| DeleteTemplateSyncConfigCommandOutput
|
|
503
519
|
| GetAccountSettingsCommandOutput
|
|
504
520
|
| GetComponentCommandOutput
|
|
521
|
+
| GetDeploymentCommandOutput
|
|
505
522
|
| GetEnvironmentAccountConnectionCommandOutput
|
|
506
523
|
| GetEnvironmentCommandOutput
|
|
507
524
|
| GetEnvironmentTemplateCommandOutput
|
|
@@ -521,6 +538,7 @@ export type ServiceOutputTypes =
|
|
|
521
538
|
| ListComponentOutputsCommandOutput
|
|
522
539
|
| ListComponentProvisionedResourcesCommandOutput
|
|
523
540
|
| ListComponentsCommandOutput
|
|
541
|
+
| ListDeploymentsCommandOutput
|
|
524
542
|
| ListEnvironmentAccountConnectionsCommandOutput
|
|
525
543
|
| ListEnvironmentOutputsCommandOutput
|
|
526
544
|
| ListEnvironmentProvisionedResourcesCommandOutput
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DeleteDeploymentInput,
|
|
11
|
+
DeleteDeploymentOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ProtonClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../ProtonClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteDeploymentCommandInput extends DeleteDeploymentInput {}
|
|
20
|
+
export interface DeleteDeploymentCommandOutput
|
|
21
|
+
extends DeleteDeploymentOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteDeploymentCommand extends $Command<
|
|
24
|
+
DeleteDeploymentCommandInput,
|
|
25
|
+
DeleteDeploymentCommandOutput,
|
|
26
|
+
ProtonClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteDeploymentCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteDeploymentCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ProtonClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { GetDeploymentInput, GetDeploymentOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ProtonClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../ProtonClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetDeploymentCommandInput extends GetDeploymentInput {}
|
|
17
|
+
export interface GetDeploymentCommandOutput
|
|
18
|
+
extends GetDeploymentOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetDeploymentCommand extends $Command<
|
|
21
|
+
GetDeploymentCommandInput,
|
|
22
|
+
GetDeploymentCommandOutput,
|
|
23
|
+
ProtonClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetDeploymentCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetDeploymentCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ProtonClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetDeploymentCommandInput, GetDeploymentCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ListDeploymentsInput,
|
|
11
|
+
ListDeploymentsOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ProtonClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../ProtonClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListDeploymentsCommandInput extends ListDeploymentsInput {}
|
|
20
|
+
export interface ListDeploymentsCommandOutput
|
|
21
|
+
extends ListDeploymentsOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListDeploymentsCommand extends $Command<
|
|
24
|
+
ListDeploymentsCommandInput,
|
|
25
|
+
ListDeploymentsCommandOutput,
|
|
26
|
+
ProtonClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListDeploymentsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListDeploymentsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ProtonClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListDeploymentsCommandInput, ListDeploymentsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -16,6 +16,7 @@ export * from "./CreateServiceTemplateCommand";
|
|
|
16
16
|
export * from "./CreateServiceTemplateVersionCommand";
|
|
17
17
|
export * from "./CreateTemplateSyncConfigCommand";
|
|
18
18
|
export * from "./DeleteComponentCommand";
|
|
19
|
+
export * from "./DeleteDeploymentCommand";
|
|
19
20
|
export * from "./DeleteEnvironmentAccountConnectionCommand";
|
|
20
21
|
export * from "./DeleteEnvironmentCommand";
|
|
21
22
|
export * from "./DeleteEnvironmentTemplateCommand";
|
|
@@ -28,6 +29,7 @@ export * from "./DeleteServiceTemplateVersionCommand";
|
|
|
28
29
|
export * from "./DeleteTemplateSyncConfigCommand";
|
|
29
30
|
export * from "./GetAccountSettingsCommand";
|
|
30
31
|
export * from "./GetComponentCommand";
|
|
32
|
+
export * from "./GetDeploymentCommand";
|
|
31
33
|
export * from "./GetEnvironmentAccountConnectionCommand";
|
|
32
34
|
export * from "./GetEnvironmentCommand";
|
|
33
35
|
export * from "./GetEnvironmentTemplateCommand";
|
|
@@ -47,6 +49,7 @@ export * from "./GetTemplateSyncStatusCommand";
|
|
|
47
49
|
export * from "./ListComponentOutputsCommand";
|
|
48
50
|
export * from "./ListComponentProvisionedResourcesCommand";
|
|
49
51
|
export * from "./ListComponentsCommand";
|
|
52
|
+
export * from "./ListDeploymentsCommand";
|
|
50
53
|
export * from "./ListEnvironmentAccountConnectionsCommand";
|
|
51
54
|
export * from "./ListEnvironmentOutputsCommand";
|
|
52
55
|
export * from "./ListEnvironmentProvisionedResourcesCommand";
|