@aws-sdk/client-codeartifact 3.535.0 → 3.540.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/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +608 -4
- 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/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- 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 -7
- 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/index.d.ts +0 -1
- 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 +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -31,22 +31,27 @@ __export(src_exports, {
|
|
|
31
31
|
ConflictException: () => ConflictException,
|
|
32
32
|
CopyPackageVersionsCommand: () => CopyPackageVersionsCommand,
|
|
33
33
|
CreateDomainCommand: () => CreateDomainCommand,
|
|
34
|
+
CreatePackageGroupCommand: () => CreatePackageGroupCommand,
|
|
34
35
|
CreateRepositoryCommand: () => CreateRepositoryCommand,
|
|
35
36
|
DeleteDomainCommand: () => DeleteDomainCommand,
|
|
36
37
|
DeleteDomainPermissionsPolicyCommand: () => DeleteDomainPermissionsPolicyCommand,
|
|
37
38
|
DeletePackageCommand: () => DeletePackageCommand,
|
|
39
|
+
DeletePackageGroupCommand: () => DeletePackageGroupCommand,
|
|
38
40
|
DeletePackageVersionsCommand: () => DeletePackageVersionsCommand,
|
|
39
41
|
DeleteRepositoryCommand: () => DeleteRepositoryCommand,
|
|
40
42
|
DeleteRepositoryPermissionsPolicyCommand: () => DeleteRepositoryPermissionsPolicyCommand,
|
|
41
43
|
DescribeDomainCommand: () => DescribeDomainCommand,
|
|
42
44
|
DescribePackageCommand: () => DescribePackageCommand,
|
|
45
|
+
DescribePackageGroupCommand: () => DescribePackageGroupCommand,
|
|
43
46
|
DescribePackageVersionCommand: () => DescribePackageVersionCommand,
|
|
44
47
|
DescribeRepositoryCommand: () => DescribeRepositoryCommand,
|
|
45
48
|
DisassociateExternalConnectionCommand: () => DisassociateExternalConnectionCommand,
|
|
46
49
|
DisposePackageVersionsCommand: () => DisposePackageVersionsCommand,
|
|
47
50
|
DomainStatus: () => DomainStatus,
|
|
48
51
|
ExternalConnectionStatus: () => ExternalConnectionStatus,
|
|
52
|
+
GetAssociatedPackageGroupCommand: () => GetAssociatedPackageGroupCommand,
|
|
49
53
|
GetAuthorizationTokenCommand: () => GetAuthorizationTokenCommand,
|
|
54
|
+
GetAuthorizationTokenResultFilterSensitiveLog: () => GetAuthorizationTokenResultFilterSensitiveLog,
|
|
50
55
|
GetDomainPermissionsPolicyCommand: () => GetDomainPermissionsPolicyCommand,
|
|
51
56
|
GetPackageVersionAssetCommand: () => GetPackageVersionAssetCommand,
|
|
52
57
|
GetPackageVersionAssetResultFilterSensitiveLog: () => GetPackageVersionAssetResultFilterSensitiveLog,
|
|
@@ -55,15 +60,23 @@ __export(src_exports, {
|
|
|
55
60
|
GetRepositoryPermissionsPolicyCommand: () => GetRepositoryPermissionsPolicyCommand,
|
|
56
61
|
HashAlgorithm: () => HashAlgorithm,
|
|
57
62
|
InternalServerException: () => InternalServerException,
|
|
63
|
+
ListAllowedRepositoriesForGroupCommand: () => ListAllowedRepositoriesForGroupCommand,
|
|
64
|
+
ListAssociatedPackagesCommand: () => ListAssociatedPackagesCommand,
|
|
58
65
|
ListDomainsCommand: () => ListDomainsCommand,
|
|
66
|
+
ListPackageGroupsCommand: () => ListPackageGroupsCommand,
|
|
59
67
|
ListPackageVersionAssetsCommand: () => ListPackageVersionAssetsCommand,
|
|
60
68
|
ListPackageVersionDependenciesCommand: () => ListPackageVersionDependenciesCommand,
|
|
61
69
|
ListPackageVersionsCommand: () => ListPackageVersionsCommand,
|
|
62
70
|
ListPackagesCommand: () => ListPackagesCommand,
|
|
63
71
|
ListRepositoriesCommand: () => ListRepositoriesCommand,
|
|
64
72
|
ListRepositoriesInDomainCommand: () => ListRepositoriesInDomainCommand,
|
|
73
|
+
ListSubPackageGroupsCommand: () => ListSubPackageGroupsCommand,
|
|
65
74
|
ListTagsForResourceCommand: () => ListTagsForResourceCommand,
|
|
66
75
|
PackageFormat: () => PackageFormat,
|
|
76
|
+
PackageGroupAllowedRepositoryUpdateType: () => PackageGroupAllowedRepositoryUpdateType,
|
|
77
|
+
PackageGroupAssociationType: () => PackageGroupAssociationType,
|
|
78
|
+
PackageGroupOriginRestrictionMode: () => PackageGroupOriginRestrictionMode,
|
|
79
|
+
PackageGroupOriginRestrictionType: () => PackageGroupOriginRestrictionType,
|
|
67
80
|
PackageVersionErrorCode: () => PackageVersionErrorCode,
|
|
68
81
|
PackageVersionOriginType: () => PackageVersionOriginType,
|
|
69
82
|
PackageVersionSortType: () => PackageVersionSortType,
|
|
@@ -79,17 +92,23 @@ __export(src_exports, {
|
|
|
79
92
|
TagResourceCommand: () => TagResourceCommand,
|
|
80
93
|
ThrottlingException: () => ThrottlingException,
|
|
81
94
|
UntagResourceCommand: () => UntagResourceCommand,
|
|
95
|
+
UpdatePackageGroupCommand: () => UpdatePackageGroupCommand,
|
|
96
|
+
UpdatePackageGroupOriginConfigurationCommand: () => UpdatePackageGroupOriginConfigurationCommand,
|
|
82
97
|
UpdatePackageVersionsStatusCommand: () => UpdatePackageVersionsStatusCommand,
|
|
83
98
|
UpdateRepositoryCommand: () => UpdateRepositoryCommand,
|
|
84
99
|
ValidationException: () => ValidationException,
|
|
85
100
|
ValidationExceptionReason: () => ValidationExceptionReason,
|
|
86
101
|
__Client: () => import_smithy_client.Client,
|
|
102
|
+
paginateListAllowedRepositoriesForGroup: () => paginateListAllowedRepositoriesForGroup,
|
|
103
|
+
paginateListAssociatedPackages: () => paginateListAssociatedPackages,
|
|
87
104
|
paginateListDomains: () => paginateListDomains,
|
|
105
|
+
paginateListPackageGroups: () => paginateListPackageGroups,
|
|
88
106
|
paginateListPackageVersionAssets: () => paginateListPackageVersionAssets,
|
|
89
107
|
paginateListPackageVersions: () => paginateListPackageVersions,
|
|
90
108
|
paginateListPackages: () => paginateListPackages,
|
|
91
109
|
paginateListRepositories: () => paginateListRepositories,
|
|
92
|
-
paginateListRepositoriesInDomain: () => paginateListRepositoriesInDomain
|
|
110
|
+
paginateListRepositoriesInDomain: () => paginateListRepositoriesInDomain,
|
|
111
|
+
paginateListSubPackageGroups: () => paginateListSubPackageGroups
|
|
93
112
|
});
|
|
94
113
|
module.exports = __toCommonJS(src_exports);
|
|
95
114
|
|
|
@@ -296,6 +315,10 @@ var HashAlgorithm = {
|
|
|
296
315
|
SHA256: "SHA-256",
|
|
297
316
|
SHA512: "SHA-512"
|
|
298
317
|
};
|
|
318
|
+
var PackageGroupAssociationType = {
|
|
319
|
+
STRONG: "STRONG",
|
|
320
|
+
WEAK: "WEAK"
|
|
321
|
+
};
|
|
299
322
|
var PackageFormat = {
|
|
300
323
|
GENERIC: "generic",
|
|
301
324
|
MAVEN: "maven",
|
|
@@ -451,6 +474,17 @@ var DomainStatus = {
|
|
|
451
474
|
ACTIVE: "Active",
|
|
452
475
|
DELETED: "Deleted"
|
|
453
476
|
};
|
|
477
|
+
var PackageGroupOriginRestrictionType = {
|
|
478
|
+
EXTERNAL_UPSTREAM: "EXTERNAL_UPSTREAM",
|
|
479
|
+
INTERNAL_UPSTREAM: "INTERNAL_UPSTREAM",
|
|
480
|
+
PUBLISH: "PUBLISH"
|
|
481
|
+
};
|
|
482
|
+
var PackageGroupOriginRestrictionMode = {
|
|
483
|
+
ALLOW: "ALLOW",
|
|
484
|
+
ALLOW_SPECIFIC_REPOSITORIES: "ALLOW_SPECIFIC_REPOSITORIES",
|
|
485
|
+
BLOCK: "BLOCK",
|
|
486
|
+
INHERIT: "INHERIT"
|
|
487
|
+
};
|
|
454
488
|
var PackageVersionOriginType = {
|
|
455
489
|
EXTERNAL: "EXTERNAL",
|
|
456
490
|
INTERNAL: "INTERNAL",
|
|
@@ -459,6 +493,13 @@ var PackageVersionOriginType = {
|
|
|
459
493
|
var PackageVersionSortType = {
|
|
460
494
|
PUBLISHED_TIME: "PUBLISHED_TIME"
|
|
461
495
|
};
|
|
496
|
+
var PackageGroupAllowedRepositoryUpdateType = {
|
|
497
|
+
ADDED: "ADDED",
|
|
498
|
+
REMOVED: "REMOVED"
|
|
499
|
+
};
|
|
500
|
+
var GetAuthorizationTokenResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
501
|
+
...obj
|
|
502
|
+
}), "GetAuthorizationTokenResultFilterSensitiveLog");
|
|
462
503
|
var GetPackageVersionAssetResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
463
504
|
...obj
|
|
464
505
|
}), "GetPackageVersionAssetResultFilterSensitiveLog");
|
|
@@ -527,6 +568,28 @@ var se_CreateDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
527
568
|
b.m("POST").h(headers).q(query).b(body);
|
|
528
569
|
return b.build();
|
|
529
570
|
}, "se_CreateDomainCommand");
|
|
571
|
+
var se_CreatePackageGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
572
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
573
|
+
const headers = {
|
|
574
|
+
"content-type": "application/json"
|
|
575
|
+
};
|
|
576
|
+
b.bp("/v1/package-group");
|
|
577
|
+
const query = (0, import_smithy_client.map)({
|
|
578
|
+
[_d]: [, (0, import_smithy_client.expectNonNull)(input[_d], `domain`)],
|
|
579
|
+
[_do]: [, input[_dO]]
|
|
580
|
+
});
|
|
581
|
+
let body;
|
|
582
|
+
body = JSON.stringify(
|
|
583
|
+
(0, import_smithy_client.take)(input, {
|
|
584
|
+
contactInfo: [],
|
|
585
|
+
description: [],
|
|
586
|
+
packageGroup: [],
|
|
587
|
+
tags: (_) => (0, import_smithy_client._json)(_)
|
|
588
|
+
})
|
|
589
|
+
);
|
|
590
|
+
b.m("POST").h(headers).q(query).b(body);
|
|
591
|
+
return b.build();
|
|
592
|
+
}, "se_CreatePackageGroupCommand");
|
|
530
593
|
var se_CreateRepositoryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
531
594
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
532
595
|
const headers = {
|
|
@@ -590,6 +653,19 @@ var se_DeletePackageCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
590
653
|
b.m("DELETE").h(headers).q(query).b(body);
|
|
591
654
|
return b.build();
|
|
592
655
|
}, "se_DeletePackageCommand");
|
|
656
|
+
var se_DeletePackageGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
657
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
658
|
+
const headers = {};
|
|
659
|
+
b.bp("/v1/package-group");
|
|
660
|
+
const query = (0, import_smithy_client.map)({
|
|
661
|
+
[_d]: [, (0, import_smithy_client.expectNonNull)(input[_d], `domain`)],
|
|
662
|
+
[_do]: [, input[_dO]],
|
|
663
|
+
[_pg]: [, (0, import_smithy_client.expectNonNull)(input[_pG], `packageGroup`)]
|
|
664
|
+
});
|
|
665
|
+
let body;
|
|
666
|
+
b.m("DELETE").h(headers).q(query).b(body);
|
|
667
|
+
return b.build();
|
|
668
|
+
}, "se_DeletePackageGroupCommand");
|
|
593
669
|
var se_DeletePackageVersionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
594
670
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
595
671
|
const headers = {
|
|
@@ -669,6 +745,19 @@ var se_DescribePackageCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
669
745
|
b.m("GET").h(headers).q(query).b(body);
|
|
670
746
|
return b.build();
|
|
671
747
|
}, "se_DescribePackageCommand");
|
|
748
|
+
var se_DescribePackageGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
749
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
750
|
+
const headers = {};
|
|
751
|
+
b.bp("/v1/package-group");
|
|
752
|
+
const query = (0, import_smithy_client.map)({
|
|
753
|
+
[_d]: [, (0, import_smithy_client.expectNonNull)(input[_d], `domain`)],
|
|
754
|
+
[_do]: [, input[_dO]],
|
|
755
|
+
[_pg]: [, (0, import_smithy_client.expectNonNull)(input[_pG], `packageGroup`)]
|
|
756
|
+
});
|
|
757
|
+
let body;
|
|
758
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
759
|
+
return b.build();
|
|
760
|
+
}, "se_DescribePackageGroupCommand");
|
|
672
761
|
var se_DescribePackageVersionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
673
762
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
674
763
|
const headers = {};
|
|
@@ -738,6 +827,21 @@ var se_DisposePackageVersionsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
738
827
|
b.m("POST").h(headers).q(query).b(body);
|
|
739
828
|
return b.build();
|
|
740
829
|
}, "se_DisposePackageVersionsCommand");
|
|
830
|
+
var se_GetAssociatedPackageGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
831
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
832
|
+
const headers = {};
|
|
833
|
+
b.bp("/v1/get-associated-package-group");
|
|
834
|
+
const query = (0, import_smithy_client.map)({
|
|
835
|
+
[_d]: [, (0, import_smithy_client.expectNonNull)(input[_d], `domain`)],
|
|
836
|
+
[_do]: [, input[_dO]],
|
|
837
|
+
[_f]: [, (0, import_smithy_client.expectNonNull)(input[_f], `format`)],
|
|
838
|
+
[_n]: [, input[_n]],
|
|
839
|
+
[_p]: [, (0, import_smithy_client.expectNonNull)(input[_p], `package`)]
|
|
840
|
+
});
|
|
841
|
+
let body;
|
|
842
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
843
|
+
return b.build();
|
|
844
|
+
}, "se_GetAssociatedPackageGroupCommand");
|
|
741
845
|
var se_GetAuthorizationTokenCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
742
846
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
743
847
|
const headers = {};
|
|
@@ -826,6 +930,38 @@ var se_GetRepositoryPermissionsPolicyCommand = /* @__PURE__ */ __name(async (inp
|
|
|
826
930
|
b.m("GET").h(headers).q(query).b(body);
|
|
827
931
|
return b.build();
|
|
828
932
|
}, "se_GetRepositoryPermissionsPolicyCommand");
|
|
933
|
+
var se_ListAllowedRepositoriesForGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
934
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
935
|
+
const headers = {};
|
|
936
|
+
b.bp("/v1/package-group-allowed-repositories");
|
|
937
|
+
const query = (0, import_smithy_client.map)({
|
|
938
|
+
[_d]: [, (0, import_smithy_client.expectNonNull)(input[_d], `domain`)],
|
|
939
|
+
[_do]: [, input[_dO]],
|
|
940
|
+
[_pg]: [, (0, import_smithy_client.expectNonNull)(input[_pG], `packageGroup`)],
|
|
941
|
+
[_oRT]: [, (0, import_smithy_client.expectNonNull)(input[_oRT], `originRestrictionType`)],
|
|
942
|
+
[_mr]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
943
|
+
[_nt]: [, input[_nT]]
|
|
944
|
+
});
|
|
945
|
+
let body;
|
|
946
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
947
|
+
return b.build();
|
|
948
|
+
}, "se_ListAllowedRepositoriesForGroupCommand");
|
|
949
|
+
var se_ListAssociatedPackagesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
950
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
951
|
+
const headers = {};
|
|
952
|
+
b.bp("/v1/list-associated-packages");
|
|
953
|
+
const query = (0, import_smithy_client.map)({
|
|
954
|
+
[_d]: [, (0, import_smithy_client.expectNonNull)(input[_d], `domain`)],
|
|
955
|
+
[_do]: [, input[_dO]],
|
|
956
|
+
[_pg]: [, (0, import_smithy_client.expectNonNull)(input[_pG], `packageGroup`)],
|
|
957
|
+
[_mr]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
958
|
+
[_nt]: [, input[_nT]],
|
|
959
|
+
[_pre]: [() => input.preview !== void 0, () => input[_pre].toString()]
|
|
960
|
+
});
|
|
961
|
+
let body;
|
|
962
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
963
|
+
return b.build();
|
|
964
|
+
}, "se_ListAssociatedPackagesCommand");
|
|
829
965
|
var se_ListDomainsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
830
966
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
831
967
|
const headers = {
|
|
@@ -842,6 +978,21 @@ var se_ListDomainsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
842
978
|
b.m("POST").h(headers).b(body);
|
|
843
979
|
return b.build();
|
|
844
980
|
}, "se_ListDomainsCommand");
|
|
981
|
+
var se_ListPackageGroupsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
982
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
983
|
+
const headers = {};
|
|
984
|
+
b.bp("/v1/package-groups");
|
|
985
|
+
const query = (0, import_smithy_client.map)({
|
|
986
|
+
[_d]: [, (0, import_smithy_client.expectNonNull)(input[_d], `domain`)],
|
|
987
|
+
[_do]: [, input[_dO]],
|
|
988
|
+
[_mr]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
989
|
+
[_nt]: [, input[_nT]],
|
|
990
|
+
[_pref]: [, input[_pref]]
|
|
991
|
+
});
|
|
992
|
+
let body;
|
|
993
|
+
b.m("POST").h(headers).q(query).b(body);
|
|
994
|
+
return b.build();
|
|
995
|
+
}, "se_ListPackageGroupsCommand");
|
|
845
996
|
var se_ListPackagesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
846
997
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
847
998
|
const headers = {};
|
|
@@ -949,6 +1100,21 @@ var se_ListRepositoriesInDomainCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
949
1100
|
b.m("POST").h(headers).q(query).b(body);
|
|
950
1101
|
return b.build();
|
|
951
1102
|
}, "se_ListRepositoriesInDomainCommand");
|
|
1103
|
+
var se_ListSubPackageGroupsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1104
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1105
|
+
const headers = {};
|
|
1106
|
+
b.bp("/v1/package-groups/sub-groups");
|
|
1107
|
+
const query = (0, import_smithy_client.map)({
|
|
1108
|
+
[_d]: [, (0, import_smithy_client.expectNonNull)(input[_d], `domain`)],
|
|
1109
|
+
[_do]: [, input[_dO]],
|
|
1110
|
+
[_pg]: [, (0, import_smithy_client.expectNonNull)(input[_pG], `packageGroup`)],
|
|
1111
|
+
[_mr]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
1112
|
+
[_nt]: [, input[_nT]]
|
|
1113
|
+
});
|
|
1114
|
+
let body;
|
|
1115
|
+
b.m("POST").h(headers).q(query).b(body);
|
|
1116
|
+
return b.build();
|
|
1117
|
+
}, "se_ListSubPackageGroupsCommand");
|
|
952
1118
|
var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
953
1119
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
954
1120
|
const headers = {};
|
|
@@ -1083,6 +1249,49 @@ var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1083
1249
|
b.m("POST").h(headers).q(query).b(body);
|
|
1084
1250
|
return b.build();
|
|
1085
1251
|
}, "se_UntagResourceCommand");
|
|
1252
|
+
var se_UpdatePackageGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1253
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1254
|
+
const headers = {
|
|
1255
|
+
"content-type": "application/json"
|
|
1256
|
+
};
|
|
1257
|
+
b.bp("/v1/package-group");
|
|
1258
|
+
const query = (0, import_smithy_client.map)({
|
|
1259
|
+
[_d]: [, (0, import_smithy_client.expectNonNull)(input[_d], `domain`)],
|
|
1260
|
+
[_do]: [, input[_dO]]
|
|
1261
|
+
});
|
|
1262
|
+
let body;
|
|
1263
|
+
body = JSON.stringify(
|
|
1264
|
+
(0, import_smithy_client.take)(input, {
|
|
1265
|
+
contactInfo: [],
|
|
1266
|
+
description: [],
|
|
1267
|
+
packageGroup: []
|
|
1268
|
+
})
|
|
1269
|
+
);
|
|
1270
|
+
b.m("PUT").h(headers).q(query).b(body);
|
|
1271
|
+
return b.build();
|
|
1272
|
+
}, "se_UpdatePackageGroupCommand");
|
|
1273
|
+
var se_UpdatePackageGroupOriginConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1274
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1275
|
+
const headers = {
|
|
1276
|
+
"content-type": "application/json"
|
|
1277
|
+
};
|
|
1278
|
+
b.bp("/v1/package-group-origin-configuration");
|
|
1279
|
+
const query = (0, import_smithy_client.map)({
|
|
1280
|
+
[_d]: [, (0, import_smithy_client.expectNonNull)(input[_d], `domain`)],
|
|
1281
|
+
[_do]: [, input[_dO]],
|
|
1282
|
+
[_pg]: [, (0, import_smithy_client.expectNonNull)(input[_pG], `packageGroup`)]
|
|
1283
|
+
});
|
|
1284
|
+
let body;
|
|
1285
|
+
body = JSON.stringify(
|
|
1286
|
+
(0, import_smithy_client.take)(input, {
|
|
1287
|
+
addAllowedRepositories: (_) => (0, import_smithy_client._json)(_),
|
|
1288
|
+
removeAllowedRepositories: (_) => (0, import_smithy_client._json)(_),
|
|
1289
|
+
restrictions: (_) => (0, import_smithy_client._json)(_)
|
|
1290
|
+
})
|
|
1291
|
+
);
|
|
1292
|
+
b.m("PUT").h(headers).q(query).b(body);
|
|
1293
|
+
return b.build();
|
|
1294
|
+
}, "se_UpdatePackageGroupOriginConfigurationCommand");
|
|
1086
1295
|
var se_UpdatePackageVersionsStatusCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1087
1296
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1088
1297
|
const headers = {
|
|
@@ -1173,6 +1382,20 @@ var de_CreateDomainCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
1173
1382
|
Object.assign(contents, doc);
|
|
1174
1383
|
return contents;
|
|
1175
1384
|
}, "de_CreateDomainCommand");
|
|
1385
|
+
var de_CreatePackageGroupCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1386
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1387
|
+
return de_CommandError(output, context);
|
|
1388
|
+
}
|
|
1389
|
+
const contents = (0, import_smithy_client.map)({
|
|
1390
|
+
$metadata: deserializeMetadata(output)
|
|
1391
|
+
});
|
|
1392
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1393
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1394
|
+
packageGroup: (_) => de_PackageGroupDescription(_, context)
|
|
1395
|
+
});
|
|
1396
|
+
Object.assign(contents, doc);
|
|
1397
|
+
return contents;
|
|
1398
|
+
}, "de_CreatePackageGroupCommand");
|
|
1176
1399
|
var de_CreateRepositoryCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1177
1400
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1178
1401
|
return de_CommandError(output, context);
|
|
@@ -1229,6 +1452,20 @@ var de_DeletePackageCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
1229
1452
|
Object.assign(contents, doc);
|
|
1230
1453
|
return contents;
|
|
1231
1454
|
}, "de_DeletePackageCommand");
|
|
1455
|
+
var de_DeletePackageGroupCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1456
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1457
|
+
return de_CommandError(output, context);
|
|
1458
|
+
}
|
|
1459
|
+
const contents = (0, import_smithy_client.map)({
|
|
1460
|
+
$metadata: deserializeMetadata(output)
|
|
1461
|
+
});
|
|
1462
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1463
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1464
|
+
packageGroup: (_) => de_PackageGroupDescription(_, context)
|
|
1465
|
+
});
|
|
1466
|
+
Object.assign(contents, doc);
|
|
1467
|
+
return contents;
|
|
1468
|
+
}, "de_DeletePackageGroupCommand");
|
|
1232
1469
|
var de_DeletePackageVersionsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1233
1470
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1234
1471
|
return de_CommandError(output, context);
|
|
@@ -1300,6 +1537,20 @@ var de_DescribePackageCommand = /* @__PURE__ */ __name(async (output, context) =
|
|
|
1300
1537
|
Object.assign(contents, doc);
|
|
1301
1538
|
return contents;
|
|
1302
1539
|
}, "de_DescribePackageCommand");
|
|
1540
|
+
var de_DescribePackageGroupCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1541
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1542
|
+
return de_CommandError(output, context);
|
|
1543
|
+
}
|
|
1544
|
+
const contents = (0, import_smithy_client.map)({
|
|
1545
|
+
$metadata: deserializeMetadata(output)
|
|
1546
|
+
});
|
|
1547
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1548
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1549
|
+
packageGroup: (_) => de_PackageGroupDescription(_, context)
|
|
1550
|
+
});
|
|
1551
|
+
Object.assign(contents, doc);
|
|
1552
|
+
return contents;
|
|
1553
|
+
}, "de_DescribePackageGroupCommand");
|
|
1303
1554
|
var de_DescribePackageVersionCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1304
1555
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1305
1556
|
return de_CommandError(output, context);
|
|
@@ -1357,6 +1608,21 @@ var de_DisposePackageVersionsCommand = /* @__PURE__ */ __name(async (output, con
|
|
|
1357
1608
|
Object.assign(contents, doc);
|
|
1358
1609
|
return contents;
|
|
1359
1610
|
}, "de_DisposePackageVersionsCommand");
|
|
1611
|
+
var de_GetAssociatedPackageGroupCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1612
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1613
|
+
return de_CommandError(output, context);
|
|
1614
|
+
}
|
|
1615
|
+
const contents = (0, import_smithy_client.map)({
|
|
1616
|
+
$metadata: deserializeMetadata(output)
|
|
1617
|
+
});
|
|
1618
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1619
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1620
|
+
associationType: import_smithy_client.expectString,
|
|
1621
|
+
packageGroup: (_) => de_PackageGroupDescription(_, context)
|
|
1622
|
+
});
|
|
1623
|
+
Object.assign(contents, doc);
|
|
1624
|
+
return contents;
|
|
1625
|
+
}, "de_GetAssociatedPackageGroupCommand");
|
|
1360
1626
|
var de_GetAuthorizationTokenCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1361
1627
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1362
1628
|
return de_CommandError(output, context);
|
|
@@ -1448,6 +1714,36 @@ var de_GetRepositoryPermissionsPolicyCommand = /* @__PURE__ */ __name(async (out
|
|
|
1448
1714
|
Object.assign(contents, doc);
|
|
1449
1715
|
return contents;
|
|
1450
1716
|
}, "de_GetRepositoryPermissionsPolicyCommand");
|
|
1717
|
+
var de_ListAllowedRepositoriesForGroupCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1718
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1719
|
+
return de_CommandError(output, context);
|
|
1720
|
+
}
|
|
1721
|
+
const contents = (0, import_smithy_client.map)({
|
|
1722
|
+
$metadata: deserializeMetadata(output)
|
|
1723
|
+
});
|
|
1724
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1725
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1726
|
+
allowedRepositories: import_smithy_client._json,
|
|
1727
|
+
nextToken: import_smithy_client.expectString
|
|
1728
|
+
});
|
|
1729
|
+
Object.assign(contents, doc);
|
|
1730
|
+
return contents;
|
|
1731
|
+
}, "de_ListAllowedRepositoriesForGroupCommand");
|
|
1732
|
+
var de_ListAssociatedPackagesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1733
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1734
|
+
return de_CommandError(output, context);
|
|
1735
|
+
}
|
|
1736
|
+
const contents = (0, import_smithy_client.map)({
|
|
1737
|
+
$metadata: deserializeMetadata(output)
|
|
1738
|
+
});
|
|
1739
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1740
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1741
|
+
nextToken: import_smithy_client.expectString,
|
|
1742
|
+
packages: import_smithy_client._json
|
|
1743
|
+
});
|
|
1744
|
+
Object.assign(contents, doc);
|
|
1745
|
+
return contents;
|
|
1746
|
+
}, "de_ListAssociatedPackagesCommand");
|
|
1451
1747
|
var de_ListDomainsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1452
1748
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1453
1749
|
return de_CommandError(output, context);
|
|
@@ -1463,6 +1759,21 @@ var de_ListDomainsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
1463
1759
|
Object.assign(contents, doc);
|
|
1464
1760
|
return contents;
|
|
1465
1761
|
}, "de_ListDomainsCommand");
|
|
1762
|
+
var de_ListPackageGroupsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1763
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1764
|
+
return de_CommandError(output, context);
|
|
1765
|
+
}
|
|
1766
|
+
const contents = (0, import_smithy_client.map)({
|
|
1767
|
+
$metadata: deserializeMetadata(output)
|
|
1768
|
+
});
|
|
1769
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1770
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1771
|
+
nextToken: import_smithy_client.expectString,
|
|
1772
|
+
packageGroups: (_) => de_PackageGroupSummaryList(_, context)
|
|
1773
|
+
});
|
|
1774
|
+
Object.assign(contents, doc);
|
|
1775
|
+
return contents;
|
|
1776
|
+
}, "de_ListPackageGroupsCommand");
|
|
1466
1777
|
var de_ListPackagesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1467
1778
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1468
1779
|
return de_CommandError(output, context);
|
|
@@ -1567,6 +1878,21 @@ var de_ListRepositoriesInDomainCommand = /* @__PURE__ */ __name(async (output, c
|
|
|
1567
1878
|
Object.assign(contents, doc);
|
|
1568
1879
|
return contents;
|
|
1569
1880
|
}, "de_ListRepositoriesInDomainCommand");
|
|
1881
|
+
var de_ListSubPackageGroupsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1882
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1883
|
+
return de_CommandError(output, context);
|
|
1884
|
+
}
|
|
1885
|
+
const contents = (0, import_smithy_client.map)({
|
|
1886
|
+
$metadata: deserializeMetadata(output)
|
|
1887
|
+
});
|
|
1888
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1889
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1890
|
+
nextToken: import_smithy_client.expectString,
|
|
1891
|
+
packageGroups: (_) => de_PackageGroupSummaryList(_, context)
|
|
1892
|
+
});
|
|
1893
|
+
Object.assign(contents, doc);
|
|
1894
|
+
return contents;
|
|
1895
|
+
}, "de_ListSubPackageGroupsCommand");
|
|
1570
1896
|
var de_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1571
1897
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1572
1898
|
return de_CommandError(output, context);
|
|
@@ -1663,6 +1989,35 @@ var de_UntagResourceCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
1663
1989
|
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
1664
1990
|
return contents;
|
|
1665
1991
|
}, "de_UntagResourceCommand");
|
|
1992
|
+
var de_UpdatePackageGroupCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1993
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1994
|
+
return de_CommandError(output, context);
|
|
1995
|
+
}
|
|
1996
|
+
const contents = (0, import_smithy_client.map)({
|
|
1997
|
+
$metadata: deserializeMetadata(output)
|
|
1998
|
+
});
|
|
1999
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2000
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2001
|
+
packageGroup: (_) => de_PackageGroupDescription(_, context)
|
|
2002
|
+
});
|
|
2003
|
+
Object.assign(contents, doc);
|
|
2004
|
+
return contents;
|
|
2005
|
+
}, "de_UpdatePackageGroupCommand");
|
|
2006
|
+
var de_UpdatePackageGroupOriginConfigurationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2007
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2008
|
+
return de_CommandError(output, context);
|
|
2009
|
+
}
|
|
2010
|
+
const contents = (0, import_smithy_client.map)({
|
|
2011
|
+
$metadata: deserializeMetadata(output)
|
|
2012
|
+
});
|
|
2013
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2014
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2015
|
+
allowedRepositoryUpdates: import_smithy_client._json,
|
|
2016
|
+
packageGroup: (_) => de_PackageGroupDescription(_, context)
|
|
2017
|
+
});
|
|
2018
|
+
Object.assign(contents, doc);
|
|
2019
|
+
return contents;
|
|
2020
|
+
}, "de_UpdatePackageGroupOriginConfigurationCommand");
|
|
1666
2021
|
var de_UpdatePackageVersionsStatusCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1667
2022
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1668
2023
|
return de_CommandError(output, context);
|
|
@@ -1859,6 +2214,38 @@ var de_DomainSummaryList = /* @__PURE__ */ __name((output, context) => {
|
|
|
1859
2214
|
});
|
|
1860
2215
|
return retVal;
|
|
1861
2216
|
}, "de_DomainSummaryList");
|
|
2217
|
+
var de_PackageGroupDescription = /* @__PURE__ */ __name((output, context) => {
|
|
2218
|
+
return (0, import_smithy_client.take)(output, {
|
|
2219
|
+
arn: import_smithy_client.expectString,
|
|
2220
|
+
contactInfo: import_smithy_client.expectString,
|
|
2221
|
+
createdTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2222
|
+
description: import_smithy_client.expectString,
|
|
2223
|
+
domainName: import_smithy_client.expectString,
|
|
2224
|
+
domainOwner: import_smithy_client.expectString,
|
|
2225
|
+
originConfiguration: import_smithy_client._json,
|
|
2226
|
+
parent: import_smithy_client._json,
|
|
2227
|
+
pattern: import_smithy_client.expectString
|
|
2228
|
+
});
|
|
2229
|
+
}, "de_PackageGroupDescription");
|
|
2230
|
+
var de_PackageGroupSummary = /* @__PURE__ */ __name((output, context) => {
|
|
2231
|
+
return (0, import_smithy_client.take)(output, {
|
|
2232
|
+
arn: import_smithy_client.expectString,
|
|
2233
|
+
contactInfo: import_smithy_client.expectString,
|
|
2234
|
+
createdTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2235
|
+
description: import_smithy_client.expectString,
|
|
2236
|
+
domainName: import_smithy_client.expectString,
|
|
2237
|
+
domainOwner: import_smithy_client.expectString,
|
|
2238
|
+
originConfiguration: import_smithy_client._json,
|
|
2239
|
+
parent: import_smithy_client._json,
|
|
2240
|
+
pattern: import_smithy_client.expectString
|
|
2241
|
+
});
|
|
2242
|
+
}, "de_PackageGroupSummary");
|
|
2243
|
+
var de_PackageGroupSummaryList = /* @__PURE__ */ __name((output, context) => {
|
|
2244
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
2245
|
+
return de_PackageGroupSummary(entry, context);
|
|
2246
|
+
});
|
|
2247
|
+
return retVal;
|
|
2248
|
+
}, "de_PackageGroupSummaryList");
|
|
1862
2249
|
var de_PackageVersionDescription = /* @__PURE__ */ __name((output, context) => {
|
|
1863
2250
|
return (0, import_smithy_client.take)(output, {
|
|
1864
2251
|
displayName: import_smithy_client.expectString,
|
|
@@ -1933,14 +2320,19 @@ var _mr = "max-results";
|
|
|
1933
2320
|
var _n = "namespace";
|
|
1934
2321
|
var _nT = "nextToken";
|
|
1935
2322
|
var _nt = "next-token";
|
|
2323
|
+
var _oRT = "originRestrictionType";
|
|
1936
2324
|
var _oT = "originType";
|
|
1937
2325
|
var _p = "package";
|
|
2326
|
+
var _pG = "packageGroup";
|
|
1938
2327
|
var _pP = "packagePrefix";
|
|
1939
2328
|
var _pR = "policyRevision";
|
|
1940
2329
|
var _pV = "packageVersion";
|
|
1941
2330
|
var _pVR = "packageVersionRevision";
|
|
2331
|
+
var _pg = "package-group";
|
|
1942
2332
|
var _pp = "package-prefix";
|
|
1943
2333
|
var _pr = "policy-revision";
|
|
2334
|
+
var _pre = "preview";
|
|
2335
|
+
var _pref = "prefix";
|
|
1944
2336
|
var _pu = "publish";
|
|
1945
2337
|
var _r = "repository";
|
|
1946
2338
|
var _rA = "resourceArn";
|
|
@@ -2008,6 +2400,23 @@ var _CreateDomainCommand = class _CreateDomainCommand extends import_smithy_clie
|
|
|
2008
2400
|
__name(_CreateDomainCommand, "CreateDomainCommand");
|
|
2009
2401
|
var CreateDomainCommand = _CreateDomainCommand;
|
|
2010
2402
|
|
|
2403
|
+
// src/commands/CreatePackageGroupCommand.ts
|
|
2404
|
+
|
|
2405
|
+
|
|
2406
|
+
|
|
2407
|
+
|
|
2408
|
+
var _CreatePackageGroupCommand = class _CreatePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2409
|
+
...commonParams
|
|
2410
|
+
}).m(function(Command, cs, config, o) {
|
|
2411
|
+
return [
|
|
2412
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2413
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2414
|
+
];
|
|
2415
|
+
}).s("CodeArtifactControlPlaneService", "CreatePackageGroup", {}).n("CodeartifactClient", "CreatePackageGroupCommand").f(void 0, void 0).ser(se_CreatePackageGroupCommand).de(de_CreatePackageGroupCommand).build() {
|
|
2416
|
+
};
|
|
2417
|
+
__name(_CreatePackageGroupCommand, "CreatePackageGroupCommand");
|
|
2418
|
+
var CreatePackageGroupCommand = _CreatePackageGroupCommand;
|
|
2419
|
+
|
|
2011
2420
|
// src/commands/CreateRepositoryCommand.ts
|
|
2012
2421
|
|
|
2013
2422
|
|
|
@@ -2076,6 +2485,23 @@ var _DeletePackageCommand = class _DeletePackageCommand extends import_smithy_cl
|
|
|
2076
2485
|
__name(_DeletePackageCommand, "DeletePackageCommand");
|
|
2077
2486
|
var DeletePackageCommand = _DeletePackageCommand;
|
|
2078
2487
|
|
|
2488
|
+
// src/commands/DeletePackageGroupCommand.ts
|
|
2489
|
+
|
|
2490
|
+
|
|
2491
|
+
|
|
2492
|
+
|
|
2493
|
+
var _DeletePackageGroupCommand = class _DeletePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2494
|
+
...commonParams
|
|
2495
|
+
}).m(function(Command, cs, config, o) {
|
|
2496
|
+
return [
|
|
2497
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2498
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2499
|
+
];
|
|
2500
|
+
}).s("CodeArtifactControlPlaneService", "DeletePackageGroup", {}).n("CodeartifactClient", "DeletePackageGroupCommand").f(void 0, void 0).ser(se_DeletePackageGroupCommand).de(de_DeletePackageGroupCommand).build() {
|
|
2501
|
+
};
|
|
2502
|
+
__name(_DeletePackageGroupCommand, "DeletePackageGroupCommand");
|
|
2503
|
+
var DeletePackageGroupCommand = _DeletePackageGroupCommand;
|
|
2504
|
+
|
|
2079
2505
|
// src/commands/DeletePackageVersionsCommand.ts
|
|
2080
2506
|
|
|
2081
2507
|
|
|
@@ -2161,6 +2587,23 @@ var _DescribePackageCommand = class _DescribePackageCommand extends import_smith
|
|
|
2161
2587
|
__name(_DescribePackageCommand, "DescribePackageCommand");
|
|
2162
2588
|
var DescribePackageCommand = _DescribePackageCommand;
|
|
2163
2589
|
|
|
2590
|
+
// src/commands/DescribePackageGroupCommand.ts
|
|
2591
|
+
|
|
2592
|
+
|
|
2593
|
+
|
|
2594
|
+
|
|
2595
|
+
var _DescribePackageGroupCommand = class _DescribePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2596
|
+
...commonParams
|
|
2597
|
+
}).m(function(Command, cs, config, o) {
|
|
2598
|
+
return [
|
|
2599
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2600
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2601
|
+
];
|
|
2602
|
+
}).s("CodeArtifactControlPlaneService", "DescribePackageGroup", {}).n("CodeartifactClient", "DescribePackageGroupCommand").f(void 0, void 0).ser(se_DescribePackageGroupCommand).de(de_DescribePackageGroupCommand).build() {
|
|
2603
|
+
};
|
|
2604
|
+
__name(_DescribePackageGroupCommand, "DescribePackageGroupCommand");
|
|
2605
|
+
var DescribePackageGroupCommand = _DescribePackageGroupCommand;
|
|
2606
|
+
|
|
2164
2607
|
// src/commands/DescribePackageVersionCommand.ts
|
|
2165
2608
|
|
|
2166
2609
|
|
|
@@ -2229,6 +2672,23 @@ var _DisposePackageVersionsCommand = class _DisposePackageVersionsCommand extend
|
|
|
2229
2672
|
__name(_DisposePackageVersionsCommand, "DisposePackageVersionsCommand");
|
|
2230
2673
|
var DisposePackageVersionsCommand = _DisposePackageVersionsCommand;
|
|
2231
2674
|
|
|
2675
|
+
// src/commands/GetAssociatedPackageGroupCommand.ts
|
|
2676
|
+
|
|
2677
|
+
|
|
2678
|
+
|
|
2679
|
+
|
|
2680
|
+
var _GetAssociatedPackageGroupCommand = class _GetAssociatedPackageGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2681
|
+
...commonParams
|
|
2682
|
+
}).m(function(Command, cs, config, o) {
|
|
2683
|
+
return [
|
|
2684
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2685
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2686
|
+
];
|
|
2687
|
+
}).s("CodeArtifactControlPlaneService", "GetAssociatedPackageGroup", {}).n("CodeartifactClient", "GetAssociatedPackageGroupCommand").f(void 0, void 0).ser(se_GetAssociatedPackageGroupCommand).de(de_GetAssociatedPackageGroupCommand).build() {
|
|
2688
|
+
};
|
|
2689
|
+
__name(_GetAssociatedPackageGroupCommand, "GetAssociatedPackageGroupCommand");
|
|
2690
|
+
var GetAssociatedPackageGroupCommand = _GetAssociatedPackageGroupCommand;
|
|
2691
|
+
|
|
2232
2692
|
// src/commands/GetAuthorizationTokenCommand.ts
|
|
2233
2693
|
|
|
2234
2694
|
|
|
@@ -2241,7 +2701,7 @@ var _GetAuthorizationTokenCommand = class _GetAuthorizationTokenCommand extends
|
|
|
2241
2701
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2242
2702
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2243
2703
|
];
|
|
2244
|
-
}).s("CodeArtifactControlPlaneService", "GetAuthorizationToken", {}).n("CodeartifactClient", "GetAuthorizationTokenCommand").f(void 0,
|
|
2704
|
+
}).s("CodeArtifactControlPlaneService", "GetAuthorizationToken", {}).n("CodeartifactClient", "GetAuthorizationTokenCommand").f(void 0, GetAuthorizationTokenResultFilterSensitiveLog).ser(se_GetAuthorizationTokenCommand).de(de_GetAuthorizationTokenCommand).build() {
|
|
2245
2705
|
};
|
|
2246
2706
|
__name(_GetAuthorizationTokenCommand, "GetAuthorizationTokenCommand");
|
|
2247
2707
|
var GetAuthorizationTokenCommand = _GetAuthorizationTokenCommand;
|
|
@@ -2331,6 +2791,40 @@ var _GetRepositoryPermissionsPolicyCommand = class _GetRepositoryPermissionsPoli
|
|
|
2331
2791
|
__name(_GetRepositoryPermissionsPolicyCommand, "GetRepositoryPermissionsPolicyCommand");
|
|
2332
2792
|
var GetRepositoryPermissionsPolicyCommand = _GetRepositoryPermissionsPolicyCommand;
|
|
2333
2793
|
|
|
2794
|
+
// src/commands/ListAllowedRepositoriesForGroupCommand.ts
|
|
2795
|
+
|
|
2796
|
+
|
|
2797
|
+
|
|
2798
|
+
|
|
2799
|
+
var _ListAllowedRepositoriesForGroupCommand = class _ListAllowedRepositoriesForGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2800
|
+
...commonParams
|
|
2801
|
+
}).m(function(Command, cs, config, o) {
|
|
2802
|
+
return [
|
|
2803
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2804
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2805
|
+
];
|
|
2806
|
+
}).s("CodeArtifactControlPlaneService", "ListAllowedRepositoriesForGroup", {}).n("CodeartifactClient", "ListAllowedRepositoriesForGroupCommand").f(void 0, void 0).ser(se_ListAllowedRepositoriesForGroupCommand).de(de_ListAllowedRepositoriesForGroupCommand).build() {
|
|
2807
|
+
};
|
|
2808
|
+
__name(_ListAllowedRepositoriesForGroupCommand, "ListAllowedRepositoriesForGroupCommand");
|
|
2809
|
+
var ListAllowedRepositoriesForGroupCommand = _ListAllowedRepositoriesForGroupCommand;
|
|
2810
|
+
|
|
2811
|
+
// src/commands/ListAssociatedPackagesCommand.ts
|
|
2812
|
+
|
|
2813
|
+
|
|
2814
|
+
|
|
2815
|
+
|
|
2816
|
+
var _ListAssociatedPackagesCommand = class _ListAssociatedPackagesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2817
|
+
...commonParams
|
|
2818
|
+
}).m(function(Command, cs, config, o) {
|
|
2819
|
+
return [
|
|
2820
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2821
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2822
|
+
];
|
|
2823
|
+
}).s("CodeArtifactControlPlaneService", "ListAssociatedPackages", {}).n("CodeartifactClient", "ListAssociatedPackagesCommand").f(void 0, void 0).ser(se_ListAssociatedPackagesCommand).de(de_ListAssociatedPackagesCommand).build() {
|
|
2824
|
+
};
|
|
2825
|
+
__name(_ListAssociatedPackagesCommand, "ListAssociatedPackagesCommand");
|
|
2826
|
+
var ListAssociatedPackagesCommand = _ListAssociatedPackagesCommand;
|
|
2827
|
+
|
|
2334
2828
|
// src/commands/ListDomainsCommand.ts
|
|
2335
2829
|
|
|
2336
2830
|
|
|
@@ -2348,6 +2842,23 @@ var _ListDomainsCommand = class _ListDomainsCommand extends import_smithy_client
|
|
|
2348
2842
|
__name(_ListDomainsCommand, "ListDomainsCommand");
|
|
2349
2843
|
var ListDomainsCommand = _ListDomainsCommand;
|
|
2350
2844
|
|
|
2845
|
+
// src/commands/ListPackageGroupsCommand.ts
|
|
2846
|
+
|
|
2847
|
+
|
|
2848
|
+
|
|
2849
|
+
|
|
2850
|
+
var _ListPackageGroupsCommand = class _ListPackageGroupsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2851
|
+
...commonParams
|
|
2852
|
+
}).m(function(Command, cs, config, o) {
|
|
2853
|
+
return [
|
|
2854
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2855
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2856
|
+
];
|
|
2857
|
+
}).s("CodeArtifactControlPlaneService", "ListPackageGroups", {}).n("CodeartifactClient", "ListPackageGroupsCommand").f(void 0, void 0).ser(se_ListPackageGroupsCommand).de(de_ListPackageGroupsCommand).build() {
|
|
2858
|
+
};
|
|
2859
|
+
__name(_ListPackageGroupsCommand, "ListPackageGroupsCommand");
|
|
2860
|
+
var ListPackageGroupsCommand = _ListPackageGroupsCommand;
|
|
2861
|
+
|
|
2351
2862
|
// src/commands/ListPackagesCommand.ts
|
|
2352
2863
|
|
|
2353
2864
|
|
|
@@ -2450,6 +2961,23 @@ var _ListRepositoriesInDomainCommand = class _ListRepositoriesInDomainCommand ex
|
|
|
2450
2961
|
__name(_ListRepositoriesInDomainCommand, "ListRepositoriesInDomainCommand");
|
|
2451
2962
|
var ListRepositoriesInDomainCommand = _ListRepositoriesInDomainCommand;
|
|
2452
2963
|
|
|
2964
|
+
// src/commands/ListSubPackageGroupsCommand.ts
|
|
2965
|
+
|
|
2966
|
+
|
|
2967
|
+
|
|
2968
|
+
|
|
2969
|
+
var _ListSubPackageGroupsCommand = class _ListSubPackageGroupsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2970
|
+
...commonParams
|
|
2971
|
+
}).m(function(Command, cs, config, o) {
|
|
2972
|
+
return [
|
|
2973
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2974
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2975
|
+
];
|
|
2976
|
+
}).s("CodeArtifactControlPlaneService", "ListSubPackageGroups", {}).n("CodeartifactClient", "ListSubPackageGroupsCommand").f(void 0, void 0).ser(se_ListSubPackageGroupsCommand).de(de_ListSubPackageGroupsCommand).build() {
|
|
2977
|
+
};
|
|
2978
|
+
__name(_ListSubPackageGroupsCommand, "ListSubPackageGroupsCommand");
|
|
2979
|
+
var ListSubPackageGroupsCommand = _ListSubPackageGroupsCommand;
|
|
2980
|
+
|
|
2453
2981
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2454
2982
|
|
|
2455
2983
|
|
|
@@ -2569,6 +3097,40 @@ var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_cl
|
|
|
2569
3097
|
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2570
3098
|
var UntagResourceCommand = _UntagResourceCommand;
|
|
2571
3099
|
|
|
3100
|
+
// src/commands/UpdatePackageGroupCommand.ts
|
|
3101
|
+
|
|
3102
|
+
|
|
3103
|
+
|
|
3104
|
+
|
|
3105
|
+
var _UpdatePackageGroupCommand = class _UpdatePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3106
|
+
...commonParams
|
|
3107
|
+
}).m(function(Command, cs, config, o) {
|
|
3108
|
+
return [
|
|
3109
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3110
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3111
|
+
];
|
|
3112
|
+
}).s("CodeArtifactControlPlaneService", "UpdatePackageGroup", {}).n("CodeartifactClient", "UpdatePackageGroupCommand").f(void 0, void 0).ser(se_UpdatePackageGroupCommand).de(de_UpdatePackageGroupCommand).build() {
|
|
3113
|
+
};
|
|
3114
|
+
__name(_UpdatePackageGroupCommand, "UpdatePackageGroupCommand");
|
|
3115
|
+
var UpdatePackageGroupCommand = _UpdatePackageGroupCommand;
|
|
3116
|
+
|
|
3117
|
+
// src/commands/UpdatePackageGroupOriginConfigurationCommand.ts
|
|
3118
|
+
|
|
3119
|
+
|
|
3120
|
+
|
|
3121
|
+
|
|
3122
|
+
var _UpdatePackageGroupOriginConfigurationCommand = class _UpdatePackageGroupOriginConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3123
|
+
...commonParams
|
|
3124
|
+
}).m(function(Command, cs, config, o) {
|
|
3125
|
+
return [
|
|
3126
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3127
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3128
|
+
];
|
|
3129
|
+
}).s("CodeArtifactControlPlaneService", "UpdatePackageGroupOriginConfiguration", {}).n("CodeartifactClient", "UpdatePackageGroupOriginConfigurationCommand").f(void 0, void 0).ser(se_UpdatePackageGroupOriginConfigurationCommand).de(de_UpdatePackageGroupOriginConfigurationCommand).build() {
|
|
3130
|
+
};
|
|
3131
|
+
__name(_UpdatePackageGroupOriginConfigurationCommand, "UpdatePackageGroupOriginConfigurationCommand");
|
|
3132
|
+
var UpdatePackageGroupOriginConfigurationCommand = _UpdatePackageGroupOriginConfigurationCommand;
|
|
3133
|
+
|
|
2572
3134
|
// src/commands/UpdatePackageVersionsStatusCommand.ts
|
|
2573
3135
|
|
|
2574
3136
|
|
|
@@ -2608,32 +3170,40 @@ var commands = {
|
|
|
2608
3170
|
AssociateExternalConnectionCommand,
|
|
2609
3171
|
CopyPackageVersionsCommand,
|
|
2610
3172
|
CreateDomainCommand,
|
|
3173
|
+
CreatePackageGroupCommand,
|
|
2611
3174
|
CreateRepositoryCommand,
|
|
2612
3175
|
DeleteDomainCommand,
|
|
2613
3176
|
DeleteDomainPermissionsPolicyCommand,
|
|
2614
3177
|
DeletePackageCommand,
|
|
3178
|
+
DeletePackageGroupCommand,
|
|
2615
3179
|
DeletePackageVersionsCommand,
|
|
2616
3180
|
DeleteRepositoryCommand,
|
|
2617
3181
|
DeleteRepositoryPermissionsPolicyCommand,
|
|
2618
3182
|
DescribeDomainCommand,
|
|
2619
3183
|
DescribePackageCommand,
|
|
3184
|
+
DescribePackageGroupCommand,
|
|
2620
3185
|
DescribePackageVersionCommand,
|
|
2621
3186
|
DescribeRepositoryCommand,
|
|
2622
3187
|
DisassociateExternalConnectionCommand,
|
|
2623
3188
|
DisposePackageVersionsCommand,
|
|
3189
|
+
GetAssociatedPackageGroupCommand,
|
|
2624
3190
|
GetAuthorizationTokenCommand,
|
|
2625
3191
|
GetDomainPermissionsPolicyCommand,
|
|
2626
3192
|
GetPackageVersionAssetCommand,
|
|
2627
3193
|
GetPackageVersionReadmeCommand,
|
|
2628
3194
|
GetRepositoryEndpointCommand,
|
|
2629
3195
|
GetRepositoryPermissionsPolicyCommand,
|
|
3196
|
+
ListAllowedRepositoriesForGroupCommand,
|
|
3197
|
+
ListAssociatedPackagesCommand,
|
|
2630
3198
|
ListDomainsCommand,
|
|
3199
|
+
ListPackageGroupsCommand,
|
|
2631
3200
|
ListPackagesCommand,
|
|
2632
3201
|
ListPackageVersionAssetsCommand,
|
|
2633
3202
|
ListPackageVersionDependenciesCommand,
|
|
2634
3203
|
ListPackageVersionsCommand,
|
|
2635
3204
|
ListRepositoriesCommand,
|
|
2636
3205
|
ListRepositoriesInDomainCommand,
|
|
3206
|
+
ListSubPackageGroupsCommand,
|
|
2637
3207
|
ListTagsForResourceCommand,
|
|
2638
3208
|
PublishPackageVersionCommand,
|
|
2639
3209
|
PutDomainPermissionsPolicyCommand,
|
|
@@ -2641,6 +3211,8 @@ var commands = {
|
|
|
2641
3211
|
PutRepositoryPermissionsPolicyCommand,
|
|
2642
3212
|
TagResourceCommand,
|
|
2643
3213
|
UntagResourceCommand,
|
|
3214
|
+
UpdatePackageGroupCommand,
|
|
3215
|
+
UpdatePackageGroupOriginConfigurationCommand,
|
|
2644
3216
|
UpdatePackageVersionsStatusCommand,
|
|
2645
3217
|
UpdateRepositoryCommand
|
|
2646
3218
|
};
|
|
@@ -2650,10 +3222,22 @@ __name(_Codeartifact, "Codeartifact");
|
|
|
2650
3222
|
var Codeartifact = _Codeartifact;
|
|
2651
3223
|
(0, import_smithy_client.createAggregatedClient)(commands, Codeartifact);
|
|
2652
3224
|
|
|
3225
|
+
// src/pagination/ListAllowedRepositoriesForGroupPaginator.ts
|
|
3226
|
+
|
|
3227
|
+
var paginateListAllowedRepositoriesForGroup = (0, import_core.createPaginator)(CodeartifactClient, ListAllowedRepositoriesForGroupCommand, "nextToken", "nextToken", "maxResults");
|
|
3228
|
+
|
|
3229
|
+
// src/pagination/ListAssociatedPackagesPaginator.ts
|
|
3230
|
+
|
|
3231
|
+
var paginateListAssociatedPackages = (0, import_core.createPaginator)(CodeartifactClient, ListAssociatedPackagesCommand, "nextToken", "nextToken", "maxResults");
|
|
3232
|
+
|
|
2653
3233
|
// src/pagination/ListDomainsPaginator.ts
|
|
2654
3234
|
|
|
2655
3235
|
var paginateListDomains = (0, import_core.createPaginator)(CodeartifactClient, ListDomainsCommand, "nextToken", "nextToken", "maxResults");
|
|
2656
3236
|
|
|
3237
|
+
// src/pagination/ListPackageGroupsPaginator.ts
|
|
3238
|
+
|
|
3239
|
+
var paginateListPackageGroups = (0, import_core.createPaginator)(CodeartifactClient, ListPackageGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
3240
|
+
|
|
2657
3241
|
// src/pagination/ListPackageVersionAssetsPaginator.ts
|
|
2658
3242
|
|
|
2659
3243
|
var paginateListPackageVersionAssets = (0, import_core.createPaginator)(CodeartifactClient, ListPackageVersionAssetsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -2674,8 +3258,9 @@ var paginateListRepositoriesInDomain = (0, import_core.createPaginator)(Codearti
|
|
|
2674
3258
|
|
|
2675
3259
|
var paginateListRepositories = (0, import_core.createPaginator)(CodeartifactClient, ListRepositoriesCommand, "nextToken", "nextToken", "maxResults");
|
|
2676
3260
|
|
|
2677
|
-
// src/
|
|
2678
|
-
|
|
3261
|
+
// src/pagination/ListSubPackageGroupsPaginator.ts
|
|
3262
|
+
|
|
3263
|
+
var paginateListSubPackageGroups = (0, import_core.createPaginator)(CodeartifactClient, ListSubPackageGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
2679
3264
|
// Annotate the CommonJS export names for ESM import in node:
|
|
2680
3265
|
|
|
2681
3266
|
0 && (module.exports = {
|
|
@@ -2687,32 +3272,40 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
2687
3272
|
AssociateExternalConnectionCommand,
|
|
2688
3273
|
CopyPackageVersionsCommand,
|
|
2689
3274
|
CreateDomainCommand,
|
|
3275
|
+
CreatePackageGroupCommand,
|
|
2690
3276
|
CreateRepositoryCommand,
|
|
2691
3277
|
DeleteDomainCommand,
|
|
2692
3278
|
DeleteDomainPermissionsPolicyCommand,
|
|
2693
3279
|
DeletePackageCommand,
|
|
3280
|
+
DeletePackageGroupCommand,
|
|
2694
3281
|
DeletePackageVersionsCommand,
|
|
2695
3282
|
DeleteRepositoryCommand,
|
|
2696
3283
|
DeleteRepositoryPermissionsPolicyCommand,
|
|
2697
3284
|
DescribeDomainCommand,
|
|
2698
3285
|
DescribePackageCommand,
|
|
3286
|
+
DescribePackageGroupCommand,
|
|
2699
3287
|
DescribePackageVersionCommand,
|
|
2700
3288
|
DescribeRepositoryCommand,
|
|
2701
3289
|
DisassociateExternalConnectionCommand,
|
|
2702
3290
|
DisposePackageVersionsCommand,
|
|
3291
|
+
GetAssociatedPackageGroupCommand,
|
|
2703
3292
|
GetAuthorizationTokenCommand,
|
|
2704
3293
|
GetDomainPermissionsPolicyCommand,
|
|
2705
3294
|
GetPackageVersionAssetCommand,
|
|
2706
3295
|
GetPackageVersionReadmeCommand,
|
|
2707
3296
|
GetRepositoryEndpointCommand,
|
|
2708
3297
|
GetRepositoryPermissionsPolicyCommand,
|
|
3298
|
+
ListAllowedRepositoriesForGroupCommand,
|
|
3299
|
+
ListAssociatedPackagesCommand,
|
|
2709
3300
|
ListDomainsCommand,
|
|
3301
|
+
ListPackageGroupsCommand,
|
|
2710
3302
|
ListPackageVersionAssetsCommand,
|
|
2711
3303
|
ListPackageVersionDependenciesCommand,
|
|
2712
3304
|
ListPackageVersionsCommand,
|
|
2713
3305
|
ListPackagesCommand,
|
|
2714
3306
|
ListRepositoriesCommand,
|
|
2715
3307
|
ListRepositoriesInDomainCommand,
|
|
3308
|
+
ListSubPackageGroupsCommand,
|
|
2716
3309
|
ListTagsForResourceCommand,
|
|
2717
3310
|
PublishPackageVersionCommand,
|
|
2718
3311
|
PutDomainPermissionsPolicyCommand,
|
|
@@ -2720,18 +3313,25 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
2720
3313
|
PutRepositoryPermissionsPolicyCommand,
|
|
2721
3314
|
TagResourceCommand,
|
|
2722
3315
|
UntagResourceCommand,
|
|
3316
|
+
UpdatePackageGroupCommand,
|
|
3317
|
+
UpdatePackageGroupOriginConfigurationCommand,
|
|
2723
3318
|
UpdatePackageVersionsStatusCommand,
|
|
2724
3319
|
UpdateRepositoryCommand,
|
|
3320
|
+
paginateListAllowedRepositoriesForGroup,
|
|
3321
|
+
paginateListAssociatedPackages,
|
|
2725
3322
|
paginateListDomains,
|
|
3323
|
+
paginateListPackageGroups,
|
|
2726
3324
|
paginateListPackageVersionAssets,
|
|
2727
3325
|
paginateListPackageVersions,
|
|
2728
3326
|
paginateListPackages,
|
|
2729
3327
|
paginateListRepositoriesInDomain,
|
|
2730
3328
|
paginateListRepositories,
|
|
3329
|
+
paginateListSubPackageGroups,
|
|
2731
3330
|
AccessDeniedException,
|
|
2732
3331
|
AllowPublish,
|
|
2733
3332
|
AllowUpstream,
|
|
2734
3333
|
HashAlgorithm,
|
|
3334
|
+
PackageGroupAssociationType,
|
|
2735
3335
|
PackageFormat,
|
|
2736
3336
|
ExternalConnectionStatus,
|
|
2737
3337
|
ResourceType,
|
|
@@ -2745,8 +3345,12 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
2745
3345
|
PackageVersionErrorCode,
|
|
2746
3346
|
PackageVersionStatus,
|
|
2747
3347
|
DomainStatus,
|
|
3348
|
+
PackageGroupOriginRestrictionType,
|
|
3349
|
+
PackageGroupOriginRestrictionMode,
|
|
2748
3350
|
PackageVersionOriginType,
|
|
2749
3351
|
PackageVersionSortType,
|
|
3352
|
+
PackageGroupAllowedRepositoryUpdateType,
|
|
3353
|
+
GetAuthorizationTokenResultFilterSensitiveLog,
|
|
2750
3354
|
GetPackageVersionAssetResultFilterSensitiveLog,
|
|
2751
3355
|
PublishPackageVersionRequestFilterSensitiveLog
|
|
2752
3356
|
});
|