@aws-sdk/client-codeartifact 3.296.0 → 3.297.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/dist-types/Codeartifact.d.ts +39 -0
  2. package/dist-types/CodeartifactClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateExternalConnectionCommand.d.ts +16 -0
  4. package/dist-types/commands/CopyPackageVersionsCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateDomainCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateRepositoryCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteDomainCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteDomainPermissionsPolicyCommand.d.ts +16 -0
  9. package/dist-types/commands/DeletePackageCommand.d.ts +16 -0
  10. package/dist-types/commands/DeletePackageVersionsCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteRepositoryCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteRepositoryPermissionsPolicyCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeDomainCommand.d.ts +16 -0
  14. package/dist-types/commands/DescribePackageCommand.d.ts +16 -0
  15. package/dist-types/commands/DescribePackageVersionCommand.d.ts +16 -0
  16. package/dist-types/commands/DescribeRepositoryCommand.d.ts +16 -0
  17. package/dist-types/commands/DisassociateExternalConnectionCommand.d.ts +16 -0
  18. package/dist-types/commands/DisposePackageVersionsCommand.d.ts +16 -0
  19. package/dist-types/commands/GetAuthorizationTokenCommand.d.ts +16 -0
  20. package/dist-types/commands/GetDomainPermissionsPolicyCommand.d.ts +16 -0
  21. package/dist-types/commands/GetPackageVersionAssetCommand.d.ts +16 -0
  22. package/dist-types/commands/GetPackageVersionReadmeCommand.d.ts +16 -0
  23. package/dist-types/commands/GetRepositoryEndpointCommand.d.ts +16 -0
  24. package/dist-types/commands/GetRepositoryPermissionsPolicyCommand.d.ts +16 -0
  25. package/dist-types/commands/ListDomainsCommand.d.ts +16 -0
  26. package/dist-types/commands/ListPackageVersionAssetsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListPackageVersionDependenciesCommand.d.ts +16 -0
  28. package/dist-types/commands/ListPackageVersionsCommand.d.ts +16 -0
  29. package/dist-types/commands/ListPackagesCommand.d.ts +16 -0
  30. package/dist-types/commands/ListRepositoriesCommand.d.ts +16 -0
  31. package/dist-types/commands/ListRepositoriesInDomainCommand.d.ts +16 -0
  32. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  33. package/dist-types/commands/PublishPackageVersionCommand.d.ts +17 -2
  34. package/dist-types/commands/PutDomainPermissionsPolicyCommand.d.ts +16 -0
  35. package/dist-types/commands/PutPackageOriginConfigurationCommand.d.ts +16 -0
  36. package/dist-types/commands/PutRepositoryPermissionsPolicyCommand.d.ts +16 -0
  37. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  38. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  39. package/dist-types/commands/UpdatePackageVersionsStatusCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateRepositoryCommand.d.ts +16 -0
  41. package/dist-types/models/CodeartifactServiceException.d.ts +2 -0
  42. package/dist-types/models/models_0.d.ts +294 -1
  43. package/dist-types/pagination/Interfaces.d.ts +3 -0
  44. package/dist-types/pagination/ListDomainsPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListPackageVersionAssetsPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListPackageVersionsPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListPackagesPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListRepositoriesInDomainPaginator.d.ts +3 -0
  49. package/dist-types/pagination/ListRepositoriesPaginator.d.ts +3 -0
  50. package/dist-types/ts3.4/commands/PublishPackageVersionCommand.d.ts +1 -2
  51. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { DeleteDomainPermissionsPolicyRequest, DeleteDomainPermissionsPolicyResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteDomainPermissionsPolicyCommand}.
8
10
  */
9
11
  export interface DeleteDomainPermissionsPolicyCommandInput extends DeleteDomainPermissionsPolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteDomainPermissionsPolicyCommand}.
13
17
  */
14
18
  export interface DeleteDomainPermissionsPolicyCommandOutput extends DeleteDomainPermissionsPolicyResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Deletes the resource policy set on a domain.
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface DeleteDomainPermissionsPolicyCommandOutput extends DeleteDomain
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DeleteDomainPermissionsPolicyCommandInput - {@link DeleteDomainPermissionsPolicyCommandInput}
36
+ * @returns {@link DeleteDomainPermissionsPolicyCommandOutput}
30
37
  * @see {@link DeleteDomainPermissionsPolicyCommandInput} for command's `input` shape.
