@aws-sdk/client-codeartifact 3.300.0 → 3.301.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/commands/AssociateExternalConnectionCommand.d.ts +1 -1
- package/dist-types/commands/CopyPackageVersionsCommand.d.ts +3 -3
- package/dist-types/commands/CreateDomainCommand.d.ts +3 -3
- package/dist-types/commands/CreateRepositoryCommand.d.ts +5 -5
- package/dist-types/commands/DeleteDomainCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDomainPermissionsPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeletePackageCommand.d.ts +1 -1
- package/dist-types/commands/DeletePackageVersionsCommand.d.ts +2 -2
- package/dist-types/commands/DeleteRepositoryCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRepositoryPermissionsPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDomainCommand.d.ts +1 -1
- package/dist-types/commands/DescribePackageCommand.d.ts +1 -1
- package/dist-types/commands/DescribePackageVersionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRepositoryCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateExternalConnectionCommand.d.ts +1 -1
- package/dist-types/commands/DisposePackageVersionsCommand.d.ts +3 -3
- package/dist-types/commands/GetAuthorizationTokenCommand.d.ts +1 -1
- package/dist-types/commands/GetDomainPermissionsPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetPackageVersionAssetCommand.d.ts +1 -1
- package/dist-types/commands/GetPackageVersionReadmeCommand.d.ts +1 -1
- package/dist-types/commands/GetRepositoryEndpointCommand.d.ts +1 -1
- package/dist-types/commands/GetRepositoryPermissionsPolicyCommand.d.ts +1 -1
- package/dist-types/commands/ListDomainsCommand.d.ts +1 -1
- package/dist-types/commands/ListPackageVersionAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListPackageVersionDependenciesCommand.d.ts +1 -1
- package/dist-types/commands/ListPackageVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListPackagesCommand.d.ts +1 -1
- package/dist-types/commands/ListRepositoriesCommand.d.ts +1 -1
- package/dist-types/commands/ListRepositoriesInDomainCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PublishPackageVersionCommand.d.ts +1 -1
- package/dist-types/commands/PutDomainPermissionsPolicyCommand.d.ts +1 -1
- package/dist-types/commands/PutPackageOriginConfigurationCommand.d.ts +2 -2
- package/dist-types/commands/PutRepositoryPermissionsPolicyCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdatePackageVersionsStatusCommand.d.ts +3 -3
- package/dist-types/commands/UpdateRepositoryCommand.d.ts +3 -3
- package/package.json +3 -3
|
@@ -30,7 +30,7 @@ export interface AssociateExternalConnectionCommandOutput extends AssociateExter
|
|
|
30
30
|
* import { CodeartifactClient, AssociateExternalConnectionCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
31
31
|
* // const { CodeartifactClient, AssociateExternalConnectionCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
32
32
|
* const client = new CodeartifactClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // AssociateExternalConnectionRequest
|
|
34
34
|
* domain: "STRING_VALUE", // required
|
|
35
35
|
* domainOwner: "STRING_VALUE",
|
|
36
36
|
* repository: "STRING_VALUE", // required
|
|
@@ -33,7 +33,7 @@ export interface CopyPackageVersionsCommandOutput extends CopyPackageVersionsRes
|
|
|
33
33
|
* import { CodeartifactClient, CopyPackageVersionsCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
34
34
|
* // const { CodeartifactClient, CopyPackageVersionsCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
35
35
|
* const client = new CodeartifactClient(config);
|
|
36
|
-
* const input = {
|
|
36
|
+
* const input = { // CopyPackageVersionsRequest
|
|
37
37
|
* domain: "STRING_VALUE", // required
|
|
38
38
|
* domainOwner: "STRING_VALUE",
|
|
39
39
|
* sourceRepository: "STRING_VALUE", // required
|
|
@@ -41,10 +41,10 @@ export interface CopyPackageVersionsCommandOutput extends CopyPackageVersionsRes
|
|
|
41
41
|
* format: "npm" || "pypi" || "maven" || "nuget" || "generic", // required
|
|
42
42
|
* namespace: "STRING_VALUE",
|
|
43
43
|
* package: "STRING_VALUE", // required
|
|
44
|
-
* versions: [
|
|
44
|
+
* versions: [ // PackageVersionList
|
|
45
45
|
* "STRING_VALUE",
|
|
46
46
|
* ],
|
|
47
|
-
* versionRevisions: {
|
|
47
|
+
* versionRevisions: { // PackageVersionRevisionMap
|
|
48
48
|
* "<keys>": "STRING_VALUE",
|
|
49
49
|
* },
|
|
50
50
|
* allowOverwrite: true || false,
|
|
@@ -35,11 +35,11 @@ export interface CreateDomainCommandOutput extends CreateDomainResult, __Metadat
|
|
|
35
35
|
* import { CodeartifactClient, CreateDomainCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
36
36
|
* // const { CodeartifactClient, CreateDomainCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
37
37
|
* const client = new CodeartifactClient(config);
|
|
38
|
-
* const input = {
|
|
38
|
+
* const input = { // CreateDomainRequest
|
|
39
39
|
* domain: "STRING_VALUE", // required
|
|
40
40
|
* encryptionKey: "STRING_VALUE",
|
|
41
|
-
* tags: [
|
|
42
|
-
* {
|
|
41
|
+
* tags: [ // TagList
|
|
42
|
+
* { // Tag
|
|
43
43
|
* key: "STRING_VALUE", // required
|
|
44
44
|
* value: "STRING_VALUE", // required
|
|
45
45
|
* },
|
|
@@ -28,18 +28,18 @@ export interface CreateRepositoryCommandOutput extends CreateRepositoryResult, _
|
|
|
28
28
|
* import { CodeartifactClient, CreateRepositoryCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
29
29
|
* // const { CodeartifactClient, CreateRepositoryCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
30
30
|
* const client = new CodeartifactClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateRepositoryRequest
|
|
32
32
|
* domain: "STRING_VALUE", // required
|
|
33
33
|
* domainOwner: "STRING_VALUE",
|
|
34
34
|
* repository: "STRING_VALUE", // required
|
|
35
35
|
* description: "STRING_VALUE",
|
|
36
|
-
* upstreams: [
|
|
37
|
-
* {
|
|
36
|
+
* upstreams: [ // UpstreamRepositoryList
|
|
37
|
+
* { // UpstreamRepository
|
|
38
38
|
* repositoryName: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
40
40
|
* ],
|
|
41
|
-
* tags: [
|
|
42
|
-
* {
|
|
41
|
+
* tags: [ // TagList
|
|
42
|
+
* { // Tag
|
|
43
43
|
* key: "STRING_VALUE", // required
|
|
44
44
|
* value: "STRING_VALUE", // required
|
|
45
45
|
* },
|
|
@@ -29,7 +29,7 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResult, __Metadat
|
|
|
29
29
|
* import { CodeartifactClient, DeleteDomainCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
30
30
|
* // const { CodeartifactClient, DeleteDomainCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
31
31
|
* const client = new CodeartifactClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DeleteDomainRequest
|
|
33
33
|
* domain: "STRING_VALUE", // required
|
|
34
34
|
* domainOwner: "STRING_VALUE",
|
|
35
35
|
* };
|
|
@@ -28,7 +28,7 @@ export interface DeleteDomainPermissionsPolicyCommandOutput extends DeleteDomain
|
|
|
28
28
|
* import { CodeartifactClient, DeleteDomainPermissionsPolicyCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
29
29
|
* // const { CodeartifactClient, DeleteDomainPermissionsPolicyCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
30
30
|
* const client = new CodeartifactClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeleteDomainPermissionsPolicyRequest
|
|
32
32
|
* domain: "STRING_VALUE", // required
|
|
33
33
|
* domainOwner: "STRING_VALUE",
|
|
34
34
|
* policyRevision: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface DeletePackageCommandOutput extends DeletePackageResult, __Metad
|
|
|
27
27
|
* import { CodeartifactClient, DeletePackageCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
28
28
|
* // const { CodeartifactClient, DeletePackageCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
29
29
|
* const client = new CodeartifactClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeletePackageRequest
|
|
31
31
|
* domain: "STRING_VALUE", // required
|
|
32
32
|
* domainOwner: "STRING_VALUE",
|
|
33
33
|
* repository: "STRING_VALUE", // required
|
|
@@ -30,14 +30,14 @@ export interface DeletePackageVersionsCommandOutput extends DeletePackageVersion
|
|
|
30
30
|
* import { CodeartifactClient, DeletePackageVersionsCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
31
31
|
* // const { CodeartifactClient, DeletePackageVersionsCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
32
32
|
* const client = new CodeartifactClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeletePackageVersionsRequest
|
|
34
34
|
* domain: "STRING_VALUE", // required
|
|
35
35
|
* domainOwner: "STRING_VALUE",
|
|
36
36
|
* repository: "STRING_VALUE", // required
|
|
37
37
|
* format: "npm" || "pypi" || "maven" || "nuget" || "generic", // required
|
|
38
38
|
* namespace: "STRING_VALUE",
|
|
39
39
|
* package: "STRING_VALUE", // required
|
|
40
|
-
* versions: [ // required
|
|
40
|
+
* versions: [ // PackageVersionList // required
|
|
41
41
|
* "STRING_VALUE",
|
|
42
42
|
* ],
|
|
43
43
|
* expectedStatus: "Published" || "Unfinished" || "Unlisted" || "Archived" || "Disposed" || "Deleted",
|
|
@@ -28,7 +28,7 @@ export interface DeleteRepositoryCommandOutput extends DeleteRepositoryResult, _
|
|
|
28
28
|
* import { CodeartifactClient, DeleteRepositoryCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
29
29
|
* // const { CodeartifactClient, DeleteRepositoryCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
30
30
|
* const client = new CodeartifactClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeleteRepositoryRequest
|
|
32
32
|
* domain: "STRING_VALUE", // required
|
|
33
33
|
* domainOwner: "STRING_VALUE",
|
|
34
34
|
* repository: "STRING_VALUE", // required
|
|
@@ -35,7 +35,7 @@ export interface DeleteRepositoryPermissionsPolicyCommandOutput extends DeleteRe
|
|
|
35
35
|
* import { CodeartifactClient, DeleteRepositoryPermissionsPolicyCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
36
36
|
* // const { CodeartifactClient, DeleteRepositoryPermissionsPolicyCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
37
37
|
* const client = new CodeartifactClient(config);
|
|
38
|
-
* const input = {
|
|
38
|
+
* const input = { // DeleteRepositoryPermissionsPolicyRequest
|
|
39
39
|
* domain: "STRING_VALUE", // required
|
|
40
40
|
* domainOwner: "STRING_VALUE",
|
|
41
41
|
* repository: "STRING_VALUE", // required
|
|
@@ -30,7 +30,7 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResult, __Met
|
|
|
30
30
|
* import { CodeartifactClient, DescribeDomainCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
31
31
|
* // const { CodeartifactClient, DescribeDomainCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
32
32
|
* const client = new CodeartifactClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DescribeDomainRequest
|
|
34
34
|
* domain: "STRING_VALUE", // required
|
|
35
35
|
* domainOwner: "STRING_VALUE",
|
|
36
36
|
* };
|
|
@@ -28,7 +28,7 @@ export interface DescribePackageCommandOutput extends DescribePackageResult, __M
|
|
|
28
28
|
* import { CodeartifactClient, DescribePackageCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
29
29
|
* // const { CodeartifactClient, DescribePackageCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
30
30
|
* const client = new CodeartifactClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribePackageRequest
|
|
32
32
|
* domain: "STRING_VALUE", // required
|
|
33
33
|
* domainOwner: "STRING_VALUE",
|
|
34
34
|
* repository: "STRING_VALUE", // required
|
|
@@ -30,7 +30,7 @@ export interface DescribePackageVersionCommandOutput extends DescribePackageVers
|
|
|
30
30
|
* import { CodeartifactClient, DescribePackageVersionCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
31
31
|
* // const { CodeartifactClient, DescribePackageVersionCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
32
32
|
* const client = new CodeartifactClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DescribePackageVersionRequest
|
|
34
34
|
* domain: "STRING_VALUE", // required
|
|
35
35
|
* domainOwner: "STRING_VALUE",
|
|
36
36
|
* repository: "STRING_VALUE", // required
|
|
@@ -29,7 +29,7 @@ export interface DescribeRepositoryCommandOutput extends DescribeRepositoryResul
|
|
|
29
29
|
* import { CodeartifactClient, DescribeRepositoryCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
30
30
|
* // const { CodeartifactClient, DescribeRepositoryCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
31
31
|
* const client = new CodeartifactClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DescribeRepositoryRequest
|
|
33
33
|
* domain: "STRING_VALUE", // required
|
|
34
34
|
* domainOwner: "STRING_VALUE",
|
|
35
35
|
* repository: "STRING_VALUE", // required
|
|
@@ -28,7 +28,7 @@ export interface DisassociateExternalConnectionCommandOutput extends Disassociat
|
|
|
28
28
|
* import { CodeartifactClient, DisassociateExternalConnectionCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
29
29
|
* // const { CodeartifactClient, DisassociateExternalConnectionCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
30
30
|
* const client = new CodeartifactClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DisassociateExternalConnectionRequest
|
|
32
32
|
* domain: "STRING_VALUE", // required
|
|
33
33
|
* domainOwner: "STRING_VALUE",
|
|
34
34
|
* repository: "STRING_VALUE", // required
|
|
@@ -37,17 +37,17 @@ export interface DisposePackageVersionsCommandOutput extends DisposePackageVersi
|
|
|
37
37
|
* import { CodeartifactClient, DisposePackageVersionsCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
38
38
|
* // const { CodeartifactClient, DisposePackageVersionsCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
39
39
|
* const client = new CodeartifactClient(config);
|
|
40
|
-
* const input = {
|
|
40
|
+
* const input = { // DisposePackageVersionsRequest
|
|
41
41
|
* domain: "STRING_VALUE", // required
|
|
42
42
|
* domainOwner: "STRING_VALUE",
|
|
43
43
|
* repository: "STRING_VALUE", // required
|
|
44
44
|
* format: "npm" || "pypi" || "maven" || "nuget" || "generic", // required
|
|
45
45
|
* namespace: "STRING_VALUE",
|
|
46
46
|
* package: "STRING_VALUE", // required
|
|
47
|
-
* versions: [ // required
|
|
47
|
+
* versions: [ // PackageVersionList // required
|
|
48
48
|
* "STRING_VALUE",
|
|
49
49
|
* ],
|
|
50
|
-
* versionRevisions: {
|
|
50
|
+
* versionRevisions: { // PackageVersionRevisionMap
|
|
51
51
|
* "<keys>": "STRING_VALUE",
|
|
52
52
|
* },
|
|
53
53
|
* expectedStatus: "Published" || "Unfinished" || "Unlisted" || "Archived" || "Disposed" || "Deleted",
|
|
@@ -46,7 +46,7 @@ export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationToke
|
|
|
46
46
|
* import { CodeartifactClient, GetAuthorizationTokenCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
47
47
|
* // const { CodeartifactClient, GetAuthorizationTokenCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
48
48
|
* const client = new CodeartifactClient(config);
|
|
49
|
-
* const input = {
|
|
49
|
+
* const input = { // GetAuthorizationTokenRequest
|
|
50
50
|
* domain: "STRING_VALUE", // required
|
|
51
51
|
* domainOwner: "STRING_VALUE",
|
|
52
52
|
* durationSeconds: Number("long"),
|
|
@@ -35,7 +35,7 @@ export interface GetDomainPermissionsPolicyCommandOutput extends GetDomainPermis
|
|
|
35
35
|
* import { CodeartifactClient, GetDomainPermissionsPolicyCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
36
36
|
* // const { CodeartifactClient, GetDomainPermissionsPolicyCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
37
37
|
* const client = new CodeartifactClient(config);
|
|
38
|
-
* const input = {
|
|
38
|
+
* const input = { // GetDomainPermissionsPolicyRequest
|
|
39
39
|
* domain: "STRING_VALUE", // required
|
|
40
40
|
* domainOwner: "STRING_VALUE",
|
|
41
41
|
* };
|
|
@@ -30,7 +30,7 @@ export interface GetPackageVersionAssetCommandOutput extends __WithSdkStreamMixi
|
|
|
30
30
|
* import { CodeartifactClient, GetPackageVersionAssetCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
31
31
|
* // const { CodeartifactClient, GetPackageVersionAssetCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
32
32
|
* const client = new CodeartifactClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // GetPackageVersionAssetRequest
|
|
34
34
|
* domain: "STRING_VALUE", // required
|
|
35
35
|
* domainOwner: "STRING_VALUE",
|
|
36
36
|
* repository: "STRING_VALUE", // required
|
|
@@ -31,7 +31,7 @@ export interface GetPackageVersionReadmeCommandOutput extends GetPackageVersionR
|
|
|
31
31
|
* import { CodeartifactClient, GetPackageVersionReadmeCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
32
32
|
* // const { CodeartifactClient, GetPackageVersionReadmeCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
33
33
|
* const client = new CodeartifactClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // GetPackageVersionReadmeRequest
|
|
35
35
|
* domain: "STRING_VALUE", // required
|
|
36
36
|
* domainOwner: "STRING_VALUE",
|
|
37
37
|
* repository: "STRING_VALUE", // required
|
|
@@ -51,7 +51,7 @@ export interface GetRepositoryEndpointCommandOutput extends GetRepositoryEndpoin
|
|
|
51
51
|
* import { CodeartifactClient, GetRepositoryEndpointCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
52
52
|
* // const { CodeartifactClient, GetRepositoryEndpointCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
53
53
|
* const client = new CodeartifactClient(config);
|
|
54
|
-
* const input = {
|
|
54
|
+
* const input = { // GetRepositoryEndpointRequest
|
|
55
55
|
* domain: "STRING_VALUE", // required
|
|
56
56
|
* domainOwner: "STRING_VALUE",
|
|
57
57
|
* repository: "STRING_VALUE", // required
|
|
@@ -28,7 +28,7 @@ export interface GetRepositoryPermissionsPolicyCommandOutput extends GetReposito
|
|
|
28
28
|
* import { CodeartifactClient, GetRepositoryPermissionsPolicyCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
29
29
|
* // const { CodeartifactClient, GetRepositoryPermissionsPolicyCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
30
30
|
* const client = new CodeartifactClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetRepositoryPermissionsPolicyRequest
|
|
32
32
|
* domain: "STRING_VALUE", // required
|
|
33
33
|
* domainOwner: "STRING_VALUE",
|
|
34
34
|
* repository: "STRING_VALUE", // required
|
|
@@ -28,7 +28,7 @@ export interface ListDomainsCommandOutput extends ListDomainsResult, __MetadataB
|
|
|
28
28
|
* import { CodeartifactClient, ListDomainsCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
29
29
|
* // const { CodeartifactClient, ListDomainsCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
30
30
|
* const client = new CodeartifactClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListDomainsRequest
|
|
32
32
|
* maxResults: Number("int"),
|
|
33
33
|
* nextToken: "STRING_VALUE",
|
|
34
34
|
* };
|
|
@@ -30,7 +30,7 @@ export interface ListPackageVersionAssetsCommandOutput extends ListPackageVersio
|
|
|
30
30
|
* import { CodeartifactClient, ListPackageVersionAssetsCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
31
31
|
* // const { CodeartifactClient, ListPackageVersionAssetsCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
32
32
|
* const client = new CodeartifactClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ListPackageVersionAssetsRequest
|
|
34
34
|
* domain: "STRING_VALUE", // required
|
|
35
35
|
* domainOwner: "STRING_VALUE",
|
|
36
36
|
* repository: "STRING_VALUE", // required
|
|
@@ -32,7 +32,7 @@ export interface ListPackageVersionDependenciesCommandOutput extends ListPackage
|
|
|
32
32
|
* import { CodeartifactClient, ListPackageVersionDependenciesCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
33
33
|
* // const { CodeartifactClient, ListPackageVersionDependenciesCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
34
34
|
* const client = new CodeartifactClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // ListPackageVersionDependenciesRequest
|
|
36
36
|
* domain: "STRING_VALUE", // required
|
|
37
37
|
* domainOwner: "STRING_VALUE",
|
|
38
38
|
* repository: "STRING_VALUE", // required
|
|
@@ -30,7 +30,7 @@ export interface ListPackageVersionsCommandOutput extends ListPackageVersionsRes
|
|
|
30
30
|
* import { CodeartifactClient, ListPackageVersionsCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
31
31
|
* // const { CodeartifactClient, ListPackageVersionsCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
32
32
|
* const client = new CodeartifactClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ListPackageVersionsRequest
|
|
34
34
|
* domain: "STRING_VALUE", // required
|
|
35
35
|
* domainOwner: "STRING_VALUE",
|
|
36
36
|
* repository: "STRING_VALUE", // required
|
|
@@ -30,7 +30,7 @@ export interface ListPackagesCommandOutput extends ListPackagesResult, __Metadat
|
|
|
30
30
|
* import { CodeartifactClient, ListPackagesCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
31
31
|
* // const { CodeartifactClient, ListPackagesCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
32
32
|
* const client = new CodeartifactClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ListPackagesRequest
|
|
34
34
|
* domain: "STRING_VALUE", // required
|
|
35
35
|
* domainOwner: "STRING_VALUE",
|
|
36
36
|
* repository: "STRING_VALUE", // required
|
|
@@ -31,7 +31,7 @@ export interface ListRepositoriesCommandOutput extends ListRepositoriesResult, _
|
|
|
31
31
|
* import { CodeartifactClient, ListRepositoriesCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
32
32
|
* // const { CodeartifactClient, ListRepositoriesCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
33
33
|
* const client = new CodeartifactClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // ListRepositoriesRequest
|
|
35
35
|
* repositoryPrefix: "STRING_VALUE",
|
|
36
36
|
* maxResults: Number("int"),
|
|
37
37
|
* nextToken: "STRING_VALUE",
|
|
@@ -31,7 +31,7 @@ export interface ListRepositoriesInDomainCommandOutput extends ListRepositoriesI
|
|
|
31
31
|
* import { CodeartifactClient, ListRepositoriesInDomainCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
32
32
|
* // const { CodeartifactClient, ListRepositoriesInDomainCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
33
33
|
* const client = new CodeartifactClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // ListRepositoriesInDomainRequest
|
|
35
35
|
* domain: "STRING_VALUE", // required
|
|
36
36
|
* domainOwner: "STRING_VALUE",
|
|
37
37
|
* administratorAccount: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { CodeartifactClient, ListTagsForResourceCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
27
27
|
* // const { CodeartifactClient, ListTagsForResourceCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
28
28
|
* const client = new CodeartifactClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -45,7 +45,7 @@ export interface PublishPackageVersionCommandOutput extends PublishPackageVersio
|
|
|
45
45
|
* import { CodeartifactClient, PublishPackageVersionCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
46
46
|
* // const { CodeartifactClient, PublishPackageVersionCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
47
47
|
* const client = new CodeartifactClient(config);
|
|
48
|
-
* const input = {
|
|
48
|
+
* const input = { // PublishPackageVersionRequest
|
|
49
49
|
* domain: "STRING_VALUE", // required
|
|
50
50
|
* domainOwner: "STRING_VALUE",
|
|
51
51
|
* repository: "STRING_VALUE", // required
|
|
@@ -33,7 +33,7 @@ export interface PutDomainPermissionsPolicyCommandOutput extends PutDomainPermis
|
|
|
33
33
|
* import { CodeartifactClient, PutDomainPermissionsPolicyCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
34
34
|
* // const { CodeartifactClient, PutDomainPermissionsPolicyCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
35
35
|
* const client = new CodeartifactClient(config);
|
|
36
|
-
* const input = {
|
|
36
|
+
* const input = { // PutDomainPermissionsPolicyRequest
|
|
37
37
|
* domain: "STRING_VALUE", // required
|
|
38
38
|
* domainOwner: "STRING_VALUE",
|
|
39
39
|
* policyRevision: "STRING_VALUE",
|
|
@@ -34,14 +34,14 @@ export interface PutPackageOriginConfigurationCommandOutput extends PutPackageOr
|
|
|
34
34
|
* import { CodeartifactClient, PutPackageOriginConfigurationCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
35
35
|
* // const { CodeartifactClient, PutPackageOriginConfigurationCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
36
36
|
* const client = new CodeartifactClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // PutPackageOriginConfigurationRequest
|
|
38
38
|
* domain: "STRING_VALUE", // required
|
|
39
39
|
* domainOwner: "STRING_VALUE",
|
|
40
40
|
* repository: "STRING_VALUE", // required
|
|
41
41
|
* format: "npm" || "pypi" || "maven" || "nuget" || "generic", // required
|
|
42
42
|
* namespace: "STRING_VALUE",
|
|
43
43
|
* package: "STRING_VALUE", // required
|
|
44
|
-
* restrictions: {
|
|
44
|
+
* restrictions: { // PackageOriginRestrictions
|
|
45
45
|
* publish: "ALLOW" || "BLOCK", // required
|
|
46
46
|
* upstream: "ALLOW" || "BLOCK", // required
|
|
47
47
|
* },
|
|
@@ -33,7 +33,7 @@ export interface PutRepositoryPermissionsPolicyCommandOutput extends PutReposito
|
|
|
33
33
|
* import { CodeartifactClient, PutRepositoryPermissionsPolicyCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
34
34
|
* // const { CodeartifactClient, PutRepositoryPermissionsPolicyCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
35
35
|
* const client = new CodeartifactClient(config);
|
|
36
|
-
* const input = {
|
|
36
|
+
* const input = { // PutRepositoryPermissionsPolicyRequest
|
|
37
37
|
* domain: "STRING_VALUE", // required
|
|
38
38
|
* domainOwner: "STRING_VALUE",
|
|
39
39
|
* repository: "STRING_VALUE", // required
|
|
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB
|
|
|
26
26
|
* import { CodeartifactClient, TagResourceCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
27
27
|
* // const { CodeartifactClient, TagResourceCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
28
28
|
* const client = new CodeartifactClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tags: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* tags: [ // TagList // required
|
|
32
|
+
* { // Tag
|
|
33
33
|
* key: "STRING_VALUE", // required
|
|
34
34
|
* value: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResult, __Metad
|
|
|
26
26
|
* import { CodeartifactClient, UntagResourceCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
27
27
|
* // const { CodeartifactClient, UntagResourceCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
28
28
|
* const client = new CodeartifactClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -31,17 +31,17 @@ export interface UpdatePackageVersionsStatusCommandOutput extends UpdatePackageV
|
|
|
31
31
|
* import { CodeartifactClient, UpdatePackageVersionsStatusCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
32
32
|
* // const { CodeartifactClient, UpdatePackageVersionsStatusCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
33
33
|
* const client = new CodeartifactClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // UpdatePackageVersionsStatusRequest
|
|
35
35
|
* domain: "STRING_VALUE", // required
|
|
36
36
|
* domainOwner: "STRING_VALUE",
|
|
37
37
|
* repository: "STRING_VALUE", // required
|
|
38
38
|
* format: "npm" || "pypi" || "maven" || "nuget" || "generic", // required
|
|
39
39
|
* namespace: "STRING_VALUE",
|
|
40
40
|
* package: "STRING_VALUE", // required
|
|
41
|
-
* versions: [ // required
|
|
41
|
+
* versions: [ // PackageVersionList // required
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
|
-
* versionRevisions: {
|
|
44
|
+
* versionRevisions: { // PackageVersionRevisionMap
|
|
45
45
|
* "<keys>": "STRING_VALUE",
|
|
46
46
|
* },
|
|
47
47
|
* expectedStatus: "Published" || "Unfinished" || "Unlisted" || "Archived" || "Disposed" || "Deleted",
|
|
@@ -28,13 +28,13 @@ export interface UpdateRepositoryCommandOutput extends UpdateRepositoryResult, _
|
|
|
28
28
|
* import { CodeartifactClient, UpdateRepositoryCommand } from "@aws-sdk/client-codeartifact"; // ES Modules import
|
|
29
29
|
* // const { CodeartifactClient, UpdateRepositoryCommand } = require("@aws-sdk/client-codeartifact"); // CommonJS import
|
|
30
30
|
* const client = new CodeartifactClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateRepositoryRequest
|
|
32
32
|
* domain: "STRING_VALUE", // required
|
|
33
33
|
* domainOwner: "STRING_VALUE",
|
|
34
34
|
* repository: "STRING_VALUE", // required
|
|
35
35
|
* description: "STRING_VALUE",
|
|
36
|
-
* upstreams: [
|
|
37
|
-
* {
|
|
36
|
+
* upstreams: [ // UpstreamRepositoryList
|
|
37
|
+
* { // UpstreamRepository
|
|
38
38
|
* repositoryName: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
40
40
|
* ],
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codeartifact",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codeartifact Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|