@aws-sdk/client-proton 3.935.0 → 3.939.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.
@@ -1,13 +1,30 @@
1
+ import {
2
+ BlockerStatus,
3
+ BlockerType,
4
+ ComponentDeploymentUpdateType,
5
+ DeploymentStatus,
6
+ DeploymentTargetResourceType,
7
+ DeploymentUpdateType,
8
+ EnvironmentAccountConnectionRequesterAccountType,
9
+ EnvironmentAccountConnectionStatus,
10
+ ListServiceInstancesFilterBy,
11
+ ListServiceInstancesSortBy,
12
+ ProvisionedResourceEngine,
13
+ Provisioning,
14
+ RepositoryProvider,
15
+ RepositorySyncStatus,
16
+ ResourceDeploymentStatus,
17
+ ResourceSyncStatus,
18
+ ServiceStatus,
19
+ ServiceTemplateSupportedComponentSourceType,
20
+ SortOrder,
21
+ SyncType,
22
+ TemplateType,
23
+ TemplateVersionStatus,
24
+ } from "./enums";
1
25
  export interface AcceptEnvironmentAccountConnectionInput {
2
26
  id: string | undefined;
3
27
  }
4
- export declare const EnvironmentAccountConnectionStatus: {
5
- readonly CONNECTED: "CONNECTED";
6
- readonly PENDING: "PENDING";
7
- readonly REJECTED: "REJECTED";
8
- };
9
- export type EnvironmentAccountConnectionStatus =
10
- (typeof EnvironmentAccountConnectionStatus)[keyof typeof EnvironmentAccountConnectionStatus];
11
28
  export interface EnvironmentAccountConnection {
12
29
  id: string | undefined;
13
30
  arn: string | undefined;
@@ -24,13 +41,6 @@ export interface EnvironmentAccountConnection {
24
41
  export interface AcceptEnvironmentAccountConnectionOutput {
25
42
  environmentAccountConnection: EnvironmentAccountConnection | undefined;
26
43
  }
27
- export declare const RepositoryProvider: {
28
- readonly BITBUCKET: "BITBUCKET";
29
- readonly GITHUB: "GITHUB";
30
- readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
31
- };
32
- export type RepositoryProvider =
33
- (typeof RepositoryProvider)[keyof typeof RepositoryProvider];
34
44
  export interface RepositoryBranch {
35
45
  arn: string | undefined;
36
46
  provider: RepositoryProvider | undefined;
@@ -63,18 +73,6 @@ export interface UpdateAccountSettingsOutput {
63
73
  export interface CancelComponentDeploymentInput {
64
74
  componentName: string | undefined;
65
75
  }
66
- export declare const DeploymentStatus: {
67
- readonly CANCELLED: "CANCELLED";
68
- readonly CANCELLING: "CANCELLING";
69
- readonly DELETE_COMPLETE: "DELETE_COMPLETE";
70
- readonly DELETE_FAILED: "DELETE_FAILED";
71
- readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
72
- readonly FAILED: "FAILED";
73
- readonly IN_PROGRESS: "IN_PROGRESS";
74
- readonly SUCCEEDED: "SUCCEEDED";
75
- };
76
- export type DeploymentStatus =
77
- (typeof DeploymentStatus)[keyof typeof DeploymentStatus];
78
76
  export interface Component {
79
77
  name: string | undefined;
80
78
  description?: string | undefined;
@@ -99,10 +97,6 @@ export interface CancelComponentDeploymentOutput {
99
97
  export interface CancelEnvironmentDeploymentInput {
100
98
  environmentName: string | undefined;
101
99
  }
102
- export declare const Provisioning: {
103
- readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
104
- };
105
- export type Provisioning = (typeof Provisioning)[keyof typeof Provisioning];
106
100
  export interface Environment {
107
101
  name: string | undefined;
108
102
  description?: string | undefined;
@@ -191,12 +185,6 @@ export interface ListComponentProvisionedResourcesInput {
191
185
  componentName: string | undefined;
192
186
  nextToken?: string | undefined;
193
187
  }
194
- export declare const ProvisionedResourceEngine: {
195
- readonly CLOUDFORMATION: "CLOUDFORMATION";
196
- readonly TERRAFORM: "TERRAFORM";
197
- };
198
- export type ProvisionedResourceEngine =
199
- (typeof ProvisionedResourceEngine)[keyof typeof ProvisionedResourceEngine];
200
188
  export interface ProvisionedResource {
201
189
  name?: string | undefined;
202
190
  identifier?: string | undefined;
@@ -263,12 +251,6 @@ export interface ListComponentsOutput {
263
251
  nextToken?: string | undefined;
264
252
  components: ComponentSummary[] | undefined;
265
253
  }
266
- export declare const ComponentDeploymentUpdateType: {
267
- readonly CURRENT_VERSION: "CURRENT_VERSION";
268
- readonly NONE: "NONE";
269
- };
270
- export type ComponentDeploymentUpdateType =
271
- (typeof ComponentDeploymentUpdateType)[keyof typeof ComponentDeploymentUpdateType];
272
254
  export interface UpdateComponentInput {
273
255
  name: string | undefined;
274
256
  deploymentType: ComponentDeploymentUpdateType | undefined;
@@ -362,14 +344,6 @@ export declare namespace DeploymentState {
362
344
  _: (name: string, value: any) => T;
363
345
  }
364
346
  }
365
- export declare const DeploymentTargetResourceType: {
366
- readonly COMPONENT: "COMPONENT";
367
- readonly ENVIRONMENT: "ENVIRONMENT";
368
- readonly SERVICE_INSTANCE: "SERVICE_INSTANCE";
369
- readonly SERVICE_PIPELINE: "SERVICE_PIPELINE";
370
- };
371
- export type DeploymentTargetResourceType =
372
- (typeof DeploymentTargetResourceType)[keyof typeof DeploymentTargetResourceType];
373
347
  export interface Deployment {
374
348
  id: string | undefined;
375
349
  arn: string | undefined;
@@ -456,12 +430,6 @@ export interface GetEnvironmentAccountConnectionInput {
456
430
  export interface GetEnvironmentAccountConnectionOutput {
457
431
  environmentAccountConnection: EnvironmentAccountConnection | undefined;
458
432
  }
459
- export declare const EnvironmentAccountConnectionRequesterAccountType: {
460
- readonly ENVIRONMENT_ACCOUNT: "ENVIRONMENT_ACCOUNT";
461
- readonly MANAGEMENT_ACCOUNT: "MANAGEMENT_ACCOUNT";
462
- };
463
- export type EnvironmentAccountConnectionRequesterAccountType =
464
- (typeof EnvironmentAccountConnectionRequesterAccountType)[keyof typeof EnvironmentAccountConnectionRequesterAccountType];
465
433
  export interface ListEnvironmentAccountConnectionsInput {
466
434
  requestedBy: EnvironmentAccountConnectionRequesterAccountType | undefined;
467
435
  environmentName?: string | undefined;
@@ -581,14 +549,6 @@ export interface ListEnvironmentsOutput {
581
549
  nextToken?: string | undefined;
582
550
  environments: EnvironmentSummary[] | undefined;
583
551
  }
584
- export declare const DeploymentUpdateType: {
585
- readonly CURRENT_VERSION: "CURRENT_VERSION";
586
- readonly MAJOR_VERSION: "MAJOR_VERSION";
587
- readonly MINOR_VERSION: "MINOR_VERSION";
588
- readonly NONE: "NONE";
589
- };
590
- export type DeploymentUpdateType =
591
- (typeof DeploymentUpdateType)[keyof typeof DeploymentUpdateType];
592
552
  export interface UpdateEnvironmentInput {
593
553
  name: string | undefined;
594
554
  description?: string | undefined;
@@ -694,14 +654,6 @@ export interface CreateEnvironmentTemplateVersionInput {
694
654
  source: TemplateVersionSourceInput | undefined;
695
655
  tags?: Tag[] | undefined;
696
656
  }
697
- export declare const TemplateVersionStatus: {
698
- readonly DRAFT: "DRAFT";
699
- readonly PUBLISHED: "PUBLISHED";
700
- readonly REGISTRATION_FAILED: "REGISTRATION_FAILED";
701
- readonly REGISTRATION_IN_PROGRESS: "REGISTRATION_IN_PROGRESS";
702
- };
703
- export type TemplateVersionStatus =
704
- (typeof TemplateVersionStatus)[keyof typeof TemplateVersionStatus];
705
657
  export interface EnvironmentTemplateVersion {
706
658
  templateName: string | undefined;
707
659
  majorVersion: string | undefined;
@@ -766,11 +718,6 @@ export interface UpdateEnvironmentTemplateVersionInput {
766
718
  export interface UpdateEnvironmentTemplateVersionOutput {
767
719
  environmentTemplateVersion: EnvironmentTemplateVersion | undefined;
768
720
  }
769
- export declare const SyncType: {
770
- readonly SERVICE_SYNC: "SERVICE_SYNC";
771
- readonly TEMPLATE_SYNC: "TEMPLATE_SYNC";
772
- };
773
- export type SyncType = (typeof SyncType)[keyof typeof SyncType];
774
721
  export interface GetRepositorySyncStatusInput {
775
722
  repositoryName: string | undefined;
776
723
  repositoryProvider: RepositoryProvider | undefined;
@@ -783,15 +730,6 @@ export interface RepositorySyncEvent {
783
730
  time: Date | undefined;
784
731
  event: string | undefined;
785
732
  }
786
- export declare const RepositorySyncStatus: {
787
- readonly FAILED: "FAILED";
788
- readonly INITIATED: "INITIATED";
789
- readonly IN_PROGRESS: "IN_PROGRESS";
790
- readonly QUEUED: "QUEUED";
791
- readonly SUCCEEDED: "SUCCEEDED";
792
- };
793
- export type RepositorySyncStatus =
794
- (typeof RepositorySyncStatus)[keyof typeof RepositorySyncStatus];
795
733
  export interface RepositorySyncAttempt {
796
734
  startedAt: Date | undefined;
797
735
  status: RepositorySyncStatus | undefined;
@@ -837,14 +775,6 @@ export interface ResourceSyncEvent {
837
775
  time: Date | undefined;
838
776
  event: string | undefined;
839
777
  }
840
- export declare const ResourceSyncStatus: {
841
- readonly FAILED: "FAILED";
842
- readonly INITIATED: "INITIATED";
843
- readonly IN_PROGRESS: "IN_PROGRESS";
844
- readonly SUCCEEDED: "SUCCEEDED";
845
- };
846
- export type ResourceSyncStatus =
847
- (typeof ResourceSyncStatus)[keyof typeof ResourceSyncStatus];
848
778
  export interface ResourceSyncAttempt {
849
779
  initialRevision: Revision | undefined;
850
780
  targetRevision: Revision | undefined;
@@ -858,11 +788,6 @@ export interface GetServiceInstanceSyncStatusOutput {
858
788
  latestSuccessfulSync?: ResourceSyncAttempt | undefined;
859
789
  desiredState?: Revision | undefined;
860
790
  }
861
- export declare const TemplateType: {
862
- readonly ENVIRONMENT: "ENVIRONMENT";
863
- readonly SERVICE: "SERVICE";
864
- };
865
- export type TemplateType = (typeof TemplateType)[keyof typeof TemplateType];
866
791
  export interface GetTemplateSyncStatusInput {
867
792
  templateName: string | undefined;
868
793
  templateType: TemplateType | undefined;
@@ -898,13 +823,6 @@ export interface ListTagsForResourceOutput {
898
823
  tags: Tag[] | undefined;
899
824
  nextToken?: string | undefined;
900
825
  }
901
- export declare const ResourceDeploymentStatus: {
902
- readonly FAILED: "FAILED";
903
- readonly IN_PROGRESS: "IN_PROGRESS";
904
- readonly SUCCEEDED: "SUCCEEDED";
905
- };
906
- export type ResourceDeploymentStatus =
907
- (typeof ResourceDeploymentStatus)[keyof typeof ResourceDeploymentStatus];
908
826
  export interface NotifyResourceDeploymentStatusChangeInput {
909
827
  resourceArn: string | undefined;
910
828
  status?: ResourceDeploymentStatus | undefined;
@@ -996,40 +914,10 @@ export interface GetServiceInstanceInput {
996
914
  export interface GetServiceInstanceOutput {
997
915
  serviceInstance: ServiceInstance | undefined;
998
916
  }
999
- export declare const ListServiceInstancesFilterBy: {
1000
- readonly CREATED_AT_AFTER: "createdAtAfter";
1001
- readonly CREATED_AT_BEFORE: "createdAtBefore";
1002
- readonly DEPLOYED_TEMPLATE_VERSION_STATUS: "deployedTemplateVersionStatus";
1003
- readonly DEPLOYMENT_STATUS: "deploymentStatus";
1004
- readonly ENVIRONMENT_NAME: "environmentName";
1005
- readonly LAST_DEPLOYMENT_ATTEMPTED_AT_AFTER: "lastDeploymentAttemptedAtAfter";
1006
- readonly LAST_DEPLOYMENT_ATTEMPTED_AT_BEFORE: "lastDeploymentAttemptedAtBefore";
1007
- readonly NAME: "name";
1008
- readonly SERVICE_NAME: "serviceName";
1009
- readonly TEMPLATE_NAME: "templateName";
1010
- };
1011
- export type ListServiceInstancesFilterBy =
1012
- (typeof ListServiceInstancesFilterBy)[keyof typeof ListServiceInstancesFilterBy];
1013
917
  export interface ListServiceInstancesFilter {
1014
918
  key?: ListServiceInstancesFilterBy | undefined;
1015
919
  value?: string | undefined;
1016
920
  }
1017
- export declare const ListServiceInstancesSortBy: {
1018
- readonly CREATED_AT: "createdAt";
1019
- readonly DEPLOYMENT_STATUS: "deploymentStatus";
1020
- readonly ENVIRONMENT_NAME: "environmentName";
1021
- readonly LAST_DEPLOYMENT_ATTEMPTED_AT: "lastDeploymentAttemptedAt";
1022
- readonly NAME: "name";
1023
- readonly SERVICE_NAME: "serviceName";
1024
- readonly TEMPLATE_NAME: "templateName";
1025
- };
1026
- export type ListServiceInstancesSortBy =
1027
- (typeof ListServiceInstancesSortBy)[keyof typeof ListServiceInstancesSortBy];
1028
- export declare const SortOrder: {
1029
- readonly ASCENDING: "ASCENDING";
1030
- readonly DESCENDING: "DESCENDING";
1031
- };
1032
- export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
1033
921
  export interface ListServiceInstancesInput {
1034
922
  serviceName?: string | undefined;
1035
923
  nextToken?: string | undefined;
@@ -1109,23 +997,6 @@ export interface CreateServiceInput {
1109
997
  branchName?: string | undefined;
1110
998
  tags?: Tag[] | undefined;
1111
999
  }
1112
- export declare const ServiceStatus: {
1113
- readonly ACTIVE: "ACTIVE";
1114
- readonly CREATE_FAILED: "CREATE_FAILED";
1115
- readonly CREATE_FAILED_CLEANUP_COMPLETE: "CREATE_FAILED_CLEANUP_COMPLETE";
1116
- readonly CREATE_FAILED_CLEANUP_FAILED: "CREATE_FAILED_CLEANUP_FAILED";
1117
- readonly CREATE_FAILED_CLEANUP_IN_PROGRESS: "CREATE_FAILED_CLEANUP_IN_PROGRESS";
1118
- readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
1119
- readonly DELETE_FAILED: "DELETE_FAILED";
1120
- readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
1121
- readonly UPDATE_COMPLETE_CLEANUP_FAILED: "UPDATE_COMPLETE_CLEANUP_FAILED";
1122
- readonly UPDATE_FAILED: "UPDATE_FAILED";
1123
- readonly UPDATE_FAILED_CLEANUP_COMPLETE: "UPDATE_FAILED_CLEANUP_COMPLETE";
1124
- readonly UPDATE_FAILED_CLEANUP_FAILED: "UPDATE_FAILED_CLEANUP_FAILED";
1125
- readonly UPDATE_FAILED_CLEANUP_IN_PROGRESS: "UPDATE_FAILED_CLEANUP_IN_PROGRESS";
1126
- readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
1127
- };
1128
- export type ServiceStatus = (typeof ServiceStatus)[keyof typeof ServiceStatus];
1129
1000
  export interface Service {
1130
1001
  name: string | undefined;
1131
1002
  description?: string | undefined;
@@ -1190,15 +1061,6 @@ export interface SyncBlockerContext {
1190
1061
  key: string | undefined;
1191
1062
  value: string | undefined;
1192
1063
  }
1193
- export declare const BlockerStatus: {
1194
- readonly ACTIVE: "ACTIVE";
1195
- readonly RESOLVED: "RESOLVED";
1196
- };
1197
- export type BlockerStatus = (typeof BlockerStatus)[keyof typeof BlockerStatus];
1198
- export declare const BlockerType: {
1199
- readonly AUTOMATED: "AUTOMATED";
1200
- };
1201
- export type BlockerType = (typeof BlockerType)[keyof typeof BlockerType];
1202
1064
  export interface SyncBlocker {
1203
1065
  id: string | undefined;
1204
1066
  type: BlockerType | undefined;
@@ -1329,11 +1191,6 @@ export interface CompatibleEnvironmentTemplateInput {
1329
1191
  templateName: string | undefined;
1330
1192
  majorVersion: string | undefined;
1331
1193
  }
1332
- export declare const ServiceTemplateSupportedComponentSourceType: {
1333
- readonly DIRECTLY_DEFINED: "DIRECTLY_DEFINED";
1334
- };
1335
- export type ServiceTemplateSupportedComponentSourceType =
1336
- (typeof ServiceTemplateSupportedComponentSourceType)[keyof typeof ServiceTemplateSupportedComponentSourceType];
1337
1194
  export interface CreateServiceTemplateVersionInput {
1338
1195
  clientToken?: string | undefined;
1339
1196
  templateName: string | undefined;
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.935.0",
4
+ "version": "3.939.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-proton",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.935.0",
24
- "@aws-sdk/credential-provider-node": "3.935.0",
25
- "@aws-sdk/middleware-host-header": "3.930.0",
26
- "@aws-sdk/middleware-logger": "3.930.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.935.0",
29
- "@aws-sdk/region-config-resolver": "3.930.0",
30
- "@aws-sdk/types": "3.930.0",
31
- "@aws-sdk/util-endpoints": "3.930.0",
32
- "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.935.0",
23
+ "@aws-sdk/core": "3.936.0",
24
+ "@aws-sdk/credential-provider-node": "3.939.0",
25
+ "@aws-sdk/middleware-host-header": "3.936.0",
26
+ "@aws-sdk/middleware-logger": "3.936.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.936.0",
28
+ "@aws-sdk/middleware-user-agent": "3.936.0",
29
+ "@aws-sdk/region-config-resolver": "3.936.0",
30
+ "@aws-sdk/types": "3.936.0",
31
+ "@aws-sdk/util-endpoints": "3.936.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.936.0",
33
+ "@aws-sdk/util-user-agent-node": "3.936.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
35
  "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",