31
38
  * @see {@link DeleteDomainPermissionsPolicyCommandOutput} for command's `response` shape.
32
39
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -64,11 +71,20 @@ export interface DeleteDomainPermissionsPolicyCommandOutput extends DeleteDomain
64
71
  export declare class DeleteDomainPermissionsPolicyCommand extends $Command<DeleteDomainPermissionsPolicyCommandInput, DeleteDomainPermissionsPolicyCommandOutput, CodeartifactClientResolvedConfig> {
65
72
  readonly input: DeleteDomainPermissionsPolicyCommandInput;
66
73
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
+ /**
75
+ * @public
76
+ */
67
77
  constructor(input: DeleteDomainPermissionsPolicyCommandInput);
68
78
  /**
69
79
  * @internal
70
80
  */
71
81
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDomainPermissionsPolicyCommandInput, DeleteDomainPermissionsPolicyCommandOutput>;
82
+ /**
83
+ * @internal
84
+ */
72
85
  private serialize;
86
+ /**
87
+ * @internal
88
+ */
73
89
  private deserialize;
74
90
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { DeletePackageRequest, DeletePackageResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeletePackageCommand}.
8
10
  */
9
11
  export interface DeletePackageCommandInput extends DeletePackageRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeletePackageCommand}.
13
17
  */
14
18
  export interface DeletePackageCommandOutput extends DeletePackageResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a package and all associated package versions. A deleted package cannot be restored. To delete one or more package versions, use the
18
23
  * <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_DeletePackageVersions.html">DeletePackageVersions</a> API.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface DeletePackageCommandOutput extends DeletePackageResult, __Metad
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param DeletePackageCommandInput - {@link DeletePackageCommandInput}
35
+ * @returns {@link DeletePackageCommandOutput}
29
36
  * @see {@link DeletePackageCommandInput} for command's `input` shape.
30
37
  * @see {@link DeletePackageCommandOutput} for command's `response` shape.
31
38
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -63,11 +70,20 @@ export interface DeletePackageCommandOutput extends DeletePackageResult, __Metad
63
70
  export declare class DeletePackageCommand extends $Command<DeletePackageCommandInput, DeletePackageCommandOutput, CodeartifactClientResolvedConfig> {
64
71
  readonly input: DeletePackageCommandInput;
65
72
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
+ /**
74
+ * @public
75
+ */
66
76
  constructor(input: DeletePackageCommandInput);
67
77
  /**
68
78
  * @internal
69
79
  */
70
80
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePackageCommandInput, DeletePackageCommandOutput>;
81
+ /**
82
+ * @internal
83
+ */
71
84
  private serialize;
85
+ /**
86
+ * @internal
87
+ */
72
88
  private deserialize;
73
89
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { DeletePackageVersionsRequest, DeletePackageVersionsResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeletePackageVersionsCommand}.
8
10
  */
9
11
  export interface DeletePackageVersionsCommandInput extends DeletePackageVersionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeletePackageVersionsCommand}.
13
17
  */
14
18
  export interface DeletePackageVersionsCommandOutput extends DeletePackageVersionsResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p> Deletes one or more versions of a package. A deleted package version cannot be restored
18
23
  * in your repository. If you want to remove a package version from your repository and be able
19
24
  * to restore it later, set its status to <code>Archived</code>. Archived packages cannot be
@@ -29,6 +34,8 @@ export interface DeletePackageVersionsCommandOutput extends DeletePackageVersion
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param DeletePackageVersionsCommandInput - {@link DeletePackageVersionsCommandInput}
38
+ * @returns {@link DeletePackageVersionsCommandOutput}
32
39
  * @see {@link DeletePackageVersionsCommandInput} for command's `input` shape.
33
40
  * @see {@link DeletePackageVersionsCommandOutput} for command's `response` shape.
