@aws-sdk/client-codeartifact 3.295.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 +31 -31
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { GetDomainPermissionsPolicyRequest, GetDomainPermissionsPolicyResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetDomainPermissionsPolicyCommand}.
8
10
  */
9
11
  export interface GetDomainPermissionsPolicyCommandInput extends GetDomainPermissionsPolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetDomainPermissionsPolicyCommand}.
13
17
  */
14
18
  export interface GetDomainPermissionsPolicyCommandOutput extends GetDomainPermissionsPolicyResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns the resource policy attached to the specified domain.
19
24
  * </p>
@@ -34,6 +39,8 @@ export interface GetDomainPermissionsPolicyCommandOutput extends GetDomainPermis
34
39
  * const response = await client.send(command);
35
40
  * ```
36
41
  *
42
+ * @param GetDomainPermissionsPolicyCommandInput - {@link GetDomainPermissionsPolicyCommandInput}
43
+ * @returns {@link GetDomainPermissionsPolicyCommandOutput}
37
44
  * @see {@link GetDomainPermissionsPolicyCommandInput} for command's `input` shape.
38
45
  * @see {@link GetDomainPermissionsPolicyCommandOutput} for command's `response` shape.
39
46
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -66,11 +73,20 @@ export interface GetDomainPermissionsPolicyCommandOutput extends GetDomainPermis
66
73
  export declare class GetDomainPermissionsPolicyCommand extends $Command<GetDomainPermissionsPolicyCommandInput, GetDomainPermissionsPolicyCommandOutput, CodeartifactClientResolvedConfig> {
67
74
  readonly input: GetDomainPermissionsPolicyCommandInput;
68
75
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
76
+ /**
77
+ * @public
78
+ */
69
79
  constructor(input: GetDomainPermissionsPolicyCommandInput);
70
80
  /**
71
81
  * @internal
72
82
  */
73
83
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDomainPermissionsPolicyCommandInput, GetDomainPermissionsPolicyCommandOutput>;
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 { GetPackageVersionAssetRequest, GetPackageVersionAssetResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetPackageVersionAssetCommand}.
8
10
  */
9
11
  export interface GetPackageVersionAssetCommandInput extends GetPackageVersionAssetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetPackageVersionAssetCommand}.
13
17
  */
14
18
  export interface GetPackageVersionAssetCommandOutput extends __WithSdkStreamMixin<GetPackageVersionAssetResult, "asset">, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns an asset (or file) that is in a package. For example, for a Maven package version, use
19
24
  * <code>GetPackageVersionAsset</code> to download a <code>JAR</code> file, a <code>POM</code> file,
@@ -29,6 +34,8 @@ export interface GetPackageVersionAssetCommandOutput extends __WithSdkStreamMixi
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param GetPackageVersionAssetCommandInput - {@link GetPackageVersionAssetCommandInput}
38
+ * @returns {@link GetPackageVersionAssetCommandOutput}
32
39
  * @see {@link GetPackageVersionAssetCommandInput} for command's `input` shape.
33
40
  * @see {@link GetPackageVersionAssetCommandOutput} for command's `response` shape.
34
41
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -66,11 +73,20 @@ export interface GetPackageVersionAssetCommandOutput extends __WithSdkStreamMixi
66
73
  export declare class GetPackageVersionAssetCommand extends $Command<GetPackageVersionAssetCommandInput, GetPackageVersionAssetCommandOutput, CodeartifactClientResolvedConfig> {
67
74
  readonly input: GetPackageVersionAssetCommandInput;
68
75
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
76
+ /**
77
+ * @public
78
+ */
69
79
  constructor(input: GetPackageVersionAssetCommandInput);
70
80
  /**
71
81
  * @internal
72
82
  */
73
83
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPackageVersionAssetCommandInput, GetPackageVersionAssetCommandOutput>;
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 { GetPackageVersionReadmeRequest, GetPackageVersionReadmeResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetPackageVersionReadmeCommand}.
8
10
  */
9
11
  export interface GetPackageVersionReadmeCommandInput extends GetPackageVersionReadmeRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetPackageVersionReadmeCommand}.
13
17
  */
14
18
  export interface GetPackageVersionReadmeCommandOutput extends GetPackageVersionReadmeResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Gets the readme file or descriptive text for a package version.
19
24
  * </p>
@@ -30,6 +35,8 @@ export interface GetPackageVersionReadmeCommandOutput extends GetPackageVersionR
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param GetPackageVersionReadmeCommandInput - {@link GetPackageVersionReadmeCommandInput}
39
+ * @returns {@link GetPackageVersionReadmeCommandOutput}
33
40
  * @see {@link GetPackageVersionReadmeCommandInput} for command's `input` shape.
34
41
  * @see {@link GetPackageVersionReadmeCommandOutput} for command's `response` shape.
35
42
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -62,11 +69,20 @@ export interface GetPackageVersionReadmeCommandOutput extends GetPackageVersionR
62
69
  export declare class GetPackageVersionReadmeCommand extends $Command<GetPackageVersionReadmeCommandInput, GetPackageVersionReadmeCommandOutput, CodeartifactClientResolvedConfig> {
63
70
  readonly input: GetPackageVersionReadmeCommandInput;
64
71
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
72
+ /**
73
+ * @public
74
+ */
65
75
  constructor(input: GetPackageVersionReadmeCommandInput);
66
76
  /**
67
77
  * @internal
68
78
  */
69
79
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPackageVersionReadmeCommandInput, GetPackageVersionReadmeCommandOutput>;
80
+ /**
81
+ * @internal
82
+ */
70
83
  private serialize;
84
+ /**
85
+ * @internal
86
+ */
71
87
  private deserialize;
72
88
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { GetRepositoryEndpointRequest, GetRepositoryEndpointResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetRepositoryEndpointCommand}.
8
10
  */
9
11
  export interface GetRepositoryEndpointCommandInput extends GetRepositoryEndpointRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetRepositoryEndpointCommand}.
13
17
  */
14
18
  export interface GetRepositoryEndpointCommandOutput extends GetRepositoryEndpointResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each
19
24
  * package format:
@@ -50,6 +55,8 @@ export interface GetRepositoryEndpointCommandOutput extends GetRepositoryEndpoin
50
55
  * const response = await client.send(command);
51
56
  * ```
