@aws-sdk/client-codeartifact 3.952.0 → 3.953.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 +618 -401
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AssociateExternalConnectionCommand.js +2 -2
- package/dist-es/commands/CopyPackageVersionsCommand.js +2 -2
- package/dist-es/commands/CreateDomainCommand.js +2 -2
- package/dist-es/commands/CreatePackageGroupCommand.js +2 -2
- package/dist-es/commands/CreateRepositoryCommand.js +2 -2
- package/dist-es/commands/DeleteDomainCommand.js +2 -2
- package/dist-es/commands/DeleteDomainPermissionsPolicyCommand.js +2 -2
- package/dist-es/commands/DeletePackageCommand.js +2 -2
- package/dist-es/commands/DeletePackageGroupCommand.js +2 -2
- package/dist-es/commands/DeletePackageVersionsCommand.js +2 -2
- package/dist-es/commands/DeleteRepositoryCommand.js +2 -2
- package/dist-es/commands/DeleteRepositoryPermissionsPolicyCommand.js +2 -2
- package/dist-es/commands/DescribeDomainCommand.js +2 -2
- package/dist-es/commands/DescribePackageCommand.js +2 -2
- package/dist-es/commands/DescribePackageGroupCommand.js +2 -2
- package/dist-es/commands/DescribePackageVersionCommand.js +2 -2
- package/dist-es/commands/DescribeRepositoryCommand.js +2 -2
- package/dist-es/commands/DisassociateExternalConnectionCommand.js +2 -2
- package/dist-es/commands/DisposePackageVersionsCommand.js +2 -2
- package/dist-es/commands/GetAssociatedPackageGroupCommand.js +2 -2
- package/dist-es/commands/GetAuthorizationTokenCommand.js +2 -2
- package/dist-es/commands/GetDomainPermissionsPolicyCommand.js +2 -2
- package/dist-es/commands/GetPackageVersionAssetCommand.js +2 -2
- package/dist-es/commands/GetPackageVersionReadmeCommand.js +2 -2
- package/dist-es/commands/GetRepositoryEndpointCommand.js +2 -2
- package/dist-es/commands/GetRepositoryPermissionsPolicyCommand.js +2 -2
- package/dist-es/commands/ListAllowedRepositoriesForGroupCommand.js +2 -2
- package/dist-es/commands/ListAssociatedPackagesCommand.js +2 -2
- package/dist-es/commands/ListDomainsCommand.js +2 -2
- package/dist-es/commands/ListPackageGroupsCommand.js +2 -2
- package/dist-es/commands/ListPackageVersionAssetsCommand.js +2 -2
- package/dist-es/commands/ListPackageVersionDependenciesCommand.js +2 -2
- package/dist-es/commands/ListPackageVersionsCommand.js +2 -2
- package/dist-es/commands/ListPackagesCommand.js +2 -2
- package/dist-es/commands/ListRepositoriesCommand.js +2 -2
- package/dist-es/commands/ListRepositoriesInDomainCommand.js +2 -2
- package/dist-es/commands/ListSubPackageGroupsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PublishPackageVersionCommand.js +2 -2
- package/dist-es/commands/PutDomainPermissionsPolicyCommand.js +2 -2
- package/dist-es/commands/PutPackageOriginConfigurationCommand.js +2 -2
- package/dist-es/commands/PutRepositoryPermissionsPolicyCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdatePackageGroupCommand.js +2 -2
- package/dist-es/commands/UpdatePackageGroupOriginConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdatePackageVersionsStatusCommand.js +2 -2
- package/dist-es/commands/UpdateRepositoryCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +378 -349
- package/dist-types/CodeartifactClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +182 -208
- package/dist-types/ts3.4/CodeartifactClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +181 -210
- package/package.json +35 -35
|
@@ -27,7 +27,12 @@ const getRuntimeConfig = (config) => {
|
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
30
|
-
protocol: config?.protocol ??
|
|
30
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
31
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
32
|
+
defaultNamespace: "com.amazonaws.codeartifact",
|
|
33
|
+
version: "2018-09-22",
|
|
34
|
+
serviceTarget: "CodeArtifactControlPlaneService",
|
|
35
|
+
},
|
|
31
36
|
sdkStreamMixin: config?.sdkStreamMixin ?? util_stream_1.sdkStreamMixin,
|
|
32
37
|
serviceId: config?.serviceId ?? "codeartifact",
|
|
33
38
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateExternalConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateExternalConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateExternalConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateExternalConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "AssociateExternalConnection", {})
|
|
13
13
|
.n("CodeartifactClient", "AssociateExternalConnectionCommand")
|
|
14
|
-
.sc(AssociateExternalConnection)
|
|
14
|
+
.sc(AssociateExternalConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CopyPackageVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { CopyPackageVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CopyPackageVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CopyPackageVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "CopyPackageVersions", {})
|
|
13
13
|
.n("CodeartifactClient", "CopyPackageVersionsCommand")
|
|
14
|
-
.sc(CopyPackageVersions)
|
|
14
|
+
.sc(CopyPackageVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateDomain } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDomain$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDomainCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDomainCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "CreateDomain", {})
|
|
13
13
|
.n("CodeartifactClient", "CreateDomainCommand")
|
|
14
|
-
.sc(CreateDomain)
|
|
14
|
+
.sc(CreateDomain$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreatePackageGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePackageGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePackageGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePackageGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "CreatePackageGroup", {})
|
|
13
13
|
.n("CodeartifactClient", "CreatePackageGroupCommand")
|
|
14
|
-
.sc(CreatePackageGroup)
|
|
14
|
+
.sc(CreatePackageGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRepository } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRepository$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRepositoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRepositoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "CreateRepository", {})
|
|
13
13
|
.n("CodeartifactClient", "CreateRepositoryCommand")
|
|
14
|
-
.sc(CreateRepository)
|
|
14
|
+
.sc(CreateRepository$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteDomain } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDomain$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDomainCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDomainCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "DeleteDomain", {})
|
|
13
13
|
.n("CodeartifactClient", "DeleteDomainCommand")
|
|
14
|
-
.sc(DeleteDomain)
|
|
14
|
+
.sc(DeleteDomain$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteDomainPermissionsPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDomainPermissionsPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDomainPermissionsPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDomainPermissionsPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "DeleteDomainPermissionsPolicy", {})
|
|
13
13
|
.n("CodeartifactClient", "DeleteDomainPermissionsPolicyCommand")
|
|
14
|
-
.sc(DeleteDomainPermissionsPolicy)
|
|
14
|
+
.sc(DeleteDomainPermissionsPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePackage } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "DeletePackage", {})
|
|
13
13
|
.n("CodeartifactClient", "DeletePackageCommand")
|
|
14
|
-
.sc(DeletePackage)
|
|
14
|
+
.sc(DeletePackage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePackageGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePackageGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePackageGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePackageGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "DeletePackageGroup", {})
|
|
13
13
|
.n("CodeartifactClient", "DeletePackageGroupCommand")
|
|
14
|
-
.sc(DeletePackageGroup)
|
|
14
|
+
.sc(DeletePackageGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePackageVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePackageVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePackageVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePackageVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "DeletePackageVersions", {})
|
|
13
13
|
.n("CodeartifactClient", "DeletePackageVersionsCommand")
|
|
14
|
-
.sc(DeletePackageVersions)
|
|
14
|
+
.sc(DeletePackageVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRepository } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRepository$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRepositoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRepositoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "DeleteRepository", {})
|
|
13
13
|
.n("CodeartifactClient", "DeleteRepositoryCommand")
|
|
14
|
-
.sc(DeleteRepository)
|
|
14
|
+
.sc(DeleteRepository$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRepositoryPermissionsPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRepositoryPermissionsPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRepositoryPermissionsPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRepositoryPermissionsPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "DeleteRepositoryPermissionsPolicy", {})
|
|
13
13
|
.n("CodeartifactClient", "DeleteRepositoryPermissionsPolicyCommand")
|
|
14
|
-
.sc(DeleteRepositoryPermissionsPolicy)
|
|
14
|
+
.sc(DeleteRepositoryPermissionsPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeDomain } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeDomain$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeDomainCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeDomainCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "DescribeDomain", {})
|
|
13
13
|
.n("CodeartifactClient", "DescribeDomainCommand")
|
|
14
|
-
.sc(DescribeDomain)
|
|
14
|
+
.sc(DescribeDomain$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribePackage } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribePackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribePackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribePackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "DescribePackage", {})
|
|
13
13
|
.n("CodeartifactClient", "DescribePackageCommand")
|
|
14
|
-
.sc(DescribePackage)
|
|
14
|
+
.sc(DescribePackage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribePackageGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribePackageGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribePackageGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribePackageGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "DescribePackageGroup", {})
|
|
13
13
|
.n("CodeartifactClient", "DescribePackageGroupCommand")
|
|
14
|
-
.sc(DescribePackageGroup)
|
|
14
|
+
.sc(DescribePackageGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribePackageVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribePackageVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribePackageVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribePackageVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "DescribePackageVersion", {})
|
|
13
13
|
.n("CodeartifactClient", "DescribePackageVersionCommand")
|
|
14
|
-
.sc(DescribePackageVersion)
|
|
14
|
+
.sc(DescribePackageVersion$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeRepository } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeRepository$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeRepositoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeRepositoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "DescribeRepository", {})
|
|
13
13
|
.n("CodeartifactClient", "DescribeRepositoryCommand")
|
|
14
|
-
.sc(DescribeRepository)
|
|
14
|
+
.sc(DescribeRepository$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociateExternalConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateExternalConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateExternalConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateExternalConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "DisassociateExternalConnection", {})
|
|
13
13
|
.n("CodeartifactClient", "DisassociateExternalConnectionCommand")
|
|
14
|
-
.sc(DisassociateExternalConnection)
|
|
14
|
+
.sc(DisassociateExternalConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisposePackageVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { DisposePackageVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisposePackageVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisposePackageVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "DisposePackageVersions", {})
|
|
13
13
|
.n("CodeartifactClient", "DisposePackageVersionsCommand")
|
|
14
|
-
.sc(DisposePackageVersions)
|
|
14
|
+
.sc(DisposePackageVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAssociatedPackageGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAssociatedPackageGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAssociatedPackageGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAssociatedPackageGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "GetAssociatedPackageGroup", {})
|
|
13
13
|
.n("CodeartifactClient", "GetAssociatedPackageGroupCommand")
|
|
14
|
-
.sc(GetAssociatedPackageGroup)
|
|
14
|
+
.sc(GetAssociatedPackageGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAuthorizationToken } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAuthorizationToken$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAuthorizationTokenCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAuthorizationTokenCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "GetAuthorizationToken", {})
|
|
13
13
|
.n("CodeartifactClient", "GetAuthorizationTokenCommand")
|
|
14
|
-
.sc(GetAuthorizationToken)
|
|
14
|
+
.sc(GetAuthorizationToken$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDomainPermissionsPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDomainPermissionsPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDomainPermissionsPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDomainPermissionsPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "GetDomainPermissionsPolicy", {})
|
|
13
13
|
.n("CodeartifactClient", "GetDomainPermissionsPolicyCommand")
|
|
14
|
-
.sc(GetDomainPermissionsPolicy)
|
|
14
|
+
.sc(GetDomainPermissionsPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetPackageVersionAsset } from "../schemas/schemas_0";
|
|
4
|
+
import { GetPackageVersionAsset$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetPackageVersionAssetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetPackageVersionAssetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "GetPackageVersionAsset", {})
|
|
13
13
|
.n("CodeartifactClient", "GetPackageVersionAssetCommand")
|
|
14
|
-
.sc(GetPackageVersionAsset)
|
|
14
|
+
.sc(GetPackageVersionAsset$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetPackageVersionReadme } from "../schemas/schemas_0";
|
|
4
|
+
import { GetPackageVersionReadme$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetPackageVersionReadmeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetPackageVersionReadmeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "GetPackageVersionReadme", {})
|
|
13
13
|
.n("CodeartifactClient", "GetPackageVersionReadmeCommand")
|
|
14
|
-
.sc(GetPackageVersionReadme)
|
|
14
|
+
.sc(GetPackageVersionReadme$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRepositoryEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRepositoryEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRepositoryEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRepositoryEndpointCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "GetRepositoryEndpoint", {})
|
|
13
13
|
.n("CodeartifactClient", "GetRepositoryEndpointCommand")
|
|
14
|
-
.sc(GetRepositoryEndpoint)
|
|
14
|
+
.sc(GetRepositoryEndpoint$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRepositoryPermissionsPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRepositoryPermissionsPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRepositoryPermissionsPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRepositoryPermissionsPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "GetRepositoryPermissionsPolicy", {})
|
|
13
13
|
.n("CodeartifactClient", "GetRepositoryPermissionsPolicyCommand")
|
|
14
|
-
.sc(GetRepositoryPermissionsPolicy)
|
|
14
|
+
.sc(GetRepositoryPermissionsPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAllowedRepositoriesForGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAllowedRepositoriesForGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAllowedRepositoriesForGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAllowedRepositoriesForGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "ListAllowedRepositoriesForGroup", {})
|
|
13
13
|
.n("CodeartifactClient", "ListAllowedRepositoriesForGroupCommand")
|
|
14
|
-
.sc(ListAllowedRepositoriesForGroup)
|
|
14
|
+
.sc(ListAllowedRepositoriesForGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAssociatedPackages } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAssociatedPackages$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAssociatedPackagesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAssociatedPackagesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "ListAssociatedPackages", {})
|
|
13
13
|
.n("CodeartifactClient", "ListAssociatedPackagesCommand")
|
|
14
|
-
.sc(ListAssociatedPackages)
|
|
14
|
+
.sc(ListAssociatedPackages$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDomains } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDomains$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDomainsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDomainsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "ListDomains", {})
|
|
13
13
|
.n("CodeartifactClient", "ListDomainsCommand")
|
|
14
|
-
.sc(ListDomains)
|
|
14
|
+
.sc(ListDomains$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPackageGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPackageGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPackageGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPackageGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "ListPackageGroups", {})
|
|
13
13
|
.n("CodeartifactClient", "ListPackageGroupsCommand")
|
|
14
|
-
.sc(ListPackageGroups)
|
|
14
|
+
.sc(ListPackageGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPackageVersionAssets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPackageVersionAssets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPackageVersionAssetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPackageVersionAssetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "ListPackageVersionAssets", {})
|
|
13
13
|
.n("CodeartifactClient", "ListPackageVersionAssetsCommand")
|
|
14
|
-
.sc(ListPackageVersionAssets)
|
|
14
|
+
.sc(ListPackageVersionAssets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPackageVersionDependencies } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPackageVersionDependencies$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPackageVersionDependenciesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPackageVersionDependenciesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "ListPackageVersionDependencies", {})
|
|
13
13
|
.n("CodeartifactClient", "ListPackageVersionDependenciesCommand")
|
|
14
|
-
.sc(ListPackageVersionDependencies)
|
|
14
|
+
.sc(ListPackageVersionDependencies$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPackageVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPackageVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPackageVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPackageVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "ListPackageVersions", {})
|
|
13
13
|
.n("CodeartifactClient", "ListPackageVersionsCommand")
|
|
14
|
-
.sc(ListPackageVersions)
|
|
14
|
+
.sc(ListPackageVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPackages } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPackages$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPackagesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPackagesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "ListPackages", {})
|
|
13
13
|
.n("CodeartifactClient", "ListPackagesCommand")
|
|
14
|
-
.sc(ListPackages)
|
|
14
|
+
.sc(ListPackages$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRepositories } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRepositories$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRepositoriesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRepositoriesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeArtifactControlPlaneService", "ListRepositories", {})
|
|
13
13
|
.n("CodeartifactClient", "ListRepositoriesCommand")
|
|
14
|
-
.sc(ListRepositories)
|
|
14
|
+
.sc(ListRepositories$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|