34
41
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -66,11 +73,20 @@ export interface DeletePackageVersionsCommandOutput extends DeletePackageVersion
66
73
  export declare class DeletePackageVersionsCommand extends $Command<DeletePackageVersionsCommandInput, DeletePackageVersionsCommandOutput, CodeartifactClientResolvedConfig> {
67
74
  readonly input: DeletePackageVersionsCommandInput;
68
75
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
76
+ /**
77
+ * @public
78
+ */
69
79
  constructor(input: DeletePackageVersionsCommandInput);
70
80
  /**
71
81
  * @internal
72
82
  */
73
83
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePackageVersionsCommandInput, DeletePackageVersionsCommandOutput>;
84
+ /**
85
+ * @internal
86
+ */
74
87
  private serialize;
88
+ /**
89
+ * @internal
90
+ */
75
91
  private deserialize;
76
92
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { DeleteRepositoryRequest, DeleteRepositoryResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteRepositoryCommand}.
8
10
  */
9
11
  export interface DeleteRepositoryCommandInput extends DeleteRepositoryRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteRepositoryCommand}.
13
17
  */
14
18
  export interface DeleteRepositoryCommandOutput extends DeleteRepositoryResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Deletes a repository.
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface DeleteRepositoryCommandOutput extends DeleteRepositoryResult, _
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DeleteRepositoryCommandInput - {@link DeleteRepositoryCommandInput}
36
+ * @returns {@link DeleteRepositoryCommandOutput}
30
37
  * @see {@link DeleteRepositoryCommandInput} for command's `input` shape.
31
38
  * @see {@link DeleteRepositoryCommandOutput} for command's `response` shape.
32
39
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -64,11 +71,20 @@ export interface DeleteRepositoryCommandOutput extends DeleteRepositoryResult, _
64
71
  export declare class DeleteRepositoryCommand extends $Command<DeleteRepositoryCommandInput, DeleteRepositoryCommandOutput, CodeartifactClientResolvedConfig> {
65
72
  readonly input: DeleteRepositoryCommandInput;
66
73
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
+ /**
75
+ * @public
76
+ */
67
77
  constructor(input: DeleteRepositoryCommandInput);
68
78
  /**
69
79
  * @internal
70
80
  */
71
81
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRepositoryCommandInput, DeleteRepositoryCommandOutput>;
82
+ /**
83
+ * @internal
84
+ */
72
85
  private serialize;
86
+ /**
87
+ * @internal
88
+ */
73
89
  private deserialize;
74
90
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { DeleteRepositoryPermissionsPolicyRequest, DeleteRepositoryPermissionsPolicyResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteRepositoryPermissionsPolicyCommand}.
8
10
  */
9
11
  export interface DeleteRepositoryPermissionsPolicyCommandInput extends DeleteRepositoryPermissionsPolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteRepositoryPermissionsPolicyCommand}.
13
17
  */
14
18
  export interface DeleteRepositoryPermissionsPolicyCommandOutput extends DeleteRepositoryPermissionsPolicyResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Deletes the resource policy that is set on a repository. After a resource policy is deleted, the
19
24
  * permissions allowed and denied by the deleted policy are removed. The effect of deleting a resource policy might not be immediate.
@@ -34,6 +39,8 @@ export interface DeleteRepositoryPermissionsPolicyCommandOutput extends DeleteRe
34
39
  * const response = await client.send(command);
