@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
|
@@ -136,6 +136,8 @@ export interface Component {
|
|
|
136
136
|
deploymentStatusMessage?: string;
|
|
137
137
|
serviceSpec?: string;
|
|
138
138
|
lastClientRequestToken?: string;
|
|
139
|
+
lastAttemptedDeploymentId?: string;
|
|
140
|
+
lastSucceededDeploymentId?: string;
|
|
139
141
|
}
|
|
140
142
|
export interface CancelComponentDeploymentOutput {
|
|
141
143
|
component: Component | undefined;
|
|
@@ -167,6 +169,8 @@ export interface Environment {
|
|
|
167
169
|
provisioningRepository?: RepositoryBranch;
|
|
168
170
|
componentRoleArn?: string;
|
|
169
171
|
codebuildRoleArn?: string;
|
|
172
|
+
lastAttemptedDeploymentId?: string;
|
|
173
|
+
lastSucceededDeploymentId?: string;
|
|
170
174
|
}
|
|
171
175
|
export interface CancelEnvironmentDeploymentOutput {
|
|
172
176
|
environment: Environment | undefined;
|
|
@@ -190,6 +194,8 @@ export interface ServiceInstance {
|
|
|
190
194
|
deploymentStatusMessage?: string;
|
|
191
195
|
spec?: string;
|
|
192
196
|
lastClientRequestToken?: string;
|
|
197
|
+
lastAttemptedDeploymentId?: string;
|
|
198
|
+
lastSucceededDeploymentId?: string;
|
|
193
199
|
}
|
|
194
200
|
export interface CancelServiceInstanceDeploymentOutput {
|
|
195
201
|
serviceInstance: ServiceInstance | undefined;
|
|
@@ -208,6 +214,8 @@ export interface ServicePipeline {
|
|
|
208
214
|
deploymentStatus: DeploymentStatus | string | undefined;
|
|
209
215
|
deploymentStatusMessage?: string;
|
|
210
216
|
spec?: string;
|
|
217
|
+
lastAttemptedDeploymentId?: string;
|
|
218
|
+
lastSucceededDeploymentId?: string;
|
|
211
219
|
}
|
|
212
220
|
export interface CancelServicePipelineDeploymentOutput {
|
|
213
221
|
pipeline: ServicePipeline | undefined;
|
|
@@ -215,6 +223,7 @@ export interface CancelServicePipelineDeploymentOutput {
|
|
|
215
223
|
export interface ListComponentOutputsInput {
|
|
216
224
|
componentName: string | undefined;
|
|
217
225
|
nextToken?: string;
|
|
226
|
+
deploymentId?: string;
|
|
218
227
|
}
|
|
219
228
|
export interface Output {
|
|
220
229
|
key?: string;
|
|
@@ -300,6 +309,8 @@ export interface ComponentSummary {
|
|
|
300
309
|
lastDeploymentSucceededAt?: Date;
|
|
301
310
|
deploymentStatus: DeploymentStatus | string | undefined;
|
|
302
311
|
deploymentStatusMessage?: string;
|
|
312
|
+
lastAttemptedDeploymentId?: string;
|
|
313
|
+
lastSucceededDeploymentId?: string;
|
|
303
314
|
}
|
|
304
315
|
export interface ListComponentsOutput {
|
|
305
316
|
nextToken?: string;
|
|
@@ -324,6 +335,157 @@ export interface UpdateComponentInput {
|
|
|
324
335
|
export interface UpdateComponentOutput {
|
|
325
336
|
component: Component | undefined;
|
|
326
337
|
}
|
|
338
|
+
export interface DeleteDeploymentInput {
|
|
339
|
+
id: string | undefined;
|
|
340
|
+
}
|
|
341
|
+
export interface ComponentState {
|
|
342
|
+
serviceName?: string;
|
|
343
|
+
serviceInstanceName?: string;
|
|
344
|
+
serviceSpec?: string;
|
|
345
|
+
templateFile?: string;
|
|
346
|
+
}
|
|
347
|
+
export interface EnvironmentState {
|
|
348
|
+
spec?: string;
|
|
349
|
+
templateName: string | undefined;
|
|
350
|
+
templateMajorVersion: string | undefined;
|
|
351
|
+
templateMinorVersion: string | undefined;
|
|
352
|
+
}
|
|
353
|
+
export interface ServiceInstanceState {
|
|
354
|
+
spec: string | undefined;
|
|
355
|
+
templateName: string | undefined;
|
|
356
|
+
templateMajorVersion: string | undefined;
|
|
357
|
+
templateMinorVersion: string | undefined;
|
|
358
|
+
lastSuccessfulComponentDeploymentIds?: string[];
|
|
359
|
+
lastSuccessfulEnvironmentDeploymentId?: string;
|
|
360
|
+
lastSuccessfulServicePipelineDeploymentId?: string;
|
|
361
|
+
}
|
|
362
|
+
export interface ServicePipelineState {
|
|
363
|
+
spec?: string;
|
|
364
|
+
templateName: string | undefined;
|
|
365
|
+
templateMajorVersion: string | undefined;
|
|
366
|
+
templateMinorVersion: string | undefined;
|
|
367
|
+
}
|
|
368
|
+
export type DeploymentState =
|
|
369
|
+
| DeploymentState.ComponentMember
|
|
370
|
+
| DeploymentState.EnvironmentMember
|
|
371
|
+
| DeploymentState.ServiceInstanceMember
|
|
372
|
+
| DeploymentState.ServicePipelineMember
|
|
373
|
+
| DeploymentState.$UnknownMember;
|
|
374
|
+
export declare namespace DeploymentState {
|
|
375
|
+
interface ServiceInstanceMember {
|
|
376
|
+
serviceInstance: ServiceInstanceState;
|
|
377
|
+
environment?: never;
|
|
378
|
+
servicePipeline?: never;
|
|
379
|
+
component?: never;
|
|
380
|
+
$unknown?: never;
|
|
381
|
+
}
|
|
382
|
+
interface EnvironmentMember {
|
|
383
|
+
serviceInstance?: never;
|
|
384
|
+
environment: EnvironmentState;
|
|
385
|
+
servicePipeline?: never;
|
|
386
|
+
component?: never;
|
|
387
|
+
$unknown?: never;
|
|
388
|
+
}
|
|
389
|
+
interface ServicePipelineMember {
|
|
390
|
+
serviceInstance?: never;
|
|
391
|
+
environment?: never;
|
|
392
|
+
servicePipeline: ServicePipelineState;
|
|
393
|
+
component?: never;
|
|
394
|
+
$unknown?: never;
|
|
395
|
+
}
|
|
396
|
+
interface ComponentMember {
|
|
397
|
+
serviceInstance?: never;
|
|
398
|
+
environment?: never;
|
|
399
|
+
servicePipeline?: never;
|
|
400
|
+
component: ComponentState;
|
|
401
|
+
$unknown?: never;
|
|
402
|
+
}
|
|
403
|
+
interface $UnknownMember {
|
|
404
|
+
serviceInstance?: never;
|
|
405
|
+
environment?: never;
|
|
406
|
+
servicePipeline?: never;
|
|
407
|
+
component?: never;
|
|
408
|
+
$unknown: [string, any];
|
|
409
|
+
}
|
|
410
|
+
interface Visitor<T> {
|
|
411
|
+
serviceInstance: (value: ServiceInstanceState) => T;
|
|
412
|
+
environment: (value: EnvironmentState) => T;
|
|
413
|
+
servicePipeline: (value: ServicePipelineState) => T;
|
|
414
|
+
component: (value: ComponentState) => T;
|
|
415
|
+
_: (name: string, value: any) => T;
|
|
416
|
+
}
|
|
417
|
+
const visit: <T>(value: DeploymentState, visitor: Visitor<T>) => T;
|
|
418
|
+
}
|
|
419
|
+
export declare const DeploymentTargetResourceType: {
|
|
420
|
+
readonly COMPONENT: "COMPONENT";
|
|
421
|
+
readonly ENVIRONMENT: "ENVIRONMENT";
|
|
422
|
+
readonly SERVICE_INSTANCE: "SERVICE_INSTANCE";
|
|
423
|
+
readonly SERVICE_PIPELINE: "SERVICE_PIPELINE";
|
|
424
|
+
};
|
|
425
|
+
export type DeploymentTargetResourceType =
|
|
426
|
+
(typeof DeploymentTargetResourceType)[keyof typeof DeploymentTargetResourceType];
|
|
427
|
+
export interface Deployment {
|
|
428
|
+
id: string | undefined;
|
|
429
|
+
arn: string | undefined;
|
|
430
|
+
targetArn: string | undefined;
|
|
431
|
+
targetResourceCreatedAt: Date | undefined;
|
|
432
|
+
targetResourceType: DeploymentTargetResourceType | string | undefined;
|
|
433
|
+
environmentName: string | undefined;
|
|
434
|
+
serviceName?: string;
|
|
435
|
+
serviceInstanceName?: string;
|
|
436
|
+
componentName?: string;
|
|
437
|
+
deploymentStatus: DeploymentStatus | string | undefined;
|
|
438
|
+
deploymentStatusMessage?: string;
|
|
439
|
+
createdAt: Date | undefined;
|
|
440
|
+
lastModifiedAt: Date | undefined;
|
|
441
|
+
completedAt?: Date;
|
|
442
|
+
lastAttemptedDeploymentId?: string;
|
|
443
|
+
lastSucceededDeploymentId?: string;
|
|
444
|
+
initialState?: DeploymentState;
|
|
445
|
+
targetState?: DeploymentState;
|
|
446
|
+
}
|
|
447
|
+
export interface DeleteDeploymentOutput {
|
|
448
|
+
deployment?: Deployment;
|
|
449
|
+
}
|
|
450
|
+
export interface GetDeploymentInput {
|
|
451
|
+
id: string | undefined;
|
|
452
|
+
environmentName?: string;
|
|
453
|
+
serviceName?: string;
|
|
454
|
+
serviceInstanceName?: string;
|
|
455
|
+
componentName?: string;
|
|
456
|
+
}
|
|
457
|
+
export interface GetDeploymentOutput {
|
|
458
|
+
deployment?: Deployment;
|
|
459
|
+
}
|
|
460
|
+
export interface ListDeploymentsInput {
|
|
461
|
+
nextToken?: string;
|
|
462
|
+
environmentName?: string;
|
|
463
|
+
serviceName?: string;
|
|
464
|
+
serviceInstanceName?: string;
|
|
465
|
+
componentName?: string;
|
|
466
|
+
maxResults?: number;
|
|
467
|
+
}
|
|
468
|
+
export interface DeploymentSummary {
|
|
469
|
+
id: string | undefined;
|
|
470
|
+
arn: string | undefined;
|
|
471
|
+
targetArn: string | undefined;
|
|
472
|
+
targetResourceCreatedAt: Date | undefined;
|
|
473
|
+
targetResourceType: DeploymentTargetResourceType | string | undefined;
|
|
474
|
+
createdAt: Date | undefined;
|
|
475
|
+
lastModifiedAt: Date | undefined;
|
|
476
|
+
completedAt?: Date;
|
|
477
|
+
environmentName: string | undefined;
|
|
478
|
+
serviceName?: string;
|
|
479
|
+
serviceInstanceName?: string;
|
|
480
|
+
componentName?: string;
|
|
481
|
+
lastAttemptedDeploymentId?: string;
|
|
482
|
+
lastSucceededDeploymentId?: string;
|
|
483
|
+
deploymentStatus: DeploymentStatus | string | undefined;
|
|
484
|
+
}
|
|
485
|
+
export interface ListDeploymentsOutput {
|
|
486
|
+
nextToken?: string;
|
|
487
|
+
deployments: DeploymentSummary[] | undefined;
|
|
488
|
+
}
|
|
327
489
|
export interface CreateEnvironmentAccountConnectionInput {
|
|
328
490
|
clientToken?: string;
|
|
329
491
|
managementAccountId: string | undefined;
|
|
@@ -400,6 +562,7 @@ export interface UpdateEnvironmentAccountConnectionOutput {
|
|
|
400
562
|
export interface ListEnvironmentOutputsInput {
|
|
401
563
|
environmentName: string | undefined;
|
|
402
564
|
nextToken?: string;
|
|
565
|
+
deploymentId?: string;
|
|
403
566
|
}
|
|
404
567
|
export interface ListEnvironmentOutputsOutput {
|
|
405
568
|
nextToken?: string;
|
|
@@ -468,6 +631,8 @@ export interface EnvironmentSummary {
|
|
|
468
631
|
environmentAccountId?: string;
|
|
469
632
|
provisioning?: Provisioning | string;
|
|
470
633
|
componentRoleArn?: string;
|
|
634
|
+
lastAttemptedDeploymentId?: string;
|
|
635
|
+
lastSucceededDeploymentId?: string;
|
|
471
636
|
}
|
|
472
637
|
export interface ListEnvironmentsOutput {
|
|
473
638
|
nextToken?: string;
|
|
@@ -855,6 +1020,7 @@ export interface ListServiceInstanceOutputsInput {
|
|
|
855
1020
|
serviceInstanceName: string | undefined;
|
|
856
1021
|
serviceName: string | undefined;
|
|
857
1022
|
nextToken?: string;
|
|
1023
|
+
deploymentId?: string;
|
|
858
1024
|
}
|
|
859
1025
|
export interface ListServiceInstanceOutputsOutput {
|
|
860
1026
|
nextToken?: string;
|
|
@@ -943,6 +1109,8 @@ export interface ServiceInstanceSummary {
|
|
|
943
1109
|
templateMinorVersion: string | undefined;
|
|
944
1110
|
deploymentStatus: DeploymentStatus | string | undefined;
|
|
945
1111
|
deploymentStatusMessage?: string;
|
|
1112
|
+
lastAttemptedDeploymentId?: string;
|
|
1113
|
+
lastSucceededDeploymentId?: string;
|
|
946
1114
|
}
|
|
947
1115
|
export interface ListServiceInstancesOutput {
|
|
948
1116
|
nextToken?: string;
|
|
@@ -963,6 +1131,7 @@ export interface UpdateServiceInstanceOutput {
|
|
|
963
1131
|
export interface ListServicePipelineOutputsInput {
|
|
964
1132
|
serviceName: string | undefined;
|
|
965
1133
|
nextToken?: string;
|
|
1134
|
+
deploymentId?: string;
|
|
966
1135
|
}
|
|
967
1136
|
export interface ListServicePipelineOutputsOutput {
|
|
968
1137
|
nextToken?: string;
|
|
@@ -1418,6 +1587,28 @@ export declare const UpdateComponentInputFilterSensitiveLog: (
|
|
|
1418
1587
|
export declare const UpdateComponentOutputFilterSensitiveLog: (
|
|
1419
1588
|
obj: UpdateComponentOutput
|
|
1420
1589
|
) => any;
|
|
1590
|
+
export declare const ComponentStateFilterSensitiveLog: (
|
|
1591
|
+
obj: ComponentState
|
|
1592
|
+
) => any;
|
|
1593
|
+
export declare const EnvironmentStateFilterSensitiveLog: (
|
|
1594
|
+
obj: EnvironmentState
|
|
1595
|
+
) => any;
|
|
1596
|
+
export declare const ServiceInstanceStateFilterSensitiveLog: (
|
|
1597
|
+
obj: ServiceInstanceState
|
|
1598
|
+
) => any;
|
|
1599
|
+
export declare const ServicePipelineStateFilterSensitiveLog: (
|
|
1600
|
+
obj: ServicePipelineState
|
|
1601
|
+
) => any;
|
|
1602
|
+
export declare const DeploymentStateFilterSensitiveLog: (
|
|
1603
|
+
obj: DeploymentState
|
|
1604
|
+
) => any;
|
|
1605
|
+
export declare const DeploymentFilterSensitiveLog: (obj: Deployment) => any;
|
|
1606
|
+
export declare const DeleteDeploymentOutputFilterSensitiveLog: (
|
|
1607
|
+
obj: DeleteDeploymentOutput
|
|
1608
|
+
) => any;
|
|
1609
|
+
export declare const GetDeploymentOutputFilterSensitiveLog: (
|
|
1610
|
+
obj: GetDeploymentOutput
|
|
1611
|
+
) => any;
|
|
1421
1612
|
export declare const ListEnvironmentOutputsOutputFilterSensitiveLog: (
|
|
1422
1613
|
obj: ListEnvironmentOutputsOutput
|
|
1423
1614
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDeploymentsCommandInput,
|
|
4
|
+
ListDeploymentsCommandOutput,
|
|
5
|
+
} from "../commands/ListDeploymentsCommand";
|
|
6
|
+
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListDeployments(
|
|
8
|
+
config: ProtonPaginationConfiguration,
|
|
9
|
+
input: ListDeploymentsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): 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";
|
|
@@ -75,6 +75,10 @@ import {
|
|
|
75
75
|
DeleteComponentCommandInput,
|
|
76
76
|
DeleteComponentCommandOutput,
|
|
77
77
|
} from "../commands/DeleteComponentCommand";
|
|
78
|
+
import {
|
|
79
|
+
DeleteDeploymentCommandInput,
|
|
80
|
+
DeleteDeploymentCommandOutput,
|
|
81
|
+
} from "../commands/DeleteDeploymentCommand";
|
|
78
82
|
import {
|
|
79
83
|
DeleteEnvironmentAccountConnectionCommandInput,
|
|
80
84
|
DeleteEnvironmentAccountConnectionCommandOutput,
|
|
@@ -123,6 +127,10 @@ import {
|
|
|
123
127
|
GetComponentCommandInput,
|
|
124
128
|
GetComponentCommandOutput,
|
|
125
129
|
} from "../commands/GetComponentCommand";
|
|
130
|
+
import {
|
|
131
|
+
GetDeploymentCommandInput,
|
|
132
|
+
GetDeploymentCommandOutput,
|
|
133
|
+
} from "../commands/GetDeploymentCommand";
|
|
126
134
|
import {
|
|
127
135
|
GetEnvironmentAccountConnectionCommandInput,
|
|
128
136
|
GetEnvironmentAccountConnectionCommandOutput,
|
|
@@ -199,6 +207,10 @@ import {
|
|
|
199
207
|
ListComponentsCommandInput,
|
|
200
208
|
ListComponentsCommandOutput,
|
|
201
209
|
} from "../commands/ListComponentsCommand";
|
|
210
|
+
import {
|
|
211
|
+
ListDeploymentsCommandInput,
|
|
212
|
+
ListDeploymentsCommandOutput,
|
|
213
|
+
} from "../commands/ListDeploymentsCommand";
|
|
202
214
|
import {
|
|
203
215
|
ListEnvironmentAccountConnectionsCommandInput,
|
|
204
216
|
ListEnvironmentAccountConnectionsCommandOutput,
|
|
@@ -411,6 +423,10 @@ export declare const se_DeleteComponentCommand: (
|
|
|
411
423
|
input: DeleteComponentCommandInput,
|
|
412
424
|
context: __SerdeContext
|
|
413
425
|
) => Promise<__HttpRequest>;
|
|
426
|
+
export declare const se_DeleteDeploymentCommand: (
|
|
427
|
+
input: DeleteDeploymentCommandInput,
|
|
428
|
+
context: __SerdeContext
|
|
429
|
+
) => Promise<__HttpRequest>;
|
|
414
430
|
export declare const se_DeleteEnvironmentCommand: (
|
|
415
431
|
input: DeleteEnvironmentCommandInput,
|
|
416
432
|
context: __SerdeContext
|
|
@@ -459,6 +475,10 @@ export declare const se_GetComponentCommand: (
|
|
|
459
475
|
input: GetComponentCommandInput,
|
|
460
476
|
context: __SerdeContext
|
|
461
477
|
) => Promise<__HttpRequest>;
|
|
478
|
+
export declare const se_GetDeploymentCommand: (
|
|
479
|
+
input: GetDeploymentCommandInput,
|
|
480
|
+
context: __SerdeContext
|
|
481
|
+
) => Promise<__HttpRequest>;
|
|
462
482
|
export declare const se_GetEnvironmentCommand: (
|
|
463
483
|
input: GetEnvironmentCommandInput,
|
|
464
484
|
context: __SerdeContext
|
|
@@ -535,6 +555,10 @@ export declare const se_ListComponentsCommand: (
|
|
|
535
555
|
input: ListComponentsCommandInput,
|
|
536
556
|
context: __SerdeContext
|
|
537
557
|
) => Promise<__HttpRequest>;
|
|
558
|
+
export declare const se_ListDeploymentsCommand: (
|
|
559
|
+
input: ListDeploymentsCommandInput,
|
|
560
|
+
context: __SerdeContext
|
|
561
|
+
) => Promise<__HttpRequest>;
|
|
538
562
|
export declare const se_ListEnvironmentAccountConnectionsCommand: (
|
|
539
563
|
input: ListEnvironmentAccountConnectionsCommandInput,
|
|
540
564
|
context: __SerdeContext
|
|
@@ -747,6 +771,10 @@ export declare const de_DeleteComponentCommand: (
|
|
|
747
771
|
output: __HttpResponse,
|
|
748
772
|
context: __SerdeContext
|
|
749
773
|
) => Promise<DeleteComponentCommandOutput>;
|
|
774
|
+
export declare const de_DeleteDeploymentCommand: (
|
|
775
|
+
output: __HttpResponse,
|
|
776
|
+
context: __SerdeContext
|
|
777
|
+
) => Promise<DeleteDeploymentCommandOutput>;
|
|
750
778
|
export declare const de_DeleteEnvironmentCommand: (
|
|
751
779
|
output: __HttpResponse,
|
|
752
780
|
context: __SerdeContext
|
|
@@ -795,6 +823,10 @@ export declare const de_GetComponentCommand: (
|
|
|
795
823
|
output: __HttpResponse,
|
|
796
824
|
context: __SerdeContext
|
|
797
825
|
) => Promise<GetComponentCommandOutput>;
|
|
826
|
+
export declare const de_GetDeploymentCommand: (
|
|
827
|
+
output: __HttpResponse,
|
|
828
|
+
context: __SerdeContext
|
|
829
|
+
) => Promise<GetDeploymentCommandOutput>;
|
|
798
830
|
export declare const de_GetEnvironmentCommand: (
|
|
799
831
|
output: __HttpResponse,
|
|
800
832
|
context: __SerdeContext
|
|
@@ -871,6 +903,10 @@ export declare const de_ListComponentsCommand: (
|
|
|
871
903
|
output: __HttpResponse,
|
|
872
904
|
context: __SerdeContext
|
|
873
905
|
) => Promise<ListComponentsCommandOutput>;
|
|
906
|
+
export declare const de_ListDeploymentsCommand: (
|
|
907
|
+
output: __HttpResponse,
|
|
908
|
+
context: __SerdeContext
|
|
909
|
+
) => Promise<ListDeploymentsCommandOutput>;
|
|
874
910
|
export declare const de_ListEnvironmentAccountConnectionsCommand: (
|
|
875
911
|
output: __HttpResponse,
|
|
876
912
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-proton",
|
|
3
3
|
"description": "AWS SDK for JavaScript Proton Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.370.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,45 +21,44 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.370.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.370.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.370.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.370.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.370.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.370.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.370.0",
|
|
31
|
+
"@aws-sdk/types": "3.370.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.370.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.370.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.370.0",
|
|
35
35
|
"@smithy/config-resolver": "^1.0.1",
|
|
36
36
|
"@smithy/fetch-http-handler": "^1.0.1",
|
|
37
37
|
"@smithy/hash-node": "^1.0.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^1.0.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^1.0.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^1.0.
|
|
41
|
-
"@smithy/middleware-retry": "^1.0.
|
|
40
|
+
"@smithy/middleware-endpoint": "^1.0.2",
|
|
41
|
+
"@smithy/middleware-retry": "^1.0.3",
|
|
42
42
|
"@smithy/middleware-serde": "^1.0.1",
|
|
43
43
|
"@smithy/middleware-stack": "^1.0.1",
|
|
44
44
|
"@smithy/node-config-provider": "^1.0.1",
|
|
45
45
|
"@smithy/node-http-handler": "^1.0.2",
|
|
46
|
-
"@smithy/protocol-http": "^1.0
|
|
46
|
+
"@smithy/protocol-http": "^1.1.0",
|
|
47
47
|
"@smithy/smithy-client": "^1.0.3",
|
|
48
|
-
"@smithy/types": "^1.
|
|
48
|
+
"@smithy/types": "^1.1.0",
|
|
49
49
|
"@smithy/url-parser": "^1.0.1",
|
|
50
50
|
"@smithy/util-base64": "^1.0.1",
|
|
51
51
|
"@smithy/util-body-length-browser": "^1.0.1",
|
|
52
52
|
"@smithy/util-body-length-node": "^1.0.1",
|
|
53
53
|
"@smithy/util-defaults-mode-browser": "^1.0.1",
|
|
54
54
|
"@smithy/util-defaults-mode-node": "^1.0.1",
|
|
55
|
-
"@smithy/util-retry": "^1.0.
|
|
55
|
+
"@smithy/util-retry": "^1.0.3",
|
|
56
56
|
"@smithy/util-utf8": "^1.0.1",
|
|
57
57
|
"@smithy/util-waiter": "^1.0.1",
|
|
58
58
|
"tslib": "^2.5.0",
|
|
59
59
|
"uuid": "^8.3.2"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@aws-sdk/service-client-documentation-generator": "3.310.0",
|
|
63
62
|
"@smithy/service-client-documentation-generator": "^1.0.1",
|
|
64
63
|
"@tsconfig/node14": "1.0.3",
|
|
65
64
|
"@types/node": "^14.14.31",
|