@aws-sdk/client-codeartifact 3.296.0 → 3.297.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/Codeartifact.d.ts +39 -0
- package/dist-types/CodeartifactClient.d.ts +24 -4
- package/dist-types/commands/AssociateExternalConnectionCommand.d.ts +16 -0
- package/dist-types/commands/CopyPackageVersionsCommand.d.ts +16 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +16 -0
- package/dist-types/commands/CreateRepositoryCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDomainPermissionsPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeletePackageCommand.d.ts +16 -0
- package/dist-types/commands/DeletePackageVersionsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRepositoryCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRepositoryPermissionsPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +16 -0
- package/dist-types/commands/DescribePackageCommand.d.ts +16 -0
- package/dist-types/commands/DescribePackageVersionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRepositoryCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateExternalConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DisposePackageVersionsCommand.d.ts +16 -0
- package/dist-types/commands/GetAuthorizationTokenCommand.d.ts +16 -0
- package/dist-types/commands/GetDomainPermissionsPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetPackageVersionAssetCommand.d.ts +16 -0
- package/dist-types/commands/GetPackageVersionReadmeCommand.d.ts +16 -0
- package/dist-types/commands/GetRepositoryEndpointCommand.d.ts +16 -0
- package/dist-types/commands/GetRepositoryPermissionsPolicyCommand.d.ts +16 -0
- package/dist-types/commands/ListDomainsCommand.d.ts +16 -0
- package/dist-types/commands/ListPackageVersionAssetsCommand.d.ts +16 -0
- package/dist-types/commands/ListPackageVersionDependenciesCommand.d.ts +16 -0
- package/dist-types/commands/ListPackageVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListPackagesCommand.d.ts +16 -0
- package/dist-types/commands/ListRepositoriesCommand.d.ts +16 -0
- package/dist-types/commands/ListRepositoriesInDomainCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PublishPackageVersionCommand.d.ts +17 -2
- package/dist-types/commands/PutDomainPermissionsPolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutPackageOriginConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/PutRepositoryPermissionsPolicyCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePackageVersionsStatusCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRepositoryCommand.d.ts +16 -0
- package/dist-types/models/CodeartifactServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +294 -1
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListDomainsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPackageVersionAssetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPackageVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPackagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRepositoriesInDomainPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRepositoriesPaginator.d.ts +3 -0
- package/dist-types/ts3.4/commands/PublishPackageVersionCommand.d.ts +1 -2
- package/package.json +3 -3
|
@@ -39,6 +39,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
39
39
|
import { UpdatePackageVersionsStatusCommandInput, UpdatePackageVersionsStatusCommandOutput } from "./commands/UpdatePackageVersionsStatusCommand";
|
|
40
40
|
import { UpdateRepositoryCommandInput, UpdateRepositoryCommandOutput } from "./commands/UpdateRepositoryCommand";
|
|
41
41
|
/**
|
|
42
|
+
* @public
|
|
42
43
|
* <p> CodeArtifact is a fully managed artifact repository compatible with language-native
|
|
43
44
|
* package managers and build tools such as npm, Apache Maven, pip, and dotnet. You can use CodeArtifact to
|
|
44
45
|
* share packages with development teams and pull packages. Packages can be pulled from both
|
|
@@ -316,6 +317,7 @@ import { UpdateRepositoryCommandInput, UpdateRepositoryCommandOutput } from "./c
|
|
|
316
317
|
*/
|
|
317
318
|
export declare class Codeartifact extends CodeartifactClient {
|
|
318
319
|
/**
|
|
320
|
+
* @public
|
|
319
321
|
* <p>Adds an existing external connection to a repository. One external connection is allowed
|
|
320
322
|
* per repository.</p>
|
|
321
323
|
* <note>
|
|
@@ -326,6 +328,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
326
328
|
associateExternalConnection(args: AssociateExternalConnectionCommandInput, cb: (err: any, data?: AssociateExternalConnectionCommandOutput) => void): void;
|
|
327
329
|
associateExternalConnection(args: AssociateExternalConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateExternalConnectionCommandOutput) => void): void;
|
|
328
330
|
/**
|
|
331
|
+
* @public
|
|
329
332
|
* <p>
|
|
330
333
|
* Copies package versions from one repository to another repository in the same domain.
|
|
331
334
|
* </p>
|
|
@@ -339,6 +342,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
339
342
|
copyPackageVersions(args: CopyPackageVersionsCommandInput, cb: (err: any, data?: CopyPackageVersionsCommandOutput) => void): void;
|
|
340
343
|
copyPackageVersions(args: CopyPackageVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CopyPackageVersionsCommandOutput) => void): void;
|
|
341
344
|
/**
|
|
345
|
+
* @public
|
|
342
346
|
* <p>
|
|
343
347
|
* Creates a domain. CodeArtifact <i>domains</i> make it easier to manage multiple repositories across an
|
|
344
348
|
* organization. You can use a domain to apply permissions across many
|
|
@@ -354,6 +358,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
354
358
|
createDomain(args: CreateDomainCommandInput, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
|
|
355
359
|
createDomain(args: CreateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
|
|
356
360
|
/**
|
|
361
|
+
* @public
|
|
357
362
|
* <p>
|
|
358
363
|
* Creates a repository.
|
|
359
364
|
* </p>
|
|
@@ -362,6 +367,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
362
367
|
createRepository(args: CreateRepositoryCommandInput, cb: (err: any, data?: CreateRepositoryCommandOutput) => void): void;
|
|
363
368
|
createRepository(args: CreateRepositoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRepositoryCommandOutput) => void): void;
|
|
364
369
|
/**
|
|
370
|
+
* @public
|
|
365
371
|
* <p>
|
|
366
372
|
* Deletes a domain. You cannot delete a domain that contains repositories. If you want to delete a domain
|
|
367
373
|
* with repositories, first delete its repositories.
|
|
@@ -371,6 +377,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
371
377
|
deleteDomain(args: DeleteDomainCommandInput, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
372
378
|
deleteDomain(args: DeleteDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
373
379
|
/**
|
|
380
|
+
* @public
|
|
374
381
|
* <p>
|
|
375
382
|
* Deletes the resource policy set on a domain.
|
|
376
383
|
* </p>
|
|
@@ -379,6 +386,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
379
386
|
deleteDomainPermissionsPolicy(args: DeleteDomainPermissionsPolicyCommandInput, cb: (err: any, data?: DeleteDomainPermissionsPolicyCommandOutput) => void): void;
|
|
380
387
|
deleteDomainPermissionsPolicy(args: DeleteDomainPermissionsPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainPermissionsPolicyCommandOutput) => void): void;
|
|
381
388
|
/**
|
|
389
|
+
* @public
|
|
382
390
|
* <p>Deletes a package and all associated package versions. A deleted package cannot be restored. To delete one or more package versions, use the
|
|
383
391
|
* <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_DeletePackageVersions.html">DeletePackageVersions</a> API.</p>
|
|
384
392
|
*/
|
|
@@ -386,6 +394,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
386
394
|
deletePackage(args: DeletePackageCommandInput, cb: (err: any, data?: DeletePackageCommandOutput) => void): void;
|
|
387
395
|
deletePackage(args: DeletePackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePackageCommandOutput) => void): void;
|
|
388
396
|
/**
|
|
397
|
+
* @public
|
|
389
398
|
* <p> Deletes one or more versions of a package. A deleted package version cannot be restored
|
|
390
399
|
* in your repository. If you want to remove a package version from your repository and be able
|
|
391
400
|
* to restore it later, set its status to <code>Archived</code>. Archived packages cannot be
|
|
@@ -396,6 +405,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
396
405
|
deletePackageVersions(args: DeletePackageVersionsCommandInput, cb: (err: any, data?: DeletePackageVersionsCommandOutput) => void): void;
|
|
397
406
|
deletePackageVersions(args: DeletePackageVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePackageVersionsCommandOutput) => void): void;
|
|
398
407
|
/**
|
|
408
|
+
* @public
|
|
399
409
|
* <p>
|
|
400
410
|
* Deletes a repository.
|
|
401
411
|
* </p>
|
|
@@ -404,6 +414,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
404
414
|
deleteRepository(args: DeleteRepositoryCommandInput, cb: (err: any, data?: DeleteRepositoryCommandOutput) => void): void;
|
|
405
415
|
deleteRepository(args: DeleteRepositoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRepositoryCommandOutput) => void): void;
|
|
406
416
|
/**
|
|
417
|
+
* @public
|
|
407
418
|
* <p>
|
|
408
419
|
* Deletes the resource policy that is set on a repository. After a resource policy is deleted, the
|
|
409
420
|
* permissions allowed and denied by the deleted policy are removed. The effect of deleting a resource policy might not be immediate.
|
|
@@ -419,6 +430,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
419
430
|
deleteRepositoryPermissionsPolicy(args: DeleteRepositoryPermissionsPolicyCommandInput, cb: (err: any, data?: DeleteRepositoryPermissionsPolicyCommandOutput) => void): void;
|
|
420
431
|
deleteRepositoryPermissionsPolicy(args: DeleteRepositoryPermissionsPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRepositoryPermissionsPolicyCommandOutput) => void): void;
|
|
421
432
|
/**
|
|
433
|
+
* @public
|
|
422
434
|
* <p>
|
|
423
435
|
* Returns a
|
|
424
436
|
* <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_DomainDescription.html">DomainDescription</a>
|
|
@@ -429,6 +441,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
429
441
|
describeDomain(args: DescribeDomainCommandInput, cb: (err: any, data?: DescribeDomainCommandOutput) => void): void;
|
|
430
442
|
describeDomain(args: DescribeDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDomainCommandOutput) => void): void;
|
|
431
443
|
/**
|
|
444
|
+
* @public
|
|
432
445
|
* <p> Returns a
|
|
433
446
|
* <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageDescription.html">PackageDescription</a>
|
|
434
447
|
* object that contains information about the requested package.</p>
|
|
@@ -437,6 +450,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
437
450
|
describePackage(args: DescribePackageCommandInput, cb: (err: any, data?: DescribePackageCommandOutput) => void): void;
|
|
438
451
|
describePackage(args: DescribePackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePackageCommandOutput) => void): void;
|
|
439
452
|
/**
|
|
453
|
+
* @public
|
|
440
454
|
* <p>
|
|
441
455
|
* Returns a
|
|
442
456
|
* <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionDescription.html">PackageVersionDescription</a>
|
|
@@ -447,6 +461,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
447
461
|
describePackageVersion(args: DescribePackageVersionCommandInput, cb: (err: any, data?: DescribePackageVersionCommandOutput) => void): void;
|
|
448
462
|
describePackageVersion(args: DescribePackageVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePackageVersionCommandOutput) => void): void;
|
|
449
463
|
/**
|
|
464
|
+
* @public
|
|
450
465
|
* <p>
|
|
451
466
|
* Returns a <code>RepositoryDescription</code> object that contains detailed information
|
|
452
467
|
* about the requested repository.
|
|
@@ -456,6 +471,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
456
471
|
describeRepository(args: DescribeRepositoryCommandInput, cb: (err: any, data?: DescribeRepositoryCommandOutput) => void): void;
|
|
457
472
|
describeRepository(args: DescribeRepositoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRepositoryCommandOutput) => void): void;
|
|
458
473
|
/**
|
|
474
|
+
* @public
|
|
459
475
|
* <p>
|
|
460
476
|
* Removes an existing external connection from a repository.
|
|
461
477
|
* </p>
|
|
@@ -464,6 +480,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
464
480
|
disassociateExternalConnection(args: DisassociateExternalConnectionCommandInput, cb: (err: any, data?: DisassociateExternalConnectionCommandOutput) => void): void;
|
|
465
481
|
disassociateExternalConnection(args: DisassociateExternalConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateExternalConnectionCommandOutput) => void): void;
|
|
466
482
|
/**
|
|
483
|
+
* @public
|
|
467
484
|
* <p>
|
|
468
485
|
* Deletes the assets in package versions and sets the package versions' status to <code>Disposed</code>.
|
|
469
486
|
* A disposed package version cannot be restored in your repository because its assets are deleted.
|
|
@@ -481,6 +498,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
481
498
|
disposePackageVersions(args: DisposePackageVersionsCommandInput, cb: (err: any, data?: DisposePackageVersionsCommandOutput) => void): void;
|
|
482
499
|
disposePackageVersions(args: DisposePackageVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisposePackageVersionsCommandOutput) => void): void;
|
|
483
500
|
/**
|
|
501
|
+
* @public
|
|
484
502
|
* <p>
|
|
485
503
|
* Generates a temporary authorization token for accessing repositories in the domain.
|
|
486
504
|
* This API requires the <code>codeartifact:GetAuthorizationToken</code> and <code>sts:GetServiceBearerToken</code> permissions.
|
|
@@ -507,6 +525,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
507
525
|
getAuthorizationToken(args: GetAuthorizationTokenCommandInput, cb: (err: any, data?: GetAuthorizationTokenCommandOutput) => void): void;
|
|
508
526
|
getAuthorizationToken(args: GetAuthorizationTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAuthorizationTokenCommandOutput) => void): void;
|
|
509
527
|
/**
|
|
528
|
+
* @public
|
|
510
529
|
* <p>
|
|
511
530
|
* Returns the resource policy attached to the specified domain.
|
|
512
531
|
* </p>
|
|
@@ -522,6 +541,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
522
541
|
getDomainPermissionsPolicy(args: GetDomainPermissionsPolicyCommandInput, cb: (err: any, data?: GetDomainPermissionsPolicyCommandOutput) => void): void;
|
|
523
542
|
getDomainPermissionsPolicy(args: GetDomainPermissionsPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainPermissionsPolicyCommandOutput) => void): void;
|
|
524
543
|
/**
|
|
544
|
+
* @public
|
|
525
545
|
* <p>
|
|
526
546
|
* Returns an asset (or file) that is in a package. For example, for a Maven package version, use
|
|
527
547
|
* <code>GetPackageVersionAsset</code> to download a <code>JAR</code> file, a <code>POM</code> file,
|
|
@@ -532,6 +552,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
532
552
|
getPackageVersionAsset(args: GetPackageVersionAssetCommandInput, cb: (err: any, data?: GetPackageVersionAssetCommandOutput) => void): void;
|
|
533
553
|
getPackageVersionAsset(args: GetPackageVersionAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPackageVersionAssetCommandOutput) => void): void;
|
|
534
554
|
/**
|
|
555
|
+
* @public
|
|
535
556
|
* <p>
|
|
536
557
|
* Gets the readme file or descriptive text for a package version.
|
|
537
558
|
* </p>
|
|
@@ -543,6 +564,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
543
564
|
getPackageVersionReadme(args: GetPackageVersionReadmeCommandInput, cb: (err: any, data?: GetPackageVersionReadmeCommandOutput) => void): void;
|
|
544
565
|
getPackageVersionReadme(args: GetPackageVersionReadmeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPackageVersionReadmeCommandOutput) => void): void;
|
|
545
566
|
/**
|
|
567
|
+
* @public
|
|
546
568
|
* <p>
|
|
547
569
|
* Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each
|
|
548
570
|
* package format:
|
|
@@ -574,6 +596,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
574
596
|
getRepositoryEndpoint(args: GetRepositoryEndpointCommandInput, cb: (err: any, data?: GetRepositoryEndpointCommandOutput) => void): void;
|
|
575
597
|
getRepositoryEndpoint(args: GetRepositoryEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRepositoryEndpointCommandOutput) => void): void;
|
|
576
598
|
/**
|
|
599
|
+
* @public
|
|
577
600
|
* <p>
|
|
578
601
|
* Returns the resource policy that is set on a repository.
|
|
579
602
|
* </p>
|
|
@@ -582,6 +605,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
582
605
|
getRepositoryPermissionsPolicy(args: GetRepositoryPermissionsPolicyCommandInput, cb: (err: any, data?: GetRepositoryPermissionsPolicyCommandOutput) => void): void;
|
|
583
606
|
getRepositoryPermissionsPolicy(args: GetRepositoryPermissionsPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRepositoryPermissionsPolicyCommandOutput) => void): void;
|
|
584
607
|
/**
|
|
608
|
+
* @public
|
|
585
609
|
* <p> Returns a list of <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionDescription.html">DomainSummary</a> objects for all domains owned by the Amazon Web Services account that makes
|
|
586
610
|
* this call. Each returned <code>DomainSummary</code> object contains information about a
|
|
587
611
|
* domain. </p>
|
|
@@ -590,6 +614,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
590
614
|
listDomains(args: ListDomainsCommandInput, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
591
615
|
listDomains(args: ListDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
592
616
|
/**
|
|
617
|
+
* @public
|
|
593
618
|
* <p>
|
|
594
619
|
* Returns a list of
|
|
595
620
|
* <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageSummary.html">PackageSummary</a>
|
|
@@ -600,6 +625,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
600
625
|
listPackages(args: ListPackagesCommandInput, cb: (err: any, data?: ListPackagesCommandOutput) => void): void;
|
|
601
626
|
listPackages(args: ListPackagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPackagesCommandOutput) => void): void;
|
|
602
627
|
/**
|
|
628
|
+
* @public
|
|
603
629
|
* <p>
|
|
604
630
|
* Returns a list of
|
|
605
631
|
* <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_AssetSummary.html">AssetSummary</a>
|
|
@@ -610,6 +636,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
610
636
|
listPackageVersionAssets(args: ListPackageVersionAssetsCommandInput, cb: (err: any, data?: ListPackageVersionAssetsCommandOutput) => void): void;
|
|
611
637
|
listPackageVersionAssets(args: ListPackageVersionAssetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPackageVersionAssetsCommandOutput) => void): void;
|
|
612
638
|
/**
|
|
639
|
+
* @public
|
|
613
640
|
* <p>
|
|
614
641
|
* Returns the direct dependencies for a package version. The dependencies are returned as
|
|
615
642
|
* <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageDependency.html">PackageDependency</a>
|
|
@@ -622,6 +649,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
622
649
|
listPackageVersionDependencies(args: ListPackageVersionDependenciesCommandInput, cb: (err: any, data?: ListPackageVersionDependenciesCommandOutput) => void): void;
|
|
623
650
|
listPackageVersionDependencies(args: ListPackageVersionDependenciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPackageVersionDependenciesCommandOutput) => void): void;
|
|
624
651
|
/**
|
|
652
|
+
* @public
|
|
625
653
|
* <p>
|
|
626
654
|
* Returns a list of
|
|
627
655
|
* <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionSummary.html">PackageVersionSummary</a>
|
|
@@ -632,6 +660,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
632
660
|
listPackageVersions(args: ListPackageVersionsCommandInput, cb: (err: any, data?: ListPackageVersionsCommandOutput) => void): void;
|
|
633
661
|
listPackageVersions(args: ListPackageVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPackageVersionsCommandOutput) => void): void;
|
|
634
662
|
/**
|
|
663
|
+
* @public
|
|
635
664
|
* <p>
|
|
636
665
|
* Returns a list of
|
|
637
666
|
* <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_RepositorySummary.html">RepositorySummary</a>
|
|
@@ -643,6 +672,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
643
672
|
listRepositories(args: ListRepositoriesCommandInput, cb: (err: any, data?: ListRepositoriesCommandOutput) => void): void;
|
|
644
673
|
listRepositories(args: ListRepositoriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRepositoriesCommandOutput) => void): void;
|
|
645
674
|
/**
|
|
675
|
+
* @public
|
|
646
676
|
* <p>
|
|
647
677
|
* Returns a list of
|
|
648
678
|
* <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_RepositorySummary.html">RepositorySummary</a>
|
|
@@ -654,12 +684,14 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
654
684
|
listRepositoriesInDomain(args: ListRepositoriesInDomainCommandInput, cb: (err: any, data?: ListRepositoriesInDomainCommandOutput) => void): void;
|
|
655
685
|
listRepositoriesInDomain(args: ListRepositoriesInDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRepositoriesInDomainCommandOutput) => void): void;
|
|
656
686
|
/**
|
|
687
|
+
* @public
|
|
657
688
|
* <p>Gets information about Amazon Web Services tags for a specified Amazon Resource Name (ARN) in CodeArtifact.</p>
|
|
658
689
|
*/
|
|
659
690
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
660
691
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
661
692
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
662
693
|
/**
|
|
694
|
+
* @public
|
|
663
695
|
* <p>Creates a new package version containing one or more assets (or files).</p>
|
|
664
696
|
* <p>The <code>unfinished</code> flag can be used to keep the package version in the <code>Unfinished</code> state until all of it’s assets have been uploaded (see <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/packages-overview.html#package-version-status.html#package-version-status">Package version status</a> in the <i>CodeArtifact user guide</i>). To set the package version’s status to <code>Published</code>, omit the <code>unfinished</code> flag when uploading the final asset, or set the status using <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_UpdatePackageVersionsStatus.html">UpdatePackageVersionStatus</a>. Once a package version’s status is set to <code>Published</code>, it cannot change back to <code>Unfinished</code>.</p>
|
|
665
697
|
* <note>
|
|
@@ -670,6 +702,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
670
702
|
publishPackageVersion(args: PublishPackageVersionCommandInput, cb: (err: any, data?: PublishPackageVersionCommandOutput) => void): void;
|
|
671
703
|
publishPackageVersion(args: PublishPackageVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PublishPackageVersionCommandOutput) => void): void;
|
|
672
704
|
/**
|
|
705
|
+
* @public
|
|
673
706
|
* <p>
|
|
674
707
|
* Sets a resource policy on a domain that specifies permissions to access it.
|
|
675
708
|
* </p>
|
|
@@ -683,6 +716,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
683
716
|
putDomainPermissionsPolicy(args: PutDomainPermissionsPolicyCommandInput, cb: (err: any, data?: PutDomainPermissionsPolicyCommandOutput) => void): void;
|
|
684
717
|
putDomainPermissionsPolicy(args: PutDomainPermissionsPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutDomainPermissionsPolicyCommandOutput) => void): void;
|
|
685
718
|
/**
|
|
719
|
+
* @public
|
|
686
720
|
* <p>Sets the package origin configuration for a package.</p>
|
|
687
721
|
* <p>The package origin configuration determines how new versions of a package can be added to a repository. You can allow or block direct
|
|
688
722
|
* publishing of new package versions, or ingestion and retaining of new package versions from an external connection or upstream source.
|
|
@@ -697,6 +731,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
697
731
|
putPackageOriginConfiguration(args: PutPackageOriginConfigurationCommandInput, cb: (err: any, data?: PutPackageOriginConfigurationCommandOutput) => void): void;
|
|
698
732
|
putPackageOriginConfiguration(args: PutPackageOriginConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPackageOriginConfigurationCommandOutput) => void): void;
|
|
699
733
|
/**
|
|
734
|
+
* @public
|
|
700
735
|
* <p>
|
|
701
736
|
* Sets the resource policy on a repository that specifies permissions to access it.
|
|
702
737
|
* </p>
|
|
@@ -710,18 +745,21 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
710
745
|
putRepositoryPermissionsPolicy(args: PutRepositoryPermissionsPolicyCommandInput, cb: (err: any, data?: PutRepositoryPermissionsPolicyCommandOutput) => void): void;
|
|
711
746
|
putRepositoryPermissionsPolicy(args: PutRepositoryPermissionsPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutRepositoryPermissionsPolicyCommandOutput) => void): void;
|
|
712
747
|
/**
|
|
748
|
+
* @public
|
|
713
749
|
* <p>Adds or updates tags for a resource in CodeArtifact.</p>
|
|
714
750
|
*/
|
|
715
751
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
716
752
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
717
753
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
718
754
|
/**
|
|
755
|
+
* @public
|
|
719
756
|
* <p>Removes tags from a resource in CodeArtifact.</p>
|
|
720
757
|
*/
|
|
721
758
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
722
759
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
723
760
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
724
761
|
/**
|
|
762
|
+
* @public
|
|
725
763
|
* <p>
|
|
726
764
|
* Updates the status of one or more versions of a package. Using <code>UpdatePackageVersionsStatus</code>,
|
|
727
765
|
* you can update the status of package versions to <code>Archived</code>, <code>Published</code>, or <code>Unlisted</code>.
|
|
@@ -733,6 +771,7 @@ export declare class Codeartifact extends CodeartifactClient {
|
|
|
733
771
|
updatePackageVersionsStatus(args: UpdatePackageVersionsStatusCommandInput, cb: (err: any, data?: UpdatePackageVersionsStatusCommandOutput) => void): void;
|
|
734
772
|
updatePackageVersionsStatus(args: UpdatePackageVersionsStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePackageVersionsStatusCommandOutput) => void): void;
|
|
735
773
|
/**
|
|
774
|
+
* @public
|
|
736
775
|
* <p>
|
|
737
776
|
* Update the properties of a repository.
|
|
738
777
|
* </p>
|
|
@@ -46,15 +46,24 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
46
46
|
import { UpdatePackageVersionsStatusCommandInput, UpdatePackageVersionsStatusCommandOutput } from "./commands/UpdatePackageVersionsStatusCommand";
|
|
47
47
|
import { UpdateRepositoryCommandInput, UpdateRepositoryCommandOutput } from "./commands/UpdateRepositoryCommand";
|
|
48
48
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
49
52
|
export type ServiceInputTypes = AssociateExternalConnectionCommandInput | CopyPackageVersionsCommandInput | CreateDomainCommandInput | CreateRepositoryCommandInput | DeleteDomainCommandInput | DeleteDomainPermissionsPolicyCommandInput | DeletePackageCommandInput | DeletePackageVersionsCommandInput | DeleteRepositoryCommandInput | DeleteRepositoryPermissionsPolicyCommandInput | DescribeDomainCommandInput | DescribePackageCommandInput | DescribePackageVersionCommandInput | DescribeRepositoryCommandInput | DisassociateExternalConnectionCommandInput | DisposePackageVersionsCommandInput | GetAuthorizationTokenCommandInput | GetDomainPermissionsPolicyCommandInput | GetPackageVersionAssetCommandInput | GetPackageVersionReadmeCommandInput | GetRepositoryEndpointCommandInput | GetRepositoryPermissionsPolicyCommandInput | ListDomainsCommandInput | ListPackageVersionAssetsCommandInput | ListPackageVersionDependenciesCommandInput | ListPackageVersionsCommandInput | ListPackagesCommandInput | ListRepositoriesCommandInput | ListRepositoriesInDomainCommandInput | ListTagsForResourceCommandInput | PublishPackageVersionCommandInput | PutDomainPermissionsPolicyCommandInput | PutPackageOriginConfigurationCommandInput | PutRepositoryPermissionsPolicyCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdatePackageVersionsStatusCommandInput | UpdateRepositoryCommandInput;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
50
56
|
export type ServiceOutputTypes = AssociateExternalConnectionCommandOutput | CopyPackageVersionsCommandOutput | CreateDomainCommandOutput | CreateRepositoryCommandOutput | DeleteDomainCommandOutput | DeleteDomainPermissionsPolicyCommandOutput | DeletePackageCommandOutput | DeletePackageVersionsCommandOutput | DeleteRepositoryCommandOutput | DeleteRepositoryPermissionsPolicyCommandOutput | DescribeDomainCommandOutput | DescribePackageCommandOutput | DescribePackageVersionCommandOutput | DescribeRepositoryCommandOutput | DisassociateExternalConnectionCommandOutput | DisposePackageVersionsCommandOutput | GetAuthorizationTokenCommandOutput | GetDomainPermissionsPolicyCommandOutput | GetPackageVersionAssetCommandOutput | GetPackageVersionReadmeCommandOutput | GetRepositoryEndpointCommandOutput | GetRepositoryPermissionsPolicyCommandOutput | ListDomainsCommandOutput | ListPackageVersionAssetsCommandOutput | ListPackageVersionDependenciesCommandOutput | ListPackageVersionsCommandOutput | ListPackagesCommandOutput | ListRepositoriesCommandOutput | ListRepositoriesInDomainCommandOutput | ListTagsForResourceCommandOutput | PublishPackageVersionCommandOutput | PutDomainPermissionsPolicyCommandOutput | PutPackageOriginConfigurationCommandOutput | PutRepositoryPermissionsPolicyCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdatePackageVersionsStatusCommandOutput | UpdateRepositoryCommandOutput;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
51
60
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
52
61
|
/**
|
|
53
62
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
54
63
|
*/
|
|
55
64
|
requestHandler?: __HttpHandler;
|
|
56
65
|
/**
|
|
57
|
-
* A constructor for a class implementing the {@link
|
|
66
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
58
67
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
59
68
|
* @internal
|
|
60
69
|
*/
|
|
@@ -144,7 +153,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
144
153
|
*/
|
|
145
154
|
logger?: __Logger;
|
|
146
155
|
/**
|
|
147
|
-
* The {@link
|
|
156
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
148
157
|
*/
|
|
149
158
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
150
159
|
/**
|
|
@@ -153,19 +162,30 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
153
162
|
*/
|
|
154
163
|
sdkStreamMixin?: __SdkStreamMixinInjector;
|
|
155
164
|
}
|
|
165
|
+
/**
|
|
166
|
+
* @public
|
|
167
|
+
*/
|
|
156
168
|
type CodeartifactClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
157
169
|
/**
|
|
158
|
-
*
|
|
170
|
+
* @public
|
|
171
|
+
*
|
|
172
|
+
* The configuration interface of CodeartifactClient class constructor that set the region, credentials and other options.
|
|
159
173
|
*/
|
|
160
174
|
export interface CodeartifactClientConfig extends CodeartifactClientConfigType {
|
|
161
175
|
}
|
|
176
|
+
/**
|
|
177
|
+
* @public
|
|
178
|
+
*/
|
|
162
179
|
type CodeartifactClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
163
180
|
/**
|
|
164
|
-
*
|
|
181
|
+
* @public
|
|
182
|
+
*
|
|
183
|
+
* The resolved configuration interface of CodeartifactClient class. This is resolved and normalized from the {@link CodeartifactClientConfig | constructor configuration interface}.
|
|
165
184
|
*/
|
|
166
185
|
export interface CodeartifactClientResolvedConfig extends CodeartifactClientResolvedConfigType {
|
|
167
186
|
}
|
|
168
187
|
/**
|
|
188
|
+
* @public
|
|
169
189
|
* <p> CodeArtifact is a fully managed artifact repository compatible with language-native
|
|
170
190
|
* package managers and build tools such as npm, Apache Maven, pip, and dotnet. You can use CodeArtifact to
|
|
171
191
|
* share packages with development teams and pull packages. Packages can be pulled from both
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
|
|
5
5
|
import { AssociateExternalConnectionRequest, AssociateExternalConnectionResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AssociateExternalConnectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AssociateExternalConnectionCommandInput extends AssociateExternalConnectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AssociateExternalConnectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AssociateExternalConnectionCommandOutput extends AssociateExternalConnectionResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds an existing external connection to a repository. One external connection is allowed
|
|
18
23
|
* per repository.</p>
|
|
19
24
|
* <note>
|
|
@@ -29,6 +34,8 @@ export interface AssociateExternalConnectionCommandOutput extends AssociateExter
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param AssociateExternalConnectionCommandInput - {@link AssociateExternalConnectionCommandInput}
|
|
38
|
+
* @returns {@link AssociateExternalConnectionCommandOutput}
|
|
32
39
|
* @see {@link AssociateExternalConnectionCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link AssociateExternalConnectionCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
@@ -71,11 +78,20 @@ export interface AssociateExternalConnectionCommandOutput extends AssociateExter
|
|
|
71
78
|
export declare class AssociateExternalConnectionCommand extends $Command<AssociateExternalConnectionCommandInput, AssociateExternalConnectionCommandOutput, CodeartifactClientResolvedConfig> {
|
|
72
79
|
readonly input: AssociateExternalConnectionCommandInput;
|
|
73
80
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
74
84
|
constructor(input: AssociateExternalConnectionCommandInput);
|
|
75
85
|
/**
|
|
76
86
|
* @internal
|
|
77
87
|
*/
|
|
78
88
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateExternalConnectionCommandInput, AssociateExternalConnectionCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
79
92
|
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
80
96
|
private deserialize;
|
|
81
97
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
|
|
5
5
|
import { CopyPackageVersionsRequest, CopyPackageVersionsResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CopyPackageVersionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CopyPackageVersionsCommandInput extends CopyPackageVersionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CopyPackageVersionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CopyPackageVersionsCommandOutput extends CopyPackageVersionsResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Copies package versions from one repository to another repository in the same domain.
|
|
19
24
|
* </p>
|
|
@@ -32,6 +37,8 @@ export interface CopyPackageVersionsCommandOutput extends CopyPackageVersionsRes
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param CopyPackageVersionsCommandInput - {@link CopyPackageVersionsCommandInput}
|
|
41
|
+
* @returns {@link CopyPackageVersionsCommandOutput}
|
|
35
42
|
* @see {@link CopyPackageVersionsCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link CopyPackageVersionsCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
@@ -74,11 +81,20 @@ export interface CopyPackageVersionsCommandOutput extends CopyPackageVersionsRes
|
|
|
74
81
|
export declare class CopyPackageVersionsCommand extends $Command<CopyPackageVersionsCommandInput, CopyPackageVersionsCommandOutput, CodeartifactClientResolvedConfig> {
|
|
75
82
|
readonly input: CopyPackageVersionsCommandInput;
|
|
76
83
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
77
87
|
constructor(input: CopyPackageVersionsCommandInput);
|
|
78
88
|
/**
|
|
79
89
|
* @internal
|
|
80
90
|
*/
|
|
81
91
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CopyPackageVersionsCommandInput, CopyPackageVersionsCommandOutput>;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
82
95
|
private serialize;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
83
99
|
private deserialize;
|
|
84
100
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
|
|
5
5
|
import { CreateDomainRequest, CreateDomainResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateDomainCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateDomainCommandInput extends CreateDomainRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateDomainCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateDomainCommandOutput extends CreateDomainResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Creates a domain. CodeArtifact <i>domains</i> make it easier to manage multiple repositories across an
|
|
19
24
|
* organization. You can use a domain to apply permissions across many
|
|
@@ -34,6 +39,8 @@ export interface CreateDomainCommandOutput extends CreateDomainResult, __Metadat
|
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
42
|
+
* @param CreateDomainCommandInput - {@link CreateDomainCommandInput}
|
|
43
|
+
* @returns {@link CreateDomainCommandOutput}
|
|
37
44
|
* @see {@link CreateDomainCommandInput} for command's `input` shape.
|
|
38
45
|
* @see {@link CreateDomainCommandOutput} for command's `response` shape.
|
|
39
46
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
@@ -76,11 +83,20 @@ export interface CreateDomainCommandOutput extends CreateDomainResult, __Metadat
|
|
|
76
83
|
export declare class CreateDomainCommand extends $Command<CreateDomainCommandInput, CreateDomainCommandOutput, CodeartifactClientResolvedConfig> {
|
|
77
84
|
readonly input: CreateDomainCommandInput;
|
|
78
85
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
79
89
|
constructor(input: CreateDomainCommandInput);
|
|
80
90
|
/**
|
|
81
91
|
* @internal
|
|
82
92
|
*/
|
|
83
93
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDomainCommandInput, CreateDomainCommandOutput>;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
84
97
|
private serialize;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
85
101
|
private deserialize;
|
|
86
102
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
|
|
5
5
|
import { CreateRepositoryRequest, CreateRepositoryResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateRepositoryCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateRepositoryCommandInput extends CreateRepositoryRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateRepositoryCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateRepositoryCommandOutput extends CreateRepositoryResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Creates a repository.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface CreateRepositoryCommandOutput extends CreateRepositoryResult, _
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param CreateRepositoryCommandInput - {@link CreateRepositoryCommandInput}
|
|
36
|
+
* @returns {@link CreateRepositoryCommandOutput}
|
|
30
37
|
* @see {@link CreateRepositoryCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link CreateRepositoryCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface CreateRepositoryCommandOutput extends CreateRepositoryResult, _
|
|
|
69
76
|
export declare class CreateRepositoryCommand extends $Command<CreateRepositoryCommandInput, CreateRepositoryCommandOutput, CodeartifactClientResolvedConfig> {
|
|
70
77
|
readonly input: CreateRepositoryCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: CreateRepositoryCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRepositoryCommandInput, CreateRepositoryCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
|
|
5
5
|
import { DeleteDomainRequest, DeleteDomainResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDomainCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDomainCommandInput extends DeleteDomainRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDomainCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDomainCommandOutput extends DeleteDomainResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Deletes a domain. You cannot delete a domain that contains repositories. If you want to delete a domain
|
|
19
24
|
* with repositories, first delete its repositories.
|
|
@@ -28,6 +33,8 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResult, __Metadat
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DeleteDomainCommandInput - {@link DeleteDomainCommandInput}
|
|
37
|
+
* @returns {@link DeleteDomainCommandOutput}
|
|
31
38
|
* @see {@link DeleteDomainCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DeleteDomainCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResult, __Metadat
|
|
|
60
67
|
export declare class DeleteDomainCommand extends $Command<DeleteDomainCommandInput, DeleteDomainCommandOutput, CodeartifactClientResolvedConfig> {
|
|
61
68
|
readonly input: DeleteDomainCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: DeleteDomainCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDomainCommandInput, DeleteDomainCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|