35
40
  * ```
36
41
  *
42
+ * @param DeleteRepositoryPermissionsPolicyCommandInput - {@link DeleteRepositoryPermissionsPolicyCommandInput}
43
+ * @returns {@link DeleteRepositoryPermissionsPolicyCommandOutput}
37
44
  * @see {@link DeleteRepositoryPermissionsPolicyCommandInput} for command's `input` shape.
38
45
  * @see {@link DeleteRepositoryPermissionsPolicyCommandOutput} for command's `response` shape.
39
46
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -71,11 +78,20 @@ export interface DeleteRepositoryPermissionsPolicyCommandOutput extends DeleteRe
71
78
  export declare class DeleteRepositoryPermissionsPolicyCommand extends $Command<DeleteRepositoryPermissionsPolicyCommandInput, DeleteRepositoryPermissionsPolicyCommandOutput, CodeartifactClientResolvedConfig> {
72
79
  readonly input: DeleteRepositoryPermissionsPolicyCommandInput;
73
80
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
81
+ /**
82
+ * @public
83
+ */
74
84
  constructor(input: DeleteRepositoryPermissionsPolicyCommandInput);
75
85
  /**
76
86
  * @internal
77
87
  */
78
88
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRepositoryPermissionsPolicyCommandInput, DeleteRepositoryPermissionsPolicyCommandOutput>;
89
+ /**
90
+ * @internal
91
+ */
79
92
  private serialize;
93
+ /**
94
+ * @internal
95
+ */
80
96
  private deserialize;
81
97
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { DescribeDomainRequest, DescribeDomainResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeDomainCommand}.
8
10
  */
9
11
  export interface DescribeDomainCommandInput extends DescribeDomainRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeDomainCommand}.
13
17
  */
14
18
  export interface DescribeDomainCommandOutput extends DescribeDomainResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns a
19
24
  * <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_DomainDescription.html">DomainDescription</a>
@@ -29,6 +34,8 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResult, __Met
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param DescribeDomainCommandInput - {@link DescribeDomainCommandInput}
38
+ * @returns {@link DescribeDomainCommandOutput}
32
39
  * @see {@link DescribeDomainCommandInput} for command's `input` shape.
33
40
  * @see {@link DescribeDomainCommandOutput} for command's `response` shape.
34
41
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -61,11 +68,20 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResult, __Met
61
68
  export declare class DescribeDomainCommand extends $Command<DescribeDomainCommandInput, DescribeDomainCommandOutput, CodeartifactClientResolvedConfig> {
62
69
  readonly input: DescribeDomainCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: DescribeDomainCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDomainCommandInput, DescribeDomainCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { DescribePackageRequest, DescribePackageResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribePackageCommand}.
8
10
  */
9
11
  export interface DescribePackageCommandInput extends DescribePackageRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribePackageCommand}.
13
17
  */
14
18
  export interface DescribePackageCommandOutput extends DescribePackageResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p> Returns a
18
23
  * <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageDescription.html">PackageDescription</a>
19
24
  * object that contains information about the requested package.</p>
@@ -27,6 +32,8 @@ export interface DescribePackageCommandOutput extends DescribePackageResult, __M
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DescribePackageCommandInput - {@link DescribePackageCommandInput}
36
+ * @returns {@link DescribePackageCommandOutput}
30
37
  * @see {@link DescribePackageCommandInput} for command's `input` shape.
31
38
  * @see {@link DescribePackageCommandOutput} for command's `response` shape.
32
39
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -59,11 +66,20 @@ export interface DescribePackageCommandOutput extends DescribePackageResult, __M
59
66
  export declare class DescribePackageCommand extends $Command<DescribePackageCommandInput, DescribePackageCommandOutput, CodeartifactClientResolvedConfig> {
60
67
  readonly input: DescribePackageCommandInput;
61
68
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
62
72
  constructor(input: DescribePackageCommandInput);
63
73
  /**
64
74
  * @internal
65
75
  */
66
76
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePackageCommandInput, DescribePackageCommandOutput>;
77
+ /**
78
+ * @internal
79
+ */
67
80
  private serialize;
81
+ /**
82
+ * @internal
83
+ */
68
84
  private deserialize;
69
85
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { DescribePackageVersionRequest, DescribePackageVersionResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribePackageVersionCommand}.
8
10
  */
9
11
  export interface DescribePackageVersionCommandInput extends DescribePackageVersionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribePackageVersionCommand}.
13
17
  */
14
18
  export interface DescribePackageVersionCommandOutput extends DescribePackageVersionResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns a
19
24
  * <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionDescription.html">PackageVersionDescription</a>
@@ -29,6 +34,8 @@ export interface DescribePackageVersionCommandOutput extends DescribePackageVers
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param DescribePackageVersionCommandInput - {@link DescribePackageVersionCommandInput}
38
+ * @returns {@link DescribePackageVersionCommandOutput}
32
39
  * @see {@link DescribePackageVersionCommandInput} for command's `input` shape.
33
40
  * @see {@link DescribePackageVersionCommandOutput} for command's `response` shape.
34
41
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -66,11 +73,20 @@ export interface DescribePackageVersionCommandOutput extends DescribePackageVers
66
73
  export declare class DescribePackageVersionCommand extends $Command<DescribePackageVersionCommandInput, DescribePackageVersionCommandOutput, CodeartifactClientResolvedConfig> {
67
74
  readonly input: DescribePackageVersionCommandInput;
68
75
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
76
+ /**
77
+ * @public
78
+ */
69
79
  constructor(input: DescribePackageVersionCommandInput);
70
80
  /**
71
81
  * @internal
72
82
  */
73
83
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePackageVersionCommandInput, DescribePackageVersionCommandOutput>;
84
+ /**
85
+ * @internal
86
+ */
74
87
  private serialize;
88
+ /**
89
+ * @internal
90
+ */
75
91
  private deserialize;
76
92
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { DescribeRepositoryRequest, DescribeRepositoryResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeRepositoryCommand}.
8
10
  */
9
11
  export interface DescribeRepositoryCommandInput extends DescribeRepositoryRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeRepositoryCommand}.
13
17
  */
14
18
  export interface DescribeRepositoryCommandOutput extends DescribeRepositoryResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns a <code>RepositoryDescription</code> object that contains detailed information
19
24
  * about the requested repository.
@@ -28,6 +33,8 @@ export interface DescribeRepositoryCommandOutput extends DescribeRepositoryResul
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param DescribeRepositoryCommandInput - {@link DescribeRepositoryCommandInput}
37
+ * @returns {@link DescribeRepositoryCommandOutput}
31
38
  * @see {@link DescribeRepositoryCommandInput} for command's `input` shape.
32
39
  * @see {@link DescribeRepositoryCommandOutput} for command's `response` shape.
33
40
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -60,11 +67,20 @@ export interface DescribeRepositoryCommandOutput extends DescribeRepositoryResul
60
67
  export declare class DescribeRepositoryCommand extends $Command<DescribeRepositoryCommandInput, DescribeRepositoryCommandOutput, CodeartifactClientResolvedConfig> {
61
68
  readonly input: DescribeRepositoryCommandInput;
62
69
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
70
+ /**
71
+ * @public
72
+ */
63
73
  constructor(input: DescribeRepositoryCommandInput);
64
74
  /**
65
75
  * @internal
66
76
  */
67
77
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRepositoryCommandInput, DescribeRepositoryCommandOutput>;
78
+ /**
79
+ * @internal
80
+ */
68
81
  private serialize;
82
+ /**
83
+ * @internal
84
+ */
69
85
  private deserialize;
70
86
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { DisassociateExternalConnectionRequest, DisassociateExternalConnectionResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DisassociateExternalConnectionCommand}.
8
10
  */
9
11
  export interface DisassociateExternalConnectionCommandInput extends DisassociateExternalConnectionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DisassociateExternalConnectionCommand}.
13
17
  */
14
18
  export interface DisassociateExternalConnectionCommandOutput extends DisassociateExternalConnectionResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Removes an existing external connection from a repository.
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface DisassociateExternalConnectionCommandOutput extends Disassociat
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DisassociateExternalConnectionCommandInput - {@link DisassociateExternalConnectionCommandInput}
36
+ * @returns {@link DisassociateExternalConnectionCommandOutput}
30
37
  * @see {@link DisassociateExternalConnectionCommandInput} for command's `input` shape.
31
38
  * @see {@link DisassociateExternalConnectionCommandOutput} for command's `response` shape.
32
39
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -69,11 +76,20 @@ export interface DisassociateExternalConnectionCommandOutput extends Disassociat
69
76
  export declare class DisassociateExternalConnectionCommand extends $Command<DisassociateExternalConnectionCommandInput, DisassociateExternalConnectionCommandOutput, CodeartifactClientResolvedConfig> {
70
77
  readonly input: DisassociateExternalConnectionCommandInput;
71
78
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
79
+ /**
80
+ * @public
81
+ */
72
82
  constructor(input: DisassociateExternalConnectionCommandInput);
73
83
  /**
74
84
  * @internal
75
85
  */
76
86
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateExternalConnectionCommandInput, DisassociateExternalConnectionCommandOutput>;
87
+ /**
88
+ * @internal
89
+ */
77
90
  private serialize;
91
+ /**
92
+ * @internal
93
+ */
78
94
  private deserialize;
79
95
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { DisposePackageVersionsRequest, DisposePackageVersionsResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DisposePackageVersionsCommand}.
8
10
  */
9
11
  export interface DisposePackageVersionsCommandInput extends DisposePackageVersionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DisposePackageVersionsCommand}.
13
17
  */
14
18
  export interface DisposePackageVersionsCommandOutput extends DisposePackageVersionsResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Deletes the assets in package versions and sets the package versions' status to <code>Disposed</code>.
19
24
  * A disposed package version cannot be restored in your repository because its assets are deleted.
@@ -36,6 +41,8 @@ export interface DisposePackageVersionsCommandOutput extends DisposePackageVersi
36
41
  * const response = await client.send(command);
37
42
  * ```
