@aws-sdk/client-codestar-connections 3.716.0 → 3.723.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 +244 -176
- package/dist-es/CodeStarConnectionsClient.js +1 -0
- package/dist-es/models/models_0.js +51 -34
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -181,7 +181,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
181
181
|
}, "resolveRuntimeExtensions");
|
|
182
182
|
|
|
183
183
|
// src/CodeStarConnectionsClient.ts
|
|
184
|
-
var
|
|
184
|
+
var CodeStarConnectionsClient = class extends import_smithy_client.Client {
|
|
185
|
+
static {
|
|
186
|
+
__name(this, "CodeStarConnectionsClient");
|
|
187
|
+
}
|
|
188
|
+
/**
|
|
189
|
+
* The resolved configuration of CodeStarConnectionsClient class. This is resolved and normalized from the {@link CodeStarConnectionsClientConfig | constructor configuration interface}.
|
|
190
|
+
*/
|
|
191
|
+
config;
|
|
185
192
|
constructor(...[configuration]) {
|
|
186
193
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
187
194
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -191,7 +198,7 @@ var _CodeStarConnectionsClient = class _CodeStarConnectionsClient extends import
|
|
|
191
198
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
192
199
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
193
200
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
194
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
201
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
195
202
|
super(_config_8);
|
|
196
203
|
this.config = _config_8;
|
|
197
204
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -219,8 +226,6 @@ var _CodeStarConnectionsClient = class _CodeStarConnectionsClient extends import
|
|
|
219
226
|
super.destroy();
|
|
220
227
|
}
|
|
221
228
|
};
|
|
222
|
-
__name(_CodeStarConnectionsClient, "CodeStarConnectionsClient");
|
|
223
|
-
var CodeStarConnectionsClient = _CodeStarConnectionsClient;
|
|
224
229
|
|
|
225
230
|
// src/CodeStarConnections.ts
|
|
226
231
|
|
|
@@ -237,7 +242,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
237
242
|
|
|
238
243
|
// src/models/CodeStarConnectionsServiceException.ts
|
|
239
244
|
|
|
240
|
-
var
|
|
245
|
+
var CodeStarConnectionsServiceException = class _CodeStarConnectionsServiceException extends import_smithy_client.ServiceException {
|
|
246
|
+
static {
|
|
247
|
+
__name(this, "CodeStarConnectionsServiceException");
|
|
248
|
+
}
|
|
241
249
|
/**
|
|
242
250
|
* @internal
|
|
243
251
|
*/
|
|
@@ -246,11 +254,15 @@ var _CodeStarConnectionsServiceException = class _CodeStarConnectionsServiceExce
|
|
|
246
254
|
Object.setPrototypeOf(this, _CodeStarConnectionsServiceException.prototype);
|
|
247
255
|
}
|
|
248
256
|
};
|
|
249
|
-
__name(_CodeStarConnectionsServiceException, "CodeStarConnectionsServiceException");
|
|
250
|
-
var CodeStarConnectionsServiceException = _CodeStarConnectionsServiceException;
|
|
251
257
|
|
|
252
258
|
// src/models/models_0.ts
|
|
253
|
-
var
|
|
259
|
+
var AccessDeniedException = class _AccessDeniedException extends CodeStarConnectionsServiceException {
|
|
260
|
+
static {
|
|
261
|
+
__name(this, "AccessDeniedException");
|
|
262
|
+
}
|
|
263
|
+
name = "AccessDeniedException";
|
|
264
|
+
$fault = "client";
|
|
265
|
+
Message;
|
|
254
266
|
/**
|
|
255
267
|
* @internal
|
|
256
268
|
*/
|
|
@@ -260,14 +272,10 @@ var _AccessDeniedException = class _AccessDeniedException extends CodeStarConnec
|
|
|
260
272
|
$fault: "client",
|
|
261
273
|
...opts
|
|
262
274
|
});
|
|
263
|
-
this.name = "AccessDeniedException";
|
|
264
|
-
this.$fault = "client";
|
|
265
275
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
266
276
|
this.Message = opts.Message;
|
|
267
277
|
}
|
|
268
278
|
};
|
|
269
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
270
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
271
279
|
var BlockerStatus = {
|
|
272
280
|
ACTIVE: "ACTIVE",
|
|
273
281
|
RESOLVED: "RESOLVED"
|
|
@@ -282,7 +290,13 @@ var ProviderType = {
|
|
|
282
290
|
GITLAB: "GitLab",
|
|
283
291
|
GITLAB_SELF_MANAGED: "GitLabSelfManaged"
|
|
284
292
|
};
|
|
285
|
-
var
|
|
293
|
+
var LimitExceededException = class _LimitExceededException extends CodeStarConnectionsServiceException {
|
|
294
|
+
static {
|
|
295
|
+
__name(this, "LimitExceededException");
|
|
296
|
+
}
|
|
297
|
+
name = "LimitExceededException";
|
|
298
|
+
$fault = "client";
|
|
299
|
+
Message;
|
|
286
300
|
/**
|
|
287
301
|
* @internal
|
|
288
302
|
*/
|
|
@@ -292,15 +306,17 @@ var _LimitExceededException = class _LimitExceededException extends CodeStarConn
|
|
|
292
306
|
$fault: "client",
|
|
293
307
|
...opts
|
|
294
308
|
});
|
|
295
|
-
this.name = "LimitExceededException";
|
|
296
|
-
this.$fault = "client";
|
|
297
309
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
298
310
|
this.Message = opts.Message;
|
|
299
311
|
}
|
|
300
312
|
};
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
313
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends CodeStarConnectionsServiceException {
|
|
314
|
+
static {
|
|
315
|
+
__name(this, "ResourceNotFoundException");
|
|
316
|
+
}
|
|
317
|
+
name = "ResourceNotFoundException";
|
|
318
|
+
$fault = "client";
|
|
319
|
+
Message;
|
|
304
320
|
/**
|
|
305
321
|
* @internal
|
|
306
322
|
*/
|
|
@@ -310,15 +326,17 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends CodeSt
|
|
|
310
326
|
$fault: "client",
|
|
311
327
|
...opts
|
|
312
328
|
});
|
|
313
|
-
this.name = "ResourceNotFoundException";
|
|
314
|
-
this.$fault = "client";
|
|
315
329
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
316
330
|
this.Message = opts.Message;
|
|
317
331
|
}
|
|
318
332
|
};
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
333
|
+
var ResourceUnavailableException = class _ResourceUnavailableException extends CodeStarConnectionsServiceException {
|
|
334
|
+
static {
|
|
335
|
+
__name(this, "ResourceUnavailableException");
|
|
336
|
+
}
|
|
337
|
+
name = "ResourceUnavailableException";
|
|
338
|
+
$fault = "client";
|
|
339
|
+
Message;
|
|
322
340
|
/**
|
|
323
341
|
* @internal
|
|
324
342
|
*/
|
|
@@ -328,15 +346,17 @@ var _ResourceUnavailableException = class _ResourceUnavailableException extends
|
|
|
328
346
|
$fault: "client",
|
|
329
347
|
...opts
|
|
330
348
|
});
|
|
331
|
-
this.name = "ResourceUnavailableException";
|
|
332
|
-
this.$fault = "client";
|
|
333
349
|
Object.setPrototypeOf(this, _ResourceUnavailableException.prototype);
|
|
334
350
|
this.Message = opts.Message;
|
|
335
351
|
}
|
|
336
352
|
};
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
353
|
+
var ConcurrentModificationException = class _ConcurrentModificationException extends CodeStarConnectionsServiceException {
|
|
354
|
+
static {
|
|
355
|
+
__name(this, "ConcurrentModificationException");
|
|
356
|
+
}
|
|
357
|
+
name = "ConcurrentModificationException";
|
|
358
|
+
$fault = "client";
|
|
359
|
+
Message;
|
|
340
360
|
/**
|
|
341
361
|
* @internal
|
|
342
362
|
*/
|
|
@@ -346,15 +366,17 @@ var _ConcurrentModificationException = class _ConcurrentModificationException ex
|
|
|
346
366
|
$fault: "client",
|
|
347
367
|
...opts
|
|
348
368
|
});
|
|
349
|
-
this.name = "ConcurrentModificationException";
|
|
350
|
-
this.$fault = "client";
|
|
351
369
|
Object.setPrototypeOf(this, _ConcurrentModificationException.prototype);
|
|
352
370
|
this.Message = opts.Message;
|
|
353
371
|
}
|
|
354
372
|
};
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
373
|
+
var InternalServerException = class _InternalServerException extends CodeStarConnectionsServiceException {
|
|
374
|
+
static {
|
|
375
|
+
__name(this, "InternalServerException");
|
|
376
|
+
}
|
|
377
|
+
name = "InternalServerException";
|
|
378
|
+
$fault = "server";
|
|
379
|
+
Message;
|
|
358
380
|
/**
|
|
359
381
|
* @internal
|
|
360
382
|
*/
|
|
@@ -364,15 +386,17 @@ var _InternalServerException = class _InternalServerException extends CodeStarCo
|
|
|
364
386
|
$fault: "server",
|
|
365
387
|
...opts
|
|
366
388
|
});
|
|
367
|
-
this.name = "InternalServerException";
|
|
368
|
-
this.$fault = "server";
|
|
369
389
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
370
390
|
this.Message = opts.Message;
|
|
371
391
|
}
|
|
372
392
|
};
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
393
|
+
var InvalidInputException = class _InvalidInputException extends CodeStarConnectionsServiceException {
|
|
394
|
+
static {
|
|
395
|
+
__name(this, "InvalidInputException");
|
|
396
|
+
}
|
|
397
|
+
name = "InvalidInputException";
|
|
398
|
+
$fault = "client";
|
|
399
|
+
Message;
|
|
376
400
|
/**
|
|
377
401
|
* @internal
|
|
378
402
|
*/
|
|
@@ -382,15 +406,17 @@ var _InvalidInputException = class _InvalidInputException extends CodeStarConnec
|
|
|
382
406
|
$fault: "client",
|
|
383
407
|
...opts
|
|
384
408
|
});
|
|
385
|
-
this.name = "InvalidInputException";
|
|
386
|
-
this.$fault = "client";
|
|
387
409
|
Object.setPrototypeOf(this, _InvalidInputException.prototype);
|
|
388
410
|
this.Message = opts.Message;
|
|
389
411
|
}
|
|
390
412
|
};
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
413
|
+
var ResourceAlreadyExistsException = class _ResourceAlreadyExistsException extends CodeStarConnectionsServiceException {
|
|
414
|
+
static {
|
|
415
|
+
__name(this, "ResourceAlreadyExistsException");
|
|
416
|
+
}
|
|
417
|
+
name = "ResourceAlreadyExistsException";
|
|
418
|
+
$fault = "client";
|
|
419
|
+
Message;
|
|
394
420
|
/**
|
|
395
421
|
* @internal
|
|
396
422
|
*/
|
|
@@ -400,15 +426,17 @@ var _ResourceAlreadyExistsException = class _ResourceAlreadyExistsException exte
|
|
|
400
426
|
$fault: "client",
|
|
401
427
|
...opts
|
|
402
428
|
});
|
|
403
|
-
this.name = "ResourceAlreadyExistsException";
|
|
404
|
-
this.$fault = "client";
|
|
405
429
|
Object.setPrototypeOf(this, _ResourceAlreadyExistsException.prototype);
|
|
406
430
|
this.Message = opts.Message;
|
|
407
431
|
}
|
|
408
432
|
};
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
433
|
+
var ThrottlingException = class _ThrottlingException extends CodeStarConnectionsServiceException {
|
|
434
|
+
static {
|
|
435
|
+
__name(this, "ThrottlingException");
|
|
436
|
+
}
|
|
437
|
+
name = "ThrottlingException";
|
|
438
|
+
$fault = "client";
|
|
439
|
+
Message;
|
|
412
440
|
/**
|
|
413
441
|
* @internal
|
|
414
442
|
*/
|
|
@@ -418,14 +446,10 @@ var _ThrottlingException = class _ThrottlingException extends CodeStarConnection
|
|
|
418
446
|
$fault: "client",
|
|
419
447
|
...opts
|
|
420
448
|
});
|
|
421
|
-
this.name = "ThrottlingException";
|
|
422
|
-
this.$fault = "client";
|
|
423
449
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
424
450
|
this.Message = opts.Message;
|
|
425
451
|
}
|
|
426
452
|
};
|
|
427
|
-
__name(_ThrottlingException, "ThrottlingException");
|
|
428
|
-
var ThrottlingException = _ThrottlingException;
|
|
429
453
|
var PublishDeploymentStatus = {
|
|
430
454
|
DISABLED: "DISABLED",
|
|
431
455
|
ENABLED: "ENABLED"
|
|
@@ -437,7 +461,13 @@ var TriggerResourceUpdateOn = {
|
|
|
437
461
|
ANY_CHANGE: "ANY_CHANGE",
|
|
438
462
|
FILE_CHANGE: "FILE_CHANGE"
|
|
439
463
|
};
|
|
440
|
-
var
|
|
464
|
+
var SyncConfigurationStillExistsException = class _SyncConfigurationStillExistsException extends CodeStarConnectionsServiceException {
|
|
465
|
+
static {
|
|
466
|
+
__name(this, "SyncConfigurationStillExistsException");
|
|
467
|
+
}
|
|
468
|
+
name = "SyncConfigurationStillExistsException";
|
|
469
|
+
$fault = "client";
|
|
470
|
+
Message;
|
|
441
471
|
/**
|
|
442
472
|
* @internal
|
|
443
473
|
*/
|
|
@@ -447,15 +477,17 @@ var _SyncConfigurationStillExistsException = class _SyncConfigurationStillExists
|
|
|
447
477
|
$fault: "client",
|
|
448
478
|
...opts
|
|
449
479
|
});
|
|
450
|
-
this.name = "SyncConfigurationStillExistsException";
|
|
451
|
-
this.$fault = "client";
|
|
452
480
|
Object.setPrototypeOf(this, _SyncConfigurationStillExistsException.prototype);
|
|
453
481
|
this.Message = opts.Message;
|
|
454
482
|
}
|
|
455
483
|
};
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
484
|
+
var UnsupportedProviderTypeException = class _UnsupportedProviderTypeException extends CodeStarConnectionsServiceException {
|
|
485
|
+
static {
|
|
486
|
+
__name(this, "UnsupportedProviderTypeException");
|
|
487
|
+
}
|
|
488
|
+
name = "UnsupportedProviderTypeException";
|
|
489
|
+
$fault = "client";
|
|
490
|
+
Message;
|
|
459
491
|
/**
|
|
460
492
|
* @internal
|
|
461
493
|
*/
|
|
@@ -465,14 +497,10 @@ var _UnsupportedProviderTypeException = class _UnsupportedProviderTypeException
|
|
|
465
497
|
$fault: "client",
|
|
466
498
|
...opts
|
|
467
499
|
});
|
|
468
|
-
this.name = "UnsupportedProviderTypeException";
|
|
469
|
-
this.$fault = "client";
|
|
470
500
|
Object.setPrototypeOf(this, _UnsupportedProviderTypeException.prototype);
|
|
471
501
|
this.Message = opts.Message;
|
|
472
502
|
}
|
|
473
503
|
};
|
|
474
|
-
__name(_UnsupportedProviderTypeException, "UnsupportedProviderTypeException");
|
|
475
|
-
var UnsupportedProviderTypeException = _UnsupportedProviderTypeException;
|
|
476
504
|
var ConnectionStatus = {
|
|
477
505
|
AVAILABLE: "AVAILABLE",
|
|
478
506
|
ERROR: "ERROR",
|
|
@@ -491,7 +519,13 @@ var ResourceSyncStatus = {
|
|
|
491
519
|
IN_PROGRESS: "IN_PROGRESS",
|
|
492
520
|
SUCCEEDED: "SUCCEEDED"
|
|
493
521
|
};
|
|
494
|
-
var
|
|
522
|
+
var ConflictException = class _ConflictException extends CodeStarConnectionsServiceException {
|
|
523
|
+
static {
|
|
524
|
+
__name(this, "ConflictException");
|
|
525
|
+
}
|
|
526
|
+
name = "ConflictException";
|
|
527
|
+
$fault = "client";
|
|
528
|
+
Message;
|
|
495
529
|
/**
|
|
496
530
|
* @internal
|
|
497
531
|
*/
|
|
@@ -501,15 +535,17 @@ var _ConflictException = class _ConflictException extends CodeStarConnectionsSer
|
|
|
501
535
|
$fault: "client",
|
|
502
536
|
...opts
|
|
503
537
|
});
|
|
504
|
-
this.name = "ConflictException";
|
|
505
|
-
this.$fault = "client";
|
|
506
538
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
507
539
|
this.Message = opts.Message;
|
|
508
540
|
}
|
|
509
541
|
};
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
542
|
+
var UnsupportedOperationException = class _UnsupportedOperationException extends CodeStarConnectionsServiceException {
|
|
543
|
+
static {
|
|
544
|
+
__name(this, "UnsupportedOperationException");
|
|
545
|
+
}
|
|
546
|
+
name = "UnsupportedOperationException";
|
|
547
|
+
$fault = "client";
|
|
548
|
+
Message;
|
|
513
549
|
/**
|
|
514
550
|
* @internal
|
|
515
551
|
*/
|
|
@@ -519,15 +555,17 @@ var _UnsupportedOperationException = class _UnsupportedOperationException extend
|
|
|
519
555
|
$fault: "client",
|
|
520
556
|
...opts
|
|
521
557
|
});
|
|
522
|
-
this.name = "UnsupportedOperationException";
|
|
523
|
-
this.$fault = "client";
|
|
524
558
|
Object.setPrototypeOf(this, _UnsupportedOperationException.prototype);
|
|
525
559
|
this.Message = opts.Message;
|
|
526
560
|
}
|
|
527
561
|
};
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
562
|
+
var ConditionalCheckFailedException = class _ConditionalCheckFailedException extends CodeStarConnectionsServiceException {
|
|
563
|
+
static {
|
|
564
|
+
__name(this, "ConditionalCheckFailedException");
|
|
565
|
+
}
|
|
566
|
+
name = "ConditionalCheckFailedException";
|
|
567
|
+
$fault = "client";
|
|
568
|
+
Message;
|
|
531
569
|
/**
|
|
532
570
|
* @internal
|
|
533
571
|
*/
|
|
@@ -537,15 +575,17 @@ var _ConditionalCheckFailedException = class _ConditionalCheckFailedException ex
|
|
|
537
575
|
$fault: "client",
|
|
538
576
|
...opts
|
|
539
577
|
});
|
|
540
|
-
this.name = "ConditionalCheckFailedException";
|
|
541
|
-
this.$fault = "client";
|
|
542
578
|
Object.setPrototypeOf(this, _ConditionalCheckFailedException.prototype);
|
|
543
579
|
this.Message = opts.Message;
|
|
544
580
|
}
|
|
545
581
|
};
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
582
|
+
var UpdateOutOfSyncException = class _UpdateOutOfSyncException extends CodeStarConnectionsServiceException {
|
|
583
|
+
static {
|
|
584
|
+
__name(this, "UpdateOutOfSyncException");
|
|
585
|
+
}
|
|
586
|
+
name = "UpdateOutOfSyncException";
|
|
587
|
+
$fault = "client";
|
|
588
|
+
Message;
|
|
549
589
|
/**
|
|
550
590
|
* @internal
|
|
551
591
|
*/
|
|
@@ -555,15 +595,17 @@ var _UpdateOutOfSyncException = class _UpdateOutOfSyncException extends CodeStar
|
|
|
555
595
|
$fault: "client",
|
|
556
596
|
...opts
|
|
557
597
|
});
|
|
558
|
-
this.name = "UpdateOutOfSyncException";
|
|
559
|
-
this.$fault = "client";
|
|
560
598
|
Object.setPrototypeOf(this, _UpdateOutOfSyncException.prototype);
|
|
561
599
|
this.Message = opts.Message;
|
|
562
600
|
}
|
|
563
601
|
};
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
602
|
+
var RetryLatestCommitFailedException = class _RetryLatestCommitFailedException extends CodeStarConnectionsServiceException {
|
|
603
|
+
static {
|
|
604
|
+
__name(this, "RetryLatestCommitFailedException");
|
|
605
|
+
}
|
|
606
|
+
name = "RetryLatestCommitFailedException";
|
|
607
|
+
$fault = "server";
|
|
608
|
+
Message;
|
|
567
609
|
/**
|
|
568
610
|
* @internal
|
|
569
611
|
*/
|
|
@@ -573,15 +615,17 @@ var _RetryLatestCommitFailedException = class _RetryLatestCommitFailedException
|
|
|
573
615
|
$fault: "server",
|
|
574
616
|
...opts
|
|
575
617
|
});
|
|
576
|
-
this.name = "RetryLatestCommitFailedException";
|
|
577
|
-
this.$fault = "server";
|
|
578
618
|
Object.setPrototypeOf(this, _RetryLatestCommitFailedException.prototype);
|
|
579
619
|
this.Message = opts.Message;
|
|
580
620
|
}
|
|
581
621
|
};
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
622
|
+
var SyncBlockerDoesNotExistException = class _SyncBlockerDoesNotExistException extends CodeStarConnectionsServiceException {
|
|
623
|
+
static {
|
|
624
|
+
__name(this, "SyncBlockerDoesNotExistException");
|
|
625
|
+
}
|
|
626
|
+
name = "SyncBlockerDoesNotExistException";
|
|
627
|
+
$fault = "client";
|
|
628
|
+
Message;
|
|
585
629
|
/**
|
|
586
630
|
* @internal
|
|
587
631
|
*/
|
|
@@ -591,14 +635,10 @@ var _SyncBlockerDoesNotExistException = class _SyncBlockerDoesNotExistException
|
|
|
591
635
|
$fault: "client",
|
|
592
636
|
...opts
|
|
593
637
|
});
|
|
594
|
-
this.name = "SyncBlockerDoesNotExistException";
|
|
595
|
-
this.$fault = "client";
|
|
596
638
|
Object.setPrototypeOf(this, _SyncBlockerDoesNotExistException.prototype);
|
|
597
639
|
this.Message = opts.Message;
|
|
598
640
|
}
|
|
599
641
|
};
|
|
600
|
-
__name(_SyncBlockerDoesNotExistException, "SyncBlockerDoesNotExistException");
|
|
601
|
-
var SyncBlockerDoesNotExistException = _SyncBlockerDoesNotExistException;
|
|
602
642
|
|
|
603
643
|
// src/protocols/Aws_json1_0.ts
|
|
604
644
|
var se_CreateConnectionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -1462,379 +1502,406 @@ function sharedHeaders(operation) {
|
|
|
1462
1502
|
__name(sharedHeaders, "sharedHeaders");
|
|
1463
1503
|
|
|
1464
1504
|
// src/commands/CreateConnectionCommand.ts
|
|
1465
|
-
var
|
|
1505
|
+
var CreateConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1466
1506
|
return [
|
|
1467
1507
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1468
1508
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1469
1509
|
];
|
|
1470
1510
|
}).s("CodeStar_connections_20191201", "CreateConnection", {}).n("CodeStarConnectionsClient", "CreateConnectionCommand").f(void 0, void 0).ser(se_CreateConnectionCommand).de(de_CreateConnectionCommand).build() {
|
|
1511
|
+
static {
|
|
1512
|
+
__name(this, "CreateConnectionCommand");
|
|
1513
|
+
}
|
|
1471
1514
|
};
|
|
1472
|
-
__name(_CreateConnectionCommand, "CreateConnectionCommand");
|
|
1473
|
-
var CreateConnectionCommand = _CreateConnectionCommand;
|
|
1474
1515
|
|
|
1475
1516
|
// src/commands/CreateHostCommand.ts
|
|
1476
1517
|
|
|
1477
1518
|
|
|
1478
1519
|
|
|
1479
|
-
var
|
|
1520
|
+
var CreateHostCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1480
1521
|
return [
|
|
1481
1522
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1482
1523
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1483
1524
|
];
|
|
1484
1525
|
}).s("CodeStar_connections_20191201", "CreateHost", {}).n("CodeStarConnectionsClient", "CreateHostCommand").f(void 0, void 0).ser(se_CreateHostCommand).de(de_CreateHostCommand).build() {
|
|
1526
|
+
static {
|
|
1527
|
+
__name(this, "CreateHostCommand");
|
|
1528
|
+
}
|
|
1485
1529
|
};
|
|
1486
|
-
__name(_CreateHostCommand, "CreateHostCommand");
|
|
1487
|
-
var CreateHostCommand = _CreateHostCommand;
|
|
1488
1530
|
|
|
1489
1531
|
// src/commands/CreateRepositoryLinkCommand.ts
|
|
1490
1532
|
|
|
1491
1533
|
|
|
1492
1534
|
|
|
1493
|
-
var
|
|
1535
|
+
var CreateRepositoryLinkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1494
1536
|
return [
|
|
1495
1537
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1496
1538
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1497
1539
|
];
|
|
1498
1540
|
}).s("CodeStar_connections_20191201", "CreateRepositoryLink", {}).n("CodeStarConnectionsClient", "CreateRepositoryLinkCommand").f(void 0, void 0).ser(se_CreateRepositoryLinkCommand).de(de_CreateRepositoryLinkCommand).build() {
|
|
1541
|
+
static {
|
|
1542
|
+
__name(this, "CreateRepositoryLinkCommand");
|
|
1543
|
+
}
|
|
1499
1544
|
};
|
|
1500
|
-
__name(_CreateRepositoryLinkCommand, "CreateRepositoryLinkCommand");
|
|
1501
|
-
var CreateRepositoryLinkCommand = _CreateRepositoryLinkCommand;
|
|
1502
1545
|
|
|
1503
1546
|
// src/commands/CreateSyncConfigurationCommand.ts
|
|
1504
1547
|
|
|
1505
1548
|
|
|
1506
1549
|
|
|
1507
|
-
var
|
|
1550
|
+
var CreateSyncConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1508
1551
|
return [
|
|
1509
1552
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1510
1553
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1511
1554
|
];
|
|
1512
1555
|
}).s("CodeStar_connections_20191201", "CreateSyncConfiguration", {}).n("CodeStarConnectionsClient", "CreateSyncConfigurationCommand").f(void 0, void 0).ser(se_CreateSyncConfigurationCommand).de(de_CreateSyncConfigurationCommand).build() {
|
|
1556
|
+
static {
|
|
1557
|
+
__name(this, "CreateSyncConfigurationCommand");
|
|
1558
|
+
}
|
|
1513
1559
|
};
|
|
1514
|
-
__name(_CreateSyncConfigurationCommand, "CreateSyncConfigurationCommand");
|
|
1515
|
-
var CreateSyncConfigurationCommand = _CreateSyncConfigurationCommand;
|
|
1516
1560
|
|
|
1517
1561
|
// src/commands/DeleteConnectionCommand.ts
|
|
1518
1562
|
|
|
1519
1563
|
|
|
1520
1564
|
|
|
1521
|
-
var
|
|
1565
|
+
var DeleteConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1522
1566
|
return [
|
|
1523
1567
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1524
1568
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1525
1569
|
];
|
|
1526
1570
|
}).s("CodeStar_connections_20191201", "DeleteConnection", {}).n("CodeStarConnectionsClient", "DeleteConnectionCommand").f(void 0, void 0).ser(se_DeleteConnectionCommand).de(de_DeleteConnectionCommand).build() {
|
|
1571
|
+
static {
|
|
1572
|
+
__name(this, "DeleteConnectionCommand");
|
|
1573
|
+
}
|
|
1527
1574
|
};
|
|
1528
|
-
__name(_DeleteConnectionCommand, "DeleteConnectionCommand");
|
|
1529
|
-
var DeleteConnectionCommand = _DeleteConnectionCommand;
|
|
1530
1575
|
|
|
1531
1576
|
// src/commands/DeleteHostCommand.ts
|
|
1532
1577
|
|
|
1533
1578
|
|
|
1534
1579
|
|
|
1535
|
-
var
|
|
1580
|
+
var DeleteHostCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1536
1581
|
return [
|
|
1537
1582
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1538
1583
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1539
1584
|
];
|
|
1540
1585
|
}).s("CodeStar_connections_20191201", "DeleteHost", {}).n("CodeStarConnectionsClient", "DeleteHostCommand").f(void 0, void 0).ser(se_DeleteHostCommand).de(de_DeleteHostCommand).build() {
|
|
1586
|
+
static {
|
|
1587
|
+
__name(this, "DeleteHostCommand");
|
|
1588
|
+
}
|
|
1541
1589
|
};
|
|
1542
|
-
__name(_DeleteHostCommand, "DeleteHostCommand");
|
|
1543
|
-
var DeleteHostCommand = _DeleteHostCommand;
|
|
1544
1590
|
|
|
1545
1591
|
// src/commands/DeleteRepositoryLinkCommand.ts
|
|
1546
1592
|
|
|
1547
1593
|
|
|
1548
1594
|
|
|
1549
|
-
var
|
|
1595
|
+
var DeleteRepositoryLinkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1550
1596
|
return [
|
|
1551
1597
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1552
1598
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1553
1599
|
];
|
|
1554
1600
|
}).s("CodeStar_connections_20191201", "DeleteRepositoryLink", {}).n("CodeStarConnectionsClient", "DeleteRepositoryLinkCommand").f(void 0, void 0).ser(se_DeleteRepositoryLinkCommand).de(de_DeleteRepositoryLinkCommand).build() {
|
|
1601
|
+
static {
|
|
1602
|
+
__name(this, "DeleteRepositoryLinkCommand");
|
|
1603
|
+
}
|
|
1555
1604
|
};
|
|
1556
|
-
__name(_DeleteRepositoryLinkCommand, "DeleteRepositoryLinkCommand");
|
|
1557
|
-
var DeleteRepositoryLinkCommand = _DeleteRepositoryLinkCommand;
|
|
1558
1605
|
|
|
1559
1606
|
// src/commands/DeleteSyncConfigurationCommand.ts
|
|
1560
1607
|
|
|
1561
1608
|
|
|
1562
1609
|
|
|
1563
|
-
var
|
|
1610
|
+
var DeleteSyncConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1564
1611
|
return [
|
|
1565
1612
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1566
1613
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1567
1614
|
];
|
|
1568
1615
|
}).s("CodeStar_connections_20191201", "DeleteSyncConfiguration", {}).n("CodeStarConnectionsClient", "DeleteSyncConfigurationCommand").f(void 0, void 0).ser(se_DeleteSyncConfigurationCommand).de(de_DeleteSyncConfigurationCommand).build() {
|
|
1616
|
+
static {
|
|
1617
|
+
__name(this, "DeleteSyncConfigurationCommand");
|
|
1618
|
+
}
|
|
1569
1619
|
};
|
|
1570
|
-
__name(_DeleteSyncConfigurationCommand, "DeleteSyncConfigurationCommand");
|
|
1571
|
-
var DeleteSyncConfigurationCommand = _DeleteSyncConfigurationCommand;
|
|
1572
1620
|
|
|
1573
1621
|
// src/commands/GetConnectionCommand.ts
|
|
1574
1622
|
|
|
1575
1623
|
|
|
1576
1624
|
|
|
1577
|
-
var
|
|
1625
|
+
var GetConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1578
1626
|
return [
|
|
1579
1627
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1580
1628
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1581
1629
|
];
|
|
1582
1630
|
}).s("CodeStar_connections_20191201", "GetConnection", {}).n("CodeStarConnectionsClient", "GetConnectionCommand").f(void 0, void 0).ser(se_GetConnectionCommand).de(de_GetConnectionCommand).build() {
|
|
1631
|
+
static {
|
|
1632
|
+
__name(this, "GetConnectionCommand");
|
|
1633
|
+
}
|
|
1583
1634
|
};
|
|
1584
|
-
__name(_GetConnectionCommand, "GetConnectionCommand");
|
|
1585
|
-
var GetConnectionCommand = _GetConnectionCommand;
|
|
1586
1635
|
|
|
1587
1636
|
// src/commands/GetHostCommand.ts
|
|
1588
1637
|
|
|
1589
1638
|
|
|
1590
1639
|
|
|
1591
|
-
var
|
|
1640
|
+
var GetHostCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1592
1641
|
return [
|
|
1593
1642
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1594
1643
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1595
1644
|
];
|
|
1596
1645
|
}).s("CodeStar_connections_20191201", "GetHost", {}).n("CodeStarConnectionsClient", "GetHostCommand").f(void 0, void 0).ser(se_GetHostCommand).de(de_GetHostCommand).build() {
|
|
1646
|
+
static {
|
|
1647
|
+
__name(this, "GetHostCommand");
|
|
1648
|
+
}
|
|
1597
1649
|
};
|
|
1598
|
-
__name(_GetHostCommand, "GetHostCommand");
|
|
1599
|
-
var GetHostCommand = _GetHostCommand;
|
|
1600
1650
|
|
|
1601
1651
|
// src/commands/GetRepositoryLinkCommand.ts
|
|
1602
1652
|
|
|
1603
1653
|
|
|
1604
1654
|
|
|
1605
|
-
var
|
|
1655
|
+
var GetRepositoryLinkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1606
1656
|
return [
|
|
1607
1657
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1608
1658
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1609
1659
|
];
|
|
1610
1660
|
}).s("CodeStar_connections_20191201", "GetRepositoryLink", {}).n("CodeStarConnectionsClient", "GetRepositoryLinkCommand").f(void 0, void 0).ser(se_GetRepositoryLinkCommand).de(de_GetRepositoryLinkCommand).build() {
|
|
1661
|
+
static {
|
|
1662
|
+
__name(this, "GetRepositoryLinkCommand");
|
|
1663
|
+
}
|
|
1611
1664
|
};
|
|
1612
|
-
__name(_GetRepositoryLinkCommand, "GetRepositoryLinkCommand");
|
|
1613
|
-
var GetRepositoryLinkCommand = _GetRepositoryLinkCommand;
|
|
1614
1665
|
|
|
1615
1666
|
// src/commands/GetRepositorySyncStatusCommand.ts
|
|
1616
1667
|
|
|
1617
1668
|
|
|
1618
1669
|
|
|
1619
|
-
var
|
|
1670
|
+
var GetRepositorySyncStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1620
1671
|
return [
|
|
1621
1672
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1622
1673
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1623
1674
|
];
|
|
1624
1675
|
}).s("CodeStar_connections_20191201", "GetRepositorySyncStatus", {}).n("CodeStarConnectionsClient", "GetRepositorySyncStatusCommand").f(void 0, void 0).ser(se_GetRepositorySyncStatusCommand).de(de_GetRepositorySyncStatusCommand).build() {
|
|
1676
|
+
static {
|
|
1677
|
+
__name(this, "GetRepositorySyncStatusCommand");
|
|
1678
|
+
}
|
|
1625
1679
|
};
|
|
1626
|
-
__name(_GetRepositorySyncStatusCommand, "GetRepositorySyncStatusCommand");
|
|
1627
|
-
var GetRepositorySyncStatusCommand = _GetRepositorySyncStatusCommand;
|
|
1628
1680
|
|
|
1629
1681
|
// src/commands/GetResourceSyncStatusCommand.ts
|
|
1630
1682
|
|
|
1631
1683
|
|
|
1632
1684
|
|
|
1633
|
-
var
|
|
1685
|
+
var GetResourceSyncStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1634
1686
|
return [
|
|
1635
1687
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1636
1688
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1637
1689
|
];
|
|
1638
1690
|
}).s("CodeStar_connections_20191201", "GetResourceSyncStatus", {}).n("CodeStarConnectionsClient", "GetResourceSyncStatusCommand").f(void 0, void 0).ser(se_GetResourceSyncStatusCommand).de(de_GetResourceSyncStatusCommand).build() {
|
|
1691
|
+
static {
|
|
1692
|
+
__name(this, "GetResourceSyncStatusCommand");
|
|
1693
|
+
}
|
|
1639
1694
|
};
|
|
1640
|
-
__name(_GetResourceSyncStatusCommand, "GetResourceSyncStatusCommand");
|
|
1641
|
-
var GetResourceSyncStatusCommand = _GetResourceSyncStatusCommand;
|
|
1642
1695
|
|
|
1643
1696
|
// src/commands/GetSyncBlockerSummaryCommand.ts
|
|
1644
1697
|
|
|
1645
1698
|
|
|
1646
1699
|
|
|
1647
|
-
var
|
|
1700
|
+
var GetSyncBlockerSummaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1648
1701
|
return [
|
|
1649
1702
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1650
1703
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1651
1704
|
];
|
|
1652
1705
|
}).s("CodeStar_connections_20191201", "GetSyncBlockerSummary", {}).n("CodeStarConnectionsClient", "GetSyncBlockerSummaryCommand").f(void 0, void 0).ser(se_GetSyncBlockerSummaryCommand).de(de_GetSyncBlockerSummaryCommand).build() {
|
|
1706
|
+
static {
|
|
1707
|
+
__name(this, "GetSyncBlockerSummaryCommand");
|
|
1708
|
+
}
|
|
1653
1709
|
};
|
|
1654
|
-
__name(_GetSyncBlockerSummaryCommand, "GetSyncBlockerSummaryCommand");
|
|
1655
|
-
var GetSyncBlockerSummaryCommand = _GetSyncBlockerSummaryCommand;
|
|
1656
1710
|
|
|
1657
1711
|
// src/commands/GetSyncConfigurationCommand.ts
|
|
1658
1712
|
|
|
1659
1713
|
|
|
1660
1714
|
|
|
1661
|
-
var
|
|
1715
|
+
var GetSyncConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1662
1716
|
return [
|
|
1663
1717
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1664
1718
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1665
1719
|
];
|
|
1666
1720
|
}).s("CodeStar_connections_20191201", "GetSyncConfiguration", {}).n("CodeStarConnectionsClient", "GetSyncConfigurationCommand").f(void 0, void 0).ser(se_GetSyncConfigurationCommand).de(de_GetSyncConfigurationCommand).build() {
|
|
1721
|
+
static {
|
|
1722
|
+
__name(this, "GetSyncConfigurationCommand");
|
|
1723
|
+
}
|
|
1667
1724
|
};
|
|
1668
|
-
__name(_GetSyncConfigurationCommand, "GetSyncConfigurationCommand");
|
|
1669
|
-
var GetSyncConfigurationCommand = _GetSyncConfigurationCommand;
|
|
1670
1725
|
|
|
1671
1726
|
// src/commands/ListConnectionsCommand.ts
|
|
1672
1727
|
|
|
1673
1728
|
|
|
1674
1729
|
|
|
1675
|
-
var
|
|
1730
|
+
var ListConnectionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1676
1731
|
return [
|
|
1677
1732
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1678
1733
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1679
1734
|
];
|
|
1680
1735
|
}).s("CodeStar_connections_20191201", "ListConnections", {}).n("CodeStarConnectionsClient", "ListConnectionsCommand").f(void 0, void 0).ser(se_ListConnectionsCommand).de(de_ListConnectionsCommand).build() {
|
|
1736
|
+
static {
|
|
1737
|
+
__name(this, "ListConnectionsCommand");
|
|
1738
|
+
}
|
|
1681
1739
|
};
|
|
1682
|
-
__name(_ListConnectionsCommand, "ListConnectionsCommand");
|
|
1683
|
-
var ListConnectionsCommand = _ListConnectionsCommand;
|
|
1684
1740
|
|
|
1685
1741
|
// src/commands/ListHostsCommand.ts
|
|
1686
1742
|
|
|
1687
1743
|
|
|
1688
1744
|
|
|
1689
|
-
var
|
|
1745
|
+
var ListHostsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1690
1746
|
return [
|
|
1691
1747
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1692
1748
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1693
1749
|
];
|
|
1694
1750
|
}).s("CodeStar_connections_20191201", "ListHosts", {}).n("CodeStarConnectionsClient", "ListHostsCommand").f(void 0, void 0).ser(se_ListHostsCommand).de(de_ListHostsCommand).build() {
|
|
1751
|
+
static {
|
|
1752
|
+
__name(this, "ListHostsCommand");
|
|
1753
|
+
}
|
|
1695
1754
|
};
|
|
1696
|
-
__name(_ListHostsCommand, "ListHostsCommand");
|
|
1697
|
-
var ListHostsCommand = _ListHostsCommand;
|
|
1698
1755
|
|
|
1699
1756
|
// src/commands/ListRepositoryLinksCommand.ts
|
|
1700
1757
|
|
|
1701
1758
|
|
|
1702
1759
|
|
|
1703
|
-
var
|
|
1760
|
+
var ListRepositoryLinksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1704
1761
|
return [
|
|
1705
1762
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1706
1763
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1707
1764
|
];
|
|
1708
1765
|
}).s("CodeStar_connections_20191201", "ListRepositoryLinks", {}).n("CodeStarConnectionsClient", "ListRepositoryLinksCommand").f(void 0, void 0).ser(se_ListRepositoryLinksCommand).de(de_ListRepositoryLinksCommand).build() {
|
|
1766
|
+
static {
|
|
1767
|
+
__name(this, "ListRepositoryLinksCommand");
|
|
1768
|
+
}
|
|
1709
1769
|
};
|
|
1710
|
-
__name(_ListRepositoryLinksCommand, "ListRepositoryLinksCommand");
|
|
1711
|
-
var ListRepositoryLinksCommand = _ListRepositoryLinksCommand;
|
|
1712
1770
|
|
|
1713
1771
|
// src/commands/ListRepositorySyncDefinitionsCommand.ts
|
|
1714
1772
|
|
|
1715
1773
|
|
|
1716
1774
|
|
|
1717
|
-
var
|
|
1775
|
+
var ListRepositorySyncDefinitionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1718
1776
|
return [
|
|
1719
1777
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1720
1778
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1721
1779
|
];
|
|
1722
1780
|
}).s("CodeStar_connections_20191201", "ListRepositorySyncDefinitions", {}).n("CodeStarConnectionsClient", "ListRepositorySyncDefinitionsCommand").f(void 0, void 0).ser(se_ListRepositorySyncDefinitionsCommand).de(de_ListRepositorySyncDefinitionsCommand).build() {
|
|
1781
|
+
static {
|
|
1782
|
+
__name(this, "ListRepositorySyncDefinitionsCommand");
|
|
1783
|
+
}
|
|
1723
1784
|
};
|
|
1724
|
-
__name(_ListRepositorySyncDefinitionsCommand, "ListRepositorySyncDefinitionsCommand");
|
|
1725
|
-
var ListRepositorySyncDefinitionsCommand = _ListRepositorySyncDefinitionsCommand;
|
|
1726
1785
|
|
|
1727
1786
|
// src/commands/ListSyncConfigurationsCommand.ts
|
|
1728
1787
|
|
|
1729
1788
|
|
|
1730
1789
|
|
|
1731
|
-
var
|
|
1790
|
+
var ListSyncConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1732
1791
|
return [
|
|
1733
1792
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1734
1793
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1735
1794
|
];
|
|
1736
1795
|
}).s("CodeStar_connections_20191201", "ListSyncConfigurations", {}).n("CodeStarConnectionsClient", "ListSyncConfigurationsCommand").f(void 0, void 0).ser(se_ListSyncConfigurationsCommand).de(de_ListSyncConfigurationsCommand).build() {
|
|
1796
|
+
static {
|
|
1797
|
+
__name(this, "ListSyncConfigurationsCommand");
|
|
1798
|
+
}
|
|
1737
1799
|
};
|
|
1738
|
-
__name(_ListSyncConfigurationsCommand, "ListSyncConfigurationsCommand");
|
|
1739
|
-
var ListSyncConfigurationsCommand = _ListSyncConfigurationsCommand;
|
|
1740
1800
|
|
|
1741
1801
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1742
1802
|
|
|
1743
1803
|
|
|
1744
1804
|
|
|
1745
|
-
var
|
|
1805
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1746
1806
|
return [
|
|
1747
1807
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1748
1808
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1749
1809
|
];
|
|
1750
1810
|
}).s("CodeStar_connections_20191201", "ListTagsForResource", {}).n("CodeStarConnectionsClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1811
|
+
static {
|
|
1812
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1813
|
+
}
|
|
1751
1814
|
};
|
|
1752
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1753
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1754
1815
|
|
|
1755
1816
|
// src/commands/TagResourceCommand.ts
|
|
1756
1817
|
|
|
1757
1818
|
|
|
1758
1819
|
|
|
1759
|
-
var
|
|
1820
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1760
1821
|
return [
|
|
1761
1822
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1762
1823
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1763
1824
|
];
|
|
1764
1825
|
}).s("CodeStar_connections_20191201", "TagResource", {}).n("CodeStarConnectionsClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1826
|
+
static {
|
|
1827
|
+
__name(this, "TagResourceCommand");
|
|
1828
|
+
}
|
|
1765
1829
|
};
|
|
1766
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1767
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1768
1830
|
|
|
1769
1831
|
// src/commands/UntagResourceCommand.ts
|
|
1770
1832
|
|
|
1771
1833
|
|
|
1772
1834
|
|
|
1773
|
-
var
|
|
1835
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1774
1836
|
return [
|
|
1775
1837
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1776
1838
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1777
1839
|
];
|
|
1778
1840
|
}).s("CodeStar_connections_20191201", "UntagResource", {}).n("CodeStarConnectionsClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1841
|
+
static {
|
|
1842
|
+
__name(this, "UntagResourceCommand");
|
|
1843
|
+
}
|
|
1779
1844
|
};
|
|
1780
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1781
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1782
1845
|
|
|
1783
1846
|
// src/commands/UpdateHostCommand.ts
|
|
1784
1847
|
|
|
1785
1848
|
|
|
1786
1849
|
|
|
1787
|
-
var
|
|
1850
|
+
var UpdateHostCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1788
1851
|
return [
|
|
1789
1852
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1790
1853
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1791
1854
|
];
|
|
1792
1855
|
}).s("CodeStar_connections_20191201", "UpdateHost", {}).n("CodeStarConnectionsClient", "UpdateHostCommand").f(void 0, void 0).ser(se_UpdateHostCommand).de(de_UpdateHostCommand).build() {
|
|
1856
|
+
static {
|
|
1857
|
+
__name(this, "UpdateHostCommand");
|
|
1858
|
+
}
|
|
1793
1859
|
};
|
|
1794
|
-
__name(_UpdateHostCommand, "UpdateHostCommand");
|
|
1795
|
-
var UpdateHostCommand = _UpdateHostCommand;
|
|
1796
1860
|
|
|
1797
1861
|
// src/commands/UpdateRepositoryLinkCommand.ts
|
|
1798
1862
|
|
|
1799
1863
|
|
|
1800
1864
|
|
|
1801
|
-
var
|
|
1865
|
+
var UpdateRepositoryLinkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1802
1866
|
return [
|
|
1803
1867
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1804
1868
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1805
1869
|
];
|
|
1806
1870
|
}).s("CodeStar_connections_20191201", "UpdateRepositoryLink", {}).n("CodeStarConnectionsClient", "UpdateRepositoryLinkCommand").f(void 0, void 0).ser(se_UpdateRepositoryLinkCommand).de(de_UpdateRepositoryLinkCommand).build() {
|
|
1871
|
+
static {
|
|
1872
|
+
__name(this, "UpdateRepositoryLinkCommand");
|
|
1873
|
+
}
|
|
1807
1874
|
};
|
|
1808
|
-
__name(_UpdateRepositoryLinkCommand, "UpdateRepositoryLinkCommand");
|
|
1809
|
-
var UpdateRepositoryLinkCommand = _UpdateRepositoryLinkCommand;
|
|
1810
1875
|
|
|
1811
1876
|
// src/commands/UpdateSyncBlockerCommand.ts
|
|
1812
1877
|
|
|
1813
1878
|
|
|
1814
1879
|
|
|
1815
|
-
var
|
|
1880
|
+
var UpdateSyncBlockerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1816
1881
|
return [
|
|
1817
1882
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1818
1883
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1819
1884
|
];
|
|
1820
1885
|
}).s("CodeStar_connections_20191201", "UpdateSyncBlocker", {}).n("CodeStarConnectionsClient", "UpdateSyncBlockerCommand").f(void 0, void 0).ser(se_UpdateSyncBlockerCommand).de(de_UpdateSyncBlockerCommand).build() {
|
|
1886
|
+
static {
|
|
1887
|
+
__name(this, "UpdateSyncBlockerCommand");
|
|
1888
|
+
}
|
|
1821
1889
|
};
|
|
1822
|
-
__name(_UpdateSyncBlockerCommand, "UpdateSyncBlockerCommand");
|
|
1823
|
-
var UpdateSyncBlockerCommand = _UpdateSyncBlockerCommand;
|
|
1824
1890
|
|
|
1825
1891
|
// src/commands/UpdateSyncConfigurationCommand.ts
|
|
1826
1892
|
|
|
1827
1893
|
|
|
1828
1894
|
|
|
1829
|
-
var
|
|
1895
|
+
var UpdateSyncConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1830
1896
|
return [
|
|
1831
1897
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1832
1898
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1833
1899
|
];
|
|
1834
1900
|
}).s("CodeStar_connections_20191201", "UpdateSyncConfiguration", {}).n("CodeStarConnectionsClient", "UpdateSyncConfigurationCommand").f(void 0, void 0).ser(se_UpdateSyncConfigurationCommand).de(de_UpdateSyncConfigurationCommand).build() {
|
|
1901
|
+
static {
|
|
1902
|
+
__name(this, "UpdateSyncConfigurationCommand");
|
|
1903
|
+
}
|
|
1835
1904
|
};
|
|
1836
|
-
__name(_UpdateSyncConfigurationCommand, "UpdateSyncConfigurationCommand");
|
|
1837
|
-
var UpdateSyncConfigurationCommand = _UpdateSyncConfigurationCommand;
|
|
1838
1905
|
|
|
1839
1906
|
// src/CodeStarConnections.ts
|
|
1840
1907
|
var commands = {
|
|
@@ -1866,10 +1933,11 @@ var commands = {
|
|
|
1866
1933
|
UpdateSyncBlockerCommand,
|
|
1867
1934
|
UpdateSyncConfigurationCommand
|
|
1868
1935
|
};
|
|
1869
|
-
var
|
|
1936
|
+
var CodeStarConnections = class extends CodeStarConnectionsClient {
|
|
1937
|
+
static {
|
|
1938
|
+
__name(this, "CodeStarConnections");
|
|
1939
|
+
}
|
|
1870
1940
|
};
|
|
1871
|
-
__name(_CodeStarConnections, "CodeStarConnections");
|
|
1872
|
-
var CodeStarConnections = _CodeStarConnections;
|
|
1873
1941
|
(0, import_smithy_client.createAggregatedClient)(commands, CodeStarConnections);
|
|
1874
1942
|
|
|
1875
1943
|
// src/pagination/ListConnectionsPaginator.ts
|