@aws-sdk/client-codeartifact 3.535.0 → 3.539.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/README.md +149 -6
- package/dist-cjs/index.js +609 -2
- package/dist-es/Codeartifact.js +20 -0
- package/dist-es/commands/CreatePackageGroupCommand.js +24 -0
- package/dist-es/commands/DeletePackageGroupCommand.js +24 -0
- package/dist-es/commands/DescribePackageGroupCommand.js +24 -0
- package/dist-es/commands/GetAssociatedPackageGroupCommand.js +24 -0
- package/dist-es/commands/GetAuthorizationTokenCommand.js +2 -1
- package/dist-es/commands/ListAllowedRepositoriesForGroupCommand.js +24 -0
- package/dist-es/commands/ListAssociatedPackagesCommand.js +24 -0
- package/dist-es/commands/ListPackageGroupsCommand.js +24 -0
- package/dist-es/commands/ListSubPackageGroupsCommand.js +24 -0
- package/dist-es/commands/UpdatePackageGroupCommand.js +24 -0
- package/dist-es/commands/UpdatePackageGroupOriginConfigurationCommand.js +24 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/models/models_0.js +22 -0
- package/dist-es/pagination/ListAllowedRepositoriesForGroupPaginator.js +4 -0
- package/dist-es/pagination/ListAssociatedPackagesPaginator.js +4 -0
- package/dist-es/pagination/ListPackageGroupsPaginator.js +4 -0
- package/dist-es/pagination/ListSubPackageGroupsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +347 -0
- package/dist-types/Codeartifact.d.ts +139 -6
- package/dist-types/CodeartifactClient.d.ts +81 -8
- package/dist-types/commands/CreatePackageGroupCommand.d.ts +129 -0
- package/dist-types/commands/DeletePackageCommand.d.ts +1 -1
- package/dist-types/commands/DeletePackageGroupCommand.d.ts +123 -0
- package/dist-types/commands/DescribePackageGroupCommand.d.ts +110 -0
- package/dist-types/commands/GetAssociatedPackageGroupCommand.d.ts +112 -0
- package/dist-types/commands/GetRepositoryEndpointCommand.d.ts +10 -0
- package/dist-types/commands/ListAllowedRepositoriesForGroupCommand.d.ts +97 -0
- package/dist-types/commands/ListAssociatedPackagesCommand.d.ts +92 -0
- package/dist-types/commands/ListPackageGroupsCommand.d.ts +114 -0
- package/dist-types/commands/ListSubPackageGroupsCommand.d.ts +117 -0
- package/dist-types/commands/PublishPackageVersionCommand.d.ts +3 -3
- package/dist-types/commands/UpdatePackageGroupCommand.d.ts +117 -0
- package/dist-types/commands/UpdatePackageGroupOriginConfigurationCommand.d.ts +141 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/index.d.ts +69 -6
- package/dist-types/models/models_0.d.ts +1258 -159
- package/dist-types/pagination/ListAllowedRepositoriesForGroupPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssociatedPackagesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPackageGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSubPackageGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
- package/dist-types/ts3.4/Codeartifact.d.ts +176 -0
- package/dist-types/ts3.4/CodeartifactClient.d.ts +60 -0
- package/dist-types/ts3.4/commands/CreatePackageGroupCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeletePackageGroupCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribePackageGroupCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetAssociatedPackageGroupCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListAllowedRepositoriesForGroupCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListAssociatedPackagesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListPackageGroupsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListSubPackageGroupsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdatePackageGroupCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdatePackageGroupOriginConfigurationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +196 -6
- package/dist-types/ts3.4/pagination/ListAllowedRepositoriesForGroupPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssociatedPackagesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPackageGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSubPackageGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +120 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAllowedRepositoriesForGroupCommandInput, ListAllowedRepositoriesForGroupCommandOutput } from "../commands/ListAllowedRepositoriesForGroupCommand";
|
|
3
|
+
import { CodeartifactPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAllowedRepositoriesForGroup: (config: CodeartifactPaginationConfiguration, input: ListAllowedRepositoriesForGroupCommandInput, ...rest: any[]) => Paginator<ListAllowedRepositoriesForGroupCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAssociatedPackagesCommandInput, ListAssociatedPackagesCommandOutput } from "../commands/ListAssociatedPackagesCommand";
|
|
3
|
+
import { CodeartifactPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAssociatedPackages: (config: CodeartifactPaginationConfiguration, input: ListAssociatedPackagesCommandInput, ...rest: any[]) => Paginator<ListAssociatedPackagesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListPackageGroupsCommandInput, ListPackageGroupsCommandOutput } from "../commands/ListPackageGroupsCommand";
|
|
3
|
+
import { CodeartifactPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListPackageGroups: (config: CodeartifactPaginationConfiguration, input: ListPackageGroupsCommandInput, ...rest: any[]) => Paginator<ListPackageGroupsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListSubPackageGroupsCommandInput, ListSubPackageGroupsCommandOutput } from "../commands/ListSubPackageGroupsCommand";
|
|
3
|
+
import { CodeartifactPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListSubPackageGroups: (config: CodeartifactPaginationConfiguration, input: ListSubPackageGroupsCommandInput, ...rest: any[]) => Paginator<ListSubPackageGroupsCommandOutput>;
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAllowedRepositoriesForGroupPaginator";
|
|
3
|
+
export * from "./ListAssociatedPackagesPaginator";
|
|
2
4
|
export * from "./ListDomainsPaginator";
|
|
5
|
+
export * from "./ListPackageGroupsPaginator";
|
|
3
6
|
export * from "./ListPackageVersionAssetsPaginator";
|
|
4
7
|
export * from "./ListPackageVersionsPaginator";
|
|
5
8
|
export * from "./ListPackagesPaginator";
|
|
6
9
|
export * from "./ListRepositoriesInDomainPaginator";
|
|
7
10
|
export * from "./ListRepositoriesPaginator";
|
|
11
|
+
export * from "./ListSubPackageGroupsPaginator";
|
|
@@ -3,32 +3,40 @@ import { SdkStreamSerdeContext as __SdkStreamSerdeContext, SerdeContext as __Ser
|
|
|
3
3
|
import { AssociateExternalConnectionCommandInput, AssociateExternalConnectionCommandOutput } from "../commands/AssociateExternalConnectionCommand";
|
|
4
4
|
import { CopyPackageVersionsCommandInput, CopyPackageVersionsCommandOutput } from "../commands/CopyPackageVersionsCommand";
|
|
5
5
|
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "../commands/CreateDomainCommand";
|
|
6
|
+
import { CreatePackageGroupCommandInput, CreatePackageGroupCommandOutput } from "../commands/CreatePackageGroupCommand";
|
|
6
7
|
import { CreateRepositoryCommandInput, CreateRepositoryCommandOutput } from "../commands/CreateRepositoryCommand";
|
|
7
8
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "../commands/DeleteDomainCommand";
|
|
8
9
|
import { DeleteDomainPermissionsPolicyCommandInput, DeleteDomainPermissionsPolicyCommandOutput } from "../commands/DeleteDomainPermissionsPolicyCommand";
|
|
9
10
|
import { DeletePackageCommandInput, DeletePackageCommandOutput } from "../commands/DeletePackageCommand";
|
|
11
|
+
import { DeletePackageGroupCommandInput, DeletePackageGroupCommandOutput } from "../commands/DeletePackageGroupCommand";
|
|
10
12
|
import { DeletePackageVersionsCommandInput, DeletePackageVersionsCommandOutput } from "../commands/DeletePackageVersionsCommand";
|
|
11
13
|
import { DeleteRepositoryCommandInput, DeleteRepositoryCommandOutput } from "../commands/DeleteRepositoryCommand";
|
|
12
14
|
import { DeleteRepositoryPermissionsPolicyCommandInput, DeleteRepositoryPermissionsPolicyCommandOutput } from "../commands/DeleteRepositoryPermissionsPolicyCommand";
|
|
13
15
|
import { DescribeDomainCommandInput, DescribeDomainCommandOutput } from "../commands/DescribeDomainCommand";
|
|
14
16
|
import { DescribePackageCommandInput, DescribePackageCommandOutput } from "../commands/DescribePackageCommand";
|
|
17
|
+
import { DescribePackageGroupCommandInput, DescribePackageGroupCommandOutput } from "../commands/DescribePackageGroupCommand";
|
|
15
18
|
import { DescribePackageVersionCommandInput, DescribePackageVersionCommandOutput } from "../commands/DescribePackageVersionCommand";
|
|
16
19
|
import { DescribeRepositoryCommandInput, DescribeRepositoryCommandOutput } from "../commands/DescribeRepositoryCommand";
|
|
17
20
|
import { DisassociateExternalConnectionCommandInput, DisassociateExternalConnectionCommandOutput } from "../commands/DisassociateExternalConnectionCommand";
|
|
18
21
|
import { DisposePackageVersionsCommandInput, DisposePackageVersionsCommandOutput } from "../commands/DisposePackageVersionsCommand";
|
|
22
|
+
import { GetAssociatedPackageGroupCommandInput, GetAssociatedPackageGroupCommandOutput } from "../commands/GetAssociatedPackageGroupCommand";
|
|
19
23
|
import { GetAuthorizationTokenCommandInput, GetAuthorizationTokenCommandOutput } from "../commands/GetAuthorizationTokenCommand";
|
|
20
24
|
import { GetDomainPermissionsPolicyCommandInput, GetDomainPermissionsPolicyCommandOutput } from "../commands/GetDomainPermissionsPolicyCommand";
|
|
21
25
|
import { GetPackageVersionAssetCommandInput, GetPackageVersionAssetCommandOutput } from "../commands/GetPackageVersionAssetCommand";
|
|
22
26
|
import { GetPackageVersionReadmeCommandInput, GetPackageVersionReadmeCommandOutput } from "../commands/GetPackageVersionReadmeCommand";
|
|
23
27
|
import { GetRepositoryEndpointCommandInput, GetRepositoryEndpointCommandOutput } from "../commands/GetRepositoryEndpointCommand";
|
|
24
28
|
import { GetRepositoryPermissionsPolicyCommandInput, GetRepositoryPermissionsPolicyCommandOutput } from "../commands/GetRepositoryPermissionsPolicyCommand";
|
|
29
|
+
import { ListAllowedRepositoriesForGroupCommandInput, ListAllowedRepositoriesForGroupCommandOutput } from "../commands/ListAllowedRepositoriesForGroupCommand";
|
|
30
|
+
import { ListAssociatedPackagesCommandInput, ListAssociatedPackagesCommandOutput } from "../commands/ListAssociatedPackagesCommand";
|
|
25
31
|
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand";
|
|
32
|
+
import { ListPackageGroupsCommandInput, ListPackageGroupsCommandOutput } from "../commands/ListPackageGroupsCommand";
|
|
26
33
|
import { ListPackagesCommandInput, ListPackagesCommandOutput } from "../commands/ListPackagesCommand";
|
|
27
34
|
import { ListPackageVersionAssetsCommandInput, ListPackageVersionAssetsCommandOutput } from "../commands/ListPackageVersionAssetsCommand";
|
|
28
35
|
import { ListPackageVersionDependenciesCommandInput, ListPackageVersionDependenciesCommandOutput } from "../commands/ListPackageVersionDependenciesCommand";
|
|
29
36
|
import { ListPackageVersionsCommandInput, ListPackageVersionsCommandOutput } from "../commands/ListPackageVersionsCommand";
|
|
30
37
|
import { ListRepositoriesCommandInput, ListRepositoriesCommandOutput } from "../commands/ListRepositoriesCommand";
|
|
31
38
|
import { ListRepositoriesInDomainCommandInput, ListRepositoriesInDomainCommandOutput } from "../commands/ListRepositoriesInDomainCommand";
|
|
39
|
+
import { ListSubPackageGroupsCommandInput, ListSubPackageGroupsCommandOutput } from "../commands/ListSubPackageGroupsCommand";
|
|
32
40
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
33
41
|
import { PublishPackageVersionCommandInput, PublishPackageVersionCommandOutput } from "../commands/PublishPackageVersionCommand";
|
|
34
42
|
import { PutDomainPermissionsPolicyCommandInput, PutDomainPermissionsPolicyCommandOutput } from "../commands/PutDomainPermissionsPolicyCommand";
|
|
@@ -36,6 +44,8 @@ import { PutPackageOriginConfigurationCommandInput, PutPackageOriginConfiguratio
|
|
|
36
44
|
import { PutRepositoryPermissionsPolicyCommandInput, PutRepositoryPermissionsPolicyCommandOutput } from "../commands/PutRepositoryPermissionsPolicyCommand";
|
|
37
45
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
38
46
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
47
|
+
import { UpdatePackageGroupCommandInput, UpdatePackageGroupCommandOutput } from "../commands/UpdatePackageGroupCommand";
|
|
48
|
+
import { UpdatePackageGroupOriginConfigurationCommandInput, UpdatePackageGroupOriginConfigurationCommandOutput } from "../commands/UpdatePackageGroupOriginConfigurationCommand";
|
|
39
49
|
import { UpdatePackageVersionsStatusCommandInput, UpdatePackageVersionsStatusCommandOutput } from "../commands/UpdatePackageVersionsStatusCommand";
|
|
40
50
|
import { UpdateRepositoryCommandInput, UpdateRepositoryCommandOutput } from "../commands/UpdateRepositoryCommand";
|
|
41
51
|
/**
|
|
@@ -50,6 +60,10 @@ export declare const se_CopyPackageVersionsCommand: (input: CopyPackageVersionsC
|
|
|
50
60
|
* serializeAws_restJson1CreateDomainCommand
|
|
51
61
|
*/
|
|
52
62
|
export declare const se_CreateDomainCommand: (input: CreateDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
+
/**
|
|
64
|
+
* serializeAws_restJson1CreatePackageGroupCommand
|
|
65
|
+
*/
|
|
66
|
+
export declare const se_CreatePackageGroupCommand: (input: CreatePackageGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
67
|
/**
|
|
54
68
|
* serializeAws_restJson1CreateRepositoryCommand
|
|
55
69
|
*/
|
|
@@ -66,6 +80,10 @@ export declare const se_DeleteDomainPermissionsPolicyCommand: (input: DeleteDoma
|
|
|
66
80
|
* serializeAws_restJson1DeletePackageCommand
|
|
67
81
|
*/
|
|
68
82
|
export declare const se_DeletePackageCommand: (input: DeletePackageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
+
/**
|
|
84
|
+
* serializeAws_restJson1DeletePackageGroupCommand
|
|
85
|
+
*/
|
|
86
|
+
export declare const se_DeletePackageGroupCommand: (input: DeletePackageGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
87
|
/**
|
|
70
88
|
* serializeAws_restJson1DeletePackageVersionsCommand
|
|
71
89
|
*/
|
|
@@ -86,6 +104,10 @@ export declare const se_DescribeDomainCommand: (input: DescribeDomainCommandInpu
|
|
|
86
104
|
* serializeAws_restJson1DescribePackageCommand
|
|
87
105
|
*/
|
|
88
106
|
export declare const se_DescribePackageCommand: (input: DescribePackageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
|
+
/**
|
|
108
|
+
* serializeAws_restJson1DescribePackageGroupCommand
|
|
109
|
+
*/
|
|
110
|
+
export declare const se_DescribePackageGroupCommand: (input: DescribePackageGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
111
|
/**
|
|
90
112
|
* serializeAws_restJson1DescribePackageVersionCommand
|
|
91
113
|
*/
|
|
@@ -102,6 +124,10 @@ export declare const se_DisassociateExternalConnectionCommand: (input: Disassoci
|
|
|
102
124
|
* serializeAws_restJson1DisposePackageVersionsCommand
|
|
103
125
|
*/
|
|
104
126
|
export declare const se_DisposePackageVersionsCommand: (input: DisposePackageVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
127
|
+
/**
|
|
128
|
+
* serializeAws_restJson1GetAssociatedPackageGroupCommand
|
|
129
|
+
*/
|
|
130
|
+
export declare const se_GetAssociatedPackageGroupCommand: (input: GetAssociatedPackageGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
131
|
/**
|
|
106
132
|
* serializeAws_restJson1GetAuthorizationTokenCommand
|
|
107
133
|
*/
|
|
@@ -126,10 +152,22 @@ export declare const se_GetRepositoryEndpointCommand: (input: GetRepositoryEndpo
|
|
|
126
152
|
* serializeAws_restJson1GetRepositoryPermissionsPolicyCommand
|
|
127
153
|
*/
|
|
128
154
|
export declare const se_GetRepositoryPermissionsPolicyCommand: (input: GetRepositoryPermissionsPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
155
|
+
/**
|
|
156
|
+
* serializeAws_restJson1ListAllowedRepositoriesForGroupCommand
|
|
157
|
+
*/
|
|
158
|
+
export declare const se_ListAllowedRepositoriesForGroupCommand: (input: ListAllowedRepositoriesForGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
159
|
+
/**
|
|
160
|
+
* serializeAws_restJson1ListAssociatedPackagesCommand
|
|
161
|
+
*/
|
|
162
|
+
export declare const se_ListAssociatedPackagesCommand: (input: ListAssociatedPackagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
163
|
/**
|
|
130
164
|
* serializeAws_restJson1ListDomainsCommand
|
|
131
165
|
*/
|
|
132
166
|
export declare const se_ListDomainsCommand: (input: ListDomainsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
167
|
+
/**
|
|
168
|
+
* serializeAws_restJson1ListPackageGroupsCommand
|
|
169
|
+
*/
|
|
170
|
+
export declare const se_ListPackageGroupsCommand: (input: ListPackageGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
133
171
|
/**
|
|
134
172
|
* serializeAws_restJson1ListPackagesCommand
|
|
135
173
|
*/
|
|
@@ -154,6 +192,10 @@ export declare const se_ListRepositoriesCommand: (input: ListRepositoriesCommand
|
|
|
154
192
|
* serializeAws_restJson1ListRepositoriesInDomainCommand
|
|
155
193
|
*/
|
|
156
194
|
export declare const se_ListRepositoriesInDomainCommand: (input: ListRepositoriesInDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
195
|
+
/**
|
|
196
|
+
* serializeAws_restJson1ListSubPackageGroupsCommand
|
|
197
|
+
*/
|
|
198
|
+
export declare const se_ListSubPackageGroupsCommand: (input: ListSubPackageGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
157
199
|
/**
|
|
158
200
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
159
201
|
*/
|
|
@@ -182,6 +224,14 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
|
|
|
182
224
|
* serializeAws_restJson1UntagResourceCommand
|
|
183
225
|
*/
|
|
184
226
|
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
227
|
+
/**
|
|
228
|
+
* serializeAws_restJson1UpdatePackageGroupCommand
|
|
229
|
+
*/
|
|
230
|
+
export declare const se_UpdatePackageGroupCommand: (input: UpdatePackageGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
231
|
+
/**
|
|
232
|
+
* serializeAws_restJson1UpdatePackageGroupOriginConfigurationCommand
|
|
233
|
+
*/
|
|
234
|
+
export declare const se_UpdatePackageGroupOriginConfigurationCommand: (input: UpdatePackageGroupOriginConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
185
235
|
/**
|
|
186
236
|
* serializeAws_restJson1UpdatePackageVersionsStatusCommand
|
|
187
237
|
*/
|
|
@@ -202,6 +252,10 @@ export declare const de_CopyPackageVersionsCommand: (output: __HttpResponse, con
|
|
|
202
252
|
* deserializeAws_restJson1CreateDomainCommand
|
|
203
253
|
*/
|
|
204
254
|
export declare const de_CreateDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDomainCommandOutput>;
|
|
255
|
+
/**
|
|
256
|
+
* deserializeAws_restJson1CreatePackageGroupCommand
|
|
257
|
+
*/
|
|
258
|
+
export declare const de_CreatePackageGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePackageGroupCommandOutput>;
|
|
205
259
|
/**
|
|
206
260
|
* deserializeAws_restJson1CreateRepositoryCommand
|
|
207
261
|
*/
|
|
@@ -218,6 +272,10 @@ export declare const de_DeleteDomainPermissionsPolicyCommand: (output: __HttpRes
|
|
|
218
272
|
* deserializeAws_restJson1DeletePackageCommand
|
|
219
273
|
*/
|
|
220
274
|
export declare const de_DeletePackageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePackageCommandOutput>;
|
|
275
|
+
/**
|
|
276
|
+
* deserializeAws_restJson1DeletePackageGroupCommand
|
|
277
|
+
*/
|
|
278
|
+
export declare const de_DeletePackageGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePackageGroupCommandOutput>;
|
|
221
279
|
/**
|
|
222
280
|
* deserializeAws_restJson1DeletePackageVersionsCommand
|
|
223
281
|
*/
|
|
@@ -238,6 +296,10 @@ export declare const de_DescribeDomainCommand: (output: __HttpResponse, context:
|
|
|
238
296
|
* deserializeAws_restJson1DescribePackageCommand
|
|
239
297
|
*/
|
|
240
298
|
export declare const de_DescribePackageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePackageCommandOutput>;
|
|
299
|
+
/**
|
|
300
|
+
* deserializeAws_restJson1DescribePackageGroupCommand
|
|
301
|
+
*/
|
|
302
|
+
export declare const de_DescribePackageGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePackageGroupCommandOutput>;
|
|
241
303
|
/**
|
|
242
304
|
* deserializeAws_restJson1DescribePackageVersionCommand
|
|
243
305
|
*/
|
|
@@ -254,6 +316,10 @@ export declare const de_DisassociateExternalConnectionCommand: (output: __HttpRe
|
|
|
254
316
|
* deserializeAws_restJson1DisposePackageVersionsCommand
|
|
255
317
|
*/
|
|
256
318
|
export declare const de_DisposePackageVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisposePackageVersionsCommandOutput>;
|
|
319
|
+
/**
|
|
320
|
+
* deserializeAws_restJson1GetAssociatedPackageGroupCommand
|
|
321
|
+
*/
|
|
322
|
+
export declare const de_GetAssociatedPackageGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAssociatedPackageGroupCommandOutput>;
|
|
257
323
|
/**
|
|
258
324
|
* deserializeAws_restJson1GetAuthorizationTokenCommand
|
|
259
325
|
*/
|
|
@@ -278,10 +344,22 @@ export declare const de_GetRepositoryEndpointCommand: (output: __HttpResponse, c
|
|
|
278
344
|
* deserializeAws_restJson1GetRepositoryPermissionsPolicyCommand
|
|
279
345
|
*/
|
|
280
346
|
export declare const de_GetRepositoryPermissionsPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRepositoryPermissionsPolicyCommandOutput>;
|
|
347
|
+
/**
|
|
348
|
+
* deserializeAws_restJson1ListAllowedRepositoriesForGroupCommand
|
|
349
|
+
*/
|
|
350
|
+
export declare const de_ListAllowedRepositoriesForGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAllowedRepositoriesForGroupCommandOutput>;
|
|
351
|
+
/**
|
|
352
|
+
* deserializeAws_restJson1ListAssociatedPackagesCommand
|
|
353
|
+
*/
|
|
354
|
+
export declare const de_ListAssociatedPackagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssociatedPackagesCommandOutput>;
|
|
281
355
|
/**
|
|
282
356
|
* deserializeAws_restJson1ListDomainsCommand
|
|
283
357
|
*/
|
|
284
358
|
export declare const de_ListDomainsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDomainsCommandOutput>;
|
|
359
|
+
/**
|
|
360
|
+
* deserializeAws_restJson1ListPackageGroupsCommand
|
|
361
|
+
*/
|
|
362
|
+
export declare const de_ListPackageGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPackageGroupsCommandOutput>;
|
|
285
363
|
/**
|
|
286
364
|
* deserializeAws_restJson1ListPackagesCommand
|
|
287
365
|
*/
|
|
@@ -306,6 +384,10 @@ export declare const de_ListRepositoriesCommand: (output: __HttpResponse, contex
|
|
|
306
384
|
* deserializeAws_restJson1ListRepositoriesInDomainCommand
|
|
307
385
|
*/
|
|
308
386
|
export declare const de_ListRepositoriesInDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRepositoriesInDomainCommandOutput>;
|
|
387
|
+
/**
|
|
388
|
+
* deserializeAws_restJson1ListSubPackageGroupsCommand
|
|
389
|
+
*/
|
|
390
|
+
export declare const de_ListSubPackageGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSubPackageGroupsCommandOutput>;
|
|
309
391
|
/**
|
|
310
392
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
311
393
|
*/
|
|
@@ -334,6 +416,14 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
|
|
|
334
416
|
* deserializeAws_restJson1UntagResourceCommand
|
|
335
417
|
*/
|
|
336
418
|
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
419
|
+
/**
|
|
420
|
+
* deserializeAws_restJson1UpdatePackageGroupCommand
|
|
421
|
+
*/
|
|
422
|
+
export declare const de_UpdatePackageGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePackageGroupCommandOutput>;
|
|
423
|
+
/**
|
|
424
|
+
* deserializeAws_restJson1UpdatePackageGroupOriginConfigurationCommand
|
|
425
|
+
*/
|
|
426
|
+
export declare const de_UpdatePackageGroupOriginConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePackageGroupOriginConfigurationCommandOutput>;
|
|
337
427
|
/**
|
|
338
428
|
* deserializeAws_restJson1UpdatePackageVersionsStatusCommand
|
|
339
429
|
*/
|
|
@@ -12,6 +12,10 @@ import {
|
|
|
12
12
|
CreateDomainCommandInput,
|
|
13
13
|
CreateDomainCommandOutput,
|
|
14
14
|
} from "./commands/CreateDomainCommand";
|
|
15
|
+
import {
|
|
16
|
+
CreatePackageGroupCommandInput,
|
|
17
|
+
CreatePackageGroupCommandOutput,
|
|
18
|
+
} from "./commands/CreatePackageGroupCommand";
|
|
15
19
|
import {
|
|
16
20
|
CreateRepositoryCommandInput,
|
|
17
21
|
CreateRepositoryCommandOutput,
|
|
@@ -28,6 +32,10 @@ import {
|
|
|
28
32
|
DeletePackageCommandInput,
|
|
29
33
|
DeletePackageCommandOutput,
|
|
30
34
|
} from "./commands/DeletePackageCommand";
|
|
35
|
+
import {
|
|
36
|
+
DeletePackageGroupCommandInput,
|
|
37
|
+
DeletePackageGroupCommandOutput,
|
|
38
|
+
} from "./commands/DeletePackageGroupCommand";
|
|
31
39
|
import {
|
|
32
40
|
DeletePackageVersionsCommandInput,
|
|
33
41
|
DeletePackageVersionsCommandOutput,
|
|
@@ -48,6 +56,10 @@ import {
|
|
|
48
56
|
DescribePackageCommandInput,
|
|
49
57
|
DescribePackageCommandOutput,
|
|
50
58
|
} from "./commands/DescribePackageCommand";
|
|
59
|
+
import {
|
|
60
|
+
DescribePackageGroupCommandInput,
|
|
61
|
+
DescribePackageGroupCommandOutput,
|
|
62
|
+
} from "./commands/DescribePackageGroupCommand";
|
|
51
63
|
import {
|
|
52
64
|
DescribePackageVersionCommandInput,
|
|
53
65
|
DescribePackageVersionCommandOutput,
|
|
@@ -64,6 +76,10 @@ import {
|
|
|
64
76
|
DisposePackageVersionsCommandInput,
|
|
65
77
|
DisposePackageVersionsCommandOutput,
|
|
66
78
|
} from "./commands/DisposePackageVersionsCommand";
|
|
79
|
+
import {
|
|
80
|
+
GetAssociatedPackageGroupCommandInput,
|
|
81
|
+
GetAssociatedPackageGroupCommandOutput,
|
|
82
|
+
} from "./commands/GetAssociatedPackageGroupCommand";
|
|
67
83
|
import {
|
|
68
84
|
GetAuthorizationTokenCommandInput,
|
|
69
85
|
GetAuthorizationTokenCommandOutput,
|
|
@@ -88,10 +104,22 @@ import {
|
|
|
88
104
|
GetRepositoryPermissionsPolicyCommandInput,
|
|
89
105
|
GetRepositoryPermissionsPolicyCommandOutput,
|
|
90
106
|
} from "./commands/GetRepositoryPermissionsPolicyCommand";
|
|
107
|
+
import {
|
|
108
|
+
ListAllowedRepositoriesForGroupCommandInput,
|
|
109
|
+
ListAllowedRepositoriesForGroupCommandOutput,
|
|
110
|
+
} from "./commands/ListAllowedRepositoriesForGroupCommand";
|
|
111
|
+
import {
|
|
112
|
+
ListAssociatedPackagesCommandInput,
|
|
113
|
+
ListAssociatedPackagesCommandOutput,
|
|
114
|
+
} from "./commands/ListAssociatedPackagesCommand";
|
|
91
115
|
import {
|
|
92
116
|
ListDomainsCommandInput,
|
|
93
117
|
ListDomainsCommandOutput,
|
|
94
118
|
} from "./commands/ListDomainsCommand";
|
|
119
|
+
import {
|
|
120
|
+
ListPackageGroupsCommandInput,
|
|
121
|
+
ListPackageGroupsCommandOutput,
|
|
122
|
+
} from "./commands/ListPackageGroupsCommand";
|
|
95
123
|
import {
|
|
96
124
|
ListPackagesCommandInput,
|
|
97
125
|
ListPackagesCommandOutput,
|
|
@@ -116,6 +144,10 @@ import {
|
|
|
116
144
|
ListRepositoriesInDomainCommandInput,
|
|
117
145
|
ListRepositoriesInDomainCommandOutput,
|
|
118
146
|
} from "./commands/ListRepositoriesInDomainCommand";
|
|
147
|
+
import {
|
|
148
|
+
ListSubPackageGroupsCommandInput,
|
|
149
|
+
ListSubPackageGroupsCommandOutput,
|
|
150
|
+
} from "./commands/ListSubPackageGroupsCommand";
|
|
119
151
|
import {
|
|
120
152
|
ListTagsForResourceCommandInput,
|
|
121
153
|
ListTagsForResourceCommandOutput,
|
|
@@ -144,6 +176,14 @@ import {
|
|
|
144
176
|
UntagResourceCommandInput,
|
|
145
177
|
UntagResourceCommandOutput,
|
|
146
178
|
} from "./commands/UntagResourceCommand";
|
|
179
|
+
import {
|
|
180
|
+
UpdatePackageGroupCommandInput,
|
|
181
|
+
UpdatePackageGroupCommandOutput,
|
|
182
|
+
} from "./commands/UpdatePackageGroupCommand";
|
|
183
|
+
import {
|
|
184
|
+
UpdatePackageGroupOriginConfigurationCommandInput,
|
|
185
|
+
UpdatePackageGroupOriginConfigurationCommandOutput,
|
|
186
|
+
} from "./commands/UpdatePackageGroupOriginConfigurationCommand";
|
|
147
187
|
import {
|
|
148
188
|
UpdatePackageVersionsStatusCommandInput,
|
|
149
189
|
UpdatePackageVersionsStatusCommandOutput,
|
|
@@ -192,6 +232,19 @@ export interface Codeartifact {
|
|
|
192
232
|
options: __HttpHandlerOptions,
|
|
193
233
|
cb: (err: any, data?: CreateDomainCommandOutput) => void
|
|
194
234
|
): void;
|
|
235
|
+
createPackageGroup(
|
|
236
|
+
args: CreatePackageGroupCommandInput,
|
|
237
|
+
options?: __HttpHandlerOptions
|
|
238
|
+
): Promise<CreatePackageGroupCommandOutput>;
|
|
239
|
+
createPackageGroup(
|
|
240
|
+
args: CreatePackageGroupCommandInput,
|
|
241
|
+
cb: (err: any, data?: CreatePackageGroupCommandOutput) => void
|
|
242
|
+
): void;
|
|
243
|
+
createPackageGroup(
|
|
244
|
+
args: CreatePackageGroupCommandInput,
|
|
245
|
+
options: __HttpHandlerOptions,
|
|
246
|
+
cb: (err: any, data?: CreatePackageGroupCommandOutput) => void
|
|
247
|
+
): void;
|
|
195
248
|
createRepository(
|
|
196
249
|
args: CreateRepositoryCommandInput,
|
|
197
250
|
options?: __HttpHandlerOptions
|
|
@@ -244,6 +297,19 @@ export interface Codeartifact {
|
|
|
244
297
|
options: __HttpHandlerOptions,
|
|
245
298
|
cb: (err: any, data?: DeletePackageCommandOutput) => void
|
|
246
299
|
): void;
|
|
300
|
+
deletePackageGroup(
|
|
301
|
+
args: DeletePackageGroupCommandInput,
|
|
302
|
+
options?: __HttpHandlerOptions
|
|
303
|
+
): Promise<DeletePackageGroupCommandOutput>;
|
|
304
|
+
deletePackageGroup(
|
|
305
|
+
args: DeletePackageGroupCommandInput,
|
|
306
|
+
cb: (err: any, data?: DeletePackageGroupCommandOutput) => void
|
|
307
|
+
): void;
|
|
308
|
+
deletePackageGroup(
|
|
309
|
+
args: DeletePackageGroupCommandInput,
|
|
310
|
+
options: __HttpHandlerOptions,
|
|
311
|
+
cb: (err: any, data?: DeletePackageGroupCommandOutput) => void
|
|
312
|
+
): void;
|
|
247
313
|
deletePackageVersions(
|
|
248
314
|
args: DeletePackageVersionsCommandInput,
|
|
249
315
|
options?: __HttpHandlerOptions
|
|
@@ -315,6 +381,19 @@ export interface Codeartifact {
|
|
|
315
381
|
options: __HttpHandlerOptions,
|
|
316
382
|
cb: (err: any, data?: DescribePackageCommandOutput) => void
|
|
317
383
|
): void;
|
|
384
|
+
describePackageGroup(
|
|
385
|
+
args: DescribePackageGroupCommandInput,
|
|
386
|
+
options?: __HttpHandlerOptions
|
|
387
|
+
): Promise<DescribePackageGroupCommandOutput>;
|
|
388
|
+
describePackageGroup(
|
|
389
|
+
args: DescribePackageGroupCommandInput,
|
|
390
|
+
cb: (err: any, data?: DescribePackageGroupCommandOutput) => void
|
|
391
|
+
): void;
|
|
392
|
+
describePackageGroup(
|
|
393
|
+
args: DescribePackageGroupCommandInput,
|
|
394
|
+
options: __HttpHandlerOptions,
|
|
395
|
+
cb: (err: any, data?: DescribePackageGroupCommandOutput) => void
|
|
396
|
+
): void;
|
|
318
397
|
describePackageVersion(
|
|
319
398
|
args: DescribePackageVersionCommandInput,
|
|
320
399
|
options?: __HttpHandlerOptions
|
|
@@ -367,6 +446,19 @@ export interface Codeartifact {
|
|
|
367
446
|
options: __HttpHandlerOptions,
|
|
368
447
|
cb: (err: any, data?: DisposePackageVersionsCommandOutput) => void
|
|
369
448
|
): void;
|
|
449
|
+
getAssociatedPackageGroup(
|
|
450
|
+
args: GetAssociatedPackageGroupCommandInput,
|
|
451
|
+
options?: __HttpHandlerOptions
|
|
452
|
+
): Promise<GetAssociatedPackageGroupCommandOutput>;
|
|
453
|
+
getAssociatedPackageGroup(
|
|
454
|
+
args: GetAssociatedPackageGroupCommandInput,
|
|
455
|
+
cb: (err: any, data?: GetAssociatedPackageGroupCommandOutput) => void
|
|
456
|
+
): void;
|
|
457
|
+
getAssociatedPackageGroup(
|
|
458
|
+
args: GetAssociatedPackageGroupCommandInput,
|
|
459
|
+
options: __HttpHandlerOptions,
|
|
460
|
+
cb: (err: any, data?: GetAssociatedPackageGroupCommandOutput) => void
|
|
461
|
+
): void;
|
|
370
462
|
getAuthorizationToken(
|
|
371
463
|
args: GetAuthorizationTokenCommandInput,
|
|
372
464
|
options?: __HttpHandlerOptions
|
|
@@ -445,6 +537,32 @@ export interface Codeartifact {
|
|
|
445
537
|
options: __HttpHandlerOptions,
|
|
446
538
|
cb: (err: any, data?: GetRepositoryPermissionsPolicyCommandOutput) => void
|
|
447
539
|
): void;
|
|
540
|
+
listAllowedRepositoriesForGroup(
|
|
541
|
+
args: ListAllowedRepositoriesForGroupCommandInput,
|
|
542
|
+
options?: __HttpHandlerOptions
|
|
543
|
+
): Promise<ListAllowedRepositoriesForGroupCommandOutput>;
|
|
544
|
+
listAllowedRepositoriesForGroup(
|
|
545
|
+
args: ListAllowedRepositoriesForGroupCommandInput,
|
|
546
|
+
cb: (err: any, data?: ListAllowedRepositoriesForGroupCommandOutput) => void
|
|
547
|
+
): void;
|
|
548
|
+
listAllowedRepositoriesForGroup(
|
|
549
|
+
args: ListAllowedRepositoriesForGroupCommandInput,
|
|
550
|
+
options: __HttpHandlerOptions,
|
|
551
|
+
cb: (err: any, data?: ListAllowedRepositoriesForGroupCommandOutput) => void
|
|
552
|
+
): void;
|
|
553
|
+
listAssociatedPackages(
|
|
554
|
+
args: ListAssociatedPackagesCommandInput,
|
|
555
|
+
options?: __HttpHandlerOptions
|
|
556
|
+
): Promise<ListAssociatedPackagesCommandOutput>;
|
|
557
|
+
listAssociatedPackages(
|
|
558
|
+
args: ListAssociatedPackagesCommandInput,
|
|
559
|
+
cb: (err: any, data?: ListAssociatedPackagesCommandOutput) => void
|
|
560
|
+
): void;
|
|
561
|
+
listAssociatedPackages(
|
|
562
|
+
args: ListAssociatedPackagesCommandInput,
|
|
563
|
+
options: __HttpHandlerOptions,
|
|
564
|
+
cb: (err: any, data?: ListAssociatedPackagesCommandOutput) => void
|
|
565
|
+
): void;
|
|
448
566
|
listDomains(): Promise<ListDomainsCommandOutput>;
|
|
449
567
|
listDomains(
|
|
450
568
|
args: ListDomainsCommandInput,
|
|
@@ -459,6 +577,19 @@ export interface Codeartifact {
|
|
|
459
577
|
options: __HttpHandlerOptions,
|
|
460
578
|
cb: (err: any, data?: ListDomainsCommandOutput) => void
|
|
461
579
|
): void;
|
|
580
|
+
listPackageGroups(
|
|
581
|
+
args: ListPackageGroupsCommandInput,
|
|
582
|
+
options?: __HttpHandlerOptions
|
|
583
|
+
): Promise<ListPackageGroupsCommandOutput>;
|
|
584
|
+
listPackageGroups(
|
|
585
|
+
args: ListPackageGroupsCommandInput,
|
|
586
|
+
cb: (err: any, data?: ListPackageGroupsCommandOutput) => void
|
|
587
|
+
): void;
|
|
588
|
+
listPackageGroups(
|
|
589
|
+
args: ListPackageGroupsCommandInput,
|
|
590
|
+
options: __HttpHandlerOptions,
|
|
591
|
+
cb: (err: any, data?: ListPackageGroupsCommandOutput) => void
|
|
592
|
+
): void;
|
|
462
593
|
listPackages(
|
|
463
594
|
args: ListPackagesCommandInput,
|
|
464
595
|
options?: __HttpHandlerOptions
|
|
@@ -538,6 +669,19 @@ export interface Codeartifact {
|
|
|
538
669
|
options: __HttpHandlerOptions,
|
|
539
670
|
cb: (err: any, data?: ListRepositoriesInDomainCommandOutput) => void
|
|
540
671
|
): void;
|
|
672
|
+
listSubPackageGroups(
|
|
673
|
+
args: ListSubPackageGroupsCommandInput,
|
|
674
|
+
options?: __HttpHandlerOptions
|
|
675
|
+
): Promise<ListSubPackageGroupsCommandOutput>;
|
|
676
|
+
listSubPackageGroups(
|
|
677
|
+
args: ListSubPackageGroupsCommandInput,
|
|
678
|
+
cb: (err: any, data?: ListSubPackageGroupsCommandOutput) => void
|
|
679
|
+
): void;
|
|
680
|
+
listSubPackageGroups(
|
|
681
|
+
args: ListSubPackageGroupsCommandInput,
|
|
682
|
+
options: __HttpHandlerOptions,
|
|
683
|
+
cb: (err: any, data?: ListSubPackageGroupsCommandOutput) => void
|
|
684
|
+
): void;
|
|
541
685
|
listTagsForResource(
|
|
542
686
|
args: ListTagsForResourceCommandInput,
|
|
543
687
|
options?: __HttpHandlerOptions
|
|
@@ -629,6 +773,38 @@ export interface Codeartifact {
|
|
|
629
773
|
options: __HttpHandlerOptions,
|
|
630
774
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
631
775
|
): void;
|
|
776
|
+
updatePackageGroup(
|
|
777
|
+
args: UpdatePackageGroupCommandInput,
|
|
778
|
+
options?: __HttpHandlerOptions
|
|
779
|
+
): Promise<UpdatePackageGroupCommandOutput>;
|
|
780
|
+
updatePackageGroup(
|
|
781
|
+
args: UpdatePackageGroupCommandInput,
|
|
782
|
+
cb: (err: any, data?: UpdatePackageGroupCommandOutput) => void
|
|
783
|
+
): void;
|
|
784
|
+
updatePackageGroup(
|
|
785
|
+
args: UpdatePackageGroupCommandInput,
|
|
786
|
+
options: __HttpHandlerOptions,
|
|
787
|
+
cb: (err: any, data?: UpdatePackageGroupCommandOutput) => void
|
|
788
|
+
): void;
|
|
789
|
+
updatePackageGroupOriginConfiguration(
|
|
790
|
+
args: UpdatePackageGroupOriginConfigurationCommandInput,
|
|
791
|
+
options?: __HttpHandlerOptions
|
|
792
|
+
): Promise<UpdatePackageGroupOriginConfigurationCommandOutput>;
|
|
793
|
+
updatePackageGroupOriginConfiguration(
|
|
794
|
+
args: UpdatePackageGroupOriginConfigurationCommandInput,
|
|
795
|
+
cb: (
|
|
796
|
+
err: any,
|
|
797
|
+
data?: UpdatePackageGroupOriginConfigurationCommandOutput
|
|
798
|
+
) => void
|
|
799
|
+
): void;
|
|
800
|
+
updatePackageGroupOriginConfiguration(
|
|
801
|
+
args: UpdatePackageGroupOriginConfigurationCommandInput,
|
|
802
|
+
options: __HttpHandlerOptions,
|
|
803
|
+
cb: (
|
|
804
|
+
err: any,
|
|
805
|
+
data?: UpdatePackageGroupOriginConfigurationCommandOutput
|
|
806
|
+
) => void
|
|
807
|
+
): void;
|
|
632
808
|
updatePackageVersionsStatus(
|
|
633
809
|
args: UpdatePackageVersionsStatusCommandInput,
|
|
634
810
|
options?: __HttpHandlerOptions
|