52
57
  *
58
+ * @param GetRepositoryEndpointCommandInput - {@link GetRepositoryEndpointCommandInput}
59
+ * @returns {@link GetRepositoryEndpointCommandOutput}
53
60
  * @see {@link GetRepositoryEndpointCommandInput} for command's `input` shape.
54
61
  * @see {@link GetRepositoryEndpointCommandOutput} for command's `response` shape.
55
62
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -82,11 +89,20 @@ export interface GetRepositoryEndpointCommandOutput extends GetRepositoryEndpoin
82
89
  export declare class GetRepositoryEndpointCommand extends $Command<GetRepositoryEndpointCommandInput, GetRepositoryEndpointCommandOutput, CodeartifactClientResolvedConfig> {
83
90
  readonly input: GetRepositoryEndpointCommandInput;
84
91
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
92
+ /**
93
+ * @public
94
+ */
85
95
  constructor(input: GetRepositoryEndpointCommandInput);
86
96
  /**
87
97
  * @internal
88
98
  */
89
99
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRepositoryEndpointCommandInput, GetRepositoryEndpointCommandOutput>;
100
+ /**
101
+ * @internal
102
+ */
90
103
  private serialize;
104
+ /**
105
+ * @internal
106
+ */
91
107
  private deserialize;
92
108
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { GetRepositoryPermissionsPolicyRequest, GetRepositoryPermissionsPolicyResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetRepositoryPermissionsPolicyCommand}.
8
10
  */
9
11
  export interface GetRepositoryPermissionsPolicyCommandInput extends GetRepositoryPermissionsPolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetRepositoryPermissionsPolicyCommand}.
13
17
  */
