@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
|
@@ -30,12 +30,12 @@ export interface AssetSummary {
|
|
|
30
30
|
size?: number;
|
|
31
31
|
hashes?: Partial<Record<HashAlgorithm, string>>;
|
|
32
32
|
}
|
|
33
|
-
export
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
33
|
+
export declare const PackageGroupAssociationType: {
|
|
34
|
+
readonly STRONG: "STRONG";
|
|
35
|
+
readonly WEAK: "WEAK";
|
|
36
|
+
};
|
|
37
|
+
export type PackageGroupAssociationType =
|
|
38
|
+
(typeof PackageGroupAssociationType)[keyof typeof PackageGroupAssociationType];
|
|
39
39
|
export declare const PackageFormat: {
|
|
40
40
|
readonly GENERIC: "generic";
|
|
41
41
|
readonly MAVEN: "maven";
|
|
@@ -45,6 +45,18 @@ export declare const PackageFormat: {
|
|
|
45
45
|
readonly SWIFT: "swift";
|
|
46
46
|
};
|
|
47
47
|
export type PackageFormat = (typeof PackageFormat)[keyof typeof PackageFormat];
|
|
48
|
+
export interface AssociatedPackage {
|
|
49
|
+
format?: PackageFormat;
|
|
50
|
+
namespace?: string;
|
|
51
|
+
package?: string;
|
|
52
|
+
associationType?: PackageGroupAssociationType;
|
|
53
|
+
}
|
|
54
|
+
export interface AssociateExternalConnectionRequest {
|
|
55
|
+
domain: string | undefined;
|
|
56
|
+
domainOwner?: string;
|
|
57
|
+
repository: string | undefined;
|
|
58
|
+
externalConnection: string | undefined;
|
|
59
|
+
}
|
|
48
60
|
export declare const ExternalConnectionStatus: {
|
|
49
61
|
readonly AVAILABLE: "Available";
|
|
50
62
|
};
|
|
@@ -210,6 +222,58 @@ export interface DomainDescription {
|
|
|
210
222
|
export interface CreateDomainResult {
|
|
211
223
|
domain?: DomainDescription;
|
|
212
224
|
}
|
|
225
|
+
export interface CreatePackageGroupRequest {
|
|
226
|
+
domain: string | undefined;
|
|
227
|
+
domainOwner?: string;
|
|
228
|
+
packageGroup: string | undefined;
|
|
229
|
+
contactInfo?: string;
|
|
230
|
+
description?: string;
|
|
231
|
+
tags?: Tag[];
|
|
232
|
+
}
|
|
233
|
+
export declare const PackageGroupOriginRestrictionType: {
|
|
234
|
+
readonly EXTERNAL_UPSTREAM: "EXTERNAL_UPSTREAM";
|
|
235
|
+
readonly INTERNAL_UPSTREAM: "INTERNAL_UPSTREAM";
|
|
236
|
+
readonly PUBLISH: "PUBLISH";
|
|
237
|
+
};
|
|
238
|
+
export type PackageGroupOriginRestrictionType =
|
|
239
|
+
(typeof PackageGroupOriginRestrictionType)[keyof typeof PackageGroupOriginRestrictionType];
|
|
240
|
+
export declare const PackageGroupOriginRestrictionMode: {
|
|
241
|
+
readonly ALLOW: "ALLOW";
|
|
242
|
+
readonly ALLOW_SPECIFIC_REPOSITORIES: "ALLOW_SPECIFIC_REPOSITORIES";
|
|
243
|
+
readonly BLOCK: "BLOCK";
|
|
244
|
+
readonly INHERIT: "INHERIT";
|
|
245
|
+
};
|
|
246
|
+
export type PackageGroupOriginRestrictionMode =
|
|
247
|
+
(typeof PackageGroupOriginRestrictionMode)[keyof typeof PackageGroupOriginRestrictionMode];
|
|
248
|
+
export interface PackageGroupReference {
|
|
249
|
+
arn?: string;
|
|
250
|
+
pattern?: string;
|
|
251
|
+
}
|
|
252
|
+
export interface PackageGroupOriginRestriction {
|
|
253
|
+
mode?: PackageGroupOriginRestrictionMode;
|
|
254
|
+
effectiveMode?: PackageGroupOriginRestrictionMode;
|
|
255
|
+
inheritedFrom?: PackageGroupReference;
|
|
256
|
+
repositoriesCount?: number;
|
|
257
|
+
}
|
|
258
|
+
export interface PackageGroupOriginConfiguration {
|
|
259
|
+
restrictions?: Partial<
|
|
260
|
+
Record<PackageGroupOriginRestrictionType, PackageGroupOriginRestriction>
|
|
261
|
+
>;
|
|
262
|
+
}
|
|
263
|
+
export interface PackageGroupDescription {
|
|
264
|
+
arn?: string;
|
|
265
|
+
pattern?: string;
|
|
266
|
+
domainName?: string;
|
|
267
|
+
domainOwner?: string;
|
|
268
|
+
createdTime?: Date;
|
|
269
|
+
contactInfo?: string;
|
|
270
|
+
description?: string;
|
|
271
|
+
originConfiguration?: PackageGroupOriginConfiguration;
|
|
272
|
+
parent?: PackageGroupReference;
|
|
273
|
+
}
|
|
274
|
+
export interface CreatePackageGroupResult {
|
|
275
|
+
packageGroup?: PackageGroupDescription;
|
|
276
|
+
}
|
|
213
277
|
export interface UpstreamRepository {
|
|
214
278
|
repositoryName: string | undefined;
|
|
215
279
|
}
|
|
@@ -268,6 +332,14 @@ export interface PackageSummary {
|
|
|
268
332
|
export interface DeletePackageResult {
|
|
269
333
|
deletedPackage?: PackageSummary;
|
|
270
334
|
}
|
|
335
|
+
export interface DeletePackageGroupRequest {
|
|
336
|
+
domain: string | undefined;
|
|
337
|
+
domainOwner?: string;
|
|
338
|
+
packageGroup: string | undefined;
|
|
339
|
+
}
|
|
340
|
+
export interface DeletePackageGroupResult {
|
|
341
|
+
packageGroup?: PackageGroupDescription;
|
|
342
|
+
}
|
|
271
343
|
export interface DeletePackageVersionsRequest {
|
|
272
344
|
domain: string | undefined;
|
|
273
345
|
domainOwner?: string;
|
|
@@ -323,6 +395,14 @@ export interface PackageDescription {
|
|
|
323
395
|
export interface DescribePackageResult {
|
|
324
396
|
package: PackageDescription | undefined;
|
|
325
397
|
}
|
|
398
|
+
export interface DescribePackageGroupRequest {
|
|
399
|
+
domain: string | undefined;
|
|
400
|
+
domainOwner?: string;
|
|
401
|
+
packageGroup: string | undefined;
|
|
402
|
+
}
|
|
403
|
+
export interface DescribePackageGroupResult {
|
|
404
|
+
packageGroup?: PackageGroupDescription;
|
|
405
|
+
}
|
|
326
406
|
export interface DescribePackageVersionRequest {
|
|
327
407
|
domain: string | undefined;
|
|
328
408
|
domainOwner?: string;
|
|
@@ -401,6 +481,17 @@ export interface DisposePackageVersionsResult {
|
|
|
401
481
|
successfulVersions?: Record<string, SuccessfulPackageVersionInfo>;
|
|
402
482
|
failedVersions?: Record<string, PackageVersionError>;
|
|
403
483
|
}
|
|
484
|
+
export interface GetAssociatedPackageGroupRequest {
|
|
485
|
+
domain: string | undefined;
|
|
486
|
+
domainOwner?: string;
|
|
487
|
+
format: PackageFormat | undefined;
|
|
488
|
+
namespace?: string;
|
|
489
|
+
package: string | undefined;
|
|
490
|
+
}
|
|
491
|
+
export interface GetAssociatedPackageGroupResult {
|
|
492
|
+
packageGroup?: PackageGroupDescription;
|
|
493
|
+
associationType?: PackageGroupAssociationType;
|
|
494
|
+
}
|
|
404
495
|
export interface GetAuthorizationTokenRequest {
|
|
405
496
|
domain: string | undefined;
|
|
406
497
|
domainOwner?: string;
|
|
@@ -468,6 +559,30 @@ export interface GetRepositoryPermissionsPolicyRequest {
|
|
|
468
559
|
export interface GetRepositoryPermissionsPolicyResult {
|
|
469
560
|
policy?: ResourcePolicy;
|
|
470
561
|
}
|
|
562
|
+
export interface ListAllowedRepositoriesForGroupRequest {
|
|
563
|
+
domain: string | undefined;
|
|
564
|
+
domainOwner?: string;
|
|
565
|
+
packageGroup: string | undefined;
|
|
566
|
+
originRestrictionType: PackageGroupOriginRestrictionType | undefined;
|
|
567
|
+
maxResults?: number;
|
|
568
|
+
nextToken?: string;
|
|
569
|
+
}
|
|
570
|
+
export interface ListAllowedRepositoriesForGroupResult {
|
|
571
|
+
allowedRepositories?: string[];
|
|
572
|
+
nextToken?: string;
|
|
573
|
+
}
|
|
574
|
+
export interface ListAssociatedPackagesRequest {
|
|
575
|
+
domain: string | undefined;
|
|
576
|
+
domainOwner?: string;
|
|
577
|
+
packageGroup: string | undefined;
|
|
578
|
+
maxResults?: number;
|
|
579
|
+
nextToken?: string;
|
|
580
|
+
preview?: boolean;
|
|
581
|
+
}
|
|
582
|
+
export interface ListAssociatedPackagesResult {
|
|
583
|
+
packages?: AssociatedPackage[];
|
|
584
|
+
nextToken?: string;
|
|
585
|
+
}
|
|
471
586
|
export interface ListDomainsRequest {
|
|
472
587
|
maxResults?: number;
|
|
473
588
|
nextToken?: string;
|
|
@@ -484,6 +599,28 @@ export interface ListDomainsResult {
|
|
|
484
599
|
domains?: DomainSummary[];
|
|
485
600
|
nextToken?: string;
|
|
486
601
|
}
|
|
602
|
+
export interface ListPackageGroupsRequest {
|
|
603
|
+
domain: string | undefined;
|
|
604
|
+
domainOwner?: string;
|
|
605
|
+
maxResults?: number;
|
|
606
|
+
nextToken?: string;
|
|
607
|
+
prefix?: string;
|
|
608
|
+
}
|
|
609
|
+
export interface PackageGroupSummary {
|
|
610
|
+
arn?: string;
|
|
611
|
+
pattern?: string;
|
|
612
|
+
domainName?: string;
|
|
613
|
+
domainOwner?: string;
|
|
614
|
+
createdTime?: Date;
|
|
615
|
+
contactInfo?: string;
|
|
616
|
+
description?: string;
|
|
617
|
+
originConfiguration?: PackageGroupOriginConfiguration;
|
|
618
|
+
parent?: PackageGroupReference;
|
|
619
|
+
}
|
|
620
|
+
export interface ListPackageGroupsResult {
|
|
621
|
+
packageGroups?: PackageGroupSummary[];
|
|
622
|
+
nextToken?: string;
|
|
623
|
+
}
|
|
487
624
|
export interface ListPackagesRequest {
|
|
488
625
|
domain: string | undefined;
|
|
489
626
|
domainOwner?: string;
|
|
@@ -607,6 +744,17 @@ export interface ListRepositoriesInDomainResult {
|
|
|
607
744
|
repositories?: RepositorySummary[];
|
|
608
745
|
nextToken?: string;
|
|
609
746
|
}
|
|
747
|
+
export interface ListSubPackageGroupsRequest {
|
|
748
|
+
domain: string | undefined;
|
|
749
|
+
domainOwner?: string;
|
|
750
|
+
packageGroup: string | undefined;
|
|
751
|
+
maxResults?: number;
|
|
752
|
+
nextToken?: string;
|
|
753
|
+
}
|
|
754
|
+
export interface ListSubPackageGroupsResult {
|
|
755
|
+
packageGroups?: PackageGroupSummary[];
|
|
756
|
+
nextToken?: string;
|
|
757
|
+
}
|
|
610
758
|
export interface ListTagsForResourceRequest {
|
|
611
759
|
resourceArn: string | undefined;
|
|
612
760
|
}
|
|
@@ -676,6 +824,45 @@ export interface UntagResourceRequest {
|
|
|
676
824
|
tagKeys: string[] | undefined;
|
|
677
825
|
}
|
|
678
826
|
export interface UntagResourceResult {}
|
|
827
|
+
export interface UpdatePackageGroupRequest {
|
|
828
|
+
domain: string | undefined;
|
|
829
|
+
domainOwner?: string;
|
|
830
|
+
packageGroup: string | undefined;
|
|
831
|
+
contactInfo?: string;
|
|
832
|
+
description?: string;
|
|
833
|
+
}
|
|
834
|
+
export interface UpdatePackageGroupResult {
|
|
835
|
+
packageGroup?: PackageGroupDescription;
|
|
836
|
+
}
|
|
837
|
+
export interface PackageGroupAllowedRepository {
|
|
838
|
+
repositoryName?: string;
|
|
839
|
+
originRestrictionType?: PackageGroupOriginRestrictionType;
|
|
840
|
+
}
|
|
841
|
+
export interface UpdatePackageGroupOriginConfigurationRequest {
|
|
842
|
+
domain: string | undefined;
|
|
843
|
+
domainOwner?: string;
|
|
844
|
+
packageGroup: string | undefined;
|
|
845
|
+
restrictions?: Partial<
|
|
846
|
+
Record<PackageGroupOriginRestrictionType, PackageGroupOriginRestrictionMode>
|
|
847
|
+
>;
|
|
848
|
+
addAllowedRepositories?: PackageGroupAllowedRepository[];
|
|
849
|
+
removeAllowedRepositories?: PackageGroupAllowedRepository[];
|
|
850
|
+
}
|
|
851
|
+
export declare const PackageGroupAllowedRepositoryUpdateType: {
|
|
852
|
+
readonly ADDED: "ADDED";
|
|
853
|
+
readonly REMOVED: "REMOVED";
|
|
854
|
+
};
|
|
855
|
+
export type PackageGroupAllowedRepositoryUpdateType =
|
|
856
|
+
(typeof PackageGroupAllowedRepositoryUpdateType)[keyof typeof PackageGroupAllowedRepositoryUpdateType];
|
|
857
|
+
export interface UpdatePackageGroupOriginConfigurationResult {
|
|
858
|
+
packageGroup?: PackageGroupDescription;
|
|
859
|
+
allowedRepositoryUpdates?: Partial<
|
|
860
|
+
Record<
|
|
861
|
+
PackageGroupOriginRestrictionType,
|
|
862
|
+
Partial<Record<PackageGroupAllowedRepositoryUpdateType, string[]>>
|
|
863
|
+
>
|
|
864
|
+
>;
|
|
865
|
+
}
|
|
679
866
|
export interface UpdatePackageVersionsStatusRequest {
|
|
680
867
|
domain: string | undefined;
|
|
681
868
|
domainOwner?: string;
|
|
@@ -702,6 +889,9 @@ export interface UpdateRepositoryRequest {
|
|
|
702
889
|
export interface UpdateRepositoryResult {
|
|
703
890
|
repository?: RepositoryDescription;
|
|
704
891
|
}
|
|
892
|
+
export declare const GetAuthorizationTokenResultFilterSensitiveLog: (
|
|
893
|
+
obj: GetAuthorizationTokenResult
|
|
894
|
+
) => any;
|
|
705
895
|
export declare const GetPackageVersionAssetResultFilterSensitiveLog: (
|
|
706
896
|
obj: GetPackageVersionAssetResult
|
|
707
897
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAllowedRepositoriesForGroupCommandInput,
|
|
4
|
+
ListAllowedRepositoriesForGroupCommandOutput,
|
|
5
|
+
} from "../commands/ListAllowedRepositoriesForGroupCommand";
|
|
6
|
+
import { CodeartifactPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAllowedRepositoriesForGroup: (
|
|
8
|
+
config: CodeartifactPaginationConfiguration,
|
|
9
|
+
input: ListAllowedRepositoriesForGroupCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAllowedRepositoriesForGroupCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAssociatedPackagesCommandInput,
|
|
4
|
+
ListAssociatedPackagesCommandOutput,
|
|
5
|
+
} from "../commands/ListAssociatedPackagesCommand";
|
|
6
|
+
import { CodeartifactPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAssociatedPackages: (
|
|
8
|
+
config: CodeartifactPaginationConfiguration,
|
|
9
|
+
input: ListAssociatedPackagesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAssociatedPackagesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPackageGroupsCommandInput,
|
|
4
|
+
ListPackageGroupsCommandOutput,
|
|
5
|
+
} from "../commands/ListPackageGroupsCommand";
|
|
6
|
+
import { CodeartifactPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListPackageGroups: (
|
|
8
|
+
config: CodeartifactPaginationConfiguration,
|
|
9
|
+
input: ListPackageGroupsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPackageGroupsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSubPackageGroupsCommandInput,
|
|
4
|
+
ListSubPackageGroupsCommandOutput,
|
|
5
|
+
} from "../commands/ListSubPackageGroupsCommand";
|
|
6
|
+
import { CodeartifactPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListSubPackageGroups: (
|
|
8
|
+
config: CodeartifactPaginationConfiguration,
|
|
9
|
+
input: ListSubPackageGroupsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => 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";
|
|
@@ -18,6 +18,10 @@ import {
|
|
|
18
18
|
CreateDomainCommandInput,
|
|
19
19
|
CreateDomainCommandOutput,
|
|
20
20
|
} from "../commands/CreateDomainCommand";
|
|
21
|
+
import {
|
|
22
|
+
CreatePackageGroupCommandInput,
|
|
23
|
+
CreatePackageGroupCommandOutput,
|
|
24
|
+
} from "../commands/CreatePackageGroupCommand";
|
|
21
25
|
import {
|
|
22
26
|
CreateRepositoryCommandInput,
|
|
23
27
|
CreateRepositoryCommandOutput,
|
|
@@ -34,6 +38,10 @@ import {
|
|
|
34
38
|
DeletePackageCommandInput,
|
|
35
39
|
DeletePackageCommandOutput,
|
|
36
40
|
} from "../commands/DeletePackageCommand";
|
|
41
|
+
import {
|
|
42
|
+
DeletePackageGroupCommandInput,
|
|
43
|
+
DeletePackageGroupCommandOutput,
|
|
44
|
+
} from "../commands/DeletePackageGroupCommand";
|
|
37
45
|
import {
|
|
38
46
|
DeletePackageVersionsCommandInput,
|
|
39
47
|
DeletePackageVersionsCommandOutput,
|
|
@@ -54,6 +62,10 @@ import {
|
|
|
54
62
|
DescribePackageCommandInput,
|
|
55
63
|
DescribePackageCommandOutput,
|
|
56
64
|
} from "../commands/DescribePackageCommand";
|
|
65
|
+
import {
|
|
66
|
+
DescribePackageGroupCommandInput,
|
|
67
|
+
DescribePackageGroupCommandOutput,
|
|
68
|
+
} from "../commands/DescribePackageGroupCommand";
|
|
57
69
|
import {
|
|
58
70
|
DescribePackageVersionCommandInput,
|
|
59
71
|
DescribePackageVersionCommandOutput,
|
|
@@ -70,6 +82,10 @@ import {
|
|
|
70
82
|
DisposePackageVersionsCommandInput,
|
|
71
83
|
DisposePackageVersionsCommandOutput,
|
|
72
84
|
} from "../commands/DisposePackageVersionsCommand";
|
|
85
|
+
import {
|
|
86
|
+
GetAssociatedPackageGroupCommandInput,
|
|
87
|
+
GetAssociatedPackageGroupCommandOutput,
|
|
88
|
+
} from "../commands/GetAssociatedPackageGroupCommand";
|
|
73
89
|
import {
|
|
74
90
|
GetAuthorizationTokenCommandInput,
|
|
75
91
|
GetAuthorizationTokenCommandOutput,
|
|
@@ -94,10 +110,22 @@ import {
|
|
|
94
110
|
GetRepositoryPermissionsPolicyCommandInput,
|
|
95
111
|
GetRepositoryPermissionsPolicyCommandOutput,
|
|
96
112
|
} from "../commands/GetRepositoryPermissionsPolicyCommand";
|
|
113
|
+
import {
|
|
114
|
+
ListAllowedRepositoriesForGroupCommandInput,
|
|
115
|
+
ListAllowedRepositoriesForGroupCommandOutput,
|
|
116
|
+
} from "../commands/ListAllowedRepositoriesForGroupCommand";
|
|
117
|
+
import {
|
|
118
|
+
ListAssociatedPackagesCommandInput,
|
|
119
|
+
ListAssociatedPackagesCommandOutput,
|
|
120
|
+
} from "../commands/ListAssociatedPackagesCommand";
|
|
97
121
|
import {
|
|
98
122
|
ListDomainsCommandInput,
|
|
99
123
|
ListDomainsCommandOutput,
|
|
100
124
|
} from "../commands/ListDomainsCommand";
|
|
125
|
+
import {
|
|
126
|
+
ListPackageGroupsCommandInput,
|
|
127
|
+
ListPackageGroupsCommandOutput,
|
|
128
|
+
} from "../commands/ListPackageGroupsCommand";
|
|
101
129
|
import {
|
|
102
130
|
ListPackagesCommandInput,
|
|
103
131
|
ListPackagesCommandOutput,
|
|
@@ -122,6 +150,10 @@ import {
|
|
|
122
150
|
ListRepositoriesInDomainCommandInput,
|
|
123
151
|
ListRepositoriesInDomainCommandOutput,
|
|
124
152
|
} from "../commands/ListRepositoriesInDomainCommand";
|
|
153
|
+
import {
|
|
154
|
+
ListSubPackageGroupsCommandInput,
|
|
155
|
+
ListSubPackageGroupsCommandOutput,
|
|
156
|
+
} from "../commands/ListSubPackageGroupsCommand";
|
|
125
157
|
import {
|
|
126
158
|
ListTagsForResourceCommandInput,
|
|
127
159
|
ListTagsForResourceCommandOutput,
|
|
@@ -150,6 +182,14 @@ import {
|
|
|
150
182
|
UntagResourceCommandInput,
|
|
151
183
|
UntagResourceCommandOutput,
|
|
152
184
|
} from "../commands/UntagResourceCommand";
|
|
185
|
+
import {
|
|
186
|
+
UpdatePackageGroupCommandInput,
|
|
187
|
+
UpdatePackageGroupCommandOutput,
|
|
188
|
+
} from "../commands/UpdatePackageGroupCommand";
|
|
189
|
+
import {
|
|
190
|
+
UpdatePackageGroupOriginConfigurationCommandInput,
|
|
191
|
+
UpdatePackageGroupOriginConfigurationCommandOutput,
|
|
192
|
+
} from "../commands/UpdatePackageGroupOriginConfigurationCommand";
|
|
153
193
|
import {
|
|
154
194
|
UpdatePackageVersionsStatusCommandInput,
|
|
155
195
|
UpdatePackageVersionsStatusCommandOutput,
|
|
@@ -170,6 +210,10 @@ export declare const se_CreateDomainCommand: (
|
|
|
170
210
|
input: CreateDomainCommandInput,
|
|
171
211
|
context: __SerdeContext
|
|
172
212
|
) => Promise<__HttpRequest>;
|
|
213
|
+
export declare const se_CreatePackageGroupCommand: (
|
|
214
|
+
input: CreatePackageGroupCommandInput,
|
|
215
|
+
context: __SerdeContext
|
|
216
|
+
) => Promise<__HttpRequest>;
|
|
173
217
|
export declare const se_CreateRepositoryCommand: (
|
|
174
218
|
input: CreateRepositoryCommandInput,
|
|
175
219
|
context: __SerdeContext
|
|
@@ -186,6 +230,10 @@ export declare const se_DeletePackageCommand: (
|
|
|
186
230
|
input: DeletePackageCommandInput,
|
|
187
231
|
context: __SerdeContext
|
|
188
232
|
) => Promise<__HttpRequest>;
|
|
233
|
+
export declare const se_DeletePackageGroupCommand: (
|
|
234
|
+
input: DeletePackageGroupCommandInput,
|
|
235
|
+
context: __SerdeContext
|
|
236
|
+
) => Promise<__HttpRequest>;
|
|
189
237
|
export declare const se_DeletePackageVersionsCommand: (
|
|
190
238
|
input: DeletePackageVersionsCommandInput,
|
|
191
239
|
context: __SerdeContext
|
|
@@ -206,6 +254,10 @@ export declare const se_DescribePackageCommand: (
|
|
|
206
254
|
input: DescribePackageCommandInput,
|
|
207
255
|
context: __SerdeContext
|
|
208
256
|
) => Promise<__HttpRequest>;
|
|
257
|
+
export declare const se_DescribePackageGroupCommand: (
|
|
258
|
+
input: DescribePackageGroupCommandInput,
|
|
259
|
+
context: __SerdeContext
|
|
260
|
+
) => Promise<__HttpRequest>;
|
|
209
261
|
export declare const se_DescribePackageVersionCommand: (
|
|
210
262
|
input: DescribePackageVersionCommandInput,
|
|
211
263
|
context: __SerdeContext
|
|
@@ -222,6 +274,10 @@ export declare const se_DisposePackageVersionsCommand: (
|
|
|
222
274
|
input: DisposePackageVersionsCommandInput,
|
|
223
275
|
context: __SerdeContext
|
|
224
276
|
) => Promise<__HttpRequest>;
|
|
277
|
+
export declare const se_GetAssociatedPackageGroupCommand: (
|
|
278
|
+
input: GetAssociatedPackageGroupCommandInput,
|
|
279
|
+
context: __SerdeContext
|
|
280
|
+
) => Promise<__HttpRequest>;
|
|
225
281
|
export declare const se_GetAuthorizationTokenCommand: (
|
|
226
282
|
input: GetAuthorizationTokenCommandInput,
|
|
227
283
|
context: __SerdeContext
|
|
@@ -246,10 +302,22 @@ export declare const se_GetRepositoryPermissionsPolicyCommand: (
|
|
|
246
302
|
input: GetRepositoryPermissionsPolicyCommandInput,
|
|
247
303
|
context: __SerdeContext
|
|
248
304
|
) => Promise<__HttpRequest>;
|
|
305
|
+
export declare const se_ListAllowedRepositoriesForGroupCommand: (
|
|
306
|
+
input: ListAllowedRepositoriesForGroupCommandInput,
|
|
307
|
+
context: __SerdeContext
|
|
308
|
+
) => Promise<__HttpRequest>;
|
|
309
|
+
export declare const se_ListAssociatedPackagesCommand: (
|
|
310
|
+
input: ListAssociatedPackagesCommandInput,
|
|
311
|
+
context: __SerdeContext
|
|
312
|
+
) => Promise<__HttpRequest>;
|
|
249
313
|
export declare const se_ListDomainsCommand: (
|
|
250
314
|
input: ListDomainsCommandInput,
|
|
251
315
|
context: __SerdeContext
|
|
252
316
|
) => Promise<__HttpRequest>;
|
|
317
|
+
export declare const se_ListPackageGroupsCommand: (
|
|
318
|
+
input: ListPackageGroupsCommandInput,
|
|
319
|
+
context: __SerdeContext
|
|
320
|
+
) => Promise<__HttpRequest>;
|
|
253
321
|
export declare const se_ListPackagesCommand: (
|
|
254
322
|
input: ListPackagesCommandInput,
|
|
255
323
|
context: __SerdeContext
|
|
@@ -274,6 +342,10 @@ export declare const se_ListRepositoriesInDomainCommand: (
|
|
|
274
342
|
input: ListRepositoriesInDomainCommandInput,
|
|
275
343
|
context: __SerdeContext
|
|
276
344
|
) => Promise<__HttpRequest>;
|
|
345
|
+
export declare const se_ListSubPackageGroupsCommand: (
|
|
346
|
+
input: ListSubPackageGroupsCommandInput,
|
|
347
|
+
context: __SerdeContext
|
|
348
|
+
) => Promise<__HttpRequest>;
|
|
277
349
|
export declare const se_ListTagsForResourceCommand: (
|
|
278
350
|
input: ListTagsForResourceCommandInput,
|
|
279
351
|
context: __SerdeContext
|
|
@@ -302,6 +374,14 @@ export declare const se_UntagResourceCommand: (
|
|
|
302
374
|
input: UntagResourceCommandInput,
|
|
303
375
|
context: __SerdeContext
|
|
304
376
|
) => Promise<__HttpRequest>;
|
|
377
|
+
export declare const se_UpdatePackageGroupCommand: (
|
|
378
|
+
input: UpdatePackageGroupCommandInput,
|
|
379
|
+
context: __SerdeContext
|
|
380
|
+
) => Promise<__HttpRequest>;
|
|
381
|
+
export declare const se_UpdatePackageGroupOriginConfigurationCommand: (
|
|
382
|
+
input: UpdatePackageGroupOriginConfigurationCommandInput,
|
|
383
|
+
context: __SerdeContext
|
|
384
|
+
) => Promise<__HttpRequest>;
|
|
305
385
|
export declare const se_UpdatePackageVersionsStatusCommand: (
|
|
306
386
|
input: UpdatePackageVersionsStatusCommandInput,
|
|
307
387
|
context: __SerdeContext
|
|
@@ -322,6 +402,10 @@ export declare const de_CreateDomainCommand: (
|
|
|
322
402
|
output: __HttpResponse,
|
|
323
403
|
context: __SerdeContext
|
|
324
404
|
) => Promise<CreateDomainCommandOutput>;
|
|
405
|
+
export declare const de_CreatePackageGroupCommand: (
|
|
406
|
+
output: __HttpResponse,
|
|
407
|
+
context: __SerdeContext
|
|
408
|
+
) => Promise<CreatePackageGroupCommandOutput>;
|
|
325
409
|
export declare const de_CreateRepositoryCommand: (
|
|
326
410
|
output: __HttpResponse,
|
|
327
411
|
context: __SerdeContext
|
|
@@ -338,6 +422,10 @@ export declare const de_DeletePackageCommand: (
|
|
|
338
422
|
output: __HttpResponse,
|
|
339
423
|
context: __SerdeContext
|
|
340
424
|
) => Promise<DeletePackageCommandOutput>;
|
|
425
|
+
export declare const de_DeletePackageGroupCommand: (
|
|
426
|
+
output: __HttpResponse,
|
|
427
|
+
context: __SerdeContext
|
|
428
|
+
) => Promise<DeletePackageGroupCommandOutput>;
|
|
341
429
|
export declare const de_DeletePackageVersionsCommand: (
|
|
342
430
|
output: __HttpResponse,
|
|
343
431
|
context: __SerdeContext
|
|
@@ -358,6 +446,10 @@ export declare const de_DescribePackageCommand: (
|
|
|
358
446
|
output: __HttpResponse,
|
|
359
447
|
context: __SerdeContext
|
|
360
448
|
) => Promise<DescribePackageCommandOutput>;
|
|
449
|
+
export declare const de_DescribePackageGroupCommand: (
|
|
450
|
+
output: __HttpResponse,
|
|
451
|
+
context: __SerdeContext
|
|
452
|
+
) => Promise<DescribePackageGroupCommandOutput>;
|
|
361
453
|
export declare const de_DescribePackageVersionCommand: (
|
|
362
454
|
output: __HttpResponse,
|
|
363
455
|
context: __SerdeContext
|
|
@@ -374,6 +466,10 @@ export declare const de_DisposePackageVersionsCommand: (
|
|
|
374
466
|
output: __HttpResponse,
|
|
375
467
|
context: __SerdeContext
|
|
376
468
|
) => Promise<DisposePackageVersionsCommandOutput>;
|
|
469
|
+
export declare const de_GetAssociatedPackageGroupCommand: (
|
|
470
|
+
output: __HttpResponse,
|
|
471
|
+
context: __SerdeContext
|
|
472
|
+
) => Promise<GetAssociatedPackageGroupCommandOutput>;
|
|
377
473
|
export declare const de_GetAuthorizationTokenCommand: (
|
|
378
474
|
output: __HttpResponse,
|
|
379
475
|
context: __SerdeContext
|
|
@@ -398,10 +494,22 @@ export declare const de_GetRepositoryPermissionsPolicyCommand: (
|
|
|
398
494
|
output: __HttpResponse,
|
|
399
495
|
context: __SerdeContext
|
|
400
496
|
) => Promise<GetRepositoryPermissionsPolicyCommandOutput>;
|
|
497
|
+
export declare const de_ListAllowedRepositoriesForGroupCommand: (
|
|
498
|
+
output: __HttpResponse,
|
|
499
|
+
context: __SerdeContext
|
|
500
|
+
) => Promise<ListAllowedRepositoriesForGroupCommandOutput>;
|
|
501
|
+
export declare const de_ListAssociatedPackagesCommand: (
|
|
502
|
+
output: __HttpResponse,
|
|
503
|
+
context: __SerdeContext
|
|
504
|
+
) => Promise<ListAssociatedPackagesCommandOutput>;
|
|
401
505
|
export declare const de_ListDomainsCommand: (
|
|
402
506
|
output: __HttpResponse,
|
|
403
507
|
context: __SerdeContext
|
|
404
508
|
) => Promise<ListDomainsCommandOutput>;
|
|
509
|
+
export declare const de_ListPackageGroupsCommand: (
|
|
510
|
+
output: __HttpResponse,
|
|
511
|
+
context: __SerdeContext
|
|
512
|
+
) => Promise<ListPackageGroupsCommandOutput>;
|
|
405
513
|
export declare const de_ListPackagesCommand: (
|
|
406
514
|
output: __HttpResponse,
|
|
407
515
|
context: __SerdeContext
|
|
@@ -426,6 +534,10 @@ export declare const de_ListRepositoriesInDomainCommand: (
|
|
|
426
534
|
output: __HttpResponse,
|
|
427
535
|
context: __SerdeContext
|
|
428
536
|
) => Promise<ListRepositoriesInDomainCommandOutput>;
|
|
537
|
+
export declare const de_ListSubPackageGroupsCommand: (
|
|
538
|
+
output: __HttpResponse,
|
|
539
|
+
context: __SerdeContext
|
|
540
|
+
) => Promise<ListSubPackageGroupsCommandOutput>;
|
|
429
541
|
export declare const de_ListTagsForResourceCommand: (
|
|
430
542
|
output: __HttpResponse,
|
|
431
543
|
context: __SerdeContext
|
|
@@ -454,6 +566,14 @@ export declare const de_UntagResourceCommand: (
|
|
|
454
566
|
output: __HttpResponse,
|
|
455
567
|
context: __SerdeContext
|
|
456
568
|
) => Promise<UntagResourceCommandOutput>;
|
|
569
|
+
export declare const de_UpdatePackageGroupCommand: (
|
|
570
|
+
output: __HttpResponse,
|
|
571
|
+
context: __SerdeContext
|
|
572
|
+
) => Promise<UpdatePackageGroupCommandOutput>;
|
|
573
|
+
export declare const de_UpdatePackageGroupOriginConfigurationCommand: (
|
|
574
|
+
output: __HttpResponse,
|
|
575
|
+
context: __SerdeContext
|
|
576
|
+
) => Promise<UpdatePackageGroupOriginConfigurationCommandOutput>;
|
|
457
577
|
export declare const de_UpdatePackageVersionsStatusCommand: (
|
|
458
578
|
output: __HttpResponse,
|
|
459
579
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codeartifact",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codeartifact Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.539.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-codeartifact",
|