38
43
  *
44
+ * @param DisposePackageVersionsCommandInput - {@link DisposePackageVersionsCommandInput}
45
+ * @returns {@link DisposePackageVersionsCommandOutput}
39
46
  * @see {@link DisposePackageVersionsCommandInput} for command's `input` shape.
40
47
  * @see {@link DisposePackageVersionsCommandOutput} for command's `response` shape.
41
48
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -73,11 +80,20 @@ export interface DisposePackageVersionsCommandOutput extends DisposePackageVersi
73
80
  export declare class DisposePackageVersionsCommand extends $Command<DisposePackageVersionsCommandInput, DisposePackageVersionsCommandOutput, CodeartifactClientResolvedConfig> {
74
81
  readonly input: DisposePackageVersionsCommandInput;
75
82
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
83
+ /**
84
+ * @public
85
+ */
76
86
  constructor(input: DisposePackageVersionsCommandInput);
77
87
  /**
78
88
  * @internal
79
89
  */
80
90
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisposePackageVersionsCommandInput, DisposePackageVersionsCommandOutput>;
91
+ /**
92
+ * @internal
93
+ */
81
94
  private serialize;
95
+ /**
96
+ * @internal
97
+ */
82
98
  private deserialize;
83
99
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { GetAuthorizationTokenRequest, GetAuthorizationTokenResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetAuthorizationTokenCommand}.
8
10
  */
9
11
  export interface GetAuthorizationTokenCommandInput extends GetAuthorizationTokenRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetAuthorizationTokenCommand}.
