@aws-sdk/client-codeartifact 3.289.0 → 3.290.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 +34 -0
- package/dist-types/commands/CopyPackageVersionsCommand.d.ts +34 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +34 -0
- package/dist-types/commands/CreateRepositoryCommand.d.ts +34 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +24 -0
- package/dist-types/commands/DeleteDomainPermissionsPolicyCommand.d.ts +29 -0
- package/dist-types/commands/DeletePackageCommand.d.ts +29 -0
- package/dist-types/commands/DeletePackageVersionsCommand.d.ts +29 -0
- package/dist-types/commands/DeleteRepositoryCommand.d.ts +29 -0
- package/dist-types/commands/DeleteRepositoryPermissionsPolicyCommand.d.ts +29 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +24 -0
- package/dist-types/commands/DescribePackageCommand.d.ts +24 -0
- package/dist-types/commands/DescribePackageVersionCommand.d.ts +29 -0
- package/dist-types/commands/DescribeRepositoryCommand.d.ts +24 -0
- package/dist-types/commands/DisassociateExternalConnectionCommand.d.ts +34 -0
- package/dist-types/commands/DisposePackageVersionsCommand.d.ts +29 -0
- package/dist-types/commands/GetAuthorizationTokenCommand.d.ts +24 -0
- package/dist-types/commands/GetDomainPermissionsPolicyCommand.d.ts +24 -0
- package/dist-types/commands/GetPackageVersionAssetCommand.d.ts +29 -0
- package/dist-types/commands/GetPackageVersionReadmeCommand.d.ts +24 -0
- package/dist-types/commands/GetRepositoryEndpointCommand.d.ts +24 -0
- package/dist-types/commands/GetRepositoryPermissionsPolicyCommand.d.ts +24 -0
- package/dist-types/commands/ListDomainsCommand.d.ts +19 -0
- package/dist-types/commands/ListPackageVersionAssetsCommand.d.ts +24 -0
- package/dist-types/commands/ListPackageVersionDependenciesCommand.d.ts +24 -0
- package/dist-types/commands/ListPackageVersionsCommand.d.ts +24 -0
- package/dist-types/commands/ListPackagesCommand.d.ts +24 -0
- package/dist-types/commands/ListRepositoriesCommand.d.ts +19 -0
- package/dist-types/commands/ListRepositoriesInDomainCommand.d.ts +24 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +21 -0
- package/dist-types/commands/PublishPackageVersionCommand.d.ts +34 -0
- package/dist-types/commands/PutDomainPermissionsPolicyCommand.d.ts +34 -0
- package/dist-types/commands/PutPackageOriginConfigurationCommand.d.ts +24 -0
- package/dist-types/commands/PutRepositoryPermissionsPolicyCommand.d.ts +34 -0
- package/dist-types/commands/TagResourceCommand.d.ts +26 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +21 -0
- package/dist-types/commands/UpdatePackageVersionsStatusCommand.d.ts +29 -0
- package/dist-types/commands/UpdateRepositoryCommand.d.ts +34 -0
- package/package.json +31 -31
|
@@ -33,6 +33,35 @@ export interface GetPackageVersionAssetCommandOutput extends __WithSdkStreamMixi
|
|
|
33
33
|
* @see {@link GetPackageVersionAssetCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
37
|
+
* <p>
|
|
38
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
39
|
+
* </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ConflictException} (client fault)
|
|
42
|
+
* <p>
|
|
43
|
+
* The operation did not succeed because prerequisites are not met.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerException} (server fault)
|
|
47
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
|
+
* <p>
|
|
51
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
55
|
+
* <p>
|
|
56
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
57
|
+
* </p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ValidationException} (client fault)
|
|
60
|
+
* <p>
|
|
61
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
62
|
+
* </p>
|
|
63
|
+
*
|
|
64
|
+
*
|
|
36
65
|
*/
|
|
37
66
|
export declare class GetPackageVersionAssetCommand extends $Command<GetPackageVersionAssetCommandInput, GetPackageVersionAssetCommandOutput, CodeartifactClientResolvedConfig> {
|
|
38
67
|
readonly input: GetPackageVersionAssetCommandInput;
|
|
@@ -34,6 +34,30 @@ export interface GetPackageVersionReadmeCommandOutput extends GetPackageVersionR
|
|
|
34
34
|
* @see {@link GetPackageVersionReadmeCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
38
|
+
* <p>
|
|
39
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>
|
|
47
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>
|
|
52
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ValidationException} (client fault)
|
|
56
|
+
* <p>
|
|
57
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
58
|
+
* </p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
37
61
|
*/
|
|
38
62
|
export declare class GetPackageVersionReadmeCommand extends $Command<GetPackageVersionReadmeCommandInput, GetPackageVersionReadmeCommandOutput, CodeartifactClientResolvedConfig> {
|
|
39
63
|
readonly input: GetPackageVersionReadmeCommandInput;
|
|
@@ -54,6 +54,30 @@ export interface GetRepositoryEndpointCommandOutput extends GetRepositoryEndpoin
|
|
|
54
54
|
* @see {@link GetRepositoryEndpointCommandOutput} for command's `response` shape.
|
|
55
55
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
56
56
|
*
|
|
57
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
58
|
+
* <p>
|
|
59
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
60
|
+
* </p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link InternalServerException} (server fault)
|
|
63
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
66
|
+
* <p>
|
|
67
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
68
|
+
* </p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
71
|
+
* <p>
|
|
72
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
73
|
+
* </p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ValidationException} (client fault)
|
|
76
|
+
* <p>
|
|
77
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
78
|
+
* </p>
|
|
79
|
+
*
|
|
80
|
+
*
|
|
57
81
|
*/
|
|
58
82
|
export declare class GetRepositoryEndpointCommand extends $Command<GetRepositoryEndpointCommandInput, GetRepositoryEndpointCommandOutput, CodeartifactClientResolvedConfig> {
|
|
59
83
|
readonly input: GetRepositoryEndpointCommandInput;
|
|
@@ -31,6 +31,30 @@ export interface GetRepositoryPermissionsPolicyCommandOutput extends GetReposito
|
|
|
31
31
|
* @see {@link GetRepositoryPermissionsPolicyCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>
|
|
36
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
37
|
+
* </p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>
|
|
44
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
45
|
+
* </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ValidationException} (client fault)
|
|
53
|
+
* <p>
|
|
54
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
34
58
|
*/
|
|
35
59
|
export declare class GetRepositoryPermissionsPolicyCommand extends $Command<GetRepositoryPermissionsPolicyCommandInput, GetRepositoryPermissionsPolicyCommandOutput, CodeartifactClientResolvedConfig> {
|
|
36
60
|
readonly input: GetRepositoryPermissionsPolicyCommandInput;
|
|
@@ -31,6 +31,25 @@ export interface ListDomainsCommandOutput extends ListDomainsResult, __MetadataB
|
|
|
31
31
|
* @see {@link ListDomainsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>
|
|
36
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
37
|
+
* </p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
43
|
+
* <p>
|
|
44
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
45
|
+
* </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
34
53
|
*/
|
|
35
54
|
export declare class ListDomainsCommand extends $Command<ListDomainsCommandInput, ListDomainsCommandOutput, CodeartifactClientResolvedConfig> {
|
|
36
55
|
readonly input: ListDomainsCommandInput;
|
|
@@ -33,6 +33,30 @@ export interface ListPackageVersionAssetsCommandOutput extends ListPackageVersio
|
|
|
33
33
|
* @see {@link ListPackageVersionAssetsCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
37
|
+
* <p>
|
|
38
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
39
|
+
* </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerException} (server fault)
|
|
42
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>
|
|
46
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
47
|
+
* </p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p>
|
|
51
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p>
|
|
56
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
57
|
+
* </p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
36
60
|
*/
|
|
37
61
|
export declare class ListPackageVersionAssetsCommand extends $Command<ListPackageVersionAssetsCommandInput, ListPackageVersionAssetsCommandOutput, CodeartifactClientResolvedConfig> {
|
|
38
62
|
readonly input: ListPackageVersionAssetsCommandInput;
|
|
@@ -35,6 +35,30 @@ export interface ListPackageVersionDependenciesCommandOutput extends ListPackage
|
|
|
35
35
|
* @see {@link ListPackageVersionDependenciesCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
39
|
+
* <p>
|
|
40
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
41
|
+
* </p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerException} (server fault)
|
|
44
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
|
+
* <p>
|
|
48
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
49
|
+
* </p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
52
|
+
* <p>
|
|
53
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
54
|
+
* </p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ValidationException} (client fault)
|
|
57
|
+
* <p>
|
|
58
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
59
|
+
* </p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
38
62
|
*/
|
|
39
63
|
export declare class ListPackageVersionDependenciesCommand extends $Command<ListPackageVersionDependenciesCommandInput, ListPackageVersionDependenciesCommandOutput, CodeartifactClientResolvedConfig> {
|
|
40
64
|
readonly input: ListPackageVersionDependenciesCommandInput;
|
|
@@ -33,6 +33,30 @@ export interface ListPackageVersionsCommandOutput extends ListPackageVersionsRes
|
|
|
33
33
|
* @see {@link ListPackageVersionsCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
37
|
+
* <p>
|
|
38
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
39
|
+
* </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerException} (server fault)
|
|
42
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>
|
|
46
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
47
|
+
* </p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p>
|
|
51
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p>
|
|
56
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
57
|
+
* </p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
36
60
|
*/
|
|
37
61
|
export declare class ListPackageVersionsCommand extends $Command<ListPackageVersionsCommandInput, ListPackageVersionsCommandOutput, CodeartifactClientResolvedConfig> {
|
|
38
62
|
readonly input: ListPackageVersionsCommandInput;
|
|
@@ -33,6 +33,30 @@ export interface ListPackagesCommandOutput extends ListPackagesResult, __Metadat
|
|
|
33
33
|
* @see {@link ListPackagesCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
37
|
+
* <p>
|
|
38
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
39
|
+
* </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerException} (server fault)
|
|
42
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>
|
|
46
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
47
|
+
* </p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p>
|
|
51
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p>
|
|
56
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
57
|
+
* </p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
36
60
|
*/
|
|
37
61
|
export declare class ListPackagesCommand extends $Command<ListPackagesCommandInput, ListPackagesCommandOutput, CodeartifactClientResolvedConfig> {
|
|
38
62
|
readonly input: ListPackagesCommandInput;
|
|
@@ -34,6 +34,25 @@ export interface ListRepositoriesCommandOutput extends ListRepositoriesResult, _
|
|
|
34
34
|
* @see {@link ListRepositoriesCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
38
|
+
* <p>
|
|
39
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p>
|
|
47
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>
|
|
52
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
37
56
|
*/
|
|
38
57
|
export declare class ListRepositoriesCommand extends $Command<ListRepositoriesCommandInput, ListRepositoriesCommandOutput, CodeartifactClientResolvedConfig> {
|
|
39
58
|
readonly input: ListRepositoriesCommandInput;
|
|
@@ -34,6 +34,30 @@ export interface ListRepositoriesInDomainCommandOutput extends ListRepositoriesI
|
|
|
34
34
|
* @see {@link ListRepositoriesInDomainCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
38
|
+
* <p>
|
|
39
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>
|
|
47
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>
|
|
52
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ValidationException} (client fault)
|
|
56
|
+
* <p>
|
|
57
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
58
|
+
* </p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
37
61
|
*/
|
|
38
62
|
export declare class ListRepositoriesInDomainCommand extends $Command<ListRepositoriesInDomainCommandInput, ListRepositoriesInDomainCommandOutput, CodeartifactClientResolvedConfig> {
|
|
39
63
|
readonly input: ListRepositoriesInDomainCommandInput;
|
|
@@ -29,6 +29,27 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
29
29
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>
|
|
34
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
35
|
+
* </p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
38
|
+
* <p>
|
|
39
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
43
|
+
* <p>
|
|
44
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
45
|
+
* </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
32
53
|
*/
|
|
33
54
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodeartifactClientResolvedConfig> {
|
|
34
55
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -43,6 +43,40 @@ export interface PublishPackageVersionCommandOutput extends PublishPackageVersio
|
|
|
43
43
|
* @see {@link PublishPackageVersionCommandOutput} for command's `response` shape.
|
|
44
44
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
45
45
|
*
|
|
46
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
47
|
+
* <p>
|
|
48
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
49
|
+
* </p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ConflictException} (client fault)
|
|
52
|
+
* <p>
|
|
53
|
+
* The operation did not succeed because prerequisites are not met.
|
|
54
|
+
* </p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link InternalServerException} (server fault)
|
|
57
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
60
|
+
* <p>
|
|
61
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
62
|
+
* </p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
65
|
+
* <p>
|
|
66
|
+
* The operation did not succeed because it would have exceeded a service limit for your account.
|
|
67
|
+
* </p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
70
|
+
* <p>
|
|
71
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
72
|
+
* </p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ValidationException} (client fault)
|
|
75
|
+
* <p>
|
|
76
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
77
|
+
* </p>
|
|
78
|
+
*
|
|
79
|
+
*
|
|
46
80
|
*/
|
|
47
81
|
export declare class PublishPackageVersionCommand extends $Command<PublishPackageVersionCommandInput, PublishPackageVersionCommandOutput, CodeartifactClientResolvedConfig> {
|
|
48
82
|
readonly input: PublishPackageVersionCommandInput;
|
|
@@ -36,6 +36,40 @@ export interface PutDomainPermissionsPolicyCommandOutput extends PutDomainPermis
|
|
|
36
36
|
* @see {@link PutDomainPermissionsPolicyCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
40
|
+
* <p>
|
|
41
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
42
|
+
* </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ConflictException} (client fault)
|
|
45
|
+
* <p>
|
|
46
|
+
* The operation did not succeed because prerequisites are not met.
|
|
47
|
+
* </p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InternalServerException} (server fault)
|
|
50
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
53
|
+
* <p>
|
|
54
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
58
|
+
* <p>
|
|
59
|
+
* The operation did not succeed because it would have exceeded a service limit for your account.
|
|
60
|
+
* </p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
63
|
+
* <p>
|
|
64
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
65
|
+
* </p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ValidationException} (client fault)
|
|
68
|
+
* <p>
|
|
69
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
70
|
+
* </p>
|
|
71
|
+
*
|
|
72
|
+
*
|
|
39
73
|
*/
|
|
40
74
|
export declare class PutDomainPermissionsPolicyCommand extends $Command<PutDomainPermissionsPolicyCommandInput, PutDomainPermissionsPolicyCommandOutput, CodeartifactClientResolvedConfig> {
|
|
41
75
|
readonly input: PutDomainPermissionsPolicyCommandInput;
|
|
@@ -37,6 +37,30 @@ export interface PutPackageOriginConfigurationCommandOutput extends PutPackageOr
|
|
|
37
37
|
* @see {@link PutPackageOriginConfigurationCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
41
|
+
* <p>
|
|
42
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
43
|
+
* </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InternalServerException} (server fault)
|
|
46
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
|
+
* <p>
|
|
50
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
51
|
+
* </p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
54
|
+
* <p>
|
|
55
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
56
|
+
* </p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ValidationException} (client fault)
|
|
59
|
+
* <p>
|
|
60
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
61
|
+
* </p>
|
|
62
|
+
*
|
|
63
|
+
*
|
|
40
64
|
*/
|
|
41
65
|
export declare class PutPackageOriginConfigurationCommand extends $Command<PutPackageOriginConfigurationCommandInput, PutPackageOriginConfigurationCommandOutput, CodeartifactClientResolvedConfig> {
|
|
42
66
|
readonly input: PutPackageOriginConfigurationCommandInput;
|
|
@@ -36,6 +36,40 @@ export interface PutRepositoryPermissionsPolicyCommandOutput extends PutReposito
|
|
|
36
36
|
* @see {@link PutRepositoryPermissionsPolicyCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
40
|
+
* <p>
|
|
41
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
42
|
+
* </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ConflictException} (client fault)
|
|
45
|
+
* <p>
|
|
46
|
+
* The operation did not succeed because prerequisites are not met.
|
|
47
|
+
* </p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InternalServerException} (server fault)
|
|
50
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
53
|
+
* <p>
|
|
54
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
58
|
+
* <p>
|
|
59
|
+
* The operation did not succeed because it would have exceeded a service limit for your account.
|
|
60
|
+
* </p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
63
|
+
* <p>
|
|
64
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
65
|
+
* </p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ValidationException} (client fault)
|
|
68
|
+
* <p>
|
|
69
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
70
|
+
* </p>
|
|
71
|
+
*
|
|
72
|
+
*
|
|
39
73
|
*/
|
|
40
74
|
export declare class PutRepositoryPermissionsPolicyCommand extends $Command<PutRepositoryPermissionsPolicyCommandInput, PutRepositoryPermissionsPolicyCommandOutput, CodeartifactClientResolvedConfig> {
|
|
41
75
|
readonly input: PutRepositoryPermissionsPolicyCommandInput;
|
|
@@ -29,6 +29,32 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB
|
|
|
29
29
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>
|
|
34
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
35
|
+
* </p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
38
|
+
* <p>
|
|
39
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
43
|
+
* <p>
|
|
44
|
+
* The operation did not succeed because it would have exceeded a service limit for your account.
|
|
45
|
+
* </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ValidationException} (client fault)
|
|
53
|
+
* <p>
|
|
54
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
32
58
|
*/
|
|
33
59
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CodeartifactClientResolvedConfig> {
|
|
34
60
|
readonly input: TagResourceCommandInput;
|
|
@@ -29,6 +29,27 @@ export interface UntagResourceCommandOutput extends UntagResourceResult, __Metad
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>
|
|
34
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
35
|
+
* </p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
38
|
+
* <p>
|
|
39
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
43
|
+
* <p>
|
|
44
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
45
|
+
* </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
32
53
|
*/
|
|
33
54
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CodeartifactClientResolvedConfig> {
|
|
34
55
|
readonly input: UntagResourceCommandInput;
|
|
@@ -34,6 +34,35 @@ export interface UpdatePackageVersionsStatusCommandOutput extends UpdatePackageV
|
|
|
34
34
|
* @see {@link UpdatePackageVersionsStatusCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
38
|
+
* <p>
|
|
39
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ConflictException} (client fault)
|
|
43
|
+
* <p>
|
|
44
|
+
* The operation did not succeed because prerequisites are not met.
|
|
45
|
+
* </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InternalServerException} (server fault)
|
|
48
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
|
+
* <p>
|
|
52
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
56
|
+
* <p>
|
|
57
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
58
|
+
* </p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ValidationException} (client fault)
|
|
61
|
+
* <p>
|
|
62
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
63
|
+
* </p>
|
|
64
|
+
*
|
|
65
|
+
*
|
|
37
66
|
*/
|
|
38
67
|
export declare class UpdatePackageVersionsStatusCommand extends $Command<UpdatePackageVersionsStatusCommandInput, UpdatePackageVersionsStatusCommandOutput, CodeartifactClientResolvedConfig> {
|
|
39
68
|
readonly input: UpdatePackageVersionsStatusCommandInput;
|