@aws-sdk/client-codeconnections 3.687.0 → 3.692.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +94 -94
- package/dist-types/ts3.4/models/models_0.d.ts +94 -94
- package/package.json +35 -35
|
@@ -7,7 +7,7 @@ import { CodeConnectionsServiceException as __BaseException } from "./CodeConnec
|
|
|
7
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
9
9
|
readonly $fault: "client";
|
|
10
|
-
Message?: string;
|
|
10
|
+
Message?: string | undefined;
|
|
11
11
|
/**
|
|
12
12
|
* @internal
|
|
13
13
|
*/
|
|
@@ -77,7 +77,7 @@ export interface CreateConnectionInput {
|
|
|
77
77
|
* configured.</p>
|
|
78
78
|
* @public
|
|
79
79
|
*/
|
|
80
|
-
ProviderType?: ProviderType;
|
|
80
|
+
ProviderType?: ProviderType | undefined;
|
|
81
81
|
/**
|
|
82
82
|
* <p>The name of the connection to be created.</p>
|
|
83
83
|
* @public
|
|
@@ -87,12 +87,12 @@ export interface CreateConnectionInput {
|
|
|
87
87
|
* <p>The key-value pair to use when tagging the resource.</p>
|
|
88
88
|
* @public
|
|
89
89
|
*/
|
|
90
|
-
Tags?: Tag[];
|
|
90
|
+
Tags?: Tag[] | undefined;
|
|
91
91
|
/**
|
|
92
92
|
* <p>The Amazon Resource Name (ARN) of the host associated with the connection to be created.</p>
|
|
93
93
|
* @public
|
|
94
94
|
*/
|
|
95
|
-
HostArn?: string;
|
|
95
|
+
HostArn?: string | undefined;
|
|
96
96
|
}
|
|
97
97
|
/**
|
|
98
98
|
* @public
|
|
@@ -111,7 +111,7 @@ export interface CreateConnectionOutput {
|
|
|
111
111
|
* <p>Specifies the tags applied to the resource.</p>
|
|
112
112
|
* @public
|
|
113
113
|
*/
|
|
114
|
-
Tags?: Tag[];
|
|
114
|
+
Tags?: Tag[] | undefined;
|
|
115
115
|
}
|
|
116
116
|
/**
|
|
117
117
|
* <p>Exceeded the maximum limit for connections.</p>
|
|
@@ -120,7 +120,7 @@ export interface CreateConnectionOutput {
|
|
|
120
120
|
export declare class LimitExceededException extends __BaseException {
|
|
121
121
|
readonly name: "LimitExceededException";
|
|
122
122
|
readonly $fault: "client";
|
|
123
|
-
Message?: string;
|
|
123
|
+
Message?: string | undefined;
|
|
124
124
|
/**
|
|
125
125
|
* @internal
|
|
126
126
|
*/
|
|
@@ -133,7 +133,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
133
133
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
134
134
|
readonly name: "ResourceNotFoundException";
|
|
135
135
|
readonly $fault: "client";
|
|
136
|
-
Message?: string;
|
|
136
|
+
Message?: string | undefined;
|
|
137
137
|
/**
|
|
138
138
|
* @internal
|
|
139
139
|
*/
|
|
@@ -146,7 +146,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
146
146
|
export declare class ResourceUnavailableException extends __BaseException {
|
|
147
147
|
readonly name: "ResourceUnavailableException";
|
|
148
148
|
readonly $fault: "client";
|
|
149
|
-
Message?: string;
|
|
149
|
+
Message?: string | undefined;
|
|
150
150
|
/**
|
|
151
151
|
* @internal
|
|
152
152
|
*/
|
|
@@ -179,7 +179,7 @@ export interface VpcConfiguration {
|
|
|
179
179
|
* <p>The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.</p>
|
|
180
180
|
* @public
|
|
181
181
|
*/
|
|
182
|
-
TlsCertificate?: string;
|
|
182
|
+
TlsCertificate?: string | undefined;
|
|
183
183
|
}
|
|
184
184
|
/**
|
|
185
185
|
* @public
|
|
@@ -208,12 +208,12 @@ export interface CreateHostInput {
|
|
|
208
208
|
* infrastructure to be represented by the host must already be connected to the VPC.</p>
|
|
209
209
|
* @public
|
|
210
210
|
*/
|
|
211
|
-
VpcConfiguration?: VpcConfiguration;
|
|
211
|
+
VpcConfiguration?: VpcConfiguration | undefined;
|
|
212
212
|
/**
|
|
213
213
|
* <p>Tags for the host to be created.</p>
|
|
214
214
|
* @public
|
|
215
215
|
*/
|
|
216
|
-
Tags?: Tag[];
|
|
216
|
+
Tags?: Tag[] | undefined;
|
|
217
217
|
}
|
|
218
218
|
/**
|
|
219
219
|
* @public
|
|
@@ -223,12 +223,12 @@ export interface CreateHostOutput {
|
|
|
223
223
|
* <p>The Amazon Resource Name (ARN) of the host to be created.</p>
|
|
224
224
|
* @public
|
|
225
225
|
*/
|
|
226
|
-
HostArn?: string;
|
|
226
|
+
HostArn?: string | undefined;
|
|
227
227
|
/**
|
|
228
228
|
* <p>Tags for the created host.</p>
|
|
229
229
|
* @public
|
|
230
230
|
*/
|
|
231
|
-
Tags?: Tag[];
|
|
231
|
+
Tags?: Tag[] | undefined;
|
|
232
232
|
}
|
|
233
233
|
/**
|
|
234
234
|
* <p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time. </p>
|
|
@@ -237,7 +237,7 @@ export interface CreateHostOutput {
|
|
|
237
237
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
238
238
|
readonly name: "ConcurrentModificationException";
|
|
239
239
|
readonly $fault: "client";
|
|
240
|
-
Message?: string;
|
|
240
|
+
Message?: string | undefined;
|
|
241
241
|
/**
|
|
242
242
|
* @internal
|
|
243
243
|
*/
|
|
@@ -267,12 +267,12 @@ export interface CreateRepositoryLinkInput {
|
|
|
267
267
|
* <p>The Amazon Resource Name (ARN) encryption key for the repository to be associated with the repository link.</p>
|
|
268
268
|
* @public
|
|
269
269
|
*/
|
|
270
|
-
EncryptionKeyArn?: string;
|
|
270
|
+
EncryptionKeyArn?: string | undefined;
|
|
271
271
|
/**
|
|
272
272
|
* <p>The tags for the repository to be associated with the repository link.</p>
|
|
273
273
|
* @public
|
|
274
274
|
*/
|
|
275
|
-
Tags?: Tag[];
|
|
275
|
+
Tags?: Tag[] | undefined;
|
|
276
276
|
}
|
|
277
277
|
/**
|
|
278
278
|
* <p>Information about the repository link resource, such as the repository link ARN, the associated connection ARN, encryption key ARN, and owner ID.</p>
|
|
@@ -288,7 +288,7 @@ export interface RepositoryLinkInfo {
|
|
|
288
288
|
* <p>The Amazon Resource Name (ARN) of the encryption key for the repository associated with the repository link.</p>
|
|
289
289
|
* @public
|
|
290
290
|
*/
|
|
291
|
-
EncryptionKeyArn?: string;
|
|
291
|
+
EncryptionKeyArn?: string | undefined;
|
|
292
292
|
/**
|
|
293
293
|
* <p>The owner ID for the repository associated with the repository link, such as the owner
|
|
294
294
|
* ID in GitHub.</p>
|
|
@@ -333,7 +333,7 @@ export interface CreateRepositoryLinkOutput {
|
|
|
333
333
|
export declare class InternalServerException extends __BaseException {
|
|
334
334
|
readonly name: "InternalServerException";
|
|
335
335
|
readonly $fault: "server";
|
|
336
|
-
Message?: string;
|
|
336
|
+
Message?: string | undefined;
|
|
337
337
|
/**
|
|
338
338
|
* @internal
|
|
339
339
|
*/
|
|
@@ -346,7 +346,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
346
346
|
export declare class InvalidInputException extends __BaseException {
|
|
347
347
|
readonly name: "InvalidInputException";
|
|
348
348
|
readonly $fault: "client";
|
|
349
|
-
Message?: string;
|
|
349
|
+
Message?: string | undefined;
|
|
350
350
|
/**
|
|
351
351
|
* @internal
|
|
352
352
|
*/
|
|
@@ -359,7 +359,7 @@ export declare class InvalidInputException extends __BaseException {
|
|
|
359
359
|
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
360
360
|
readonly name: "ResourceAlreadyExistsException";
|
|
361
361
|
readonly $fault: "client";
|
|
362
|
-
Message?: string;
|
|
362
|
+
Message?: string | undefined;
|
|
363
363
|
/**
|
|
364
364
|
* @internal
|
|
365
365
|
*/
|
|
@@ -372,7 +372,7 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
372
372
|
export declare class ThrottlingException extends __BaseException {
|
|
373
373
|
readonly name: "ThrottlingException";
|
|
374
374
|
readonly $fault: "client";
|
|
375
|
-
Message?: string;
|
|
375
|
+
Message?: string | undefined;
|
|
376
376
|
/**
|
|
377
377
|
* @internal
|
|
378
378
|
*/
|
|
@@ -466,17 +466,17 @@ export interface CreateSyncConfigurationInput {
|
|
|
466
466
|
* <p>Whether to enable or disable publishing of deployment status to source providers.</p>
|
|
467
467
|
* @public
|
|
468
468
|
*/
|
|
469
|
-
PublishDeploymentStatus?: PublishDeploymentStatus;
|
|
469
|
+
PublishDeploymentStatus?: PublishDeploymentStatus | undefined;
|
|
470
470
|
/**
|
|
471
471
|
* <p>When to trigger Git sync to begin the stack update.</p>
|
|
472
472
|
* @public
|
|
473
473
|
*/
|
|
474
|
-
TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
|
|
474
|
+
TriggerResourceUpdateOn?: TriggerResourceUpdateOn | undefined;
|
|
475
475
|
/**
|
|
476
476
|
* <p>A toggle that specifies whether to enable or disable pull request comments for the sync configuration to be created.</p>
|
|
477
477
|
* @public
|
|
478
478
|
*/
|
|
479
|
-
PullRequestComment?: PullRequestComment;
|
|
479
|
+
PullRequestComment?: PullRequestComment | undefined;
|
|
480
480
|
}
|
|
481
481
|
/**
|
|
482
482
|
* <p>Information, such as repository, branch, provider, and resource names for a specific sync configuration.</p>
|
|
@@ -492,7 +492,7 @@ export interface SyncConfiguration {
|
|
|
492
492
|
* <p>The file path to the configuration file associated with a specific sync configuration. The path should point to an actual file in the sync configurations linked repository.</p>
|
|
493
493
|
* @public
|
|
494
494
|
*/
|
|
495
|
-
ConfigFile?: string;
|
|
495
|
+
ConfigFile?: string | undefined;
|
|
496
496
|
/**
|
|
497
497
|
* <p>The owner ID for the repository associated with a specific sync configuration, such as
|
|
498
498
|
* the owner ID in GitHub.</p>
|
|
@@ -534,17 +534,17 @@ export interface SyncConfiguration {
|
|
|
534
534
|
* <p>Whether to enable or disable publishing of deployment status to source providers.</p>
|
|
535
535
|
* @public
|
|
536
536
|
*/
|
|
537
|
-
PublishDeploymentStatus?: PublishDeploymentStatus;
|
|
537
|
+
PublishDeploymentStatus?: PublishDeploymentStatus | undefined;
|
|
538
538
|
/**
|
|
539
539
|
* <p>When to trigger Git sync to begin the stack update.</p>
|
|
540
540
|
* @public
|
|
541
541
|
*/
|
|
542
|
-
TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
|
|
542
|
+
TriggerResourceUpdateOn?: TriggerResourceUpdateOn | undefined;
|
|
543
543
|
/**
|
|
544
544
|
* <p>A toggle that specifies whether to enable or disable pull request comments for the sync configuration to be created.</p>
|
|
545
545
|
* @public
|
|
546
546
|
*/
|
|
547
|
-
PullRequestComment?: PullRequestComment;
|
|
547
|
+
PullRequestComment?: PullRequestComment | undefined;
|
|
548
548
|
}
|
|
549
549
|
/**
|
|
550
550
|
* @public
|
|
@@ -612,7 +612,7 @@ export interface DeleteRepositoryLinkOutput {
|
|
|
612
612
|
export declare class SyncConfigurationStillExistsException extends __BaseException {
|
|
613
613
|
readonly name: "SyncConfigurationStillExistsException";
|
|
614
614
|
readonly $fault: "client";
|
|
615
|
-
Message?: string;
|
|
615
|
+
Message?: string | undefined;
|
|
616
616
|
/**
|
|
617
617
|
* @internal
|
|
618
618
|
*/
|
|
@@ -625,7 +625,7 @@ export declare class SyncConfigurationStillExistsException extends __BaseExcepti
|
|
|
625
625
|
export declare class UnsupportedProviderTypeException extends __BaseException {
|
|
626
626
|
readonly name: "UnsupportedProviderTypeException";
|
|
627
627
|
readonly $fault: "client";
|
|
628
|
-
Message?: string;
|
|
628
|
+
Message?: string | undefined;
|
|
629
629
|
/**
|
|
630
630
|
* @internal
|
|
631
631
|
*/
|
|
@@ -686,7 +686,7 @@ export interface Connection {
|
|
|
686
686
|
* <p>The name of the connection. Connection names must be unique in an Amazon Web Services account.</p>
|
|
687
687
|
* @public
|
|
688
688
|
*/
|
|
689
|
-
ConnectionName?: string;
|
|
689
|
+
ConnectionName?: string | undefined;
|
|
690
690
|
/**
|
|
691
691
|
* <p>The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection
|
|
692
692
|
* reference when the connection is shared between Amazon Web Servicesservices.</p>
|
|
@@ -695,29 +695,29 @@ export interface Connection {
|
|
|
695
695
|
* </note>
|
|
696
696
|
* @public
|
|
697
697
|
*/
|
|
698
|
-
ConnectionArn?: string;
|
|
698
|
+
ConnectionArn?: string | undefined;
|
|
699
699
|
/**
|
|
700
700
|
* <p>The name of the external provider where your third-party code repository is
|
|
701
701
|
* configured.</p>
|
|
702
702
|
* @public
|
|
703
703
|
*/
|
|
704
|
-
ProviderType?: ProviderType;
|
|
704
|
+
ProviderType?: ProviderType | undefined;
|
|
705
705
|
/**
|
|
706
706
|
* <p>The identifier of the external provider where your third-party code repository is configured.
|
|
707
707
|
* For Bitbucket, this is the account ID of the owner of the Bitbucket repository.</p>
|
|
708
708
|
* @public
|
|
709
709
|
*/
|
|
710
|
-
OwnerAccountId?: string;
|
|
710
|
+
OwnerAccountId?: string | undefined;
|
|
711
711
|
/**
|
|
712
712
|
* <p>The current status of the connection. </p>
|
|
713
713
|
* @public
|
|
714
714
|
*/
|
|
715
|
-
ConnectionStatus?: ConnectionStatus;
|
|
715
|
+
ConnectionStatus?: ConnectionStatus | undefined;
|
|
716
716
|
/**
|
|
717
717
|
* <p>The Amazon Resource Name (ARN) of the host associated with the connection.</p>
|
|
718
718
|
* @public
|
|
719
719
|
*/
|
|
720
|
-
HostArn?: string;
|
|
720
|
+
HostArn?: string | undefined;
|
|
721
721
|
}
|
|
722
722
|
/**
|
|
723
723
|
* @public
|
|
@@ -727,7 +727,7 @@ export interface GetConnectionOutput {
|
|
|
727
727
|
* <p>The connection details, such as status, owner, and provider type.</p>
|
|
728
728
|
* @public
|
|
729
729
|
*/
|
|
730
|
-
Connection?: Connection;
|
|
730
|
+
Connection?: Connection | undefined;
|
|
731
731
|
}
|
|
732
732
|
/**
|
|
733
733
|
* @public
|
|
@@ -747,27 +747,27 @@ export interface GetHostOutput {
|
|
|
747
747
|
* <p>The name of the requested host.</p>
|
|
748
748
|
* @public
|
|
749
749
|
*/
|
|
750
|
-
Name?: string;
|
|
750
|
+
Name?: string | undefined;
|
|
751
751
|
/**
|
|
752
752
|
* <p>The status of the requested host.</p>
|
|
753
753
|
* @public
|
|
754
754
|
*/
|
|
755
|
-
Status?: string;
|
|
755
|
+
Status?: string | undefined;
|
|
756
756
|
/**
|
|
757
757
|
* <p>The provider type of the requested host, such as GitHub Enterprise Server.</p>
|
|
758
758
|
* @public
|
|
759
759
|
*/
|
|
760
|
-
ProviderType?: ProviderType;
|
|
760
|
+
ProviderType?: ProviderType | undefined;
|
|
761
761
|
/**
|
|
762
762
|
* <p>The endpoint of the infrastructure represented by the requested host.</p>
|
|
763
763
|
* @public
|
|
764
764
|
*/
|
|
765
|
-
ProviderEndpoint?: string;
|
|
765
|
+
ProviderEndpoint?: string | undefined;
|
|
766
766
|
/**
|
|
767
767
|
* <p>The VPC configuration of the requested host.</p>
|
|
768
768
|
* @public
|
|
769
769
|
*/
|
|
770
|
-
VpcConfiguration?: VpcConfiguration;
|
|
770
|
+
VpcConfiguration?: VpcConfiguration | undefined;
|
|
771
771
|
}
|
|
772
772
|
/**
|
|
773
773
|
* @public
|
|
@@ -823,7 +823,7 @@ export interface RepositorySyncEvent {
|
|
|
823
823
|
* <p>The ID for a repository sync event.</p>
|
|
824
824
|
* @public
|
|
825
825
|
*/
|
|
826
|
-
ExternalId?: string;
|
|
826
|
+
ExternalId?: string | undefined;
|
|
827
827
|
/**
|
|
828
828
|
* <p>The time that a repository sync event occurred.</p>
|
|
829
829
|
* @public
|
|
@@ -965,7 +965,7 @@ export interface ResourceSyncEvent {
|
|
|
965
965
|
* <p>The ID for a resource sync event.</p>
|
|
966
966
|
* @public
|
|
967
967
|
*/
|
|
968
|
-
ExternalId?: string;
|
|
968
|
+
ExternalId?: string | undefined;
|
|
969
969
|
/**
|
|
970
970
|
* <p>The time that a resource sync event occurred.</p>
|
|
971
971
|
* @public
|
|
@@ -1052,12 +1052,12 @@ export interface GetResourceSyncStatusOutput {
|
|
|
1052
1052
|
* repository.</p>
|
|
1053
1053
|
* @public
|
|
1054
1054
|
*/
|
|
1055
|
-
DesiredState?: Revision;
|
|
1055
|
+
DesiredState?: Revision | undefined;
|
|
1056
1056
|
/**
|
|
1057
1057
|
* <p>The latest successful sync for the sync status with the Git repository.</p>
|
|
1058
1058
|
* @public
|
|
1059
1059
|
*/
|
|
1060
|
-
LatestSuccessfulSync?: ResourceSyncAttempt;
|
|
1060
|
+
LatestSuccessfulSync?: ResourceSyncAttempt | undefined;
|
|
1061
1061
|
/**
|
|
1062
1062
|
* <p>The latest sync for the sync status with the Git repository, whether successful or not.</p>
|
|
1063
1063
|
* @public
|
|
@@ -1129,17 +1129,17 @@ export interface SyncBlocker {
|
|
|
1129
1129
|
* <p>The contexts for a specific sync blocker.</p>
|
|
1130
1130
|
* @public
|
|
1131
1131
|
*/
|
|
1132
|
-
Contexts?: SyncBlockerContext[];
|
|
1132
|
+
Contexts?: SyncBlockerContext[] | undefined;
|
|
1133
1133
|
/**
|
|
1134
1134
|
* <p>The resolved reason for a specific sync blocker.</p>
|
|
1135
1135
|
* @public
|
|
1136
1136
|
*/
|
|
1137
|
-
ResolvedReason?: string;
|
|
1137
|
+
ResolvedReason?: string | undefined;
|
|
1138
1138
|
/**
|
|
1139
1139
|
* <p>The time that a specific sync blocker was resolved.</p>
|
|
1140
1140
|
* @public
|
|
1141
1141
|
*/
|
|
1142
|
-
ResolvedAt?: Date;
|
|
1142
|
+
ResolvedAt?: Date | undefined;
|
|
1143
1143
|
}
|
|
1144
1144
|
/**
|
|
1145
1145
|
* <p>A summary for sync blockers.</p>
|
|
@@ -1155,12 +1155,12 @@ export interface SyncBlockerSummary {
|
|
|
1155
1155
|
* <p>The parent resource name for a sync blocker summary.</p>
|
|
1156
1156
|
* @public
|
|
1157
1157
|
*/
|
|
1158
|
-
ParentResourceName?: string;
|
|
1158
|
+
ParentResourceName?: string | undefined;
|
|
1159
1159
|
/**
|
|
1160
1160
|
* <p>The latest events for a sync blocker summary.</p>
|
|
1161
1161
|
* @public
|
|
1162
1162
|
*/
|
|
1163
|
-
LatestBlockers?: SyncBlocker[];
|
|
1163
|
+
LatestBlockers?: SyncBlocker[] | undefined;
|
|
1164
1164
|
}
|
|
1165
1165
|
/**
|
|
1166
1166
|
* @public
|
|
@@ -1207,24 +1207,24 @@ export interface ListConnectionsInput {
|
|
|
1207
1207
|
* Bitbucket.</p>
|
|
1208
1208
|
* @public
|
|
1209
1209
|
*/
|
|
1210
|
-
ProviderTypeFilter?: ProviderType;
|
|
1210
|
+
ProviderTypeFilter?: ProviderType | undefined;
|
|
1211
1211
|
/**
|
|
1212
1212
|
* <p>Filters the list of connections to those associated with a specified host.</p>
|
|
1213
1213
|
* @public
|
|
1214
1214
|
*/
|
|
1215
|
-
HostArnFilter?: string;
|
|
1215
|
+
HostArnFilter?: string | undefined;
|
|
1216
1216
|
/**
|
|
1217
1217
|
* <p>The maximum number of results to return in a single call. To retrieve the remaining
|
|
1218
1218
|
* results, make another call with the returned <code>nextToken</code> value.</p>
|
|
1219
1219
|
* @public
|
|
1220
1220
|
*/
|
|
1221
|
-
MaxResults?: number;
|
|
1221
|
+
MaxResults?: number | undefined;
|
|
1222
1222
|
/**
|
|
1223
1223
|
* <p>The token that was returned from the previous <code>ListConnections</code> call, which
|
|
1224
1224
|
* can be used to return the next set of connections in the list.</p>
|
|
1225
1225
|
* @public
|
|
1226
1226
|
*/
|
|
1227
|
-
NextToken?: string;
|
|
1227
|
+
NextToken?: string | undefined;
|
|
1228
1228
|
}
|
|
1229
1229
|
/**
|
|
1230
1230
|
* @public
|
|
@@ -1235,14 +1235,14 @@ export interface ListConnectionsOutput {
|
|
|
1235
1235
|
* provider type.</p>
|
|
1236
1236
|
* @public
|
|
1237
1237
|
*/
|
|
1238
|
-
Connections?: Connection[];
|
|
1238
|
+
Connections?: Connection[] | undefined;
|
|
1239
1239
|
/**
|
|
1240
1240
|
* <p>A token that can be used in the next <code>ListConnections</code> call. To view all
|
|
1241
1241
|
* items in the list, continue to call this operation with each subsequent token until no more
|
|
1242
1242
|
* <code>nextToken</code> values are returned.</p>
|
|
1243
1243
|
* @public
|
|
1244
1244
|
*/
|
|
1245
|
-
NextToken?: string;
|
|
1245
|
+
NextToken?: string | undefined;
|
|
1246
1246
|
}
|
|
1247
1247
|
/**
|
|
1248
1248
|
* @public
|
|
@@ -1253,13 +1253,13 @@ export interface ListHostsInput {
|
|
|
1253
1253
|
* results, make another call with the returned <code>nextToken</code> value.</p>
|
|
1254
1254
|
* @public
|
|
1255
1255
|
*/
|
|
1256
|
-
MaxResults?: number;
|
|
1256
|
+
MaxResults?: number | undefined;
|
|
1257
1257
|
/**
|
|
1258
1258
|
* <p>The token that was returned from the previous <code>ListHosts</code> call, which can be
|
|
1259
1259
|
* used to return the next set of hosts in the list.</p>
|
|
1260
1260
|
* @public
|
|
1261
1261
|
*/
|
|
1262
|
-
NextToken?: string;
|
|
1262
|
+
NextToken?: string | undefined;
|
|
1263
1263
|
}
|
|
1264
1264
|
/**
|
|
1265
1265
|
* <p>A resource that represents the infrastructure where a third-party provider is installed.
|
|
@@ -1276,39 +1276,39 @@ export interface Host {
|
|
|
1276
1276
|
* <p>The name of the host.</p>
|
|
1277
1277
|
* @public
|
|
1278
1278
|
*/
|
|
1279
|
-
Name?: string;
|
|
1279
|
+
Name?: string | undefined;
|
|
1280
1280
|
/**
|
|
1281
1281
|
* <p>The Amazon Resource Name (ARN) of the host.</p>
|
|
1282
1282
|
* @public
|
|
1283
1283
|
*/
|
|
1284
|
-
HostArn?: string;
|
|
1284
|
+
HostArn?: string | undefined;
|
|
1285
1285
|
/**
|
|
1286
1286
|
* <p>The name of the installed provider to be associated with your connection. The host
|
|
1287
1287
|
* resource represents the infrastructure where your provider type is installed. The valid
|
|
1288
1288
|
* provider type is GitHub Enterprise Server.</p>
|
|
1289
1289
|
* @public
|
|
1290
1290
|
*/
|
|
1291
|
-
ProviderType?: ProviderType;
|
|
1291
|
+
ProviderType?: ProviderType | undefined;
|
|
1292
1292
|
/**
|
|
1293
1293
|
* <p>The endpoint of the infrastructure where your provider type is installed.</p>
|
|
1294
1294
|
* @public
|
|
1295
1295
|
*/
|
|
1296
|
-
ProviderEndpoint?: string;
|
|
1296
|
+
ProviderEndpoint?: string | undefined;
|
|
1297
1297
|
/**
|
|
1298
1298
|
* <p>The VPC configuration provisioned for the host.</p>
|
|
1299
1299
|
* @public
|
|
1300
1300
|
*/
|
|
1301
|
-
VpcConfiguration?: VpcConfiguration;
|
|
1301
|
+
VpcConfiguration?: VpcConfiguration | undefined;
|
|
1302
1302
|
/**
|
|
1303
1303
|
* <p>The status of the host, such as PENDING, AVAILABLE, VPC_CONFIG_DELETING, VPC_CONFIG_INITIALIZING, and VPC_CONFIG_FAILED_INITIALIZATION.</p>
|
|
1304
1304
|
* @public
|
|
1305
1305
|
*/
|
|
1306
|
-
Status?: string;
|
|
1306
|
+
Status?: string | undefined;
|
|
1307
1307
|
/**
|
|
1308
1308
|
* <p>The status description for the host.</p>
|
|
1309
1309
|
* @public
|
|
1310
1310
|
*/
|
|
1311
|
-
StatusMessage?: string;
|
|
1311
|
+
StatusMessage?: string | undefined;
|
|
1312
1312
|
}
|
|
1313
1313
|
/**
|
|
1314
1314
|
* @public
|
|
@@ -1319,14 +1319,14 @@ export interface ListHostsOutput {
|
|
|
1319
1319
|
* type.</p>
|
|
1320
1320
|
* @public
|
|
1321
1321
|
*/
|
|
1322
|
-
Hosts?: Host[];
|
|
1322
|
+
Hosts?: Host[] | undefined;
|
|
1323
1323
|
/**
|
|
1324
1324
|
* <p>A token that can be used in the next <code>ListHosts</code> call. To view all items in the
|
|
1325
1325
|
* list, continue to call this operation with each subsequent token until no more
|
|
1326
1326
|
* <code>nextToken</code> values are returned.</p>
|
|
1327
1327
|
* @public
|
|
1328
1328
|
*/
|
|
1329
|
-
NextToken?: string;
|
|
1329
|
+
NextToken?: string | undefined;
|
|
1330
1330
|
}
|
|
1331
1331
|
/**
|
|
1332
1332
|
* @public
|
|
@@ -1337,13 +1337,13 @@ export interface ListRepositoryLinksInput {
|
|
|
1337
1337
|
* A non-zero, non-negative integer used to limit the number of returned results.</p>
|
|
1338
1338
|
* @public
|
|
1339
1339
|
*/
|
|
1340
|
-
MaxResults?: number;
|
|
1340
|
+
MaxResults?: number | undefined;
|
|
1341
1341
|
/**
|
|
1342
1342
|
* <p>
|
|
1343
1343
|
* An enumeration token that, when provided in a request, returns the next batch of the results.</p>
|
|
1344
1344
|
* @public
|
|
1345
1345
|
*/
|
|
1346
|
-
NextToken?: string;
|
|
1346
|
+
NextToken?: string | undefined;
|
|
1347
1347
|
}
|
|
1348
1348
|
/**
|
|
1349
1349
|
* @public
|
|
@@ -1358,7 +1358,7 @@ export interface ListRepositoryLinksOutput {
|
|
|
1358
1358
|
* <p>An enumeration token that allows the operation to batch the results of the operation. </p>
|
|
1359
1359
|
* @public
|
|
1360
1360
|
*/
|
|
1361
|
-
NextToken?: string;
|
|
1361
|
+
NextToken?: string | undefined;
|
|
1362
1362
|
}
|
|
1363
1363
|
/**
|
|
1364
1364
|
* @public
|
|
@@ -1418,7 +1418,7 @@ export interface ListRepositorySyncDefinitionsOutput {
|
|
|
1418
1418
|
* results.</p>
|
|
1419
1419
|
* @public
|
|
1420
1420
|
*/
|
|
1421
|
-
NextToken?: string;
|
|
1421
|
+
NextToken?: string | undefined;
|
|
1422
1422
|
}
|
|
1423
1423
|
/**
|
|
1424
1424
|
* @public
|
|
@@ -1428,12 +1428,12 @@ export interface ListSyncConfigurationsInput {
|
|
|
1428
1428
|
* <p>A non-zero, non-negative integer used to limit the number of returned results.</p>
|
|
1429
1429
|
* @public
|
|
1430
1430
|
*/
|
|
1431
|
-
MaxResults?: number;
|
|
1431
|
+
MaxResults?: number | undefined;
|
|
1432
1432
|
/**
|
|
1433
1433
|
* <p>An enumeration token that allows the operation to batch the results of the operation.</p>
|
|
1434
1434
|
* @public
|
|
1435
1435
|
*/
|
|
1436
|
-
NextToken?: string;
|
|
1436
|
+
NextToken?: string | undefined;
|
|
1437
1437
|
/**
|
|
1438
1438
|
* <p>The ID of the repository link for the requested list of sync configurations.</p>
|
|
1439
1439
|
* @public
|
|
@@ -1458,7 +1458,7 @@ export interface ListSyncConfigurationsOutput {
|
|
|
1458
1458
|
* <p>An enumeration token that allows the operation to batch the next results of the operation.</p>
|
|
1459
1459
|
* @public
|
|
1460
1460
|
*/
|
|
1461
|
-
NextToken?: string;
|
|
1461
|
+
NextToken?: string | undefined;
|
|
1462
1462
|
}
|
|
1463
1463
|
/**
|
|
1464
1464
|
* @public
|
|
@@ -1478,7 +1478,7 @@ export interface ListTagsForResourceOutput {
|
|
|
1478
1478
|
* <p>A list of tag key and value pairs associated with the specified resource.</p>
|
|
1479
1479
|
* @public
|
|
1480
1480
|
*/
|
|
1481
|
-
Tags?: Tag[];
|
|
1481
|
+
Tags?: Tag[] | undefined;
|
|
1482
1482
|
}
|
|
1483
1483
|
/**
|
|
1484
1484
|
* @public
|
|
@@ -1527,7 +1527,7 @@ export interface UntagResourceOutput {
|
|
|
1527
1527
|
export declare class ConflictException extends __BaseException {
|
|
1528
1528
|
readonly name: "ConflictException";
|
|
1529
1529
|
readonly $fault: "client";
|
|
1530
|
-
Message?: string;
|
|
1530
|
+
Message?: string | undefined;
|
|
1531
1531
|
/**
|
|
1532
1532
|
* @internal
|
|
1533
1533
|
*/
|
|
@@ -1540,7 +1540,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
1540
1540
|
export declare class UnsupportedOperationException extends __BaseException {
|
|
1541
1541
|
readonly name: "UnsupportedOperationException";
|
|
1542
1542
|
readonly $fault: "client";
|
|
1543
|
-
Message?: string;
|
|
1543
|
+
Message?: string | undefined;
|
|
1544
1544
|
/**
|
|
1545
1545
|
* @internal
|
|
1546
1546
|
*/
|
|
@@ -1559,13 +1559,13 @@ export interface UpdateHostInput {
|
|
|
1559
1559
|
* <p>The URL or endpoint of the host to be updated.</p>
|
|
1560
1560
|
* @public
|
|
1561
1561
|
*/
|
|
1562
|
-
ProviderEndpoint?: string;
|
|
1562
|
+
ProviderEndpoint?: string | undefined;
|
|
1563
1563
|
/**
|
|
1564
1564
|
* <p>The VPC configuration of the host to be updated. A VPC must be configured and the
|
|
1565
1565
|
* infrastructure to be represented by the host must already be connected to the VPC.</p>
|
|
1566
1566
|
* @public
|
|
1567
1567
|
*/
|
|
1568
|
-
VpcConfiguration?: VpcConfiguration;
|
|
1568
|
+
VpcConfiguration?: VpcConfiguration | undefined;
|
|
1569
1569
|
}
|
|
1570
1570
|
/**
|
|
1571
1571
|
* @public
|
|
@@ -1579,7 +1579,7 @@ export interface UpdateHostOutput {
|
|
|
1579
1579
|
export declare class ConditionalCheckFailedException extends __BaseException {
|
|
1580
1580
|
readonly name: "ConditionalCheckFailedException";
|
|
1581
1581
|
readonly $fault: "client";
|
|
1582
|
-
Message?: string;
|
|
1582
|
+
Message?: string | undefined;
|
|
1583
1583
|
/**
|
|
1584
1584
|
* @internal
|
|
1585
1585
|
*/
|
|
@@ -1592,7 +1592,7 @@ export declare class ConditionalCheckFailedException extends __BaseException {
|
|
|
1592
1592
|
export declare class UpdateOutOfSyncException extends __BaseException {
|
|
1593
1593
|
readonly name: "UpdateOutOfSyncException";
|
|
1594
1594
|
readonly $fault: "client";
|
|
1595
|
-
Message?: string;
|
|
1595
|
+
Message?: string | undefined;
|
|
1596
1596
|
/**
|
|
1597
1597
|
* @internal
|
|
1598
1598
|
*/
|
|
@@ -1606,12 +1606,12 @@ export interface UpdateRepositoryLinkInput {
|
|
|
1606
1606
|
* <p>The Amazon Resource Name (ARN) of the connection for the repository link to be updated. The updated connection ARN must have the same providerType (such as GitHub) as the original connection ARN for the repo link.</p>
|
|
1607
1607
|
* @public
|
|
1608
1608
|
*/
|
|
1609
|
-
ConnectionArn?: string;
|
|
1609
|
+
ConnectionArn?: string | undefined;
|
|
1610
1610
|
/**
|
|
1611
1611
|
* <p>The Amazon Resource Name (ARN) of the encryption key for the repository link to be updated.</p>
|
|
1612
1612
|
* @public
|
|
1613
1613
|
*/
|
|
1614
|
-
EncryptionKeyArn?: string;
|
|
1614
|
+
EncryptionKeyArn?: string | undefined;
|
|
1615
1615
|
/**
|
|
1616
1616
|
* <p>The ID of the repository link to be updated.</p>
|
|
1617
1617
|
* @public
|
|
@@ -1635,7 +1635,7 @@ export interface UpdateRepositoryLinkOutput {
|
|
|
1635
1635
|
export declare class RetryLatestCommitFailedException extends __BaseException {
|
|
1636
1636
|
readonly name: "RetryLatestCommitFailedException";
|
|
1637
1637
|
readonly $fault: "server";
|
|
1638
|
-
Message?: string;
|
|
1638
|
+
Message?: string | undefined;
|
|
1639
1639
|
/**
|
|
1640
1640
|
* @internal
|
|
1641
1641
|
*/
|
|
@@ -1648,7 +1648,7 @@ export declare class RetryLatestCommitFailedException extends __BaseException {
|
|
|
1648
1648
|
export declare class SyncBlockerDoesNotExistException extends __BaseException {
|
|
1649
1649
|
readonly name: "SyncBlockerDoesNotExistException";
|
|
1650
1650
|
readonly $fault: "client";
|
|
1651
|
-
Message?: string;
|
|
1651
|
+
Message?: string | undefined;
|
|
1652
1652
|
/**
|
|
1653
1653
|
* @internal
|
|
1654
1654
|
*/
|
|
@@ -1692,7 +1692,7 @@ export interface UpdateSyncBlockerOutput {
|
|
|
1692
1692
|
* <p>The parent resource name for the sync blocker.</p>
|
|
1693
1693
|
* @public
|
|
1694
1694
|
*/
|
|
1695
|
-
ParentResourceName?: string;
|
|
1695
|
+
ParentResourceName?: string | undefined;
|
|
1696
1696
|
/**
|
|
1697
1697
|
* <p>Information about the sync blocker to be updated.</p>
|
|
1698
1698
|
* @public
|
|
@@ -1707,17 +1707,17 @@ export interface UpdateSyncConfigurationInput {
|
|
|
1707
1707
|
* <p>The branch for the sync configuration to be updated.</p>
|
|
1708
1708
|
* @public
|
|
1709
1709
|
*/
|
|
1710
|
-
Branch?: string;
|
|
1710
|
+
Branch?: string | undefined;
|
|
1711
1711
|
/**
|
|
1712
1712
|
* <p>The configuration file for the sync configuration to be updated.</p>
|
|
1713
1713
|
* @public
|
|
1714
1714
|
*/
|
|
1715
|
-
ConfigFile?: string;
|
|
1715
|
+
ConfigFile?: string | undefined;
|
|
1716
1716
|
/**
|
|
1717
1717
|
* <p>The ID of the repository link for the sync configuration to be updated.</p>
|
|
1718
1718
|
* @public
|
|
1719
1719
|
*/
|
|
1720
|
-
RepositoryLinkId?: string;
|
|
1720
|
+
RepositoryLinkId?: string | undefined;
|
|
1721
1721
|
/**
|
|
1722
1722
|
* <p>The name of the Amazon Web Services resource for the sync configuration to be
|
|
1723
1723
|
* updated.</p>
|
|
@@ -1728,7 +1728,7 @@ export interface UpdateSyncConfigurationInput {
|
|
|
1728
1728
|
* <p>The ARN of the IAM role for the sync configuration to be updated.</p>
|
|
1729
1729
|
* @public
|
|
1730
1730
|
*/
|
|
1731
|
-
RoleArn?: string;
|
|
1731
|
+
RoleArn?: string | undefined;
|
|
1732
1732
|
/**
|
|
1733
1733
|
* <p>The sync type for the sync configuration to be updated.</p>
|
|
1734
1734
|
* @public
|
|
@@ -1738,17 +1738,17 @@ export interface UpdateSyncConfigurationInput {
|
|
|
1738
1738
|
* <p>Whether to enable or disable publishing of deployment status to source providers.</p>
|
|
1739
1739
|
* @public
|
|
1740
1740
|
*/
|
|
1741
|
-
PublishDeploymentStatus?: PublishDeploymentStatus;
|
|
1741
|
+
PublishDeploymentStatus?: PublishDeploymentStatus | undefined;
|
|
1742
1742
|
/**
|
|
1743
1743
|
* <p>When to trigger Git sync to begin the stack update.</p>
|
|
1744
1744
|
* @public
|
|
1745
1745
|
*/
|
|
1746
|
-
TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
|
|
1746
|
+
TriggerResourceUpdateOn?: TriggerResourceUpdateOn | undefined;
|
|
1747
1747
|
/**
|
|
1748
1748
|
* <p>TA toggle that specifies whether to enable or disable pull request comments for the sync configuration to be updated.</p>
|
|
1749
1749
|
* @public
|
|
1750
1750
|
*/
|
|
1751
|
-
PullRequestComment?: PullRequestComment;
|
|
1751
|
+
PullRequestComment?: PullRequestComment | undefined;
|
|
1752
1752
|
}
|
|
1753
1753
|
/**
|
|
1754
1754
|
* @public
|
|
@@ -3,7 +3,7 @@ import { CodeConnectionsServiceException as __BaseException } from "./CodeConnec
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
Message?: string;
|
|
6
|
+
Message?: string | undefined;
|
|
7
7
|
constructor(
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
@@ -30,19 +30,19 @@ export interface Tag {
|
|
|
30
30
|
Value: string | undefined;
|
|
31
31
|
}
|
|
32
32
|
export interface CreateConnectionInput {
|
|
33
|
-
ProviderType?: ProviderType;
|
|
33
|
+
ProviderType?: ProviderType | undefined;
|
|
34
34
|
ConnectionName: string | undefined;
|
|
35
|
-
Tags?: Tag[];
|
|
36
|
-
HostArn?: string;
|
|
35
|
+
Tags?: Tag[] | undefined;
|
|
36
|
+
HostArn?: string | undefined;
|
|
37
37
|
}
|
|
38
38
|
export interface CreateConnectionOutput {
|
|
39
39
|
ConnectionArn: string | undefined;
|
|
40
|
-
Tags?: Tag[];
|
|
40
|
+
Tags?: Tag[] | undefined;
|
|
41
41
|
}
|
|
42
42
|
export declare class LimitExceededException extends __BaseException {
|
|
43
43
|
readonly name: "LimitExceededException";
|
|
44
44
|
readonly $fault: "client";
|
|
45
|
-
Message?: string;
|
|
45
|
+
Message?: string | undefined;
|
|
46
46
|
constructor(
|
|
47
47
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
48
48
|
);
|
|
@@ -50,7 +50,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
50
50
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
51
51
|
readonly name: "ResourceNotFoundException";
|
|
52
52
|
readonly $fault: "client";
|
|
53
|
-
Message?: string;
|
|
53
|
+
Message?: string | undefined;
|
|
54
54
|
constructor(
|
|
55
55
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
56
56
|
);
|
|
@@ -58,7 +58,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
58
58
|
export declare class ResourceUnavailableException extends __BaseException {
|
|
59
59
|
readonly name: "ResourceUnavailableException";
|
|
60
60
|
readonly $fault: "client";
|
|
61
|
-
Message?: string;
|
|
61
|
+
Message?: string | undefined;
|
|
62
62
|
constructor(
|
|
63
63
|
opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
|
|
64
64
|
);
|
|
@@ -67,23 +67,23 @@ export interface VpcConfiguration {
|
|
|
67
67
|
VpcId: string | undefined;
|
|
68
68
|
SubnetIds: string[] | undefined;
|
|
69
69
|
SecurityGroupIds: string[] | undefined;
|
|
70
|
-
TlsCertificate?: string;
|
|
70
|
+
TlsCertificate?: string | undefined;
|
|
71
71
|
}
|
|
72
72
|
export interface CreateHostInput {
|
|
73
73
|
Name: string | undefined;
|
|
74
74
|
ProviderType: ProviderType | undefined;
|
|
75
75
|
ProviderEndpoint: string | undefined;
|
|
76
|
-
VpcConfiguration?: VpcConfiguration;
|
|
77
|
-
Tags?: Tag[];
|
|
76
|
+
VpcConfiguration?: VpcConfiguration | undefined;
|
|
77
|
+
Tags?: Tag[] | undefined;
|
|
78
78
|
}
|
|
79
79
|
export interface CreateHostOutput {
|
|
80
|
-
HostArn?: string;
|
|
81
|
-
Tags?: Tag[];
|
|
80
|
+
HostArn?: string | undefined;
|
|
81
|
+
Tags?: Tag[] | undefined;
|
|
82
82
|
}
|
|
83
83
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
84
84
|
readonly name: "ConcurrentModificationException";
|
|
85
85
|
readonly $fault: "client";
|
|
86
|
-
Message?: string;
|
|
86
|
+
Message?: string | undefined;
|
|
87
87
|
constructor(
|
|
88
88
|
opts: __ExceptionOptionType<
|
|
89
89
|
ConcurrentModificationException,
|
|
@@ -95,12 +95,12 @@ export interface CreateRepositoryLinkInput {
|
|
|
95
95
|
ConnectionArn: string | undefined;
|
|
96
96
|
OwnerId: string | undefined;
|
|
97
97
|
RepositoryName: string | undefined;
|
|
98
|
-
EncryptionKeyArn?: string;
|
|
99
|
-
Tags?: Tag[];
|
|
98
|
+
EncryptionKeyArn?: string | undefined;
|
|
99
|
+
Tags?: Tag[] | undefined;
|
|
100
100
|
}
|
|
101
101
|
export interface RepositoryLinkInfo {
|
|
102
102
|
ConnectionArn: string | undefined;
|
|
103
|
-
EncryptionKeyArn?: string;
|
|
103
|
+
EncryptionKeyArn?: string | undefined;
|
|
104
104
|
OwnerId: string | undefined;
|
|
105
105
|
ProviderType: ProviderType | undefined;
|
|
106
106
|
RepositoryLinkArn: string | undefined;
|
|
@@ -113,7 +113,7 @@ export interface CreateRepositoryLinkOutput {
|
|
|
113
113
|
export declare class InternalServerException extends __BaseException {
|
|
114
114
|
readonly name: "InternalServerException";
|
|
115
115
|
readonly $fault: "server";
|
|
116
|
-
Message?: string;
|
|
116
|
+
Message?: string | undefined;
|
|
117
117
|
constructor(
|
|
118
118
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
119
119
|
);
|
|
@@ -121,7 +121,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
121
121
|
export declare class InvalidInputException extends __BaseException {
|
|
122
122
|
readonly name: "InvalidInputException";
|
|
123
123
|
readonly $fault: "client";
|
|
124
|
-
Message?: string;
|
|
124
|
+
Message?: string | undefined;
|
|
125
125
|
constructor(
|
|
126
126
|
opts: __ExceptionOptionType<InvalidInputException, __BaseException>
|
|
127
127
|
);
|
|
@@ -129,7 +129,7 @@ export declare class InvalidInputException extends __BaseException {
|
|
|
129
129
|
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
130
130
|
readonly name: "ResourceAlreadyExistsException";
|
|
131
131
|
readonly $fault: "client";
|
|
132
|
-
Message?: string;
|
|
132
|
+
Message?: string | undefined;
|
|
133
133
|
constructor(
|
|
134
134
|
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
135
135
|
);
|
|
@@ -137,7 +137,7 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
137
137
|
export declare class ThrottlingException extends __BaseException {
|
|
138
138
|
readonly name: "ThrottlingException";
|
|
139
139
|
readonly $fault: "client";
|
|
140
|
-
Message?: string;
|
|
140
|
+
Message?: string | undefined;
|
|
141
141
|
constructor(
|
|
142
142
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
143
143
|
);
|
|
@@ -172,13 +172,13 @@ export interface CreateSyncConfigurationInput {
|
|
|
172
172
|
ResourceName: string | undefined;
|
|
173
173
|
RoleArn: string | undefined;
|
|
174
174
|
SyncType: SyncConfigurationType | undefined;
|
|
175
|
-
PublishDeploymentStatus?: PublishDeploymentStatus;
|
|
176
|
-
TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
|
|
177
|
-
PullRequestComment?: PullRequestComment;
|
|
175
|
+
PublishDeploymentStatus?: PublishDeploymentStatus | undefined;
|
|
176
|
+
TriggerResourceUpdateOn?: TriggerResourceUpdateOn | undefined;
|
|
177
|
+
PullRequestComment?: PullRequestComment | undefined;
|
|
178
178
|
}
|
|
179
179
|
export interface SyncConfiguration {
|
|
180
180
|
Branch: string | undefined;
|
|
181
|
-
ConfigFile?: string;
|
|
181
|
+
ConfigFile?: string | undefined;
|
|
182
182
|
OwnerId: string | undefined;
|
|
183
183
|
ProviderType: ProviderType | undefined;
|
|
184
184
|
RepositoryLinkId: string | undefined;
|
|
@@ -186,9 +186,9 @@ export interface SyncConfiguration {
|
|
|
186
186
|
ResourceName: string | undefined;
|
|
187
187
|
RoleArn: string | undefined;
|
|
188
188
|
SyncType: SyncConfigurationType | undefined;
|
|
189
|
-
PublishDeploymentStatus?: PublishDeploymentStatus;
|
|
190
|
-
TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
|
|
191
|
-
PullRequestComment?: PullRequestComment;
|
|
189
|
+
PublishDeploymentStatus?: PublishDeploymentStatus | undefined;
|
|
190
|
+
TriggerResourceUpdateOn?: TriggerResourceUpdateOn | undefined;
|
|
191
|
+
PullRequestComment?: PullRequestComment | undefined;
|
|
192
192
|
}
|
|
193
193
|
export interface CreateSyncConfigurationOutput {
|
|
194
194
|
SyncConfiguration: SyncConfiguration | undefined;
|
|
@@ -208,7 +208,7 @@ export interface DeleteRepositoryLinkOutput {}
|
|
|
208
208
|
export declare class SyncConfigurationStillExistsException extends __BaseException {
|
|
209
209
|
readonly name: "SyncConfigurationStillExistsException";
|
|
210
210
|
readonly $fault: "client";
|
|
211
|
-
Message?: string;
|
|
211
|
+
Message?: string | undefined;
|
|
212
212
|
constructor(
|
|
213
213
|
opts: __ExceptionOptionType<
|
|
214
214
|
SyncConfigurationStillExistsException,
|
|
@@ -219,7 +219,7 @@ export declare class SyncConfigurationStillExistsException extends __BaseExcepti
|
|
|
219
219
|
export declare class UnsupportedProviderTypeException extends __BaseException {
|
|
220
220
|
readonly name: "UnsupportedProviderTypeException";
|
|
221
221
|
readonly $fault: "client";
|
|
222
|
-
Message?: string;
|
|
222
|
+
Message?: string | undefined;
|
|
223
223
|
constructor(
|
|
224
224
|
opts: __ExceptionOptionType<
|
|
225
225
|
UnsupportedProviderTypeException,
|
|
@@ -243,25 +243,25 @@ export declare const ConnectionStatus: {
|
|
|
243
243
|
export type ConnectionStatus =
|
|
244
244
|
(typeof ConnectionStatus)[keyof typeof ConnectionStatus];
|
|
245
245
|
export interface Connection {
|
|
246
|
-
ConnectionName?: string;
|
|
247
|
-
ConnectionArn?: string;
|
|
248
|
-
ProviderType?: ProviderType;
|
|
249
|
-
OwnerAccountId?: string;
|
|
250
|
-
ConnectionStatus?: ConnectionStatus;
|
|
251
|
-
HostArn?: string;
|
|
246
|
+
ConnectionName?: string | undefined;
|
|
247
|
+
ConnectionArn?: string | undefined;
|
|
248
|
+
ProviderType?: ProviderType | undefined;
|
|
249
|
+
OwnerAccountId?: string | undefined;
|
|
250
|
+
ConnectionStatus?: ConnectionStatus | undefined;
|
|
251
|
+
HostArn?: string | undefined;
|
|
252
252
|
}
|
|
253
253
|
export interface GetConnectionOutput {
|
|
254
|
-
Connection?: Connection;
|
|
254
|
+
Connection?: Connection | undefined;
|
|
255
255
|
}
|
|
256
256
|
export interface GetHostInput {
|
|
257
257
|
HostArn: string | undefined;
|
|
258
258
|
}
|
|
259
259
|
export interface GetHostOutput {
|
|
260
|
-
Name?: string;
|
|
261
|
-
Status?: string;
|
|
262
|
-
ProviderType?: ProviderType;
|
|
263
|
-
ProviderEndpoint?: string;
|
|
264
|
-
VpcConfiguration?: VpcConfiguration;
|
|
260
|
+
Name?: string | undefined;
|
|
261
|
+
Status?: string | undefined;
|
|
262
|
+
ProviderType?: ProviderType | undefined;
|
|
263
|
+
ProviderEndpoint?: string | undefined;
|
|
264
|
+
VpcConfiguration?: VpcConfiguration | undefined;
|
|
265
265
|
}
|
|
266
266
|
export interface GetRepositoryLinkInput {
|
|
267
267
|
RepositoryLinkId: string | undefined;
|
|
@@ -276,7 +276,7 @@ export interface GetRepositorySyncStatusInput {
|
|
|
276
276
|
}
|
|
277
277
|
export interface RepositorySyncEvent {
|
|
278
278
|
Event: string | undefined;
|
|
279
|
-
ExternalId?: string;
|
|
279
|
+
ExternalId?: string | undefined;
|
|
280
280
|
Time: Date | undefined;
|
|
281
281
|
Type: string | undefined;
|
|
282
282
|
}
|
|
@@ -311,7 +311,7 @@ export interface Revision {
|
|
|
311
311
|
}
|
|
312
312
|
export interface ResourceSyncEvent {
|
|
313
313
|
Event: string | undefined;
|
|
314
|
-
ExternalId?: string;
|
|
314
|
+
ExternalId?: string | undefined;
|
|
315
315
|
Time: Date | undefined;
|
|
316
316
|
Type: string | undefined;
|
|
317
317
|
}
|
|
@@ -332,8 +332,8 @@ export interface ResourceSyncAttempt {
|
|
|
332
332
|
Target: string | undefined;
|
|
333
333
|
}
|
|
334
334
|
export interface GetResourceSyncStatusOutput {
|
|
335
|
-
DesiredState?: Revision;
|
|
336
|
-
LatestSuccessfulSync?: ResourceSyncAttempt;
|
|
335
|
+
DesiredState?: Revision | undefined;
|
|
336
|
+
LatestSuccessfulSync?: ResourceSyncAttempt | undefined;
|
|
337
337
|
LatestSync: ResourceSyncAttempt | undefined;
|
|
338
338
|
}
|
|
339
339
|
export interface GetSyncBlockerSummaryInput {
|
|
@@ -350,14 +350,14 @@ export interface SyncBlocker {
|
|
|
350
350
|
Status: BlockerStatus | undefined;
|
|
351
351
|
CreatedReason: string | undefined;
|
|
352
352
|
CreatedAt: Date | undefined;
|
|
353
|
-
Contexts?: SyncBlockerContext[];
|
|
354
|
-
ResolvedReason?: string;
|
|
355
|
-
ResolvedAt?: Date;
|
|
353
|
+
Contexts?: SyncBlockerContext[] | undefined;
|
|
354
|
+
ResolvedReason?: string | undefined;
|
|
355
|
+
ResolvedAt?: Date | undefined;
|
|
356
356
|
}
|
|
357
357
|
export interface SyncBlockerSummary {
|
|
358
358
|
ResourceName: string | undefined;
|
|
359
|
-
ParentResourceName?: string;
|
|
360
|
-
LatestBlockers?: SyncBlocker[];
|
|
359
|
+
ParentResourceName?: string | undefined;
|
|
360
|
+
LatestBlockers?: SyncBlocker[] | undefined;
|
|
361
361
|
}
|
|
362
362
|
export interface GetSyncBlockerSummaryOutput {
|
|
363
363
|
SyncBlockerSummary: SyncBlockerSummary | undefined;
|
|
@@ -370,39 +370,39 @@ export interface GetSyncConfigurationOutput {
|
|
|
370
370
|
SyncConfiguration: SyncConfiguration | undefined;
|
|
371
371
|
}
|
|
372
372
|
export interface ListConnectionsInput {
|
|
373
|
-
ProviderTypeFilter?: ProviderType;
|
|
374
|
-
HostArnFilter?: string;
|
|
375
|
-
MaxResults?: number;
|
|
376
|
-
NextToken?: string;
|
|
373
|
+
ProviderTypeFilter?: ProviderType | undefined;
|
|
374
|
+
HostArnFilter?: string | undefined;
|
|
375
|
+
MaxResults?: number | undefined;
|
|
376
|
+
NextToken?: string | undefined;
|
|
377
377
|
}
|
|
378
378
|
export interface ListConnectionsOutput {
|
|
379
|
-
Connections?: Connection[];
|
|
380
|
-
NextToken?: string;
|
|
379
|
+
Connections?: Connection[] | undefined;
|
|
380
|
+
NextToken?: string | undefined;
|
|
381
381
|
}
|
|
382
382
|
export interface ListHostsInput {
|
|
383
|
-
MaxResults?: number;
|
|
384
|
-
NextToken?: string;
|
|
383
|
+
MaxResults?: number | undefined;
|
|
384
|
+
NextToken?: string | undefined;
|
|
385
385
|
}
|
|
386
386
|
export interface Host {
|
|
387
|
-
Name?: string;
|
|
388
|
-
HostArn?: string;
|
|
389
|
-
ProviderType?: ProviderType;
|
|
390
|
-
ProviderEndpoint?: string;
|
|
391
|
-
VpcConfiguration?: VpcConfiguration;
|
|
392
|
-
Status?: string;
|
|
393
|
-
StatusMessage?: string;
|
|
387
|
+
Name?: string | undefined;
|
|
388
|
+
HostArn?: string | undefined;
|
|
389
|
+
ProviderType?: ProviderType | undefined;
|
|
390
|
+
ProviderEndpoint?: string | undefined;
|
|
391
|
+
VpcConfiguration?: VpcConfiguration | undefined;
|
|
392
|
+
Status?: string | undefined;
|
|
393
|
+
StatusMessage?: string | undefined;
|
|
394
394
|
}
|
|
395
395
|
export interface ListHostsOutput {
|
|
396
|
-
Hosts?: Host[];
|
|
397
|
-
NextToken?: string;
|
|
396
|
+
Hosts?: Host[] | undefined;
|
|
397
|
+
NextToken?: string | undefined;
|
|
398
398
|
}
|
|
399
399
|
export interface ListRepositoryLinksInput {
|
|
400
|
-
MaxResults?: number;
|
|
401
|
-
NextToken?: string;
|
|
400
|
+
MaxResults?: number | undefined;
|
|
401
|
+
NextToken?: string | undefined;
|
|
402
402
|
}
|
|
403
403
|
export interface ListRepositoryLinksOutput {
|
|
404
404
|
RepositoryLinks: RepositoryLinkInfo[] | undefined;
|
|
405
|
-
NextToken?: string;
|
|
405
|
+
NextToken?: string | undefined;
|
|
406
406
|
}
|
|
407
407
|
export interface ListRepositorySyncDefinitionsInput {
|
|
408
408
|
RepositoryLinkId: string | undefined;
|
|
@@ -416,23 +416,23 @@ export interface RepositorySyncDefinition {
|
|
|
416
416
|
}
|
|
417
417
|
export interface ListRepositorySyncDefinitionsOutput {
|
|
418
418
|
RepositorySyncDefinitions: RepositorySyncDefinition[] | undefined;
|
|
419
|
-
NextToken?: string;
|
|
419
|
+
NextToken?: string | undefined;
|
|
420
420
|
}
|
|
421
421
|
export interface ListSyncConfigurationsInput {
|
|
422
|
-
MaxResults?: number;
|
|
423
|
-
NextToken?: string;
|
|
422
|
+
MaxResults?: number | undefined;
|
|
423
|
+
NextToken?: string | undefined;
|
|
424
424
|
RepositoryLinkId: string | undefined;
|
|
425
425
|
SyncType: SyncConfigurationType | undefined;
|
|
426
426
|
}
|
|
427
427
|
export interface ListSyncConfigurationsOutput {
|
|
428
428
|
SyncConfigurations: SyncConfiguration[] | undefined;
|
|
429
|
-
NextToken?: string;
|
|
429
|
+
NextToken?: string | undefined;
|
|
430
430
|
}
|
|
431
431
|
export interface ListTagsForResourceInput {
|
|
432
432
|
ResourceArn: string | undefined;
|
|
433
433
|
}
|
|
434
434
|
export interface ListTagsForResourceOutput {
|
|
435
|
-
Tags?: Tag[];
|
|
435
|
+
Tags?: Tag[] | undefined;
|
|
436
436
|
}
|
|
437
437
|
export interface TagResourceInput {
|
|
438
438
|
ResourceArn: string | undefined;
|
|
@@ -447,27 +447,27 @@ export interface UntagResourceOutput {}
|
|
|
447
447
|
export declare class ConflictException extends __BaseException {
|
|
448
448
|
readonly name: "ConflictException";
|
|
449
449
|
readonly $fault: "client";
|
|
450
|
-
Message?: string;
|
|
450
|
+
Message?: string | undefined;
|
|
451
451
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
452
452
|
}
|
|
453
453
|
export declare class UnsupportedOperationException extends __BaseException {
|
|
454
454
|
readonly name: "UnsupportedOperationException";
|
|
455
455
|
readonly $fault: "client";
|
|
456
|
-
Message?: string;
|
|
456
|
+
Message?: string | undefined;
|
|
457
457
|
constructor(
|
|
458
458
|
opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
|
|
459
459
|
);
|
|
460
460
|
}
|
|
461
461
|
export interface UpdateHostInput {
|
|
462
462
|
HostArn: string | undefined;
|
|
463
|
-
ProviderEndpoint?: string;
|
|
464
|
-
VpcConfiguration?: VpcConfiguration;
|
|
463
|
+
ProviderEndpoint?: string | undefined;
|
|
464
|
+
VpcConfiguration?: VpcConfiguration | undefined;
|
|
465
465
|
}
|
|
466
466
|
export interface UpdateHostOutput {}
|
|
467
467
|
export declare class ConditionalCheckFailedException extends __BaseException {
|
|
468
468
|
readonly name: "ConditionalCheckFailedException";
|
|
469
469
|
readonly $fault: "client";
|
|
470
|
-
Message?: string;
|
|
470
|
+
Message?: string | undefined;
|
|
471
471
|
constructor(
|
|
472
472
|
opts: __ExceptionOptionType<
|
|
473
473
|
ConditionalCheckFailedException,
|
|
@@ -478,14 +478,14 @@ export declare class ConditionalCheckFailedException extends __BaseException {
|
|
|
478
478
|
export declare class UpdateOutOfSyncException extends __BaseException {
|
|
479
479
|
readonly name: "UpdateOutOfSyncException";
|
|
480
480
|
readonly $fault: "client";
|
|
481
|
-
Message?: string;
|
|
481
|
+
Message?: string | undefined;
|
|
482
482
|
constructor(
|
|
483
483
|
opts: __ExceptionOptionType<UpdateOutOfSyncException, __BaseException>
|
|
484
484
|
);
|
|
485
485
|
}
|
|
486
486
|
export interface UpdateRepositoryLinkInput {
|
|
487
|
-
ConnectionArn?: string;
|
|
488
|
-
EncryptionKeyArn?: string;
|
|
487
|
+
ConnectionArn?: string | undefined;
|
|
488
|
+
EncryptionKeyArn?: string | undefined;
|
|
489
489
|
RepositoryLinkId: string | undefined;
|
|
490
490
|
}
|
|
491
491
|
export interface UpdateRepositoryLinkOutput {
|
|
@@ -494,7 +494,7 @@ export interface UpdateRepositoryLinkOutput {
|
|
|
494
494
|
export declare class RetryLatestCommitFailedException extends __BaseException {
|
|
495
495
|
readonly name: "RetryLatestCommitFailedException";
|
|
496
496
|
readonly $fault: "server";
|
|
497
|
-
Message?: string;
|
|
497
|
+
Message?: string | undefined;
|
|
498
498
|
constructor(
|
|
499
499
|
opts: __ExceptionOptionType<
|
|
500
500
|
RetryLatestCommitFailedException,
|
|
@@ -505,7 +505,7 @@ export declare class RetryLatestCommitFailedException extends __BaseException {
|
|
|
505
505
|
export declare class SyncBlockerDoesNotExistException extends __BaseException {
|
|
506
506
|
readonly name: "SyncBlockerDoesNotExistException";
|
|
507
507
|
readonly $fault: "client";
|
|
508
|
-
Message?: string;
|
|
508
|
+
Message?: string | undefined;
|
|
509
509
|
constructor(
|
|
510
510
|
opts: __ExceptionOptionType<
|
|
511
511
|
SyncBlockerDoesNotExistException,
|
|
@@ -521,19 +521,19 @@ export interface UpdateSyncBlockerInput {
|
|
|
521
521
|
}
|
|
522
522
|
export interface UpdateSyncBlockerOutput {
|
|
523
523
|
ResourceName: string | undefined;
|
|
524
|
-
ParentResourceName?: string;
|
|
524
|
+
ParentResourceName?: string | undefined;
|
|
525
525
|
SyncBlocker: SyncBlocker | undefined;
|
|
526
526
|
}
|
|
527
527
|
export interface UpdateSyncConfigurationInput {
|
|
528
|
-
Branch?: string;
|
|
529
|
-
ConfigFile?: string;
|
|
530
|
-
RepositoryLinkId?: string;
|
|
528
|
+
Branch?: string | undefined;
|
|
529
|
+
ConfigFile?: string | undefined;
|
|
530
|
+
RepositoryLinkId?: string | undefined;
|
|
531
531
|
ResourceName: string | undefined;
|
|
532
|
-
RoleArn?: string;
|
|
532
|
+
RoleArn?: string | undefined;
|
|
533
533
|
SyncType: SyncConfigurationType | undefined;
|
|
534
|
-
PublishDeploymentStatus?: PublishDeploymentStatus;
|
|
535
|
-
TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
|
|
536
|
-
PullRequestComment?: PullRequestComment;
|
|
534
|
+
PublishDeploymentStatus?: PublishDeploymentStatus | undefined;
|
|
535
|
+
TriggerResourceUpdateOn?: TriggerResourceUpdateOn | undefined;
|
|
536
|
+
PullRequestComment?: PullRequestComment | undefined;
|
|
537
537
|
}
|
|
538
538
|
export interface UpdateSyncConfigurationOutput {
|
|
539
539
|
SyncConfiguration: SyncConfiguration | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codeconnections",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codeconnections Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.692.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",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.692.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.692.0",
|
|
25
|
+
"@aws-sdk/core": "3.692.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.692.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.692.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.692.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.692.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.692.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.692.0",
|
|
32
|
+
"@aws-sdk/types": "3.692.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.692.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.692.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.692.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.11",
|
|
37
|
+
"@smithy/core": "^2.5.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.9",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.9",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.11",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.9",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.9",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.10",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.6",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.3",
|
|
50
|
+
"@smithy/types": "^3.7.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.9",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.26",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.26",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.5",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.9",
|
|
59
|
+
"@smithy/util-retry": "^3.0.9",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|