13
17
  */
14
18
  export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationTokenResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Generates a temporary authorization token for accessing repositories in the domain.
19
24
  * This API requires the <code>codeartifact:GetAuthorizationToken</code> and <code>sts:GetServiceBearerToken</code> permissions.
@@ -45,6 +50,8 @@ export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationToke
45
50
  * const response = await client.send(command);
46
51
  * ```
47
52
  *
53
+ * @param GetAuthorizationTokenCommandInput - {@link GetAuthorizationTokenCommandInput}
54
+ * @returns {@link GetAuthorizationTokenCommandOutput}
48
55
  * @see {@link GetAuthorizationTokenCommandInput} for command's `input` shape.
49
56
  * @see {@link GetAuthorizationTokenCommandOutput} for command's `response` shape.
50
57
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -77,11 +84,20 @@ export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationToke
77
84
  export declare class GetAuthorizationTokenCommand extends $Command<GetAuthorizationTokenCommandInput, GetAuthorizationTokenCommandOutput, CodeartifactClientResolvedConfig> {
78
85
  readonly input: GetAuthorizationTokenCommandInput;
79
86
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
87
+ /**
88
+ * @public
89
+ */
80
90
  constructor(input: GetAuthorizationTokenCommandInput);
81
91
  /**
82
92
  * @internal
83
93
  */
84
94
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAuthorizationTokenCommandInput, GetAuthorizationTokenCommandOutput>;
95
+ /**
96
+ * @internal
97
+ */
85
98
  private serialize;
99
+ /**
100
+ * @internal
101
+ */
86
102
  private deserialize;
87
103
  }