@aws-sdk/client-codeartifact 3.288.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,40 @@ export interface AssociateExternalConnectionCommandOutput extends AssociateExter
|
|
|
33
33
|
* @see {@link AssociateExternalConnectionCommandOutput} 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 ServiceQuotaExceededException} (client fault)
|
|
55
|
+
* <p>
|
|
56
|
+
* The operation did not succeed because it would have exceeded a service limit for your account.
|
|
57
|
+
* </p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
60
|
+
* <p>
|
|
61
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
62
|
+
* </p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ValidationException} (client fault)
|
|
65
|
+
* <p>
|
|
66
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
67
|
+
* </p>
|
|
68
|
+
*
|
|
69
|
+
*
|
|
36
70
|
*/
|
|
37
71
|
export declare class AssociateExternalConnectionCommand extends $Command<AssociateExternalConnectionCommandInput, AssociateExternalConnectionCommandOutput, CodeartifactClientResolvedConfig> {
|
|
38
72
|
readonly input: AssociateExternalConnectionCommandInput;
|
|
@@ -36,6 +36,40 @@ export interface CopyPackageVersionsCommandOutput extends CopyPackageVersionsRes
|
|
|
36
36
|
* @see {@link CopyPackageVersionsCommandOutput} 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 CopyPackageVersionsCommand extends $Command<CopyPackageVersionsCommandInput, CopyPackageVersionsCommandOutput, CodeartifactClientResolvedConfig> {
|
|
41
75
|
readonly input: CopyPackageVersionsCommandInput;
|
|
@@ -38,6 +38,40 @@ export interface CreateDomainCommandOutput extends CreateDomainResult, __Metadat
|
|
|
38
38
|
* @see {@link CreateDomainCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
42
|
+
* <p>
|
|
43
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ConflictException} (client fault)
|
|
47
|
+
* <p>
|
|
48
|
+
* The operation did not succeed because prerequisites are not met.
|
|
49
|
+
* </p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InternalServerException} (server fault)
|
|
52
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
55
|
+
* <p>
|
|
56
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
57
|
+
* </p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
60
|
+
* <p>
|
|
61
|
+
* The operation did not succeed because it would have exceeded a service limit for your account.
|
|
62
|
+
* </p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
65
|
+
* <p>
|
|
66
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
67
|
+
* </p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ValidationException} (client fault)
|
|
70
|
+
* <p>
|
|
71
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
72
|
+
* </p>
|
|
73
|
+
*
|
|
74
|
+
*
|
|
41
75
|
*/
|
|
42
76
|
export declare class CreateDomainCommand extends $Command<CreateDomainCommandInput, CreateDomainCommandOutput, CodeartifactClientResolvedConfig> {
|
|
43
77
|
readonly input: CreateDomainCommandInput;
|
|
@@ -31,6 +31,40 @@ export interface CreateRepositoryCommandOutput extends CreateRepositoryResult, _
|
|
|
31
31
|
* @see {@link CreateRepositoryCommandOutput} 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 ConflictException} (client fault)
|
|
40
|
+
* <p>
|
|
41
|
+
* The operation did not succeed because prerequisites are not met.
|
|
42
|
+
* </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalServerException} (server fault)
|
|
45
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
53
|
+
* <p>
|
|
54
|
+
* The operation did not succeed because it would have exceeded a service limit for your account.
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
58
|
+
* <p>
|
|
59
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
60
|
+
* </p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ValidationException} (client fault)
|
|
63
|
+
* <p>
|
|
64
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
65
|
+
* </p>
|
|
66
|
+
*
|
|
67
|
+
*
|
|
34
68
|
*/
|
|
35
69
|
export declare class CreateRepositoryCommand extends $Command<CreateRepositoryCommandInput, CreateRepositoryCommandOutput, CodeartifactClientResolvedConfig> {
|
|
36
70
|
readonly input: CreateRepositoryCommandInput;
|
|
@@ -32,6 +32,30 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResult, __Metadat
|
|
|
32
32
|
* @see {@link DeleteDomainCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>
|
|
37
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
38
|
+
* </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ConflictException} (client fault)
|
|
41
|
+
* <p>
|
|
42
|
+
* The operation did not succeed because prerequisites are not met.
|
|
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 ThrottlingException} (client fault)
|
|
49
|
+
* <p>
|
|
50
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
51
|
+
* </p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>
|
|
55
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
56
|
+
* </p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
35
59
|
*/
|
|
36
60
|
export declare class DeleteDomainCommand extends $Command<DeleteDomainCommandInput, DeleteDomainCommandOutput, CodeartifactClientResolvedConfig> {
|
|
37
61
|
readonly input: DeleteDomainCommandInput;
|
|
@@ -31,6 +31,35 @@ export interface DeleteDomainPermissionsPolicyCommandOutput extends DeleteDomain
|
|
|
31
31
|
* @see {@link DeleteDomainPermissionsPolicyCommandOutput} 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 ConflictException} (client fault)
|
|
40
|
+
* <p>
|
|
41
|
+
* The operation did not succeed because prerequisites are not met.
|
|
42
|
+
* </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalServerException} (server fault)
|
|
45
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
53
|
+
* <p>
|
|
54
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ValidationException} (client fault)
|
|
58
|
+
* <p>
|
|
59
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
60
|
+
* </p>
|
|
61
|
+
*
|
|
62
|
+
*
|
|
34
63
|
*/
|
|
35
64
|
export declare class DeleteDomainPermissionsPolicyCommand extends $Command<DeleteDomainPermissionsPolicyCommandInput, DeleteDomainPermissionsPolicyCommandOutput, CodeartifactClientResolvedConfig> {
|
|
36
65
|
readonly input: DeleteDomainPermissionsPolicyCommandInput;
|
|
@@ -30,6 +30,35 @@ export interface DeletePackageCommandOutput extends DeletePackageResult, __Metad
|
|
|
30
30
|
* @see {@link DeletePackageCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>
|
|
35
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ConflictException} (client fault)
|
|
39
|
+
* <p>
|
|
40
|
+
* The operation did not succeed because prerequisites are not met.
|
|
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
|
+
*
|
|
33
62
|
*/
|
|
34
63
|
export declare class DeletePackageCommand extends $Command<DeletePackageCommandInput, DeletePackageCommandOutput, CodeartifactClientResolvedConfig> {
|
|
35
64
|
readonly input: DeletePackageCommandInput;
|
|
@@ -33,6 +33,35 @@ export interface DeletePackageVersionsCommandOutput extends DeletePackageVersion
|
|
|
33
33
|
* @see {@link DeletePackageVersionsCommandOutput} 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 DeletePackageVersionsCommand extends $Command<DeletePackageVersionsCommandInput, DeletePackageVersionsCommandOutput, CodeartifactClientResolvedConfig> {
|
|
38
67
|
readonly input: DeletePackageVersionsCommandInput;
|
|
@@ -31,6 +31,35 @@ export interface DeleteRepositoryCommandOutput extends DeleteRepositoryResult, _
|
|
|
31
31
|
* @see {@link DeleteRepositoryCommandOutput} 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 ConflictException} (client fault)
|
|
40
|
+
* <p>
|
|
41
|
+
* The operation did not succeed because prerequisites are not met.
|
|
42
|
+
* </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalServerException} (server fault)
|
|
45
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
53
|
+
* <p>
|
|
54
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ValidationException} (client fault)
|
|
58
|
+
* <p>
|
|
59
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
60
|
+
* </p>
|
|
61
|
+
*
|
|
62
|
+
*
|
|
34
63
|
*/
|
|
35
64
|
export declare class DeleteRepositoryCommand extends $Command<DeleteRepositoryCommandInput, DeleteRepositoryCommandOutput, CodeartifactClientResolvedConfig> {
|
|
36
65
|
readonly input: DeleteRepositoryCommandInput;
|
|
@@ -38,6 +38,35 @@ export interface DeleteRepositoryPermissionsPolicyCommandOutput extends DeleteRe
|
|
|
38
38
|
* @see {@link DeleteRepositoryPermissionsPolicyCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
42
|
+
* <p>
|
|
43
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ConflictException} (client fault)
|
|
47
|
+
* <p>
|
|
48
|
+
* The operation did not succeed because prerequisites are not met.
|
|
49
|
+
* </p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InternalServerException} (server fault)
|
|
52
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
55
|
+
* <p>
|
|
56
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
57
|
+
* </p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
60
|
+
* <p>
|
|
61
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
62
|
+
* </p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ValidationException} (client fault)
|
|
65
|
+
* <p>
|
|
66
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
67
|
+
* </p>
|
|
68
|
+
*
|
|
69
|
+
*
|
|
41
70
|
*/
|
|
42
71
|
export declare class DeleteRepositoryPermissionsPolicyCommand extends $Command<DeleteRepositoryPermissionsPolicyCommandInput, DeleteRepositoryPermissionsPolicyCommandOutput, CodeartifactClientResolvedConfig> {
|
|
43
72
|
readonly input: DeleteRepositoryPermissionsPolicyCommandInput;
|
|
@@ -33,6 +33,30 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResult, __Met
|
|
|
33
33
|
* @see {@link DescribeDomainCommandOutput} 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 DescribeDomainCommand extends $Command<DescribeDomainCommandInput, DescribeDomainCommandOutput, CodeartifactClientResolvedConfig> {
|
|
38
62
|
readonly input: DescribeDomainCommandInput;
|
|
@@ -31,6 +31,30 @@ export interface DescribePackageCommandOutput extends DescribePackageResult, __M
|
|
|
31
31
|
* @see {@link DescribePackageCommandOutput} 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 DescribePackageCommand extends $Command<DescribePackageCommandInput, DescribePackageCommandOutput, CodeartifactClientResolvedConfig> {
|
|
36
60
|
readonly input: DescribePackageCommandInput;
|
|
@@ -33,6 +33,35 @@ export interface DescribePackageVersionCommandOutput extends DescribePackageVers
|
|
|
33
33
|
* @see {@link DescribePackageVersionCommandOutput} 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 DescribePackageVersionCommand extends $Command<DescribePackageVersionCommandInput, DescribePackageVersionCommandOutput, CodeartifactClientResolvedConfig> {
|
|
38
67
|
readonly input: DescribePackageVersionCommandInput;
|
|
@@ -32,6 +32,30 @@ export interface DescribeRepositoryCommandOutput extends DescribeRepositoryResul
|
|
|
32
32
|
* @see {@link DescribeRepositoryCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>
|
|
37
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
38
|
+
* </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerException} (server fault)
|
|
41
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p>
|
|
45
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
46
|
+
* </p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
49
|
+
* <p>
|
|
50
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
51
|
+
* </p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>
|
|
55
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
56
|
+
* </p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
35
59
|
*/
|
|
36
60
|
export declare class DescribeRepositoryCommand extends $Command<DescribeRepositoryCommandInput, DescribeRepositoryCommandOutput, CodeartifactClientResolvedConfig> {
|
|
37
61
|
readonly input: DescribeRepositoryCommandInput;
|
|
@@ -31,6 +31,40 @@ export interface DisassociateExternalConnectionCommandOutput extends Disassociat
|
|
|
31
31
|
* @see {@link DisassociateExternalConnectionCommandOutput} 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 ConflictException} (client fault)
|
|
40
|
+
* <p>
|
|
41
|
+
* The operation did not succeed because prerequisites are not met.
|
|
42
|
+
* </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalServerException} (server fault)
|
|
45
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
53
|
+
* <p>
|
|
54
|
+
* The operation did not succeed because it would have exceeded a service limit for your account.
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
58
|
+
* <p>
|
|
59
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
60
|
+
* </p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ValidationException} (client fault)
|
|
63
|
+
* <p>
|
|
64
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
65
|
+
* </p>
|
|
66
|
+
*
|
|
67
|
+
*
|
|
34
68
|
*/
|
|
35
69
|
export declare class DisassociateExternalConnectionCommand extends $Command<DisassociateExternalConnectionCommandInput, DisassociateExternalConnectionCommandOutput, CodeartifactClientResolvedConfig> {
|
|
36
70
|
readonly input: DisassociateExternalConnectionCommandInput;
|
|
@@ -40,6 +40,35 @@ export interface DisposePackageVersionsCommandOutput extends DisposePackageVersi
|
|
|
40
40
|
* @see {@link DisposePackageVersionsCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
44
|
+
* <p>
|
|
45
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
46
|
+
* </p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ConflictException} (client fault)
|
|
49
|
+
* <p>
|
|
50
|
+
* The operation did not succeed because prerequisites are not met.
|
|
51
|
+
* </p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link InternalServerException} (server fault)
|
|
54
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
57
|
+
* <p>
|
|
58
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
59
|
+
* </p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
62
|
+
* <p>
|
|
63
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
64
|
+
* </p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ValidationException} (client fault)
|
|
67
|
+
* <p>
|
|
68
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
69
|
+
* </p>
|
|
70
|
+
*
|
|
71
|
+
*
|
|
43
72
|
*/
|
|
44
73
|
export declare class DisposePackageVersionsCommand extends $Command<DisposePackageVersionsCommandInput, DisposePackageVersionsCommandOutput, CodeartifactClientResolvedConfig> {
|
|
45
74
|
readonly input: DisposePackageVersionsCommandInput;
|
|
@@ -49,6 +49,30 @@ export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationToke
|
|
|
49
49
|
* @see {@link GetAuthorizationTokenCommandOutput} for command's `response` shape.
|
|
50
50
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
51
51
|
*
|
|
52
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
53
|
+
* <p>
|
|
54
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link InternalServerException} (server fault)
|
|
58
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
61
|
+
* <p>
|
|
62
|
+
* The operation did not succeed because the resource requested is not found in the service.
|
|
63
|
+
* </p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
66
|
+
* <p>
|
|
67
|
+
* The operation did not succeed because too many requests are sent to the service.
|
|
68
|
+
* </p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ValidationException} (client fault)
|
|
71
|
+
* <p>
|
|
72
|
+
* The operation did not succeed because a parameter in the request was sent with an invalid value.
|
|
73
|
+
* </p>
|
|
74
|
+
*
|
|
75
|
+
*
|
|
52
76
|
*/
|
|
53
77
|
export declare class GetAuthorizationTokenCommand extends $Command<GetAuthorizationTokenCommandInput, GetAuthorizationTokenCommandOutput, CodeartifactClientResolvedConfig> {
|
|
54
78
|
readonly input: GetAuthorizationTokenCommandInput;
|
|
@@ -38,6 +38,30 @@ export interface GetDomainPermissionsPolicyCommandOutput extends GetDomainPermis
|
|
|
38
38
|
* @see {@link GetDomainPermissionsPolicyCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
42
|
+
* <p>
|
|
43
|
+
* The operation did not succeed because of an unauthorized access attempt.
|
|
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
|
+
*
|
|
41
65
|
*/
|
|
42
66
|
export declare class GetDomainPermissionsPolicyCommand extends $Command<GetDomainPermissionsPolicyCommandInput, GetDomainPermissionsPolicyCommandOutput, CodeartifactClientResolvedConfig> {
|
|
43
67
|
readonly input: GetDomainPermissionsPolicyCommandInput;
|