@aws-sdk/client-codestar-connections 3.986.0 → 3.988.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-cjs/index.js +46 -1159
- package/dist-cjs/models/CodeStarConnectionsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +259 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +770 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +92 -86
- package/dist-types/schemas/schemas_0.d.ts +21 -14
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -14
- package/package.json +13 -13
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultCodeStarConnectionsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2019-12-01",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.codestarconnections",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2019-12-01",
|
|
30
32
|
serviceTarget: "CodeStar_connections_20191201",
|
|
31
33
|
},
|
|
@@ -188,36 +188,122 @@ const _VI = "VpcId";
|
|
|
188
188
|
const _c = "client";
|
|
189
189
|
const _e = "error";
|
|
190
190
|
const _hE = "httpError";
|
|
191
|
-
const _s = "
|
|
192
|
-
const
|
|
191
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.codestarconnections";
|
|
192
|
+
const _se = "server";
|
|
193
193
|
const n0 = "com.amazonaws.codestarconnections";
|
|
194
194
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
195
195
|
import { CodeStarConnectionsServiceException } from "../models/CodeStarConnectionsServiceException";
|
|
196
196
|
import { AccessDeniedException, ConcurrentModificationException, ConditionalCheckFailedException, ConflictException, InternalServerException, InvalidInputException, LimitExceededException, ResourceAlreadyExistsException, ResourceNotFoundException, ResourceUnavailableException, RetryLatestCommitFailedException, SyncBlockerDoesNotExistException, SyncConfigurationStillExistsException, ThrottlingException, UnsupportedOperationException, UnsupportedProviderTypeException, UpdateOutOfSyncException, } from "../models/errors";
|
|
197
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
198
|
+
export var CodeStarConnectionsServiceException$ = [-3, _s, "CodeStarConnectionsServiceException", 0, [], []];
|
|
199
|
+
_s_registry.registerError(CodeStarConnectionsServiceException$, CodeStarConnectionsServiceException);
|
|
200
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
197
201
|
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
198
202
|
{ [_e]: _c, [_hE]: 403 },
|
|
199
203
|
[_M],
|
|
200
204
|
[0]
|
|
201
205
|
];
|
|
202
|
-
|
|
206
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
203
207
|
export var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
204
208
|
{ [_e]: _c, [_hE]: 409 },
|
|
205
209
|
[_M],
|
|
206
210
|
[0]
|
|
207
211
|
];
|
|
208
|
-
|
|
212
|
+
n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
209
213
|
export var ConditionalCheckFailedException$ = [-3, n0, _CCFE,
|
|
210
214
|
{ [_e]: _c, [_hE]: 409 },
|
|
211
215
|
[_M],
|
|
212
216
|
[0]
|
|
213
217
|
];
|
|
214
|
-
|
|
218
|
+
n0_registry.registerError(ConditionalCheckFailedException$, ConditionalCheckFailedException);
|
|
215
219
|
export var ConflictException$ = [-3, n0, _CE,
|
|
216
220
|
{ [_e]: _c, [_hE]: 409 },
|
|
217
221
|
[_M],
|
|
218
222
|
[0]
|
|
219
223
|
];
|
|
220
|
-
|
|
224
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
225
|
+
export var InternalServerException$ = [-3, n0, _ISE,
|
|
226
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
227
|
+
[_M],
|
|
228
|
+
[0]
|
|
229
|
+
];
|
|
230
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
231
|
+
export var InvalidInputException$ = [-3, n0, _IIE,
|
|
232
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
233
|
+
[_M],
|
|
234
|
+
[0]
|
|
235
|
+
];
|
|
236
|
+
n0_registry.registerError(InvalidInputException$, InvalidInputException);
|
|
237
|
+
export var LimitExceededException$ = [-3, n0, _LEE,
|
|
238
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
239
|
+
[_M],
|
|
240
|
+
[0]
|
|
241
|
+
];
|
|
242
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
243
|
+
export var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
244
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
245
|
+
[_M],
|
|
246
|
+
[0]
|
|
247
|
+
];
|
|
248
|
+
n0_registry.registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
249
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
250
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
251
|
+
[_M],
|
|
252
|
+
[0]
|
|
253
|
+
];
|
|
254
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
255
|
+
export var ResourceUnavailableException$ = [-3, n0, _RUE,
|
|
256
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
257
|
+
[_M],
|
|
258
|
+
[0]
|
|
259
|
+
];
|
|
260
|
+
n0_registry.registerError(ResourceUnavailableException$, ResourceUnavailableException);
|
|
261
|
+
export var RetryLatestCommitFailedException$ = [-3, n0, _RLCFE,
|
|
262
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
263
|
+
[_M],
|
|
264
|
+
[0]
|
|
265
|
+
];
|
|
266
|
+
n0_registry.registerError(RetryLatestCommitFailedException$, RetryLatestCommitFailedException);
|
|
267
|
+
export var SyncBlockerDoesNotExistException$ = [-3, n0, _SBDNEE,
|
|
268
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
269
|
+
[_M],
|
|
270
|
+
[0]
|
|
271
|
+
];
|
|
272
|
+
n0_registry.registerError(SyncBlockerDoesNotExistException$, SyncBlockerDoesNotExistException);
|
|
273
|
+
export var SyncConfigurationStillExistsException$ = [-3, n0, _SCSEE,
|
|
274
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
275
|
+
[_M],
|
|
276
|
+
[0]
|
|
277
|
+
];
|
|
278
|
+
n0_registry.registerError(SyncConfigurationStillExistsException$, SyncConfigurationStillExistsException);
|
|
279
|
+
export var ThrottlingException$ = [-3, n0, _TE,
|
|
280
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
281
|
+
[_M],
|
|
282
|
+
[0]
|
|
283
|
+
];
|
|
284
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
285
|
+
export var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
286
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
287
|
+
[_M],
|
|
288
|
+
[0]
|
|
289
|
+
];
|
|
290
|
+
n0_registry.registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
291
|
+
export var UnsupportedProviderTypeException$ = [-3, n0, _UPTE,
|
|
292
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
293
|
+
[_M],
|
|
294
|
+
[0]
|
|
295
|
+
];
|
|
296
|
+
n0_registry.registerError(UnsupportedProviderTypeException$, UnsupportedProviderTypeException);
|
|
297
|
+
export var UpdateOutOfSyncException$ = [-3, n0, _UOOSE,
|
|
298
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
299
|
+
[_M],
|
|
300
|
+
[0]
|
|
301
|
+
];
|
|
302
|
+
n0_registry.registerError(UpdateOutOfSyncException$, UpdateOutOfSyncException);
|
|
303
|
+
export const errorTypeRegistries = [
|
|
304
|
+
_s_registry,
|
|
305
|
+
n0_registry,
|
|
306
|
+
];
|
|
221
307
|
export var Connection$ = [3, n0, _C,
|
|
222
308
|
0,
|
|
223
309
|
[_CN, _CA, _PT, _OAI, _CS, _HA],
|
|
@@ -378,24 +464,6 @@ export var Host$ = [3, n0, _H,
|
|
|
378
464
|
[_N, _HA, _PT, _PE, _VC, _S, _SM],
|
|
379
465
|
[0, 0, 0, 0, () => VpcConfiguration$, 0, 0]
|
|
380
466
|
];
|
|
381
|
-
export var InternalServerException$ = [-3, n0, _ISE,
|
|
382
|
-
{ [_e]: _s, [_hE]: 503 },
|
|
383
|
-
[_M],
|
|
384
|
-
[0]
|
|
385
|
-
];
|
|
386
|
-
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
387
|
-
export var InvalidInputException$ = [-3, n0, _IIE,
|
|
388
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
389
|
-
[_M],
|
|
390
|
-
[0]
|
|
391
|
-
];
|
|
392
|
-
TypeRegistry.for(n0).registerError(InvalidInputException$, InvalidInputException);
|
|
393
|
-
export var LimitExceededException$ = [-3, n0, _LEE,
|
|
394
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
395
|
-
[_M],
|
|
396
|
-
[0]
|
|
397
|
-
];
|
|
398
|
-
TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
399
467
|
export var ListConnectionsInput$ = [3, n0, _LCI,
|
|
400
468
|
0,
|
|
401
469
|
[_PTF, _HAF, _MR, _NT],
|
|
@@ -476,18 +544,6 @@ export var RepositorySyncEvent$ = [3, n0, _RSE,
|
|
|
476
544
|
[_Ev, _Ti, _Ty, _EI],
|
|
477
545
|
[0, 4, 0, 0], 3
|
|
478
546
|
];
|
|
479
|
-
export var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
480
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
481
|
-
[_M],
|
|
482
|
-
[0]
|
|
483
|
-
];
|
|
484
|
-
TypeRegistry.for(n0).registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
485
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
486
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
487
|
-
[_M],
|
|
488
|
-
[0]
|
|
489
|
-
];
|
|
490
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
491
547
|
export var ResourceSyncAttempt$ = [3, n0, _RSAe,
|
|
492
548
|
0,
|
|
493
549
|
[_E, _IR, _SA, _S, _TR, _Ta],
|
|
@@ -498,18 +554,6 @@ export var ResourceSyncEvent$ = [3, n0, _RSEe,
|
|
|
498
554
|
[_Ev, _Ti, _Ty, _EI],
|
|
499
555
|
[0, 4, 0, 0], 3
|
|
500
556
|
];
|
|
501
|
-
export var ResourceUnavailableException$ = [-3, n0, _RUE,
|
|
502
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
503
|
-
[_M],
|
|
504
|
-
[0]
|
|
505
|
-
];
|
|
506
|
-
TypeRegistry.for(n0).registerError(ResourceUnavailableException$, ResourceUnavailableException);
|
|
507
|
-
export var RetryLatestCommitFailedException$ = [-3, n0, _RLCFE,
|
|
508
|
-
{ [_e]: _s, [_hE]: 503 },
|
|
509
|
-
[_M],
|
|
510
|
-
[0]
|
|
511
|
-
];
|
|
512
|
-
TypeRegistry.for(n0).registerError(RetryLatestCommitFailedException$, RetryLatestCommitFailedException);
|
|
513
557
|
export var Revision$ = [3, n0, _R,
|
|
514
558
|
0,
|
|
515
559
|
[_B, _D, _OI, _RN, _PT, _Sh],
|
|
@@ -525,12 +569,6 @@ export var SyncBlockerContext$ = [3, n0, _SBC,
|
|
|
525
569
|
[_K, _V],
|
|
526
570
|
[0, 0], 2
|
|
527
571
|
];
|
|
528
|
-
export var SyncBlockerDoesNotExistException$ = [-3, n0, _SBDNEE,
|
|
529
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
530
|
-
[_M],
|
|
531
|
-
[0]
|
|
532
|
-
];
|
|
533
|
-
TypeRegistry.for(n0).registerError(SyncBlockerDoesNotExistException$, SyncBlockerDoesNotExistException);
|
|
534
572
|
export var SyncBlockerSummary$ = [3, n0, _SBS,
|
|
535
573
|
0,
|
|
536
574
|
[_RNe, _PRN, _LB],
|
|
@@ -541,12 +579,6 @@ export var SyncConfiguration$ = [3, n0, _SC,
|
|
|
541
579
|
[_B, _OI, _PT, _RLIe, _RN, _RNe, _RA, _ST, _CF, _PDS, _TRUO],
|
|
542
580
|
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 8
|
|
543
581
|
];
|
|
544
|
-
export var SyncConfigurationStillExistsException$ = [-3, n0, _SCSEE,
|
|
545
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
546
|
-
[_M],
|
|
547
|
-
[0]
|
|
548
|
-
];
|
|
549
|
-
TypeRegistry.for(n0).registerError(SyncConfigurationStillExistsException$, SyncConfigurationStillExistsException);
|
|
550
582
|
export var Tag$ = [3, n0, _Tag,
|
|
551
583
|
0,
|
|
552
584
|
[_K, _V],
|
|
@@ -562,24 +594,6 @@ export var TagResourceOutput$ = [3, n0, _TRO,
|
|
|
562
594
|
[],
|
|
563
595
|
[]
|
|
564
596
|
];
|
|
565
|
-
export var ThrottlingException$ = [-3, n0, _TE,
|
|
566
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
567
|
-
[_M],
|
|
568
|
-
[0]
|
|
569
|
-
];
|
|
570
|
-
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
571
|
-
export var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
572
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
573
|
-
[_M],
|
|
574
|
-
[0]
|
|
575
|
-
];
|
|
576
|
-
TypeRegistry.for(n0).registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
577
|
-
export var UnsupportedProviderTypeException$ = [-3, n0, _UPTE,
|
|
578
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
579
|
-
[_M],
|
|
580
|
-
[0]
|
|
581
|
-
];
|
|
582
|
-
TypeRegistry.for(n0).registerError(UnsupportedProviderTypeException$, UnsupportedProviderTypeException);
|
|
583
597
|
export var UntagResourceInput$ = [3, n0, _URI,
|
|
584
598
|
0,
|
|
585
599
|
[_RAe, _TK],
|
|
@@ -600,12 +614,6 @@ export var UpdateHostOutput$ = [3, n0, _UHO,
|
|
|
600
614
|
[],
|
|
601
615
|
[]
|
|
602
616
|
];
|
|
603
|
-
export var UpdateOutOfSyncException$ = [-3, n0, _UOOSE,
|
|
604
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
605
|
-
[_M],
|
|
606
|
-
[0]
|
|
607
|
-
];
|
|
608
|
-
TypeRegistry.for(n0).registerError(UpdateOutOfSyncException$, UpdateOutOfSyncException);
|
|
609
617
|
export var UpdateRepositoryLinkInput$ = [3, n0, _URLI,
|
|
610
618
|
0,
|
|
611
619
|
[_RLIe, _CA, _EKA],
|
|
@@ -641,8 +649,6 @@ export var VpcConfiguration$ = [3, n0, _VC,
|
|
|
641
649
|
[_VI, _SI, _SGI, _TC],
|
|
642
650
|
[0, 64 | 0, 64 | 0, 0], 3
|
|
643
651
|
];
|
|
644
|
-
export var CodeStarConnectionsServiceException$ = [-3, _sm, "CodeStarConnectionsServiceException", 0, [], []];
|
|
645
|
-
TypeRegistry.for(_sm).registerError(CodeStarConnectionsServiceException$, CodeStarConnectionsServiceException);
|
|
646
652
|
var ConnectionList = [1, n0, _CL,
|
|
647
653
|
0, () => Connection$
|
|
648
654
|
];
|
|
@@ -1,8 +1,29 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
3
|
+
export declare var CodeStarConnectionsServiceException$: StaticErrorSchema;
|
|
2
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
3
5
|
export declare var ConcurrentModificationException$: StaticErrorSchema;
|
|
4
6
|
export declare var ConditionalCheckFailedException$: StaticErrorSchema;
|
|
5
7
|
export declare var ConflictException$: StaticErrorSchema;
|
|
8
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
9
|
+
export declare var InvalidInputException$: StaticErrorSchema;
|
|
10
|
+
export declare var LimitExceededException$: StaticErrorSchema;
|
|
11
|
+
export declare var ResourceAlreadyExistsException$: StaticErrorSchema;
|
|
12
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
13
|
+
export declare var ResourceUnavailableException$: StaticErrorSchema;
|
|
14
|
+
export declare var RetryLatestCommitFailedException$: StaticErrorSchema;
|
|
15
|
+
export declare var SyncBlockerDoesNotExistException$: StaticErrorSchema;
|
|
16
|
+
export declare var SyncConfigurationStillExistsException$: StaticErrorSchema;
|
|
17
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
18
|
+
export declare var UnsupportedOperationException$: StaticErrorSchema;
|
|
19
|
+
export declare var UnsupportedProviderTypeException$: StaticErrorSchema;
|
|
20
|
+
export declare var UpdateOutOfSyncException$: StaticErrorSchema;
|
|
21
|
+
/**
|
|
22
|
+
* TypeRegistry instances containing modeled errors.
|
|
23
|
+
* @internal
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
6
27
|
export declare var Connection$: StaticStructureSchema;
|
|
7
28
|
export declare var CreateConnectionInput$: StaticStructureSchema;
|
|
8
29
|
export declare var CreateConnectionOutput$: StaticStructureSchema;
|
|
@@ -35,9 +56,6 @@ export declare var GetSyncBlockerSummaryOutput$: StaticStructureSchema;
|
|
|
35
56
|
export declare var GetSyncConfigurationInput$: StaticStructureSchema;
|
|
36
57
|
export declare var GetSyncConfigurationOutput$: StaticStructureSchema;
|
|
37
58
|
export declare var Host$: StaticStructureSchema;
|
|
38
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
39
|
-
export declare var InvalidInputException$: StaticErrorSchema;
|
|
40
|
-
export declare var LimitExceededException$: StaticErrorSchema;
|
|
41
59
|
export declare var ListConnectionsInput$: StaticStructureSchema;
|
|
42
60
|
export declare var ListConnectionsOutput$: StaticStructureSchema;
|
|
43
61
|
export declare var ListHostsInput$: StaticStructureSchema;
|
|
@@ -54,30 +72,20 @@ export declare var RepositoryLinkInfo$: StaticStructureSchema;
|
|
|
54
72
|
export declare var RepositorySyncAttempt$: StaticStructureSchema;
|
|
55
73
|
export declare var RepositorySyncDefinition$: StaticStructureSchema;
|
|
56
74
|
export declare var RepositorySyncEvent$: StaticStructureSchema;
|
|
57
|
-
export declare var ResourceAlreadyExistsException$: StaticErrorSchema;
|
|
58
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
59
75
|
export declare var ResourceSyncAttempt$: StaticStructureSchema;
|
|
60
76
|
export declare var ResourceSyncEvent$: StaticStructureSchema;
|
|
61
|
-
export declare var ResourceUnavailableException$: StaticErrorSchema;
|
|
62
|
-
export declare var RetryLatestCommitFailedException$: StaticErrorSchema;
|
|
63
77
|
export declare var Revision$: StaticStructureSchema;
|
|
64
78
|
export declare var SyncBlocker$: StaticStructureSchema;
|
|
65
79
|
export declare var SyncBlockerContext$: StaticStructureSchema;
|
|
66
|
-
export declare var SyncBlockerDoesNotExistException$: StaticErrorSchema;
|
|
67
80
|
export declare var SyncBlockerSummary$: StaticStructureSchema;
|
|
68
81
|
export declare var SyncConfiguration$: StaticStructureSchema;
|
|
69
|
-
export declare var SyncConfigurationStillExistsException$: StaticErrorSchema;
|
|
70
82
|
export declare var Tag$: StaticStructureSchema;
|
|
71
83
|
export declare var TagResourceInput$: StaticStructureSchema;
|
|
72
84
|
export declare var TagResourceOutput$: StaticStructureSchema;
|
|
73
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
74
|
-
export declare var UnsupportedOperationException$: StaticErrorSchema;
|
|
75
|
-
export declare var UnsupportedProviderTypeException$: StaticErrorSchema;
|
|
76
85
|
export declare var UntagResourceInput$: StaticStructureSchema;
|
|
77
86
|
export declare var UntagResourceOutput$: StaticStructureSchema;
|
|
78
87
|
export declare var UpdateHostInput$: StaticStructureSchema;
|
|
79
88
|
export declare var UpdateHostOutput$: StaticStructureSchema;
|
|
80
|
-
export declare var UpdateOutOfSyncException$: StaticErrorSchema;
|
|
81
89
|
export declare var UpdateRepositoryLinkInput$: StaticStructureSchema;
|
|
82
90
|
export declare var UpdateRepositoryLinkOutput$: StaticStructureSchema;
|
|
83
91
|
export declare var UpdateSyncBlockerInput$: StaticStructureSchema;
|
|
@@ -85,7 +93,6 @@ export declare var UpdateSyncBlockerOutput$: StaticStructureSchema;
|
|
|
85
93
|
export declare var UpdateSyncConfigurationInput$: StaticStructureSchema;
|
|
86
94
|
export declare var UpdateSyncConfigurationOutput$: StaticStructureSchema;
|
|
87
95
|
export declare var VpcConfiguration$: StaticStructureSchema;
|
|
88
|
-
export declare var CodeStarConnectionsServiceException$: StaticErrorSchema;
|
|
89
96
|
export declare var CreateConnection$: StaticOperationSchema;
|
|
90
97
|
export declare var CreateHost$: StaticOperationSchema;
|
|
91
98
|
export declare var CreateRepositoryLink$: StaticOperationSchema;
|
|
@@ -1,12 +1,28 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
} from "@smithy/types";
|
|
7
|
+
export declare var CodeStarConnectionsServiceException$: StaticErrorSchema;
|
|
6
8
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
7
9
|
export declare var ConcurrentModificationException$: StaticErrorSchema;
|
|
8
10
|
export declare var ConditionalCheckFailedException$: StaticErrorSchema;
|
|
9
11
|
export declare var ConflictException$: StaticErrorSchema;
|
|
12
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
13
|
+
export declare var InvalidInputException$: StaticErrorSchema;
|
|
14
|
+
export declare var LimitExceededException$: StaticErrorSchema;
|
|
15
|
+
export declare var ResourceAlreadyExistsException$: StaticErrorSchema;
|
|
16
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
17
|
+
export declare var ResourceUnavailableException$: StaticErrorSchema;
|
|
18
|
+
export declare var RetryLatestCommitFailedException$: StaticErrorSchema;
|
|
19
|
+
export declare var SyncBlockerDoesNotExistException$: StaticErrorSchema;
|
|
20
|
+
export declare var SyncConfigurationStillExistsException$: StaticErrorSchema;
|
|
21
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
22
|
+
export declare var UnsupportedOperationException$: StaticErrorSchema;
|
|
23
|
+
export declare var UnsupportedProviderTypeException$: StaticErrorSchema;
|
|
24
|
+
export declare var UpdateOutOfSyncException$: StaticErrorSchema;
|
|
25
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
10
26
|
export declare var Connection$: StaticStructureSchema;
|
|
11
27
|
export declare var CreateConnectionInput$: StaticStructureSchema;
|
|
12
28
|
export declare var CreateConnectionOutput$: StaticStructureSchema;
|
|
@@ -39,9 +55,6 @@ export declare var GetSyncBlockerSummaryOutput$: StaticStructureSchema;
|
|
|
39
55
|
export declare var GetSyncConfigurationInput$: StaticStructureSchema;
|
|
40
56
|
export declare var GetSyncConfigurationOutput$: StaticStructureSchema;
|
|
41
57
|
export declare var Host$: StaticStructureSchema;
|
|
42
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
43
|
-
export declare var InvalidInputException$: StaticErrorSchema;
|
|
44
|
-
export declare var LimitExceededException$: StaticErrorSchema;
|
|
45
58
|
export declare var ListConnectionsInput$: StaticStructureSchema;
|
|
46
59
|
export declare var ListConnectionsOutput$: StaticStructureSchema;
|
|
47
60
|
export declare var ListHostsInput$: StaticStructureSchema;
|
|
@@ -58,30 +71,20 @@ export declare var RepositoryLinkInfo$: StaticStructureSchema;
|
|
|
58
71
|
export declare var RepositorySyncAttempt$: StaticStructureSchema;
|
|
59
72
|
export declare var RepositorySyncDefinition$: StaticStructureSchema;
|
|
60
73
|
export declare var RepositorySyncEvent$: StaticStructureSchema;
|
|
61
|
-
export declare var ResourceAlreadyExistsException$: StaticErrorSchema;
|
|
62
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
63
74
|
export declare var ResourceSyncAttempt$: StaticStructureSchema;
|
|
64
75
|
export declare var ResourceSyncEvent$: StaticStructureSchema;
|
|
65
|
-
export declare var ResourceUnavailableException$: StaticErrorSchema;
|
|
66
|
-
export declare var RetryLatestCommitFailedException$: StaticErrorSchema;
|
|
67
76
|
export declare var Revision$: StaticStructureSchema;
|
|
68
77
|
export declare var SyncBlocker$: StaticStructureSchema;
|
|
69
78
|
export declare var SyncBlockerContext$: StaticStructureSchema;
|
|
70
|
-
export declare var SyncBlockerDoesNotExistException$: StaticErrorSchema;
|
|
71
79
|
export declare var SyncBlockerSummary$: StaticStructureSchema;
|
|
72
80
|
export declare var SyncConfiguration$: StaticStructureSchema;
|
|
73
|
-
export declare var SyncConfigurationStillExistsException$: StaticErrorSchema;
|
|
74
81
|
export declare var Tag$: StaticStructureSchema;
|
|
75
82
|
export declare var TagResourceInput$: StaticStructureSchema;
|
|
76
83
|
export declare var TagResourceOutput$: StaticStructureSchema;
|
|
77
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
78
|
-
export declare var UnsupportedOperationException$: StaticErrorSchema;
|
|
79
|
-
export declare var UnsupportedProviderTypeException$: StaticErrorSchema;
|
|
80
84
|
export declare var UntagResourceInput$: StaticStructureSchema;
|
|
81
85
|
export declare var UntagResourceOutput$: StaticStructureSchema;
|
|
82
86
|
export declare var UpdateHostInput$: StaticStructureSchema;
|
|
83
87
|
export declare var UpdateHostOutput$: StaticStructureSchema;
|
|
84
|
-
export declare var UpdateOutOfSyncException$: StaticErrorSchema;
|
|
85
88
|
export declare var UpdateRepositoryLinkInput$: StaticStructureSchema;
|
|
86
89
|
export declare var UpdateRepositoryLinkOutput$: StaticStructureSchema;
|
|
87
90
|
export declare var UpdateSyncBlockerInput$: StaticStructureSchema;
|
|
@@ -89,7 +92,6 @@ export declare var UpdateSyncBlockerOutput$: StaticStructureSchema;
|
|
|
89
92
|
export declare var UpdateSyncConfigurationInput$: StaticStructureSchema;
|
|
90
93
|
export declare var UpdateSyncConfigurationOutput$: StaticStructureSchema;
|
|
91
94
|
export declare var VpcConfiguration$: StaticStructureSchema;
|
|
92
|
-
export declare var CodeStarConnectionsServiceException$: StaticErrorSchema;
|
|
93
95
|
export declare var CreateConnection$: StaticOperationSchema;
|
|
94
96
|
export declare var CreateHost$: StaticOperationSchema;
|
|
95
97
|
export declare var CreateRepositoryLink$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codestar-connections",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codestar Connections Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.988.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-codestar-connections",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.8",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.7",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.8",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.988.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.6",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|