14
18
  export interface GetRepositoryPermissionsPolicyCommandOutput extends GetRepositoryPermissionsPolicyResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns the resource policy that is set on a repository.
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface GetRepositoryPermissionsPolicyCommandOutput extends GetReposito
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param GetRepositoryPermissionsPolicyCommandInput - {@link GetRepositoryPermissionsPolicyCommandInput}
36
+ * @returns {@link GetRepositoryPermissionsPolicyCommandOutput}
30
37
  * @see {@link GetRepositoryPermissionsPolicyCommandInput} for command's `input` shape.
31
38
  * @see {@link GetRepositoryPermissionsPolicyCommandOutput} for command's `response` shape.
32
39
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -59,11 +66,20 @@ export interface GetRepositoryPermissionsPolicyCommandOutput extends GetReposito
59
66
  export declare class GetRepositoryPermissionsPolicyCommand extends $Command<GetRepositoryPermissionsPolicyCommandInput, GetRepositoryPermissionsPolicyCommandOutput, CodeartifactClientResolvedConfig> {
60
67
  readonly input: GetRepositoryPermissionsPolicyCommandInput;
61
68
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
62
72
  constructor(input: GetRepositoryPermissionsPolicyCommandInput);
63
73
  /**
64
74
  * @internal
65
75
  */
66
76
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRepositoryPermissionsPolicyCommandInput, GetRepositoryPermissionsPolicyCommandOutput>;
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 { ListDomainsRequest, ListDomainsResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListDomainsCommand}.
8
10
  */
9
11
  export interface ListDomainsCommandInput extends ListDomainsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListDomainsCommand}.
13
17
  */
14
18
  export interface ListDomainsCommandOutput extends ListDomainsResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p> Returns a list of <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionDescription.html">DomainSummary</a> objects for all domains owned by the Amazon Web Services account that makes
18
23
  * this call. Each returned <code>DomainSummary</code> object contains information about a
19
24
  * domain. </p>
@@ -27,6 +32,8 @@ export interface ListDomainsCommandOutput extends ListDomainsResult, __MetadataB
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListDomainsCommandInput - {@link ListDomainsCommandInput}
36
+ * @returns {@link ListDomainsCommandOutput}
30
37
  * @see {@link ListDomainsCommandInput} for command's `input` shape.
31
38
  * @see {@link ListDomainsCommandOutput} for command's `response` shape.
32
39
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -54,11 +61,20 @@ export interface ListDomainsCommandOutput extends ListDomainsResult, __MetadataB
54
61
  export declare class ListDomainsCommand extends $Command<ListDomainsCommandInput, ListDomainsCommandOutput, CodeartifactClientResolvedConfig> {
55
62
  readonly input: ListDomainsCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: ListDomainsCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDomainsCommandInput, ListDomainsCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { ListPackageVersionAssetsRequest, ListPackageVersionAssetsResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListPackageVersionAssetsCommand}.
8
10
  */
9
11
  export interface ListPackageVersionAssetsCommandInput extends ListPackageVersionAssetsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListPackageVersionAssetsCommand}.
13
17
  */
14
18
  export interface ListPackageVersionAssetsCommandOutput extends ListPackageVersionAssetsResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns a list of
19
24
  * <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_AssetSummary.html">AssetSummary</a>
@@ -29,6 +34,8 @@ export interface ListPackageVersionAssetsCommandOutput extends ListPackageVersio
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param ListPackageVersionAssetsCommandInput - {@link ListPackageVersionAssetsCommandInput}
38
+ * @returns {@link ListPackageVersionAssetsCommandOutput}
32
39
  * @see {@link ListPackageVersionAssetsCommandInput} for command's `input` shape.
33
40
  * @see {@link ListPackageVersionAssetsCommandOutput} for command's `response` shape.
34
41
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -61,11 +68,20 @@ export interface ListPackageVersionAssetsCommandOutput extends ListPackageVersio
61
68
  export declare class ListPackageVersionAssetsCommand extends $Command<ListPackageVersionAssetsCommandInput, ListPackageVersionAssetsCommandOutput, CodeartifactClientResolvedConfig> {
62
69
  readonly input: ListPackageVersionAssetsCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: ListPackageVersionAssetsCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPackageVersionAssetsCommandInput, ListPackageVersionAssetsCommandOutput>;
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 { ListPackageVersionDependenciesRequest, ListPackageVersionDependenciesResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListPackageVersionDependenciesCommand}.
8
10
  */
9
11
  export interface ListPackageVersionDependenciesCommandInput extends ListPackageVersionDependenciesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListPackageVersionDependenciesCommand}.
13
17
  */
14
18
  export interface ListPackageVersionDependenciesCommandOutput extends ListPackageVersionDependenciesResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns the direct dependencies for a package version. The dependencies are returned as
19
24
  * <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageDependency.html">PackageDependency</a>
@@ -31,6 +36,8 @@ export interface ListPackageVersionDependenciesCommandOutput extends ListPackage
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param ListPackageVersionDependenciesCommandInput - {@link ListPackageVersionDependenciesCommandInput}
40
+ * @returns {@link ListPackageVersionDependenciesCommandOutput}
34
41
  * @see {@link ListPackageVersionDependenciesCommandInput} for command's `input` shape.
35
42
  * @see {@link ListPackageVersionDependenciesCommandOutput} for command's `response` shape.
36
43
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -63,11 +70,20 @@ export interface ListPackageVersionDependenciesCommandOutput extends ListPackage
63
70
  export declare class ListPackageVersionDependenciesCommand extends $Command<ListPackageVersionDependenciesCommandInput, ListPackageVersionDependenciesCommandOutput, CodeartifactClientResolvedConfig> {
64
71
  readonly input: ListPackageVersionDependenciesCommandInput;
65
72
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
+ /**
74
+ * @public
75
+ */
66
76
  constructor(input: ListPackageVersionDependenciesCommandInput);
67
77
  /**
68
78
  * @internal
69
79
  */
70
80
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPackageVersionDependenciesCommandInput, ListPackageVersionDependenciesCommandOutput>;
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 { ListPackageVersionsRequest, ListPackageVersionsResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListPackageVersionsCommand}.
8
10
  */
9
11
  export interface ListPackageVersionsCommandInput extends ListPackageVersionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListPackageVersionsCommand}.
13
17
  */
14
18
  export interface ListPackageVersionsCommandOutput extends ListPackageVersionsResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns a list of
19
24
  * <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionSummary.html">PackageVersionSummary</a>
@@ -29,6 +34,8 @@ export interface ListPackageVersionsCommandOutput extends ListPackageVersionsRes
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param ListPackageVersionsCommandInput - {@link ListPackageVersionsCommandInput}
38
+ * @returns {@link ListPackageVersionsCommandOutput}
32
39
  * @see {@link ListPackageVersionsCommandInput} for command's `input` shape.
33
40
  * @see {@link ListPackageVersionsCommandOutput} for command's `response` shape.
34
41
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -61,11 +68,20 @@ export interface ListPackageVersionsCommandOutput extends ListPackageVersionsRes
61
68
  export declare class ListPackageVersionsCommand extends $Command<ListPackageVersionsCommandInput, ListPackageVersionsCommandOutput, CodeartifactClientResolvedConfig> {
62
69
  readonly input: ListPackageVersionsCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: ListPackageVersionsCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPackageVersionsCommandInput, ListPackageVersionsCommandOutput>;
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 { ListPackagesRequest, ListPackagesResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListPackagesCommand}.
8
10
  */
9
11
  export interface ListPackagesCommandInput extends ListPackagesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListPackagesCommand}.
13
17
  */
14
18
  export interface ListPackagesCommandOutput extends ListPackagesResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns a list of
19
24
  * <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageSummary.html">PackageSummary</a>
@@ -29,6 +34,8 @@ export interface ListPackagesCommandOutput extends ListPackagesResult, __Metadat
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param ListPackagesCommandInput - {@link ListPackagesCommandInput}
38
+ * @returns {@link ListPackagesCommandOutput}
32
39
  * @see {@link ListPackagesCommandInput} for command's `input` shape.
33
40
  * @see {@link ListPackagesCommandOutput} for command's `response` shape.
