@aws-sdk/client-codeartifact 3.95.0 → 3.104.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/CHANGELOG.md +24 -0
- package/README.md +15 -10
- package/dist-cjs/runtimeConfig.js +2 -0
- package/dist-es/runtimeConfig.js +2 -0
- package/dist-types/Codeartifact.d.ts +36 -25
- package/dist-types/CodeartifactClient.d.ts +15 -10
- package/dist-types/commands/CreateDomainCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRepositoryPermissionsPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetAuthorizationTokenCommand.d.ts +1 -1
- package/dist-types/commands/GetDomainPermissionsPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetPackageVersionReadmeCommand.d.ts +1 -3
- package/dist-types/commands/GetRepositoryEndpointCommand.d.ts +7 -2
- package/dist-types/commands/ListDomainsCommand.d.ts +1 -1
- package/dist-types/commands/ListRepositoriesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePackageVersionsStatusCommand.d.ts +4 -1
- package/dist-types/models/models_0.d.ts +95 -553
- package/package.json +6 -6
|
@@ -61,7 +61,7 @@ export interface AssociateExternalConnectionRequest {
|
|
|
61
61
|
domain: string | undefined;
|
|
62
62
|
/**
|
|
63
63
|
* <p>
|
|
64
|
-
* The 12-digit account number of the
|
|
64
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
65
65
|
* dashes or spaces.
|
|
66
66
|
* </p>
|
|
67
67
|
*/
|
|
@@ -84,6 +84,11 @@ export interface AssociateExternalConnectionRequest {
|
|
|
84
84
|
* </li>
|
|
85
85
|
* <li>
|
|
86
86
|
* <p>
|
|
87
|
+
* <code>public:nuget-org</code> - for the NuGet Gallery.
|
|
88
|
+
* </p>
|
|
89
|
+
* </li>
|
|
90
|
+
* <li>
|
|
91
|
+
* <p>
|
|
87
92
|
* <code>public:pypi</code> - for the Python Package Index.
|
|
88
93
|
* </p>
|
|
89
94
|
* </li>
|
|
@@ -156,6 +161,11 @@ export interface RepositoryExternalConnectionInfo {
|
|
|
156
161
|
* <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file.
|
|
157
162
|
* </p>
|
|
158
163
|
* </li>
|
|
164
|
+
* <li>
|
|
165
|
+
* <p>
|
|
166
|
+
* <code>nuget</code>: A NuGet package.
|
|
167
|
+
* </p>
|
|
168
|
+
* </li>
|
|
159
169
|
* </ul>
|
|
160
170
|
*/
|
|
161
171
|
packageFormat?: PackageFormat | string;
|
|
@@ -190,11 +200,11 @@ export declare namespace UpstreamRepositoryInfo {
|
|
|
190
200
|
const filterSensitiveLog: (obj: UpstreamRepositoryInfo) => any;
|
|
191
201
|
}
|
|
192
202
|
/**
|
|
193
|
-
* <p> The details of a repository stored in
|
|
203
|
+
* <p> The details of a repository stored in CodeArtifact. A CodeArtifact repository contains a set of
|
|
194
204
|
* package versions, each of which maps to a set of assets. Repositories are polyglot—a single
|
|
195
205
|
* repository can contain packages of any supported type. Each repository exposes endpoints for
|
|
196
206
|
* fetching and publishing packages using tools like the <code>npm</code> CLI, the Maven CLI
|
|
197
|
-
* (<code>mvn</code>), and <code>pip</code>. You can create up to 100 repositories per
|
|
207
|
+
* (<code>mvn</code>), and <code>pip</code>. You can create up to 100 repositories per Amazon Web Services
|
|
198
208
|
* account. </p>
|
|
199
209
|
*/
|
|
200
210
|
export interface RepositoryDescription {
|
|
@@ -205,7 +215,7 @@ export interface RepositoryDescription {
|
|
|
205
215
|
*/
|
|
206
216
|
name?: string;
|
|
207
217
|
/**
|
|
208
|
-
* <p> The 12-digit account number of the
|
|
218
|
+
* <p> The 12-digit account number of the Amazon Web Services account that manages the repository. </p>
|
|
209
219
|
*/
|
|
210
220
|
administratorAccount?: string;
|
|
211
221
|
/**
|
|
@@ -216,7 +226,7 @@ export interface RepositoryDescription {
|
|
|
216
226
|
domainName?: string;
|
|
217
227
|
/**
|
|
218
228
|
* <p>
|
|
219
|
-
* The 12-digit account number of the
|
|
229
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain that contains the repository. It does not include
|
|
220
230
|
* dashes or spaces.
|
|
221
231
|
* </p>
|
|
222
232
|
*/
|
|
@@ -233,7 +243,7 @@ export interface RepositoryDescription {
|
|
|
233
243
|
description?: string;
|
|
234
244
|
/**
|
|
235
245
|
* <p> A list of upstream repositories to associate with the repository. The order of the upstream repositories
|
|
236
|
-
* in the list determines their priority order when
|
|
246
|
+
* in the list determines their priority order when CodeArtifact looks for a requested package version. For more
|
|
237
247
|
* information, see <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/repos-upstream.html">Working with upstream repositories</a>. </p>
|
|
238
248
|
*/
|
|
239
249
|
upstreams?: UpstreamRepositoryInfo[];
|
|
@@ -287,7 +297,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
287
297
|
resourceId?: string;
|
|
288
298
|
/**
|
|
289
299
|
* <p>
|
|
290
|
-
* The type of
|
|
300
|
+
* The type of Amazon Web Services resource.
|
|
291
301
|
* </p>
|
|
292
302
|
*/
|
|
293
303
|
resourceType?: ResourceType | string;
|
|
@@ -297,7 +307,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
297
307
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
298
308
|
}
|
|
299
309
|
/**
|
|
300
|
-
* <p> The operation did not succeed because of an error that occurred inside
|
|
310
|
+
* <p> The operation did not succeed because of an error that occurred inside CodeArtifact. </p>
|
|
301
311
|
*/
|
|
302
312
|
export declare class InternalServerException extends __BaseException {
|
|
303
313
|
readonly name: "InternalServerException";
|
|
@@ -323,7 +333,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
323
333
|
resourceId?: string;
|
|
324
334
|
/**
|
|
325
335
|
* <p>
|
|
326
|
-
* The type of
|
|
336
|
+
* The type of Amazon Web Services resource.
|
|
327
337
|
* </p>
|
|
328
338
|
*/
|
|
329
339
|
resourceType?: ResourceType | string;
|
|
@@ -348,7 +358,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
348
358
|
resourceId?: string;
|
|
349
359
|
/**
|
|
350
360
|
* <p>
|
|
351
|
-
* The type of
|
|
361
|
+
* The type of Amazon Web Services resource.
|
|
352
362
|
* </p>
|
|
353
363
|
*/
|
|
354
364
|
resourceType?: ResourceType | string;
|
|
@@ -411,7 +421,7 @@ export interface CopyPackageVersionsRequest {
|
|
|
411
421
|
domain: string | undefined;
|
|
412
422
|
/**
|
|
413
423
|
* <p>
|
|
414
|
-
* The 12-digit account number of the
|
|
424
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
415
425
|
* dashes or spaces.
|
|
416
426
|
* </p>
|
|
417
427
|
*/
|
|
@@ -430,25 +440,8 @@ export interface CopyPackageVersionsRequest {
|
|
|
430
440
|
destinationRepository: string | undefined;
|
|
431
441
|
/**
|
|
432
442
|
* <p>
|
|
433
|
-
* The format of the package that is copied.
|
|
443
|
+
* The format of the package that is copied.
|
|
434
444
|
* </p>
|
|
435
|
-
* <ul>
|
|
436
|
-
* <li>
|
|
437
|
-
* <p>
|
|
438
|
-
* <code>npm</code>: A Node Package Manager (npm) package.
|
|
439
|
-
* </p>
|
|
440
|
-
* </li>
|
|
441
|
-
* <li>
|
|
442
|
-
* <p>
|
|
443
|
-
* <code>pypi</code>: A Python Package Index (PyPI) package.
|
|
444
|
-
* </p>
|
|
445
|
-
* </li>
|
|
446
|
-
* <li>
|
|
447
|
-
* <p>
|
|
448
|
-
* <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file.
|
|
449
|
-
* </p>
|
|
450
|
-
* </li>
|
|
451
|
-
* </ul>
|
|
452
445
|
*/
|
|
453
446
|
format: PackageFormat | string | undefined;
|
|
454
447
|
/**
|
|
@@ -615,35 +608,8 @@ export interface SuccessfulPackageVersionInfo {
|
|
|
615
608
|
revision?: string;
|
|
616
609
|
/**
|
|
617
610
|
* <p>
|
|
618
|
-
* The status of a package version.
|
|
611
|
+
* The status of a package version.
|
|
619
612
|
* </p>
|
|
620
|
-
* <ul>
|
|
621
|
-
* <li>
|
|
622
|
-
* <p>
|
|
623
|
-
* <code>Published</code>
|
|
624
|
-
* </p>
|
|
625
|
-
* </li>
|
|
626
|
-
* <li>
|
|
627
|
-
* <p>
|
|
628
|
-
* <code>Unfinished</code>
|
|
629
|
-
* </p>
|
|
630
|
-
* </li>
|
|
631
|
-
* <li>
|
|
632
|
-
* <p>
|
|
633
|
-
* <code>Unlisted</code>
|
|
634
|
-
* </p>
|
|
635
|
-
* </li>
|
|
636
|
-
* <li>
|
|
637
|
-
* <p>
|
|
638
|
-
* <code>Archived</code>
|
|
639
|
-
* </p>
|
|
640
|
-
* </li>
|
|
641
|
-
* <li>
|
|
642
|
-
* <p>
|
|
643
|
-
* <code>Disposed</code>
|
|
644
|
-
* </p>
|
|
645
|
-
* </li>
|
|
646
|
-
* </ul>
|
|
647
613
|
*/
|
|
648
614
|
status?: PackageVersionStatus | string;
|
|
649
615
|
}
|
|
@@ -711,7 +677,7 @@ export declare namespace CopyPackageVersionsResult {
|
|
|
711
677
|
const filterSensitiveLog: (obj: CopyPackageVersionsResult) => any;
|
|
712
678
|
}
|
|
713
679
|
/**
|
|
714
|
-
* <p>A tag is a key-value pair that can be used to manage, search for, or filter resources in
|
|
680
|
+
* <p>A tag is a key-value pair that can be used to manage, search for, or filter resources in CodeArtifact.</p>
|
|
715
681
|
*/
|
|
716
682
|
export interface Tag {
|
|
717
683
|
/**
|
|
@@ -731,8 +697,8 @@ export declare namespace Tag {
|
|
|
731
697
|
}
|
|
732
698
|
export interface CreateDomainRequest {
|
|
733
699
|
/**
|
|
734
|
-
* <p> The name of the domain to create. All domain names in an
|
|
735
|
-
* same
|
|
700
|
+
* <p> The name of the domain to create. All domain names in an Amazon Web Services Region that are in the
|
|
701
|
+
* same Amazon Web Services account must be unique. The domain name is used as the prefix in DNS hostnames. Do
|
|
736
702
|
* not use sensitive information in a domain name because it is publicly discoverable. </p>
|
|
737
703
|
*/
|
|
738
704
|
domain: string | undefined;
|
|
@@ -741,13 +707,13 @@ export interface CreateDomainRequest {
|
|
|
741
707
|
* An encryption key can be a key ID, a key Amazon Resource Name (ARN), a key alias, or a key
|
|
742
708
|
* alias ARN. To specify an <code>encryptionKey</code>, your IAM role must have
|
|
743
709
|
* <code>kms:DescribeKey</code> and <code>kms:CreateGrant</code> permissions on the encryption
|
|
744
|
-
* key that is used. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestSyntax">DescribeKey</a> in the <i>
|
|
745
|
-
* and <a href="https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html">
|
|
746
|
-
* Reference</a> in the <i>
|
|
710
|
+
* key that is used. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestSyntax">DescribeKey</a> in the <i>Key Management Service API Reference</i>
|
|
711
|
+
* and <a href="https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html">Key Management Service API Permissions
|
|
712
|
+
* Reference</a> in the <i>Key Management Service Developer Guide</i>. </p>
|
|
747
713
|
* <important>
|
|
748
714
|
* <p> CodeArtifact supports only symmetric CMKs. Do not associate an asymmetric CMK with your
|
|
749
715
|
* domain. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html">Using symmetric and asymmetric
|
|
750
|
-
* keys</a> in the <i>
|
|
716
|
+
* keys</a> in the <i>Key Management Service Developer Guide</i>. </p>
|
|
751
717
|
* </important>
|
|
752
718
|
*/
|
|
753
719
|
encryptionKey?: string;
|
|
@@ -780,7 +746,7 @@ export interface DomainDescription {
|
|
|
780
746
|
*/
|
|
781
747
|
name?: string;
|
|
782
748
|
/**
|
|
783
|
-
* <p> The
|
|
749
|
+
* <p> The Amazon Web Services account ID that owns the domain. </p>
|
|
784
750
|
*/
|
|
785
751
|
owner?: string;
|
|
786
752
|
/**
|
|
@@ -788,19 +754,9 @@ export interface DomainDescription {
|
|
|
788
754
|
*/
|
|
789
755
|
arn?: string;
|
|
790
756
|
/**
|
|
791
|
-
* <p>
|
|
792
|
-
*
|
|
793
|
-
*
|
|
794
|
-
* <p>
|
|
795
|
-
* <code>Active</code>
|
|
796
|
-
* </p>
|
|
797
|
-
* </li>
|
|
798
|
-
* <li>
|
|
799
|
-
* <p>
|
|
800
|
-
* <code>Deleted</code>
|
|
801
|
-
* </p>
|
|
802
|
-
* </li>
|
|
803
|
-
* </ul>
|
|
757
|
+
* <p>
|
|
758
|
+
* The current status of a domain.
|
|
759
|
+
* </p>
|
|
804
760
|
*/
|
|
805
761
|
status?: DomainStatus | string;
|
|
806
762
|
/**
|
|
@@ -810,7 +766,7 @@ export interface DomainDescription {
|
|
|
810
766
|
*/
|
|
811
767
|
createdTime?: Date;
|
|
812
768
|
/**
|
|
813
|
-
* <p> The ARN of an
|
|
769
|
+
* <p> The ARN of an Key Management Service (KMS) key associated with a domain. </p>
|
|
814
770
|
*/
|
|
815
771
|
encryptionKey?: string;
|
|
816
772
|
/**
|
|
@@ -878,7 +834,7 @@ export interface CreateRepositoryRequest {
|
|
|
878
834
|
domain: string | undefined;
|
|
879
835
|
/**
|
|
880
836
|
* <p>
|
|
881
|
-
* The 12-digit account number of the
|
|
837
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
882
838
|
* dashes or spaces.
|
|
883
839
|
* </p>
|
|
884
840
|
*/
|
|
@@ -895,7 +851,7 @@ export interface CreateRepositoryRequest {
|
|
|
895
851
|
description?: string;
|
|
896
852
|
/**
|
|
897
853
|
* <p> A list of upstream repositories to associate with the repository. The order of the upstream repositories
|
|
898
|
-
* in the list determines their priority order when
|
|
854
|
+
* in the list determines their priority order when CodeArtifact looks for a requested package version. For more
|
|
899
855
|
* information, see <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/repos-upstream.html">Working with upstream repositories</a>. </p>
|
|
900
856
|
*/
|
|
901
857
|
upstreams?: UpstreamRepository[];
|
|
@@ -933,7 +889,7 @@ export interface DeleteDomainRequest {
|
|
|
933
889
|
domain: string | undefined;
|
|
934
890
|
/**
|
|
935
891
|
* <p>
|
|
936
|
-
* The 12-digit account number of the
|
|
892
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
937
893
|
* dashes or spaces.
|
|
938
894
|
* </p>
|
|
939
895
|
*/
|
|
@@ -968,7 +924,7 @@ export interface DeleteDomainPermissionsPolicyRequest {
|
|
|
968
924
|
domain: string | undefined;
|
|
969
925
|
/**
|
|
970
926
|
* <p>
|
|
971
|
-
* The 12-digit account number of the
|
|
927
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
972
928
|
* dashes or spaces.
|
|
973
929
|
* </p>
|
|
974
930
|
*/
|
|
@@ -989,7 +945,7 @@ export declare namespace DeleteDomainPermissionsPolicyRequest {
|
|
|
989
945
|
}
|
|
990
946
|
/**
|
|
991
947
|
* <p>
|
|
992
|
-
* An
|
|
948
|
+
* An CodeArtifact resource policy that contains a resource ARN, document details, and a revision.
|
|
993
949
|
* </p>
|
|
994
950
|
*/
|
|
995
951
|
export interface ResourcePolicy {
|
|
@@ -1041,7 +997,7 @@ export interface DeletePackageVersionsRequest {
|
|
|
1041
997
|
domain: string | undefined;
|
|
1042
998
|
/**
|
|
1043
999
|
* <p>
|
|
1044
|
-
* The 12-digit account number of the
|
|
1000
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
1045
1001
|
* dashes or spaces.
|
|
1046
1002
|
* </p>
|
|
1047
1003
|
*/
|
|
@@ -1054,25 +1010,8 @@ export interface DeletePackageVersionsRequest {
|
|
|
1054
1010
|
repository: string | undefined;
|
|
1055
1011
|
/**
|
|
1056
1012
|
* <p>
|
|
1057
|
-
* The format of the package versions to delete.
|
|
1013
|
+
* The format of the package versions to delete.
|
|
1058
1014
|
* </p>
|
|
1059
|
-
* <ul>
|
|
1060
|
-
* <li>
|
|
1061
|
-
* <p>
|
|
1062
|
-
* <code>npm</code>
|
|
1063
|
-
* </p>
|
|
1064
|
-
* </li>
|
|
1065
|
-
* <li>
|
|
1066
|
-
* <p>
|
|
1067
|
-
* <code>pypi</code>
|
|
1068
|
-
* </p>
|
|
1069
|
-
* </li>
|
|
1070
|
-
* <li>
|
|
1071
|
-
* <p>
|
|
1072
|
-
* <code>maven</code>
|
|
1073
|
-
* </p>
|
|
1074
|
-
* </li>
|
|
1075
|
-
* </ul>
|
|
1076
1015
|
*/
|
|
1077
1016
|
format: PackageFormat | string | undefined;
|
|
1078
1017
|
/**
|
|
@@ -1114,35 +1053,8 @@ export interface DeletePackageVersionsRequest {
|
|
|
1114
1053
|
versions: string[] | undefined;
|
|
1115
1054
|
/**
|
|
1116
1055
|
* <p>
|
|
1117
|
-
* The expected status of the package version to delete.
|
|
1056
|
+
* The expected status of the package version to delete.
|
|
1118
1057
|
* </p>
|
|
1119
|
-
* <ul>
|
|
1120
|
-
* <li>
|
|
1121
|
-
* <p>
|
|
1122
|
-
* <code>Published</code>
|
|
1123
|
-
* </p>
|
|
1124
|
-
* </li>
|
|
1125
|
-
* <li>
|
|
1126
|
-
* <p>
|
|
1127
|
-
* <code>Unfinished</code>
|
|
1128
|
-
* </p>
|
|
1129
|
-
* </li>
|
|
1130
|
-
* <li>
|
|
1131
|
-
* <p>
|
|
1132
|
-
* <code>Unlisted</code>
|
|
1133
|
-
* </p>
|
|
1134
|
-
* </li>
|
|
1135
|
-
* <li>
|
|
1136
|
-
* <p>
|
|
1137
|
-
* <code>Archived</code>
|
|
1138
|
-
* </p>
|
|
1139
|
-
* </li>
|
|
1140
|
-
* <li>
|
|
1141
|
-
* <p>
|
|
1142
|
-
* <code>Disposed</code>
|
|
1143
|
-
* </p>
|
|
1144
|
-
* </li>
|
|
1145
|
-
* </ul>
|
|
1146
1058
|
*/
|
|
1147
1059
|
expectedStatus?: PackageVersionStatus | string;
|
|
1148
1060
|
}
|
|
@@ -1155,7 +1067,8 @@ export declare namespace DeletePackageVersionsRequest {
|
|
|
1155
1067
|
export interface DeletePackageVersionsResult {
|
|
1156
1068
|
/**
|
|
1157
1069
|
* <p>
|
|
1158
|
-
* A list of the package versions that were successfully deleted.
|
|
1070
|
+
* A list of the package versions that were successfully deleted. The
|
|
1071
|
+
* status of every successful version will be <code>Deleted</code>.
|
|
1159
1072
|
* </p>
|
|
1160
1073
|
*/
|
|
1161
1074
|
successfulVersions?: {
|
|
@@ -1218,7 +1131,7 @@ export interface DeleteRepositoryRequest {
|
|
|
1218
1131
|
domain: string | undefined;
|
|
1219
1132
|
/**
|
|
1220
1133
|
* <p>
|
|
1221
|
-
* The 12-digit account number of the
|
|
1134
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
1222
1135
|
* dashes or spaces.
|
|
1223
1136
|
* </p>
|
|
1224
1137
|
*/
|
|
@@ -1257,7 +1170,7 @@ export interface DeleteRepositoryPermissionsPolicyRequest {
|
|
|
1257
1170
|
domain: string | undefined;
|
|
1258
1171
|
/**
|
|
1259
1172
|
* <p>
|
|
1260
|
-
* The 12-digit account number of the
|
|
1173
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
1261
1174
|
* dashes or spaces.
|
|
1262
1175
|
* </p>
|
|
1263
1176
|
*/
|
|
@@ -1305,7 +1218,7 @@ export interface DescribeDomainRequest {
|
|
|
1305
1218
|
domain: string | undefined;
|
|
1306
1219
|
/**
|
|
1307
1220
|
* <p>
|
|
1308
|
-
* The 12-digit account number of the
|
|
1221
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
1309
1222
|
* dashes or spaces.
|
|
1310
1223
|
* </p>
|
|
1311
1224
|
*/
|
|
@@ -1341,7 +1254,7 @@ export interface DescribePackageVersionRequest {
|
|
|
1341
1254
|
domain: string | undefined;
|
|
1342
1255
|
/**
|
|
1343
1256
|
* <p>
|
|
1344
|
-
* The 12-digit account number of the
|
|
1257
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
1345
1258
|
* dashes or spaces.
|
|
1346
1259
|
* </p>
|
|
1347
1260
|
*/
|
|
@@ -1352,25 +1265,8 @@ export interface DescribePackageVersionRequest {
|
|
|
1352
1265
|
repository: string | undefined;
|
|
1353
1266
|
/**
|
|
1354
1267
|
* <p>
|
|
1355
|
-
* A format that specifies the type of the requested package version.
|
|
1268
|
+
* A format that specifies the type of the requested package version.
|
|
1356
1269
|
* </p>
|
|
1357
|
-
* <ul>
|
|
1358
|
-
* <li>
|
|
1359
|
-
* <p>
|
|
1360
|
-
* <code>npm</code>
|
|
1361
|
-
* </p>
|
|
1362
|
-
* </li>
|
|
1363
|
-
* <li>
|
|
1364
|
-
* <p>
|
|
1365
|
-
* <code>pypi</code>
|
|
1366
|
-
* </p>
|
|
1367
|
-
* </li>
|
|
1368
|
-
* <li>
|
|
1369
|
-
* <p>
|
|
1370
|
-
* <code>maven</code>
|
|
1371
|
-
* </p>
|
|
1372
|
-
* </li>
|
|
1373
|
-
* </ul>
|
|
1374
1270
|
*/
|
|
1375
1271
|
format: PackageFormat | string | undefined;
|
|
1376
1272
|
/**
|
|
@@ -1448,25 +1344,8 @@ export declare namespace LicenseInfo {
|
|
|
1448
1344
|
export interface PackageVersionDescription {
|
|
1449
1345
|
/**
|
|
1450
1346
|
* <p>
|
|
1451
|
-
* The format of the package version.
|
|
1347
|
+
* The format of the package version.
|
|
1452
1348
|
* </p>
|
|
1453
|
-
* <ul>
|
|
1454
|
-
* <li>
|
|
1455
|
-
* <p>
|
|
1456
|
-
* <code>npm</code>: A Node Package Manager (npm) package.
|
|
1457
|
-
* </p>
|
|
1458
|
-
* </li>
|
|
1459
|
-
* <li>
|
|
1460
|
-
* <p>
|
|
1461
|
-
* <code>pypi</code>: A Python Package Index (PyPI) package.
|
|
1462
|
-
* </p>
|
|
1463
|
-
* </li>
|
|
1464
|
-
* <li>
|
|
1465
|
-
* <p>
|
|
1466
|
-
* <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file.
|
|
1467
|
-
* </p>
|
|
1468
|
-
* </li>
|
|
1469
|
-
* </ul>
|
|
1470
1349
|
*/
|
|
1471
1350
|
format?: PackageFormat | string;
|
|
1472
1351
|
/**
|
|
@@ -1554,35 +1433,8 @@ export interface PackageVersionDescription {
|
|
|
1554
1433
|
revision?: string;
|
|
1555
1434
|
/**
|
|
1556
1435
|
* <p>
|
|
1557
|
-
* A string that contains the status of the package version.
|
|
1436
|
+
* A string that contains the status of the package version.
|
|
1558
1437
|
* </p>
|
|
1559
|
-
* <ul>
|
|
1560
|
-
* <li>
|
|
1561
|
-
* <p>
|
|
1562
|
-
* <code>Published</code>
|
|
1563
|
-
* </p>
|
|
1564
|
-
* </li>
|
|
1565
|
-
* <li>
|
|
1566
|
-
* <p>
|
|
1567
|
-
* <code>Unfinished</code>
|
|
1568
|
-
* </p>
|
|
1569
|
-
* </li>
|
|
1570
|
-
* <li>
|
|
1571
|
-
* <p>
|
|
1572
|
-
* <code>Unlisted</code>
|
|
1573
|
-
* </p>
|
|
1574
|
-
* </li>
|
|
1575
|
-
* <li>
|
|
1576
|
-
* <p>
|
|
1577
|
-
* <code>Archived</code>
|
|
1578
|
-
* </p>
|
|
1579
|
-
* </li>
|
|
1580
|
-
* <li>
|
|
1581
|
-
* <p>
|
|
1582
|
-
* <code>Disposed</code>
|
|
1583
|
-
* </p>
|
|
1584
|
-
* </li>
|
|
1585
|
-
* </ul>
|
|
1586
1438
|
*/
|
|
1587
1439
|
status?: PackageVersionStatus | string;
|
|
1588
1440
|
}
|
|
@@ -1616,7 +1468,7 @@ export interface DescribeRepositoryRequest {
|
|
|
1616
1468
|
domain: string | undefined;
|
|
1617
1469
|
/**
|
|
1618
1470
|
* <p>
|
|
1619
|
-
* The 12-digit account number of the
|
|
1471
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
1620
1472
|
* dashes or spaces.
|
|
1621
1473
|
* </p>
|
|
1622
1474
|
*/
|
|
@@ -1656,7 +1508,7 @@ export interface DisassociateExternalConnectionRequest {
|
|
|
1656
1508
|
domain: string | undefined;
|
|
1657
1509
|
/**
|
|
1658
1510
|
* <p>
|
|
1659
|
-
* The 12-digit account number of the
|
|
1511
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
1660
1512
|
* dashes or spaces.
|
|
1661
1513
|
* </p>
|
|
1662
1514
|
*/
|
|
@@ -1699,7 +1551,7 @@ export interface DisposePackageVersionsRequest {
|
|
|
1699
1551
|
domain: string | undefined;
|
|
1700
1552
|
/**
|
|
1701
1553
|
* <p>
|
|
1702
|
-
* The 12-digit account number of the
|
|
1554
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
1703
1555
|
* dashes or spaces.
|
|
1704
1556
|
* </p>
|
|
1705
1557
|
*/
|
|
@@ -1712,25 +1564,8 @@ export interface DisposePackageVersionsRequest {
|
|
|
1712
1564
|
repository: string | undefined;
|
|
1713
1565
|
/**
|
|
1714
1566
|
* <p>
|
|
1715
|
-
* A format that specifies the type of package versions you want to dispose.
|
|
1567
|
+
* A format that specifies the type of package versions you want to dispose.
|
|
1716
1568
|
* </p>
|
|
1717
|
-
* <ul>
|
|
1718
|
-
* <li>
|
|
1719
|
-
* <p>
|
|
1720
|
-
* <code>npm</code>
|
|
1721
|
-
* </p>
|
|
1722
|
-
* </li>
|
|
1723
|
-
* <li>
|
|
1724
|
-
* <p>
|
|
1725
|
-
* <code>pypi</code>
|
|
1726
|
-
* </p>
|
|
1727
|
-
* </li>
|
|
1728
|
-
* <li>
|
|
1729
|
-
* <p>
|
|
1730
|
-
* <code>maven</code>
|
|
1731
|
-
* </p>
|
|
1732
|
-
* </li>
|
|
1733
|
-
* </ul>
|
|
1734
1569
|
*/
|
|
1735
1570
|
format: PackageFormat | string | undefined;
|
|
1736
1571
|
/**
|
|
@@ -1780,35 +1615,8 @@ export interface DisposePackageVersionsRequest {
|
|
|
1780
1615
|
};
|
|
1781
1616
|
/**
|
|
1782
1617
|
* <p>
|
|
1783
|
-
* The expected status of the package version to dispose.
|
|
1618
|
+
* The expected status of the package version to dispose.
|
|
1784
1619
|
* </p>
|
|
1785
|
-
* <ul>
|
|
1786
|
-
* <li>
|
|
1787
|
-
* <p>
|
|
1788
|
-
* <code>Published</code>
|
|
1789
|
-
* </p>
|
|
1790
|
-
* </li>
|
|
1791
|
-
* <li>
|
|
1792
|
-
* <p>
|
|
1793
|
-
* <code>Unfinished</code>
|
|
1794
|
-
* </p>
|
|
1795
|
-
* </li>
|
|
1796
|
-
* <li>
|
|
1797
|
-
* <p>
|
|
1798
|
-
* <code>Unlisted</code>
|
|
1799
|
-
* </p>
|
|
1800
|
-
* </li>
|
|
1801
|
-
* <li>
|
|
1802
|
-
* <p>
|
|
1803
|
-
* <code>Archived</code>
|
|
1804
|
-
* </p>
|
|
1805
|
-
* </li>
|
|
1806
|
-
* <li>
|
|
1807
|
-
* <p>
|
|
1808
|
-
* <code>Disposed</code>
|
|
1809
|
-
* </p>
|
|
1810
|
-
* </li>
|
|
1811
|
-
* </ul>
|
|
1812
1620
|
*/
|
|
1813
1621
|
expectedStatus?: PackageVersionStatus | string;
|
|
1814
1622
|
}
|
|
@@ -1884,7 +1692,7 @@ export interface GetAuthorizationTokenRequest {
|
|
|
1884
1692
|
domain: string | undefined;
|
|
1885
1693
|
/**
|
|
1886
1694
|
* <p>
|
|
1887
|
-
* The 12-digit account number of the
|
|
1695
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
1888
1696
|
* dashes or spaces.
|
|
1889
1697
|
* </p>
|
|
1890
1698
|
*/
|
|
@@ -1932,7 +1740,7 @@ export interface GetDomainPermissionsPolicyRequest {
|
|
|
1932
1740
|
domain: string | undefined;
|
|
1933
1741
|
/**
|
|
1934
1742
|
* <p>
|
|
1935
|
-
* The 12-digit account number of the
|
|
1743
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
1936
1744
|
* dashes or spaces.
|
|
1937
1745
|
* </p>
|
|
1938
1746
|
*/
|
|
@@ -1967,7 +1775,7 @@ export interface GetPackageVersionAssetRequest {
|
|
|
1967
1775
|
domain: string | undefined;
|
|
1968
1776
|
/**
|
|
1969
1777
|
* <p>
|
|
1970
|
-
* The 12-digit account number of the
|
|
1778
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
1971
1779
|
* dashes or spaces.
|
|
1972
1780
|
* </p>
|
|
1973
1781
|
*/
|
|
@@ -1980,25 +1788,8 @@ export interface GetPackageVersionAssetRequest {
|
|
|
1980
1788
|
repository: string | undefined;
|
|
1981
1789
|
/**
|
|
1982
1790
|
* <p>
|
|
1983
|
-
* A format that specifies the type of the package version with the requested asset file.
|
|
1791
|
+
* A format that specifies the type of the package version with the requested asset file.
|
|
1984
1792
|
* </p>
|
|
1985
|
-
* <ul>
|
|
1986
|
-
* <li>
|
|
1987
|
-
* <p>
|
|
1988
|
-
* <code>npm</code>
|
|
1989
|
-
* </p>
|
|
1990
|
-
* </li>
|
|
1991
|
-
* <li>
|
|
1992
|
-
* <p>
|
|
1993
|
-
* <code>pypi</code>
|
|
1994
|
-
* </p>
|
|
1995
|
-
* </li>
|
|
1996
|
-
* <li>
|
|
1997
|
-
* <p>
|
|
1998
|
-
* <code>maven</code>
|
|
1999
|
-
* </p>
|
|
2000
|
-
* </li>
|
|
2001
|
-
* </ul>
|
|
2002
1793
|
*/
|
|
2003
1794
|
format: PackageFormat | string | undefined;
|
|
2004
1795
|
/**
|
|
@@ -2096,7 +1887,7 @@ export interface GetPackageVersionReadmeRequest {
|
|
|
2096
1887
|
domain: string | undefined;
|
|
2097
1888
|
/**
|
|
2098
1889
|
* <p>
|
|
2099
|
-
* The 12-digit account number of the
|
|
1890
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
2100
1891
|
* dashes or spaces.
|
|
2101
1892
|
* </p>
|
|
2102
1893
|
*/
|
|
@@ -2109,25 +1900,12 @@ export interface GetPackageVersionReadmeRequest {
|
|
|
2109
1900
|
repository: string | undefined;
|
|
2110
1901
|
/**
|
|
2111
1902
|
* <p>
|
|
2112
|
-
* A format that specifies the type of the package version with the requested readme file.
|
|
1903
|
+
* A format that specifies the type of the package version with the requested readme file.
|
|
2113
1904
|
* </p>
|
|
2114
|
-
* <
|
|
2115
|
-
* <
|
|
2116
|
-
*
|
|
2117
|
-
*
|
|
2118
|
-
* </p>
|
|
2119
|
-
* </li>
|
|
2120
|
-
* <li>
|
|
2121
|
-
* <p>
|
|
2122
|
-
* <code>pypi</code>
|
|
2123
|
-
* </p>
|
|
2124
|
-
* </li>
|
|
2125
|
-
* <li>
|
|
2126
|
-
* <p>
|
|
2127
|
-
* <code>maven</code>
|
|
2128
|
-
* </p>
|
|
2129
|
-
* </li>
|
|
2130
|
-
* </ul>
|
|
1905
|
+
* <note>
|
|
1906
|
+
* <p>Although <code>maven</code> is
|
|
1907
|
+
* listed as a valid value, CodeArtifact does not support displaying readme files for Maven packages.</p>
|
|
1908
|
+
* </note>
|
|
2131
1909
|
*/
|
|
2132
1910
|
format: PackageFormat | string | undefined;
|
|
2133
1911
|
/**
|
|
@@ -2177,25 +1955,8 @@ export declare namespace GetPackageVersionReadmeRequest {
|
|
|
2177
1955
|
export interface GetPackageVersionReadmeResult {
|
|
2178
1956
|
/**
|
|
2179
1957
|
* <p>
|
|
2180
|
-
* The format of the package with the requested readme file.
|
|
1958
|
+
* The format of the package with the requested readme file.
|
|
2181
1959
|
* </p>
|
|
2182
|
-
* <ul>
|
|
2183
|
-
* <li>
|
|
2184
|
-
* <p>
|
|
2185
|
-
* <code>npm</code>
|
|
2186
|
-
* </p>
|
|
2187
|
-
* </li>
|
|
2188
|
-
* <li>
|
|
2189
|
-
* <p>
|
|
2190
|
-
* <code>pypi</code>
|
|
2191
|
-
* </p>
|
|
2192
|
-
* </li>
|
|
2193
|
-
* <li>
|
|
2194
|
-
* <p>
|
|
2195
|
-
* <code>maven</code>
|
|
2196
|
-
* </p>
|
|
2197
|
-
* </li>
|
|
2198
|
-
* </ul>
|
|
2199
1960
|
*/
|
|
2200
1961
|
format?: PackageFormat | string;
|
|
2201
1962
|
/**
|
|
@@ -2263,7 +2024,7 @@ export interface GetRepositoryEndpointRequest {
|
|
|
2263
2024
|
domain: string | undefined;
|
|
2264
2025
|
/**
|
|
2265
2026
|
* <p>
|
|
2266
|
-
* The 12-digit account number of the
|
|
2027
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain that contains the repository. It does not include
|
|
2267
2028
|
* dashes or spaces.
|
|
2268
2029
|
* </p>
|
|
2269
2030
|
*/
|
|
@@ -2277,25 +2038,8 @@ export interface GetRepositoryEndpointRequest {
|
|
|
2277
2038
|
/**
|
|
2278
2039
|
* <p>
|
|
2279
2040
|
* Returns which endpoint of a repository to return. A repository has one endpoint for each
|
|
2280
|
-
* package format
|
|
2041
|
+
* package format.
|
|
2281
2042
|
* </p>
|
|
2282
|
-
* <ul>
|
|
2283
|
-
* <li>
|
|
2284
|
-
* <p>
|
|
2285
|
-
* <code>npm</code>
|
|
2286
|
-
* </p>
|
|
2287
|
-
* </li>
|
|
2288
|
-
* <li>
|
|
2289
|
-
* <p>
|
|
2290
|
-
* <code>pypi</code>
|
|
2291
|
-
* </p>
|
|
2292
|
-
* </li>
|
|
2293
|
-
* <li>
|
|
2294
|
-
* <p>
|
|
2295
|
-
* <code>maven</code>
|
|
2296
|
-
* </p>
|
|
2297
|
-
* </li>
|
|
2298
|
-
* </ul>
|
|
2299
2043
|
*/
|
|
2300
2044
|
format: PackageFormat | string | undefined;
|
|
2301
2045
|
}
|
|
@@ -2328,7 +2072,7 @@ export interface GetRepositoryPermissionsPolicyRequest {
|
|
|
2328
2072
|
domain: string | undefined;
|
|
2329
2073
|
/**
|
|
2330
2074
|
* <p>
|
|
2331
|
-
* The 12-digit account number of the
|
|
2075
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
2332
2076
|
* dashes or spaces.
|
|
2333
2077
|
* </p>
|
|
2334
2078
|
*/
|
|
@@ -2394,7 +2138,7 @@ export interface DomainSummary {
|
|
|
2394
2138
|
name?: string;
|
|
2395
2139
|
/**
|
|
2396
2140
|
* <p>
|
|
2397
|
-
* The 12-digit account number of the
|
|
2141
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
2398
2142
|
* dashes or spaces.
|
|
2399
2143
|
* </p>
|
|
2400
2144
|
*/
|
|
@@ -2407,20 +2151,8 @@ export interface DomainSummary {
|
|
|
2407
2151
|
arn?: string;
|
|
2408
2152
|
/**
|
|
2409
2153
|
* <p>
|
|
2410
|
-
* A string that contains the status of the domain.
|
|
2154
|
+
* A string that contains the status of the domain.
|
|
2411
2155
|
* </p>
|
|
2412
|
-
* <ul>
|
|
2413
|
-
* <li>
|
|
2414
|
-
* <p>
|
|
2415
|
-
* <code>Active</code>
|
|
2416
|
-
* </p>
|
|
2417
|
-
* </li>
|
|
2418
|
-
* <li>
|
|
2419
|
-
* <p>
|
|
2420
|
-
* <code>Deleted</code>
|
|
2421
|
-
* </p>
|
|
2422
|
-
* </li>
|
|
2423
|
-
* </ul>
|
|
2424
2156
|
*/
|
|
2425
2157
|
status?: DomainStatus | string;
|
|
2426
2158
|
/**
|
|
@@ -2471,7 +2203,7 @@ export interface ListPackagesRequest {
|
|
|
2471
2203
|
domain: string | undefined;
|
|
2472
2204
|
/**
|
|
2473
2205
|
* <p>
|
|
2474
|
-
* The 12-digit account number of the
|
|
2206
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
2475
2207
|
* dashes or spaces.
|
|
2476
2208
|
* </p>
|
|
2477
2209
|
*/
|
|
@@ -2484,25 +2216,8 @@ export interface ListPackagesRequest {
|
|
|
2484
2216
|
repository: string | undefined;
|
|
2485
2217
|
/**
|
|
2486
2218
|
* <p>
|
|
2487
|
-
* The format of the packages.
|
|
2219
|
+
* The format of the packages.
|
|
2488
2220
|
* </p>
|
|
2489
|
-
* <ul>
|
|
2490
|
-
* <li>
|
|
2491
|
-
* <p>
|
|
2492
|
-
* <code>npm</code>: A Node Package Manager (npm) package.
|
|
2493
|
-
* </p>
|
|
2494
|
-
* </li>
|
|
2495
|
-
* <li>
|
|
2496
|
-
* <p>
|
|
2497
|
-
* <code>pypi</code>: A Python Package Index (PyPI) package.
|
|
2498
|
-
* </p>
|
|
2499
|
-
* </li>
|
|
2500
|
-
* <li>
|
|
2501
|
-
* <p>
|
|
2502
|
-
* <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file.
|
|
2503
|
-
* </p>
|
|
2504
|
-
* </li>
|
|
2505
|
-
* </ul>
|
|
2506
2221
|
*/
|
|
2507
2222
|
format?: PackageFormat | string;
|
|
2508
2223
|
/**
|
|
@@ -2566,25 +2281,8 @@ export declare namespace ListPackagesRequest {
|
|
|
2566
2281
|
export interface PackageSummary {
|
|
2567
2282
|
/**
|
|
2568
2283
|
* <p>
|
|
2569
|
-
* The format of the package.
|
|
2284
|
+
* The format of the package.
|
|
2570
2285
|
* </p>
|
|
2571
|
-
* <ul>
|
|
2572
|
-
* <li>
|
|
2573
|
-
* <p>
|
|
2574
|
-
* <code>npm</code>
|
|
2575
|
-
* </p>
|
|
2576
|
-
* </li>
|
|
2577
|
-
* <li>
|
|
2578
|
-
* <p>
|
|
2579
|
-
* <code>pypi</code>
|
|
2580
|
-
* </p>
|
|
2581
|
-
* </li>
|
|
2582
|
-
* <li>
|
|
2583
|
-
* <p>
|
|
2584
|
-
* <code>maven</code>
|
|
2585
|
-
* </p>
|
|
2586
|
-
* </li>
|
|
2587
|
-
* </ul>
|
|
2588
2286
|
*/
|
|
2589
2287
|
format?: PackageFormat | string;
|
|
2590
2288
|
/**
|
|
@@ -2655,7 +2353,7 @@ export interface ListPackageVersionAssetsRequest {
|
|
|
2655
2353
|
domain: string | undefined;
|
|
2656
2354
|
/**
|
|
2657
2355
|
* <p>
|
|
2658
|
-
* The 12-digit account number of the
|
|
2356
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
2659
2357
|
* dashes or spaces.
|
|
2660
2358
|
* </p>
|
|
2661
2359
|
*/
|
|
@@ -2668,25 +2366,8 @@ export interface ListPackageVersionAssetsRequest {
|
|
|
2668
2366
|
repository: string | undefined;
|
|
2669
2367
|
/**
|
|
2670
2368
|
* <p>
|
|
2671
|
-
* The format of the package that contains the returned package version assets.
|
|
2369
|
+
* The format of the package that contains the returned package version assets.
|
|
2672
2370
|
* </p>
|
|
2673
|
-
* <ul>
|
|
2674
|
-
* <li>
|
|
2675
|
-
* <p>
|
|
2676
|
-
* <code>npm</code>: A Node Package Manager (npm) package.
|
|
2677
|
-
* </p>
|
|
2678
|
-
* </li>
|
|
2679
|
-
* <li>
|
|
2680
|
-
* <p>
|
|
2681
|
-
* <code>pypi</code>: A Python Package Index (PyPI) package.
|
|
2682
|
-
* </p>
|
|
2683
|
-
* </li>
|
|
2684
|
-
* <li>
|
|
2685
|
-
* <p>
|
|
2686
|
-
* <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file.
|
|
2687
|
-
* </p>
|
|
2688
|
-
* </li>
|
|
2689
|
-
* </ul>
|
|
2690
2371
|
*/
|
|
2691
2372
|
format: PackageFormat | string | undefined;
|
|
2692
2373
|
/**
|
|
@@ -2823,7 +2504,7 @@ export interface ListPackageVersionDependenciesRequest {
|
|
|
2823
2504
|
domain: string | undefined;
|
|
2824
2505
|
/**
|
|
2825
2506
|
* <p>
|
|
2826
|
-
* The 12-digit account number of the
|
|
2507
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
2827
2508
|
* dashes or spaces.
|
|
2828
2509
|
* </p>
|
|
2829
2510
|
*/
|
|
@@ -2836,25 +2517,8 @@ export interface ListPackageVersionDependenciesRequest {
|
|
|
2836
2517
|
repository: string | undefined;
|
|
2837
2518
|
/**
|
|
2838
2519
|
* <p>
|
|
2839
|
-
* The format of the package with the requested dependencies.
|
|
2520
|
+
* The format of the package with the requested dependencies.
|
|
2840
2521
|
* </p>
|
|
2841
|
-
* <ul>
|
|
2842
|
-
* <li>
|
|
2843
|
-
* <p>
|
|
2844
|
-
* <code>npm</code>: A Node Package Manager (npm) package.
|
|
2845
|
-
* </p>
|
|
2846
|
-
* </li>
|
|
2847
|
-
* <li>
|
|
2848
|
-
* <p>
|
|
2849
|
-
* <code>pypi</code>: A Python Package Index (PyPI) package.
|
|
2850
|
-
* </p>
|
|
2851
|
-
* </li>
|
|
2852
|
-
* <li>
|
|
2853
|
-
* <p>
|
|
2854
|
-
* <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file.
|
|
2855
|
-
* </p>
|
|
2856
|
-
* </li>
|
|
2857
|
-
* </ul>
|
|
2858
2522
|
*/
|
|
2859
2523
|
format: PackageFormat | string | undefined;
|
|
2860
2524
|
/**
|
|
@@ -2968,25 +2632,8 @@ export declare namespace PackageDependency {
|
|
|
2968
2632
|
export interface ListPackageVersionDependenciesResult {
|
|
2969
2633
|
/**
|
|
2970
2634
|
* <p>
|
|
2971
|
-
* A format that specifies the type of the package that contains the returned dependencies.
|
|
2635
|
+
* A format that specifies the type of the package that contains the returned dependencies.
|
|
2972
2636
|
* </p>
|
|
2973
|
-
* <ul>
|
|
2974
|
-
* <li>
|
|
2975
|
-
* <p>
|
|
2976
|
-
* <code>npm</code>
|
|
2977
|
-
* </p>
|
|
2978
|
-
* </li>
|
|
2979
|
-
* <li>
|
|
2980
|
-
* <p>
|
|
2981
|
-
* <code>pypi</code>
|
|
2982
|
-
* </p>
|
|
2983
|
-
* </li>
|
|
2984
|
-
* <li>
|
|
2985
|
-
* <p>
|
|
2986
|
-
* <code>maven</code>
|
|
2987
|
-
* </p>
|
|
2988
|
-
* </li>
|
|
2989
|
-
* </ul>
|
|
2990
2637
|
*/
|
|
2991
2638
|
format?: PackageFormat | string;
|
|
2992
2639
|
/**
|
|
@@ -3063,7 +2710,7 @@ export interface ListPackageVersionsRequest {
|
|
|
3063
2710
|
domain: string | undefined;
|
|
3064
2711
|
/**
|
|
3065
2712
|
* <p>
|
|
3066
|
-
* The 12-digit account number of the
|
|
2713
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
3067
2714
|
* dashes or spaces.
|
|
3068
2715
|
* </p>
|
|
3069
2716
|
*/
|
|
@@ -3076,25 +2723,8 @@ export interface ListPackageVersionsRequest {
|
|
|
3076
2723
|
repository: string | undefined;
|
|
3077
2724
|
/**
|
|
3078
2725
|
* <p>
|
|
3079
|
-
* The format of the returned packages.
|
|
2726
|
+
* The format of the returned packages.
|
|
3080
2727
|
* </p>
|
|
3081
|
-
* <ul>
|
|
3082
|
-
* <li>
|
|
3083
|
-
* <p>
|
|
3084
|
-
* <code>npm</code>: A Node Package Manager (npm) package.
|
|
3085
|
-
* </p>
|
|
3086
|
-
* </li>
|
|
3087
|
-
* <li>
|
|
3088
|
-
* <p>
|
|
3089
|
-
* <code>pypi</code>: A Python Package Index (PyPI) package.
|
|
3090
|
-
* </p>
|
|
3091
|
-
* </li>
|
|
3092
|
-
* <li>
|
|
3093
|
-
* <p>
|
|
3094
|
-
* <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file.
|
|
3095
|
-
* </p>
|
|
3096
|
-
* </li>
|
|
3097
|
-
* </ul>
|
|
3098
2728
|
*/
|
|
3099
2729
|
format: PackageFormat | string | undefined;
|
|
3100
2730
|
/**
|
|
@@ -3130,35 +2760,8 @@ export interface ListPackageVersionsRequest {
|
|
|
3130
2760
|
package: string | undefined;
|
|
3131
2761
|
/**
|
|
3132
2762
|
* <p>
|
|
3133
|
-
* A string that specifies the status of the package versions to include in the returned list.
|
|
2763
|
+
* A string that specifies the status of the package versions to include in the returned list.
|
|
3134
2764
|
* </p>
|
|
3135
|
-
* <ul>
|
|
3136
|
-
* <li>
|
|
3137
|
-
* <p>
|
|
3138
|
-
* <code>Published</code>
|
|
3139
|
-
* </p>
|
|
3140
|
-
* </li>
|
|
3141
|
-
* <li>
|
|
3142
|
-
* <p>
|
|
3143
|
-
* <code>Unfinished</code>
|
|
3144
|
-
* </p>
|
|
3145
|
-
* </li>
|
|
3146
|
-
* <li>
|
|
3147
|
-
* <p>
|
|
3148
|
-
* <code>Unlisted</code>
|
|
3149
|
-
* </p>
|
|
3150
|
-
* </li>
|
|
3151
|
-
* <li>
|
|
3152
|
-
* <p>
|
|
3153
|
-
* <code>Archived</code>
|
|
3154
|
-
* </p>
|
|
3155
|
-
* </li>
|
|
3156
|
-
* <li>
|
|
3157
|
-
* <p>
|
|
3158
|
-
* <code>Disposed</code>
|
|
3159
|
-
* </p>
|
|
3160
|
-
* </li>
|
|
3161
|
-
* </ul>
|
|
3162
2765
|
*/
|
|
3163
2766
|
status?: PackageVersionStatus | string;
|
|
3164
2767
|
/**
|
|
@@ -3210,33 +2813,6 @@ export interface PackageVersionSummary {
|
|
|
3210
2813
|
* <p>
|
|
3211
2814
|
* A string that contains the status of the package version. It can be one of the following:
|
|
3212
2815
|
* </p>
|
|
3213
|
-
* <ul>
|
|
3214
|
-
* <li>
|
|
3215
|
-
* <p>
|
|
3216
|
-
* <code>Published</code>
|
|
3217
|
-
* </p>
|
|
3218
|
-
* </li>
|
|
3219
|
-
* <li>
|
|
3220
|
-
* <p>
|
|
3221
|
-
* <code>Unfinished</code>
|
|
3222
|
-
* </p>
|
|
3223
|
-
* </li>
|
|
3224
|
-
* <li>
|
|
3225
|
-
* <p>
|
|
3226
|
-
* <code>Unlisted</code>
|
|
3227
|
-
* </p>
|
|
3228
|
-
* </li>
|
|
3229
|
-
* <li>
|
|
3230
|
-
* <p>
|
|
3231
|
-
* <code>Archived</code>
|
|
3232
|
-
* </p>
|
|
3233
|
-
* </li>
|
|
3234
|
-
* <li>
|
|
3235
|
-
* <p>
|
|
3236
|
-
* <code>Disposed</code>
|
|
3237
|
-
* </p>
|
|
3238
|
-
* </li>
|
|
3239
|
-
* </ul>
|
|
3240
2816
|
*/
|
|
3241
2817
|
status: PackageVersionStatus | string | undefined;
|
|
3242
2818
|
}
|
|
@@ -3268,25 +2844,8 @@ export interface ListPackageVersionsResult {
|
|
|
3268
2844
|
defaultDisplayVersion?: string;
|
|
3269
2845
|
/**
|
|
3270
2846
|
* <p>
|
|
3271
|
-
* A format of the package.
|
|
2847
|
+
* A format of the package.
|
|
3272
2848
|
* </p>
|
|
3273
|
-
* <ul>
|
|
3274
|
-
* <li>
|
|
3275
|
-
* <p>
|
|
3276
|
-
* <code>npm</code>
|
|
3277
|
-
* </p>
|
|
3278
|
-
* </li>
|
|
3279
|
-
* <li>
|
|
3280
|
-
* <p>
|
|
3281
|
-
* <code>pypi</code>
|
|
3282
|
-
* </p>
|
|
3283
|
-
* </li>
|
|
3284
|
-
* <li>
|
|
3285
|
-
* <p>
|
|
3286
|
-
* <code>maven</code>
|
|
3287
|
-
* </p>
|
|
3288
|
-
* </li>
|
|
3289
|
-
* </ul>
|
|
3290
2849
|
*/
|
|
3291
2850
|
format?: PackageFormat | string;
|
|
3292
2851
|
/**
|
|
@@ -3380,7 +2939,7 @@ export interface RepositorySummary {
|
|
|
3380
2939
|
name?: string;
|
|
3381
2940
|
/**
|
|
3382
2941
|
* <p>
|
|
3383
|
-
* The
|
|
2942
|
+
* The Amazon Web Services account ID that manages the repository.
|
|
3384
2943
|
* </p>
|
|
3385
2944
|
*/
|
|
3386
2945
|
administratorAccount?: string;
|
|
@@ -3392,7 +2951,7 @@ export interface RepositorySummary {
|
|
|
3392
2951
|
domainName?: string;
|
|
3393
2952
|
/**
|
|
3394
2953
|
* <p>
|
|
3395
|
-
* The 12-digit account number of the
|
|
2954
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
3396
2955
|
* dashes or spaces.
|
|
3397
2956
|
* </p>
|
|
3398
2957
|
*/
|
|
@@ -3444,14 +3003,14 @@ export interface ListRepositoriesInDomainRequest {
|
|
|
3444
3003
|
domain: string | undefined;
|
|
3445
3004
|
/**
|
|
3446
3005
|
* <p>
|
|
3447
|
-
* The 12-digit account number of the
|
|
3006
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
3448
3007
|
* dashes or spaces.
|
|
3449
3008
|
* </p>
|
|
3450
3009
|
*/
|
|
3451
3010
|
domainOwner?: string;
|
|
3452
3011
|
/**
|
|
3453
3012
|
* <p>
|
|
3454
|
-
* Filter the list of repositories to only include those that are managed by the
|
|
3013
|
+
* Filter the list of repositories to only include those that are managed by the Amazon Web Services account ID.
|
|
3455
3014
|
* </p>
|
|
3456
3015
|
*/
|
|
3457
3016
|
administratorAccount?: string;
|
|
@@ -3534,7 +3093,7 @@ export interface PutDomainPermissionsPolicyRequest {
|
|
|
3534
3093
|
domain: string | undefined;
|
|
3535
3094
|
/**
|
|
3536
3095
|
* <p>
|
|
3537
|
-
* The 12-digit account number of the
|
|
3096
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
3538
3097
|
* dashes or spaces.
|
|
3539
3098
|
* </p>
|
|
3540
3099
|
*/
|
|
@@ -3579,7 +3138,7 @@ export interface PutRepositoryPermissionsPolicyRequest {
|
|
|
3579
3138
|
domain: string | undefined;
|
|
3580
3139
|
/**
|
|
3581
3140
|
* <p>
|
|
3582
|
-
* The 12-digit account number of the
|
|
3141
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
3583
3142
|
* dashes or spaces.
|
|
3584
3143
|
* </p>
|
|
3585
3144
|
*/
|
|
@@ -3677,7 +3236,7 @@ export interface UpdatePackageVersionsStatusRequest {
|
|
|
3677
3236
|
domain: string | undefined;
|
|
3678
3237
|
/**
|
|
3679
3238
|
* <p>
|
|
3680
|
-
* The 12-digit account number of the
|
|
3239
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
3681
3240
|
* dashes or spaces.
|
|
3682
3241
|
* </p>
|
|
3683
3242
|
*/
|
|
@@ -3690,25 +3249,8 @@ export interface UpdatePackageVersionsStatusRequest {
|
|
|
3690
3249
|
repository: string | undefined;
|
|
3691
3250
|
/**
|
|
3692
3251
|
* <p>
|
|
3693
|
-
* A format that specifies the type of the package with the statuses to update.
|
|
3252
|
+
* A format that specifies the type of the package with the statuses to update.
|
|
3694
3253
|
* </p>
|
|
3695
|
-
* <ul>
|
|
3696
|
-
* <li>
|
|
3697
|
-
* <p>
|
|
3698
|
-
* <code>npm</code>
|
|
3699
|
-
* </p>
|
|
3700
|
-
* </li>
|
|
3701
|
-
* <li>
|
|
3702
|
-
* <p>
|
|
3703
|
-
* <code>pypi</code>
|
|
3704
|
-
* </p>
|
|
3705
|
-
* </li>
|
|
3706
|
-
* <li>
|
|
3707
|
-
* <p>
|
|
3708
|
-
* <code>maven</code>
|
|
3709
|
-
* </p>
|
|
3710
|
-
* </li>
|
|
3711
|
-
* </ul>
|
|
3712
3254
|
*/
|
|
3713
3255
|
format: PackageFormat | string | undefined;
|
|
3714
3256
|
/**
|
|
@@ -3809,7 +3351,7 @@ export interface UpdateRepositoryRequest {
|
|
|
3809
3351
|
domain: string | undefined;
|
|
3810
3352
|
/**
|
|
3811
3353
|
* <p>
|
|
3812
|
-
* The 12-digit account number of the
|
|
3354
|
+
* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include
|
|
3813
3355
|
* dashes or spaces.
|
|
3814
3356
|
* </p>
|
|
3815
3357
|
*/
|
|
@@ -3828,7 +3370,7 @@ export interface UpdateRepositoryRequest {
|
|
|
3828
3370
|
description?: string;
|
|
3829
3371
|
/**
|
|
3830
3372
|
* <p> A list of upstream repositories to associate with the repository. The order of the upstream repositories
|
|
3831
|
-
* in the list determines their priority order when
|
|
3373
|
+
* in the list determines their priority order when CodeArtifact looks for a requested package version. For more
|
|
3832
3374
|
* information, see <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/repos-upstream.html">Working with upstream repositories</a>. </p>
|
|
3833
3375
|
*/
|
|
3834
3376
|
upstreams?: UpstreamRepository[];
|