You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/client-codeartifact/README.md
+15-10
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,15 @@
9
9
10
10
AWS SDK for JavaScript Codeartifact Client for Node.js, Browser and React Native.
11
11
12
-
<p> AWS CodeArtifact is a fully managed artifact repository compatible with language-native
13
-
package managers and build tools such as npm, Apache Maven, and pip. You can use CodeArtifact to
12
+
<p> CodeArtifact is a fully managed artifact repository compatible with language-native
13
+
package managers and build tools such as npm, Apache Maven, pip, and dotnet. You can use CodeArtifact to
14
14
share packages with development teams and pull packages. Packages can be pulled from both
15
15
public and CodeArtifact repositories. You can also create an upstream relationship between a CodeArtifact
16
16
repository and another repository, which effectively merges their contents from the point of
17
17
view of a package manager client. </p>
18
18
19
19
<p>
20
-
<b>AWS CodeArtifact Components</b>
20
+
<b>CodeArtifact Components</b>
21
21
</p>
22
22
<p>Use the information in this guide to help you work with the following CodeArtifact components:</p>
23
23
@@ -32,9 +32,9 @@ repository exposes endpoints for fetching and publishing packages using tools li
32
32
<code>npm</code>
33
33
</b> CLI, the Maven CLI (<b>
34
34
<code>mvn</code>
35
-
</b>), and <b>
35
+
</b>), Python CLIs (<b>
36
36
<code>pip</code>
37
-
</b>.</p>
37
+
</b> and <code>twine</code>), and NuGet CLIs (<code>nuget</code> and <code>dotnet</code>).</p>
38
38
</li>
39
39
<li>
40
40
<p>
@@ -43,7 +43,7 @@ repository exposes endpoints for fetching and publishing packages using tools li
43
43
but are consumed through repositories. A given package asset, such as a Maven JAR file, is
44
44
stored once per domain, no matter how many repositories it's present in. All of the assets
45
45
and metadata in a domain are encrypted with the same customer master key (CMK) stored in
46
-
AWS Key Management Service (AWS KMS).</p>
46
+
Key Management Service (KMS).</p>
47
47
<p>Each repository is a member of a single domain and can't be moved to a
48
48
different domain.</p>
49
49
<p>The domain allows organizational policy to be applied across multiple
@@ -56,7 +56,7 @@ across their organization.</p>
56
56
<li>
57
57
<p>
58
58
<b>Package</b>: A <i>package</i> is a bundle of software and the metadata required to
59
-
resolve dependencies and install the software. CodeArtifact supports <ahref="https://docs.aws.amazon.com/codeartifact/latest/ug/using-npm.html">npm</a>, <ahref="https://docs.aws.amazon.com/codeartifact/latest/ug/using-python.html">PyPI</a>, and <ahref="https://docs.aws.amazon.com/codeartifact/latest/ug/using-maven">Maven</a> package formats.</p>
59
+
resolve dependencies and install the software. CodeArtifact supports <ahref="https://docs.aws.amazon.com/codeartifact/latest/ug/using-npm.html">npm</a>, <ahref="https://docs.aws.amazon.com/codeartifact/latest/ug/using-python.html">PyPI</a>, <ahref="https://docs.aws.amazon.com/codeartifact/latest/ug/using-maven">Maven</a>, and <ahref="https://docs.aws.amazon.com/codeartifact/latest/ug/using-nuget">NuGet</a> package formats.</p>
60
60
<p>In CodeArtifact, a package consists of:</p>
61
61
<ul>
62
62
<li>
@@ -194,17 +194,22 @@ package format:
194
194
<ul>
195
195
<li>
196
196
<p>
197
+
<code>maven</code>
198
+
</p>
199
+
</li>
200
+
<li>
201
+
<p>
197
202
<code>npm</code>
198
203
</p>
199
204
</li>
200
205
<li>
201
206
<p>
202
-
<code>pypi</code>
207
+
<code>nuget</code>
203
208
</p>
204
209
</li>
205
210
<li>
206
211
<p>
207
-
<code>maven</code>
212
+
<code>pypi</code>
208
213
</p>
209
214
</li>
210
215
</ul>
@@ -239,7 +244,7 @@ package in a repository.</p>
239
244
</li>
240
245
<li>
241
246
<p>
242
-
<code>ListRepositories</code>: Returns a list of repositories owned by the AWS account that called this method.</p>
247
+
<code>ListRepositories</code>: Returns a list of repositories owned by the Amazon Web Services account that called this method.</p>
Copy file name to clipboardExpand all lines: clients/client-codeartifact/src/Codeartifact.ts
+36-25
Original file line number
Diff line number
Diff line change
@@ -166,15 +166,15 @@ import {
166
166
}from"./commands/UpdateRepositoryCommand";
167
167
168
168
/**
169
-
* <p> AWS CodeArtifact is a fully managed artifact repository compatible with language-native
170
-
* package managers and build tools such as npm, Apache Maven, and pip. You can use CodeArtifact to
169
+
* <p> CodeArtifact is a fully managed artifact repository compatible with language-native
170
+
* package managers and build tools such as npm, Apache Maven, pip, and dotnet. You can use CodeArtifact to
171
171
* share packages with development teams and pull packages. Packages can be pulled from both
172
172
* public and CodeArtifact repositories. You can also create an upstream relationship between a CodeArtifact
173
173
* repository and another repository, which effectively merges their contents from the point of
174
174
* view of a package manager client. </p>
175
175
*
176
176
* <p>
177
-
* <b>AWS CodeArtifact Components</b>
177
+
* <b>CodeArtifact Components</b>
178
178
* </p>
179
179
* <p>Use the information in this guide to help you work with the following CodeArtifact components:</p>
180
180
*
@@ -189,9 +189,9 @@ import {
189
189
* <code>npm</code>
190
190
* </b> CLI, the Maven CLI (<b>
191
191
* <code>mvn</code>
192
-
* </b>), and <b>
192
+
* </b>), Python CLIs (<b>
193
193
* <code>pip</code>
194
-
* </b>.</p>
194
+
* </b> and <code>twine</code>), and NuGet CLIs (<code>nuget</code> and <code>dotnet</code>).</p>
195
195
* </li>
196
196
* <li>
197
197
* <p>
@@ -200,7 +200,7 @@ import {
200
200
* but are consumed through repositories. A given package asset, such as a Maven JAR file, is
201
201
* stored once per domain, no matter how many repositories it's present in. All of the assets
202
202
* and metadata in a domain are encrypted with the same customer master key (CMK) stored in
203
-
* AWS Key Management Service (AWS KMS).</p>
203
+
* Key Management Service (KMS).</p>
204
204
* <p>Each repository is a member of a single domain and can't be moved to a
205
205
* different domain.</p>
206
206
* <p>The domain allows organizational policy to be applied across multiple
@@ -213,7 +213,7 @@ import {
213
213
* <li>
214
214
* <p>
215
215
* <b>Package</b>: A <i>package</i> is a bundle of software and the metadata required to
216
-
* resolve dependencies and install the software. CodeArtifact supports <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/using-npm.html">npm</a>, <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/using-python.html">PyPI</a>, and <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/using-maven">Maven</a> package formats.</p>
216
+
* resolve dependencies and install the software. CodeArtifact supports <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/using-npm.html">npm</a>, <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/using-python.html">PyPI</a>, <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/using-maven">Maven</a>, and <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/using-nuget">NuGet</a> package formats.</p>
217
217
* <p>In CodeArtifact, a package consists of:</p>
218
218
* <ul>
219
219
* <li>
@@ -351,17 +351,22 @@ import {
351
351
* <ul>
352
352
* <li>
353
353
* <p>
354
+
* <code>maven</code>
355
+
* </p>
356
+
* </li>
357
+
* <li>
358
+
* <p>
354
359
* <code>npm</code>
355
360
* </p>
356
361
* </li>
357
362
* <li>
358
363
* <p>
359
-
* <code>pypi</code>
364
+
* <code>nuget</code>
360
365
* </p>
361
366
* </li>
362
367
* <li>
363
368
* <p>
364
-
* <code>maven</code>
369
+
* <code>pypi</code>
365
370
* </p>
366
371
* </li>
367
372
* </ul>
@@ -396,7 +401,7 @@ import {
396
401
* </li>
397
402
* <li>
398
403
* <p>
399
-
* <code>ListRepositories</code>: Returns a list of repositories owned by the AWS account that called this method.</p>
404
+
* <code>ListRepositories</code>: Returns a list of repositories owned by the Amazon Web Services account that called this method.</p>
400
405
* </li>
401
406
* <li>
402
407
* <p>
@@ -501,7 +506,7 @@ export class Codeartifact extends CodeartifactClient {
501
506
* <p>
502
507
* Creates a domain. CodeArtifact <i>domains</i> make it easier to manage multiple repositories across an
503
508
* organization. You can use a domain to apply permissions across many
504
-
* repositories owned by different AWS accounts. An asset is stored only once
509
+
* repositories owned by different Amazon Web Services accounts. An asset is stored only once
505
510
* in a domain, even if it's in multiple repositories.
506
511
* </p>
507
512
*
@@ -713,7 +718,7 @@ export class Codeartifact extends CodeartifactClient {
713
718
* </p>
714
719
* <important>
715
720
* <p>
716
-
* Use <code>DeleteRepositoryPermissionsPolicy</code> with caution. After a policy is deleted, AWS users, roles, and accounts lose permissions to perform
721
+
* Use <code>DeleteRepositoryPermissionsPolicy</code> with caution. After a policy is deleted, Amazon Web Services users, roles, and accounts lose permissions to perform
717
722
* the repository actions granted by the deleted policy.
718
723
* </p>
719
724
* </important>
@@ -938,7 +943,7 @@ export class Codeartifact extends CodeartifactClient {
938
943
* Generates a temporary authorization token for accessing repositories in the domain.
939
944
* This API requires the <code>codeartifact:GetAuthorizationToken</code> and <code>sts:GetServiceBearerToken</code> permissions.
940
945
* For more information about authorization tokens, see
941
-
* <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/tokens-authentication.html">AWS CodeArtifact authentication and tokens</a>.
946
+
* <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/tokens-authentication.html">CodeArtifact authentication and tokens</a>.
942
947
* </p>
943
948
* <note>
944
949
* <p>CodeArtifact authorization tokens are valid for a period of 12 hours when created with the <code>login</code> command.
@@ -993,7 +998,7 @@ export class Codeartifact extends CodeartifactClient {
993
998
* <p>
994
999
* The policy is a resource-based policy, not an identity-based policy. For more information, see
* and resource-based policies </a> in the <i>AWS Identity and Access Management User Guide</i>.
1001
+
* and resource-based policies </a> in the <i>IAM User Guide</i>.
997
1002
* </p>
998
1003
* </note>
999
1004
*/
@@ -1064,9 +1069,7 @@ export class Codeartifact extends CodeartifactClient {
1064
1069
1065
1070
/**
1066
1071
* <p>
1067
-
* Gets the readme file or descriptive text for a package version. For packages that do not contain a readme file, CodeArtifact
1068
-
* extracts a description from a metadata file. For example, from the <code><description></code> element in the
1069
-
* <code>pom.xml</code> file of a Maven package.
1072
+
* Gets the readme file or descriptive text for a package version.
1070
1073
* </p>
1071
1074
* <p>
1072
1075
* The returned text might contain formatting. For example, it might contain formatting for Markdown or reStructuredText.
@@ -1109,17 +1112,22 @@ export class Codeartifact extends CodeartifactClient {
1109
1112
* <ul>
1110
1113
* <li>
1111
1114
* <p>
1115
+
* <code>maven</code>
1116
+
* </p>
1117
+
* </li>
1118
+
* <li>
1119
+
* <p>
1112
1120
* <code>npm</code>
1113
1121
* </p>
1114
1122
* </li>
1115
1123
* <li>
1116
1124
* <p>
1117
-
* <code>pypi</code>
1125
+
* <code>nuget</code>
1118
1126
* </p>
1119
1127
* </li>
1120
1128
* <li>
1121
1129
* <p>
1122
-
* <code>maven</code>
1130
+
* <code>pypi</code>
1123
1131
* </p>
1124
1132
* </li>
1125
1133
* </ul>
@@ -1188,7 +1196,7 @@ export class Codeartifact extends CodeartifactClient {
1188
1196
}
1189
1197
1190
1198
/**
1191
-
* <p> Returns a list of <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionDescription.html">DomainSummary</a> objects for all domains owned by the AWS account that makes
1199
+
* <p> Returns a list of <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionDescription.html">DomainSummary</a> objects for all domains owned by the Amazon Web Services account that makes
1192
1200
* this call. Each returned <code>DomainSummary</code> object contains information about a
1193
1201
* domain. </p>
1194
1202
*/
@@ -1362,7 +1370,7 @@ export class Codeartifact extends CodeartifactClient {
* objects. Each <code>RepositorySummary</code> contains information about a repository in the specified AWS account and that matches the input
1373
+
* objects. Each <code>RepositorySummary</code> contains information about a repository in the specified Amazon Web Services account and that matches the input
1366
1374
* parameters.
1367
1375
* </p>
1368
1376
*/
@@ -1433,7 +1441,7 @@ export class Codeartifact extends CodeartifactClient {
1433
1441
}
1434
1442
1435
1443
/**
1436
-
* <p>Gets information about AWS tags for a specified Amazon Resource Name (ARN) in AWS CodeArtifact.</p>
1444
+
* <p>Gets information about Amazon Web Services tags for a specified Amazon Resource Name (ARN) in CodeArtifact.</p>
1437
1445
*/
1438
1446
publiclistTagsForResource(
1439
1447
args: ListTagsForResourceCommandInput,
@@ -1543,7 +1551,7 @@ export class Codeartifact extends CodeartifactClient {
1543
1551
}
1544
1552
1545
1553
/**
1546
-
* <p>Adds or updates tags for a resource in AWS CodeArtifact.</p>
1554
+
* <p>Adds or updates tags for a resource in CodeArtifact.</p>
0 commit comments