34
41
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -61,11 +68,20 @@ export interface ListPackagesCommandOutput extends ListPackagesResult, __Metadat
61
68
  export declare class ListPackagesCommand extends $Command<ListPackagesCommandInput, ListPackagesCommandOutput, CodeartifactClientResolvedConfig> {
62
69
  readonly input: ListPackagesCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: ListPackagesCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPackagesCommandInput, ListPackagesCommandOutput>;
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 { ListRepositoriesRequest, ListRepositoriesResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListRepositoriesCommand}.
8
10
  */
9
11
  export interface ListRepositoriesCommandInput extends ListRepositoriesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListRepositoriesCommand}.
13
17
  */
14
18
  export interface ListRepositoriesCommandOutput extends ListRepositoriesResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns a list of
19
24
  * <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_RepositorySummary.html">RepositorySummary</a>
@@ -30,6 +35,8 @@ export interface ListRepositoriesCommandOutput extends ListRepositoriesResult, _
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param ListRepositoriesCommandInput - {@link ListRepositoriesCommandInput}
39
+ * @returns {@link ListRepositoriesCommandOutput}
33
40
  * @see {@link ListRepositoriesCommandInput} for command's `input` shape.
34
41
  * @see {@link ListRepositoriesCommandOutput} for command's `response` shape.
35
42
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -57,11 +64,20 @@ export interface ListRepositoriesCommandOutput extends ListRepositoriesResult, _
57
64
  export declare class ListRepositoriesCommand extends $Command<ListRepositoriesCommandInput, ListRepositoriesCommandOutput, CodeartifactClientResolvedConfig> {
58
65
  readonly input: ListRepositoriesCommandInput;
59
66
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
+ /**
68
+ * @public
69
+ */
60
70
  constructor(input: ListRepositoriesCommandInput);
61
71
  /**
62
72
  * @internal
63
73
  */
64
74
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRepositoriesCommandInput, ListRepositoriesCommandOutput>;
75
+ /**
76
+ * @internal
77
+ */
65
78
  private serialize;
79
+ /**
80
+ * @internal
81
+ */
66
82
  private deserialize;
67
83
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient";
5
5
  import { ListRepositoriesInDomainRequest, ListRepositoriesInDomainResult } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListRepositoriesInDomainCommand}.
8
10
  */
9
11
  export interface ListRepositoriesInDomainCommandInput extends ListRepositoriesInDomainRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListRepositoriesInDomainCommand}.
13
17
  */
14
18
  export interface ListRepositoriesInDomainCommandOutput extends ListRepositoriesInDomainResult, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns a list of
19
24
  * <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_RepositorySummary.html">RepositorySummary</a>
@@ -30,6 +35,8 @@ export interface ListRepositoriesInDomainCommandOutput extends ListRepositoriesI
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param ListRepositoriesInDomainCommandInput - {@link ListRepositoriesInDomainCommandInput}
39
+ * @returns {@link ListRepositoriesInDomainCommandOutput}
33
40
  * @see {@link ListRepositoriesInDomainCommandInput} for command's `input` shape.
34
41
  * @see {@link ListRepositoriesInDomainCommandOutput} for command's `response` shape.
35
42
  * @see {@link CodeartifactClientResolvedConfig | config} for CodeartifactClient's `config` shape.
@@ -62,11 +69,20 @@ export interface ListRepositoriesInDomainCommandOutput extends ListRepositoriesI
62
69
  export declare class ListRepositoriesInDomainCommand extends $Command<ListRepositoriesInDomainCommandInput, ListRepositoriesInDomainCommandOutput, CodeartifactClientResolvedConfig> {
63
70
  readonly input: ListRepositoriesInDomainCommandInput;
64
71
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
72
+ /**
73
+ * @public
74
+ */
65
75
  constructor(input: ListRepositoriesInDomainCommandInput);
66
76
  /**
67
77
  * @internal
68
78
  */
69
79
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeartifactClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRepositoriesInDomainCommandInput, ListRepositoriesInDomainCommandOutput>;
80
+ /**
81
+ * @internal
82
+ */
70
83
  private serialize;
84
+ /**
85
+ * @internal
86
+ */
71
87
  private deserialize;
72
88
  }