aws-sdk-codeartifact 1.5.0 → 1.6.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.
- checksums.yaml +4 -4
- data/lib/aws-sdk-codeartifact.rb +1 -1
- data/lib/aws-sdk-codeartifact/client.rb +92 -31
- data/lib/aws-sdk-codeartifact/types.rb +112 -20
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7829a813b8045f82a5b23c00cd334ef7919b4bdb8dea4a8502a9afa0c8bc007d
|
|
4
|
+
data.tar.gz: 624fa94ccbf9f4818ac41fb2b82468b4e9f3d0bff4a3d2bd6c77e097dfc2f4da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21d52f9cd59d8f70e7b92ea84da93fcdc8ecf9fc3050e01da22c7e45b8abe4e6b3d24c1d44c4bd20fe8ef70e5c695ffdd8e0e9a69b4789c9091af29545fd8cb7
|
|
7
|
+
data.tar.gz: 44a1e15efd5e61531d0bf9a20154287e349f9c8fc44f5eb749764be270f1dbd69d2ea139b7ca49072c3a1d25218594b250c0333bc91a2bd019944f7aecea0d35
|
data/lib/aws-sdk-codeartifact.rb
CHANGED
|
@@ -361,6 +361,8 @@ module Aws::CodeArtifact
|
|
|
361
361
|
#
|
|
362
362
|
# * `public:maven-commonsware` - for the CommonsWare Android repository.
|
|
363
363
|
#
|
|
364
|
+
# * `public:nuget-org` - for the NuGet Gallery.
|
|
365
|
+
#
|
|
364
366
|
# @return [Types::AssociateExternalConnectionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
365
367
|
#
|
|
366
368
|
# * {Types::AssociateExternalConnectionResult#repository #repository} => Types::RepositoryDescription
|
|
@@ -386,7 +388,7 @@ module Aws::CodeArtifact
|
|
|
386
388
|
# resp.repository.upstreams[0].repository_name #=> String
|
|
387
389
|
# resp.repository.external_connections #=> Array
|
|
388
390
|
# resp.repository.external_connections[0].external_connection_name #=> String
|
|
389
|
-
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven"
|
|
391
|
+
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget"
|
|
390
392
|
# resp.repository.external_connections[0].status #=> String, one of "Available"
|
|
391
393
|
#
|
|
392
394
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/AssociateExternalConnection AWS API Documentation
|
|
@@ -430,6 +432,8 @@ module Aws::CodeArtifact
|
|
|
430
432
|
# * `maven`\: A Maven package that contains compiled code in a
|
|
431
433
|
# distributable format, such as a JAR file.
|
|
432
434
|
#
|
|
435
|
+
# * `nuget`\: A NuGet package.
|
|
436
|
+
#
|
|
433
437
|
# @option params [String] :namespace
|
|
434
438
|
# The namespace of the package. The package component that specifies its
|
|
435
439
|
# namespace depends on its type. For example:
|
|
@@ -441,6 +445,9 @@ module Aws::CodeArtifact
|
|
|
441
445
|
# * A Python package does not contain a corresponding component, so
|
|
442
446
|
# Python packages do not have a namespace.
|
|
443
447
|
#
|
|
448
|
+
# * A NuGet package does not contain a corresponding component, so NuGet
|
|
449
|
+
# packages do not have a namespace.
|
|
450
|
+
#
|
|
444
451
|
# @option params [required, String] :package
|
|
445
452
|
# The name of the package that is copied.
|
|
446
453
|
#
|
|
@@ -492,7 +499,7 @@ module Aws::CodeArtifact
|
|
|
492
499
|
# domain_owner: "AccountId",
|
|
493
500
|
# source_repository: "RepositoryName", # required
|
|
494
501
|
# destination_repository: "RepositoryName", # required
|
|
495
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
502
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
496
503
|
# namespace: "PackageNamespace",
|
|
497
504
|
# package: "PackageName", # required
|
|
498
505
|
# versions: ["PackageVersion"],
|
|
@@ -666,7 +673,7 @@ module Aws::CodeArtifact
|
|
|
666
673
|
# resp.repository.upstreams[0].repository_name #=> String
|
|
667
674
|
# resp.repository.external_connections #=> Array
|
|
668
675
|
# resp.repository.external_connections[0].external_connection_name #=> String
|
|
669
|
-
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven"
|
|
676
|
+
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget"
|
|
670
677
|
# resp.repository.external_connections[0].status #=> String, one of "Available"
|
|
671
678
|
#
|
|
672
679
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/CreateRepository AWS API Documentation
|
|
@@ -791,6 +798,8 @@ module Aws::CodeArtifact
|
|
|
791
798
|
#
|
|
792
799
|
# * `maven`
|
|
793
800
|
#
|
|
801
|
+
# * `nuget`
|
|
802
|
+
#
|
|
794
803
|
# @option params [String] :namespace
|
|
795
804
|
# The namespace of the package. The package component that specifies its
|
|
796
805
|
# namespace depends on its type. For example:
|
|
@@ -802,6 +811,9 @@ module Aws::CodeArtifact
|
|
|
802
811
|
# * A Python package does not contain a corresponding component, so
|
|
803
812
|
# Python packages do not have a namespace.
|
|
804
813
|
#
|
|
814
|
+
# * A NuGet package does not contain a corresponding component, so NuGet
|
|
815
|
+
# packages do not have a namespace.
|
|
816
|
+
#
|
|
805
817
|
# @option params [required, String] :package
|
|
806
818
|
# The name of the package with the versions to delete.
|
|
807
819
|
#
|
|
@@ -834,7 +846,7 @@ module Aws::CodeArtifact
|
|
|
834
846
|
# domain: "DomainName", # required
|
|
835
847
|
# domain_owner: "AccountId",
|
|
836
848
|
# repository: "RepositoryName", # required
|
|
837
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
849
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
838
850
|
# namespace: "PackageNamespace",
|
|
839
851
|
# package: "PackageName", # required
|
|
840
852
|
# versions: ["PackageVersion"], # required
|
|
@@ -895,7 +907,7 @@ module Aws::CodeArtifact
|
|
|
895
907
|
# resp.repository.upstreams[0].repository_name #=> String
|
|
896
908
|
# resp.repository.external_connections #=> Array
|
|
897
909
|
# resp.repository.external_connections[0].external_connection_name #=> String
|
|
898
|
-
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven"
|
|
910
|
+
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget"
|
|
899
911
|
# resp.repository.external_connections[0].status #=> String, one of "Available"
|
|
900
912
|
#
|
|
901
913
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/DeleteRepository AWS API Documentation
|
|
@@ -1036,6 +1048,8 @@ module Aws::CodeArtifact
|
|
|
1036
1048
|
#
|
|
1037
1049
|
# * `maven`
|
|
1038
1050
|
#
|
|
1051
|
+
# * `nuget`
|
|
1052
|
+
#
|
|
1039
1053
|
# @option params [String] :namespace
|
|
1040
1054
|
# The namespace of the package. The package component that specifies its
|
|
1041
1055
|
# namespace depends on its type. For example:
|
|
@@ -1047,6 +1061,9 @@ module Aws::CodeArtifact
|
|
|
1047
1061
|
# * A Python package does not contain a corresponding component, so
|
|
1048
1062
|
# Python packages do not have a namespace.
|
|
1049
1063
|
#
|
|
1064
|
+
# * A NuGet package does not contain a corresponding component, so NuGet
|
|
1065
|
+
# packages do not have a namespace.
|
|
1066
|
+
#
|
|
1050
1067
|
# @option params [required, String] :package
|
|
1051
1068
|
# The name of the requested package version.
|
|
1052
1069
|
#
|
|
@@ -1063,7 +1080,7 @@ module Aws::CodeArtifact
|
|
|
1063
1080
|
# domain: "DomainName", # required
|
|
1064
1081
|
# domain_owner: "AccountId",
|
|
1065
1082
|
# repository: "RepositoryName", # required
|
|
1066
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
1083
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
1067
1084
|
# namespace: "PackageNamespace",
|
|
1068
1085
|
# package: "PackageName", # required
|
|
1069
1086
|
# package_version: "PackageVersion", # required
|
|
@@ -1071,7 +1088,7 @@ module Aws::CodeArtifact
|
|
|
1071
1088
|
#
|
|
1072
1089
|
# @example Response structure
|
|
1073
1090
|
#
|
|
1074
|
-
# resp.package_version.format #=> String, one of "npm", "pypi", "maven"
|
|
1091
|
+
# resp.package_version.format #=> String, one of "npm", "pypi", "maven", "nuget"
|
|
1075
1092
|
# resp.package_version.namespace #=> String
|
|
1076
1093
|
# resp.package_version.package_name #=> String
|
|
1077
1094
|
# resp.package_version.display_name #=> String
|
|
@@ -1132,7 +1149,7 @@ module Aws::CodeArtifact
|
|
|
1132
1149
|
# resp.repository.upstreams[0].repository_name #=> String
|
|
1133
1150
|
# resp.repository.external_connections #=> Array
|
|
1134
1151
|
# resp.repository.external_connections[0].external_connection_name #=> String
|
|
1135
|
-
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven"
|
|
1152
|
+
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget"
|
|
1136
1153
|
# resp.repository.external_connections[0].status #=> String, one of "Available"
|
|
1137
1154
|
#
|
|
1138
1155
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/DescribeRepository AWS API Documentation
|
|
@@ -1186,7 +1203,7 @@ module Aws::CodeArtifact
|
|
|
1186
1203
|
# resp.repository.upstreams[0].repository_name #=> String
|
|
1187
1204
|
# resp.repository.external_connections #=> Array
|
|
1188
1205
|
# resp.repository.external_connections[0].external_connection_name #=> String
|
|
1189
|
-
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven"
|
|
1206
|
+
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget"
|
|
1190
1207
|
# resp.repository.external_connections[0].status #=> String, one of "Available"
|
|
1191
1208
|
#
|
|
1192
1209
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/DisassociateExternalConnection AWS API Documentation
|
|
@@ -1237,6 +1254,8 @@ module Aws::CodeArtifact
|
|
|
1237
1254
|
#
|
|
1238
1255
|
# * `maven`
|
|
1239
1256
|
#
|
|
1257
|
+
# * `nuget`
|
|
1258
|
+
#
|
|
1240
1259
|
# @option params [String] :namespace
|
|
1241
1260
|
# The namespace of the package. The package component that specifies its
|
|
1242
1261
|
# namespace depends on its type. For example:
|
|
@@ -1248,6 +1267,9 @@ module Aws::CodeArtifact
|
|
|
1248
1267
|
# * A Python package does not contain a corresponding component, so
|
|
1249
1268
|
# Python packages do not have a namespace.
|
|
1250
1269
|
#
|
|
1270
|
+
# * A NuGet package does not contain a corresponding component, so NuGet
|
|
1271
|
+
# packages do not have a namespace.
|
|
1272
|
+
#
|
|
1251
1273
|
# @option params [required, String] :package
|
|
1252
1274
|
# The name of the package with the versions you want to dispose.
|
|
1253
1275
|
#
|
|
@@ -1282,7 +1304,7 @@ module Aws::CodeArtifact
|
|
|
1282
1304
|
# domain: "DomainName", # required
|
|
1283
1305
|
# domain_owner: "AccountId",
|
|
1284
1306
|
# repository: "RepositoryName", # required
|
|
1285
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
1307
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
1286
1308
|
# namespace: "PackageNamespace",
|
|
1287
1309
|
# package: "PackageName", # required
|
|
1288
1310
|
# versions: ["PackageVersion"], # required
|
|
@@ -1455,6 +1477,8 @@ module Aws::CodeArtifact
|
|
|
1455
1477
|
#
|
|
1456
1478
|
# * `maven`
|
|
1457
1479
|
#
|
|
1480
|
+
# * `nuget`
|
|
1481
|
+
#
|
|
1458
1482
|
# @option params [String] :namespace
|
|
1459
1483
|
# The namespace of the package. The package component that specifies its
|
|
1460
1484
|
# namespace depends on its type. For example:
|
|
@@ -1466,6 +1490,9 @@ module Aws::CodeArtifact
|
|
|
1466
1490
|
# * A Python package does not contain a corresponding component, so
|
|
1467
1491
|
# Python packages do not have a namespace.
|
|
1468
1492
|
#
|
|
1493
|
+
# * A NuGet package does not contain a corresponding component, so NuGet
|
|
1494
|
+
# packages do not have a namespace.
|
|
1495
|
+
#
|
|
1469
1496
|
# @option params [required, String] :package
|
|
1470
1497
|
# The name of the package that contains the requested asset.
|
|
1471
1498
|
#
|
|
@@ -1492,7 +1519,7 @@ module Aws::CodeArtifact
|
|
|
1492
1519
|
# domain: "DomainName", # required
|
|
1493
1520
|
# domain_owner: "AccountId",
|
|
1494
1521
|
# repository: "RepositoryName", # required
|
|
1495
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
1522
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
1496
1523
|
# namespace: "PackageNamespace",
|
|
1497
1524
|
# package: "PackageName", # required
|
|
1498
1525
|
# package_version: "PackageVersion", # required
|
|
@@ -1546,6 +1573,8 @@ module Aws::CodeArtifact
|
|
|
1546
1573
|
#
|
|
1547
1574
|
# * `maven`
|
|
1548
1575
|
#
|
|
1576
|
+
# * `nuget`
|
|
1577
|
+
#
|
|
1549
1578
|
# @option params [String] :namespace
|
|
1550
1579
|
# The namespace of the package. The package component that specifies its
|
|
1551
1580
|
# namespace depends on its type. For example:
|
|
@@ -1557,6 +1586,9 @@ module Aws::CodeArtifact
|
|
|
1557
1586
|
# * A Python package does not contain a corresponding component, so
|
|
1558
1587
|
# Python packages do not have a namespace.
|
|
1559
1588
|
#
|
|
1589
|
+
# * A NuGet package does not contain a corresponding component, so NuGet
|
|
1590
|
+
# packages do not have a namespace.
|
|
1591
|
+
#
|
|
1560
1592
|
# @option params [required, String] :package
|
|
1561
1593
|
# The name of the package version that contains the requested readme
|
|
1562
1594
|
# file.
|
|
@@ -1579,7 +1611,7 @@ module Aws::CodeArtifact
|
|
|
1579
1611
|
# domain: "DomainName", # required
|
|
1580
1612
|
# domain_owner: "AccountId",
|
|
1581
1613
|
# repository: "RepositoryName", # required
|
|
1582
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
1614
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
1583
1615
|
# namespace: "PackageNamespace",
|
|
1584
1616
|
# package: "PackageName", # required
|
|
1585
1617
|
# package_version: "PackageVersion", # required
|
|
@@ -1587,7 +1619,7 @@ module Aws::CodeArtifact
|
|
|
1587
1619
|
#
|
|
1588
1620
|
# @example Response structure
|
|
1589
1621
|
#
|
|
1590
|
-
# resp.format #=> String, one of "npm", "pypi", "maven"
|
|
1622
|
+
# resp.format #=> String, one of "npm", "pypi", "maven", "nuget"
|
|
1591
1623
|
# resp.namespace #=> String
|
|
1592
1624
|
# resp.package #=> String
|
|
1593
1625
|
# resp.version #=> String
|
|
@@ -1612,6 +1644,8 @@ module Aws::CodeArtifact
|
|
|
1612
1644
|
#
|
|
1613
1645
|
# * `maven`
|
|
1614
1646
|
#
|
|
1647
|
+
# * `nuget`
|
|
1648
|
+
#
|
|
1615
1649
|
# @option params [required, String] :domain
|
|
1616
1650
|
# The name of the domain that contains the repository.
|
|
1617
1651
|
#
|
|
@@ -1632,6 +1666,8 @@ module Aws::CodeArtifact
|
|
|
1632
1666
|
#
|
|
1633
1667
|
# * `maven`
|
|
1634
1668
|
#
|
|
1669
|
+
# * `nuget`
|
|
1670
|
+
#
|
|
1635
1671
|
# @return [Types::GetRepositoryEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1636
1672
|
#
|
|
1637
1673
|
# * {Types::GetRepositoryEndpointResult#repository_endpoint #repository_endpoint} => String
|
|
@@ -1642,7 +1678,7 @@ module Aws::CodeArtifact
|
|
|
1642
1678
|
# domain: "DomainName", # required
|
|
1643
1679
|
# domain_owner: "AccountId",
|
|
1644
1680
|
# repository: "RepositoryName", # required
|
|
1645
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
1681
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
1646
1682
|
# })
|
|
1647
1683
|
#
|
|
1648
1684
|
# @example Response structure
|
|
@@ -1775,6 +1811,8 @@ module Aws::CodeArtifact
|
|
|
1775
1811
|
# * `maven`\: A Maven package that contains compiled code in a
|
|
1776
1812
|
# distributable format, such as a JAR file.
|
|
1777
1813
|
#
|
|
1814
|
+
# * `nuget`\: A NuGet package.
|
|
1815
|
+
#
|
|
1778
1816
|
# @option params [String] :namespace
|
|
1779
1817
|
# The namespace of the package. The package component that specifies its
|
|
1780
1818
|
# namespace depends on its type. For example:
|
|
@@ -1786,6 +1824,9 @@ module Aws::CodeArtifact
|
|
|
1786
1824
|
# * A Python package does not contain a corresponding component, so
|
|
1787
1825
|
# Python packages do not have a namespace.
|
|
1788
1826
|
#
|
|
1827
|
+
# * A NuGet package does not contain a corresponding component, so NuGet
|
|
1828
|
+
# packages do not have a namespace.
|
|
1829
|
+
#
|
|
1789
1830
|
# @option params [required, String] :package
|
|
1790
1831
|
# The name of the package that contains the returned package version
|
|
1791
1832
|
# assets.
|
|
@@ -1819,7 +1860,7 @@ module Aws::CodeArtifact
|
|
|
1819
1860
|
# domain: "DomainName", # required
|
|
1820
1861
|
# domain_owner: "AccountId",
|
|
1821
1862
|
# repository: "RepositoryName", # required
|
|
1822
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
1863
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
1823
1864
|
# namespace: "PackageNamespace",
|
|
1824
1865
|
# package: "PackageName", # required
|
|
1825
1866
|
# package_version: "PackageVersion", # required
|
|
@@ -1829,7 +1870,7 @@ module Aws::CodeArtifact
|
|
|
1829
1870
|
#
|
|
1830
1871
|
# @example Response structure
|
|
1831
1872
|
#
|
|
1832
|
-
# resp.format #=> String, one of "npm", "pypi", "maven"
|
|
1873
|
+
# resp.format #=> String, one of "npm", "pypi", "maven", "nuget"
|
|
1833
1874
|
# resp.namespace #=> String
|
|
1834
1875
|
# resp.package #=> String
|
|
1835
1876
|
# resp.version #=> String
|
|
@@ -1885,6 +1926,8 @@ module Aws::CodeArtifact
|
|
|
1885
1926
|
# * `maven`\: A Maven package that contains compiled code in a
|
|
1886
1927
|
# distributable format, such as a JAR file.
|
|
1887
1928
|
#
|
|
1929
|
+
# * `nuget`\: A NuGet package.
|
|
1930
|
+
#
|
|
1888
1931
|
# @option params [String] :namespace
|
|
1889
1932
|
# The namespace of the package. The package component that specifies its
|
|
1890
1933
|
# namespace depends on its type. For example:
|
|
@@ -1896,6 +1939,9 @@ module Aws::CodeArtifact
|
|
|
1896
1939
|
# * A Python package does not contain a corresponding component, so
|
|
1897
1940
|
# Python packages do not have a namespace.
|
|
1898
1941
|
#
|
|
1942
|
+
# * A NuGet package does not contain a corresponding component, so NuGet
|
|
1943
|
+
# packages do not have a namespace.
|
|
1944
|
+
#
|
|
1899
1945
|
# @option params [required, String] :package
|
|
1900
1946
|
# The name of the package versions' package.
|
|
1901
1947
|
#
|
|
@@ -1923,7 +1969,7 @@ module Aws::CodeArtifact
|
|
|
1923
1969
|
# domain: "DomainName", # required
|
|
1924
1970
|
# domain_owner: "AccountId",
|
|
1925
1971
|
# repository: "RepositoryName", # required
|
|
1926
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
1972
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
1927
1973
|
# namespace: "PackageNamespace",
|
|
1928
1974
|
# package: "PackageName", # required
|
|
1929
1975
|
# package_version: "PackageVersion", # required
|
|
@@ -1932,7 +1978,7 @@ module Aws::CodeArtifact
|
|
|
1932
1978
|
#
|
|
1933
1979
|
# @example Response structure
|
|
1934
1980
|
#
|
|
1935
|
-
# resp.format #=> String, one of "npm", "pypi", "maven"
|
|
1981
|
+
# resp.format #=> String, one of "npm", "pypi", "maven", "nuget"
|
|
1936
1982
|
# resp.namespace #=> String
|
|
1937
1983
|
# resp.package #=> String
|
|
1938
1984
|
# resp.version #=> String
|
|
@@ -1981,6 +2027,8 @@ module Aws::CodeArtifact
|
|
|
1981
2027
|
# * `maven`\: A Maven package that contains compiled code in a
|
|
1982
2028
|
# distributable format, such as a JAR file.
|
|
1983
2029
|
#
|
|
2030
|
+
# * `nuget`\: A NuGet package.
|
|
2031
|
+
#
|
|
1984
2032
|
# @option params [String] :namespace
|
|
1985
2033
|
# The namespace of the package. The package component that specifies its
|
|
1986
2034
|
# namespace depends on its type. For example:
|
|
@@ -1992,6 +2040,9 @@ module Aws::CodeArtifact
|
|
|
1992
2040
|
# * A Python package does not contain a corresponding component, so
|
|
1993
2041
|
# Python packages do not have a namespace.
|
|
1994
2042
|
#
|
|
2043
|
+
# * A NuGet package does not contain a corresponding component, so NuGet
|
|
2044
|
+
# packages do not have a namespace.
|
|
2045
|
+
#
|
|
1995
2046
|
# @option params [required, String] :package
|
|
1996
2047
|
# The name of the package for which you want to return a list of package
|
|
1997
2048
|
# versions.
|
|
@@ -2038,7 +2089,7 @@ module Aws::CodeArtifact
|
|
|
2038
2089
|
# domain: "DomainName", # required
|
|
2039
2090
|
# domain_owner: "AccountId",
|
|
2040
2091
|
# repository: "RepositoryName", # required
|
|
2041
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
2092
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
2042
2093
|
# namespace: "PackageNamespace",
|
|
2043
2094
|
# package: "PackageName", # required
|
|
2044
2095
|
# status: "Published", # accepts Published, Unfinished, Unlisted, Archived, Disposed, Deleted
|
|
@@ -2050,7 +2101,7 @@ module Aws::CodeArtifact
|
|
|
2050
2101
|
# @example Response structure
|
|
2051
2102
|
#
|
|
2052
2103
|
# resp.default_display_version #=> String
|
|
2053
|
-
# resp.format #=> String, one of "npm", "pypi", "maven"
|
|
2104
|
+
# resp.format #=> String, one of "npm", "pypi", "maven", "nuget"
|
|
2054
2105
|
# resp.namespace #=> String
|
|
2055
2106
|
# resp.package #=> String
|
|
2056
2107
|
# resp.versions #=> Array
|
|
@@ -2096,6 +2147,8 @@ module Aws::CodeArtifact
|
|
|
2096
2147
|
# * `maven`\: A Maven package that contains compiled code in a
|
|
2097
2148
|
# distributable format, such as a JAR file.
|
|
2098
2149
|
#
|
|
2150
|
+
# * `nuget`\: A NuGet package.
|
|
2151
|
+
#
|
|
2099
2152
|
# @option params [String] :namespace
|
|
2100
2153
|
# The namespace of the package. The package component that specifies its
|
|
2101
2154
|
# namespace depends on its type. For example:
|
|
@@ -2107,9 +2160,12 @@ module Aws::CodeArtifact
|
|
|
2107
2160
|
# * A Python package does not contain a corresponding component, so
|
|
2108
2161
|
# Python packages do not have a namespace.
|
|
2109
2162
|
#
|
|
2163
|
+
# * A NuGet package does not contain a corresponding component, so NuGet
|
|
2164
|
+
# packages do not have a namespace.
|
|
2165
|
+
#
|
|
2110
2166
|
# @option params [String] :package_prefix
|
|
2111
|
-
# A prefix used to filter returned
|
|
2112
|
-
#
|
|
2167
|
+
# A prefix used to filter returned packages. Only packages with names
|
|
2168
|
+
# that start with `packagePrefix` are returned.
|
|
2113
2169
|
#
|
|
2114
2170
|
# @option params [Integer] :max_results
|
|
2115
2171
|
# The maximum number of results to return per page.
|
|
@@ -2132,7 +2188,7 @@ module Aws::CodeArtifact
|
|
|
2132
2188
|
# domain: "DomainName", # required
|
|
2133
2189
|
# domain_owner: "AccountId",
|
|
2134
2190
|
# repository: "RepositoryName", # required
|
|
2135
|
-
# format: "npm", # accepts npm, pypi, maven
|
|
2191
|
+
# format: "npm", # accepts npm, pypi, maven, nuget
|
|
2136
2192
|
# namespace: "PackageNamespace",
|
|
2137
2193
|
# package_prefix: "PackageName",
|
|
2138
2194
|
# max_results: 1,
|
|
@@ -2142,7 +2198,7 @@ module Aws::CodeArtifact
|
|
|
2142
2198
|
# @example Response structure
|
|
2143
2199
|
#
|
|
2144
2200
|
# resp.packages #=> Array
|
|
2145
|
-
# resp.packages[0].format #=> String, one of "npm", "pypi", "maven"
|
|
2201
|
+
# resp.packages[0].format #=> String, one of "npm", "pypi", "maven", "nuget"
|
|
2146
2202
|
# resp.packages[0].namespace #=> String
|
|
2147
2203
|
# resp.packages[0].package #=> String
|
|
2148
2204
|
# resp.next_token #=> String
|
|
@@ -2426,8 +2482,8 @@ module Aws::CodeArtifact
|
|
|
2426
2482
|
# Adds or updates tags for a resource in AWS CodeArtifact.
|
|
2427
2483
|
#
|
|
2428
2484
|
# @option params [required, String] :resource_arn
|
|
2429
|
-
# The Amazon Resource Name (ARN) of the resource
|
|
2430
|
-
#
|
|
2485
|
+
# The Amazon Resource Name (ARN) of the resource that you want to add or
|
|
2486
|
+
# update tags for.
|
|
2431
2487
|
#
|
|
2432
2488
|
# @option params [required, Array<Types::Tag>] :tags
|
|
2433
2489
|
# The tags you want to modify or add to the resource.
|
|
@@ -2458,8 +2514,8 @@ module Aws::CodeArtifact
|
|
|
2458
2514
|
# Removes tags from a resource in AWS CodeArtifact.
|
|
2459
2515
|
#
|
|
2460
2516
|
# @option params [required, String] :resource_arn
|
|
2461
|
-
# The Amazon Resource Name (ARN) of the resource
|
|
2462
|
-
#
|
|
2517
|
+
# The Amazon Resource Name (ARN) of the resource that you want to remove
|
|
2518
|
+
# tags from.
|
|
2463
2519
|
#
|
|
2464
2520
|
# @option params [required, Array<String>] :tag_keys
|
|
2465
2521
|
# The tag key for each tag that you want to remove from the resource.
|
|
@@ -2506,6 +2562,8 @@ module Aws::CodeArtifact
|
|
|
2506
2562
|
#
|
|
2507
2563
|
# * `maven`
|
|
2508
2564
|
#
|
|
2565
|
+
# * `nuget`
|
|
2566
|
+
#
|
|
2509
2567
|
# @option params [String] :namespace
|
|
2510
2568
|
# The namespace of the package. The package component that specifies its
|
|
2511
2569
|
# namespace depends on its type. For example:
|
|
@@ -2517,6 +2575,9 @@ module Aws::CodeArtifact
|
|
|
2517
2575
|
# * A Python package does not contain a corresponding component, so
|
|
2518
2576
|
# Python packages do not have a namespace.
|
|
2519
2577
|
#
|
|
2578
|
+
# * A NuGet package does not contain a corresponding component, so NuGet
|
|
2579
|
+
# packages do not have a namespace.
|
|
2580
|
+
#
|
|
2520
2581
|
# @option params [required, String] :package
|
|
2521
2582
|
# The name of the package with the version statuses to update.
|
|
2522
2583
|
#
|
|
@@ -2549,7 +2610,7 @@ module Aws::CodeArtifact
|
|
|
2549
2610
|
# domain: "DomainName", # required
|
|
2550
2611
|
# domain_owner: "AccountId",
|
|
2551
2612
|
# repository: "RepositoryName", # required
|
|
2552
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
2613
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
2553
2614
|
# namespace: "PackageNamespace",
|
|
2554
2615
|
# package: "PackageName", # required
|
|
2555
2616
|
# versions: ["PackageVersion"], # required
|
|
@@ -2634,7 +2695,7 @@ module Aws::CodeArtifact
|
|
|
2634
2695
|
# resp.repository.upstreams[0].repository_name #=> String
|
|
2635
2696
|
# resp.repository.external_connections #=> Array
|
|
2636
2697
|
# resp.repository.external_connections[0].external_connection_name #=> String
|
|
2637
|
-
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven"
|
|
2698
|
+
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget"
|
|
2638
2699
|
# resp.repository.external_connections[0].status #=> String, one of "Available"
|
|
2639
2700
|
#
|
|
2640
2701
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/UpdateRepository AWS API Documentation
|
|
@@ -2659,7 +2720,7 @@ module Aws::CodeArtifact
|
|
|
2659
2720
|
params: params,
|
|
2660
2721
|
config: config)
|
|
2661
2722
|
context[:gem_name] = 'aws-sdk-codeartifact'
|
|
2662
|
-
context[:gem_version] = '1.
|
|
2723
|
+
context[:gem_version] = '1.6.0'
|
|
2663
2724
|
Seahorse::Client::Request.new(handlers, context)
|
|
2664
2725
|
end
|
|
2665
2726
|
|
|
@@ -88,6 +88,8 @@ module Aws::CodeArtifact
|
|
|
88
88
|
#
|
|
89
89
|
# * `public:maven-commonsware` - for the CommonsWare Android
|
|
90
90
|
# repository.
|
|
91
|
+
#
|
|
92
|
+
# * `public:nuget-org` - for the NuGet Gallery.
|
|
91
93
|
# @return [String]
|
|
92
94
|
#
|
|
93
95
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/AssociateExternalConnectionRequest AWS API Documentation
|
|
@@ -145,7 +147,7 @@ module Aws::CodeArtifact
|
|
|
145
147
|
# domain_owner: "AccountId",
|
|
146
148
|
# source_repository: "RepositoryName", # required
|
|
147
149
|
# destination_repository: "RepositoryName", # required
|
|
148
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
150
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
149
151
|
# namespace: "PackageNamespace",
|
|
150
152
|
# package: "PackageName", # required
|
|
151
153
|
# versions: ["PackageVersion"],
|
|
@@ -185,6 +187,8 @@ module Aws::CodeArtifact
|
|
|
185
187
|
#
|
|
186
188
|
# * `maven`\: A Maven package that contains compiled code in a
|
|
187
189
|
# distributable format, such as a JAR file.
|
|
190
|
+
#
|
|
191
|
+
# * `nuget`\: A NuGet package.
|
|
188
192
|
# @return [String]
|
|
189
193
|
#
|
|
190
194
|
# @!attribute [rw] namespace
|
|
@@ -197,6 +201,9 @@ module Aws::CodeArtifact
|
|
|
197
201
|
#
|
|
198
202
|
# * A Python package does not contain a corresponding component, so
|
|
199
203
|
# Python packages do not have a namespace.
|
|
204
|
+
#
|
|
205
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
206
|
+
# NuGet packages do not have a namespace.
|
|
200
207
|
# @return [String]
|
|
201
208
|
#
|
|
202
209
|
# @!attribute [rw] package
|
|
@@ -537,7 +544,7 @@ module Aws::CodeArtifact
|
|
|
537
544
|
# domain: "DomainName", # required
|
|
538
545
|
# domain_owner: "AccountId",
|
|
539
546
|
# repository: "RepositoryName", # required
|
|
540
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
547
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
541
548
|
# namespace: "PackageNamespace",
|
|
542
549
|
# package: "PackageName", # required
|
|
543
550
|
# versions: ["PackageVersion"], # required
|
|
@@ -566,6 +573,8 @@ module Aws::CodeArtifact
|
|
|
566
573
|
# * `pypi`
|
|
567
574
|
#
|
|
568
575
|
# * `maven`
|
|
576
|
+
#
|
|
577
|
+
# * `nuget`
|
|
569
578
|
# @return [String]
|
|
570
579
|
#
|
|
571
580
|
# @!attribute [rw] namespace
|
|
@@ -578,6 +587,9 @@ module Aws::CodeArtifact
|
|
|
578
587
|
#
|
|
579
588
|
# * A Python package does not contain a corresponding component, so
|
|
580
589
|
# Python packages do not have a namespace.
|
|
590
|
+
#
|
|
591
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
592
|
+
# NuGet packages do not have a namespace.
|
|
581
593
|
# @return [String]
|
|
582
594
|
#
|
|
583
595
|
# @!attribute [rw] package
|
|
@@ -796,7 +808,7 @@ module Aws::CodeArtifact
|
|
|
796
808
|
# domain: "DomainName", # required
|
|
797
809
|
# domain_owner: "AccountId",
|
|
798
810
|
# repository: "RepositoryName", # required
|
|
799
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
811
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
800
812
|
# namespace: "PackageNamespace",
|
|
801
813
|
# package: "PackageName", # required
|
|
802
814
|
# package_version: "PackageVersion", # required
|
|
@@ -825,6 +837,8 @@ module Aws::CodeArtifact
|
|
|
825
837
|
# * `pypi`
|
|
826
838
|
#
|
|
827
839
|
# * `maven`
|
|
840
|
+
#
|
|
841
|
+
# * `nuget`
|
|
828
842
|
# @return [String]
|
|
829
843
|
#
|
|
830
844
|
# @!attribute [rw] namespace
|
|
@@ -837,6 +851,9 @@ module Aws::CodeArtifact
|
|
|
837
851
|
#
|
|
838
852
|
# * A Python package does not contain a corresponding component, so
|
|
839
853
|
# Python packages do not have a namespace.
|
|
854
|
+
#
|
|
855
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
856
|
+
# NuGet packages do not have a namespace.
|
|
840
857
|
# @return [String]
|
|
841
858
|
#
|
|
842
859
|
# @!attribute [rw] package
|
|
@@ -979,7 +996,7 @@ module Aws::CodeArtifact
|
|
|
979
996
|
# domain: "DomainName", # required
|
|
980
997
|
# domain_owner: "AccountId",
|
|
981
998
|
# repository: "RepositoryName", # required
|
|
982
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
999
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
983
1000
|
# namespace: "PackageNamespace",
|
|
984
1001
|
# package: "PackageName", # required
|
|
985
1002
|
# versions: ["PackageVersion"], # required
|
|
@@ -1013,6 +1030,8 @@ module Aws::CodeArtifact
|
|
|
1013
1030
|
# * `pypi`
|
|
1014
1031
|
#
|
|
1015
1032
|
# * `maven`
|
|
1033
|
+
#
|
|
1034
|
+
# * `nuget`
|
|
1016
1035
|
# @return [String]
|
|
1017
1036
|
#
|
|
1018
1037
|
# @!attribute [rw] namespace
|
|
@@ -1025,6 +1044,9 @@ module Aws::CodeArtifact
|
|
|
1025
1044
|
#
|
|
1026
1045
|
# * A Python package does not contain a corresponding component, so
|
|
1027
1046
|
# Python packages do not have a namespace.
|
|
1047
|
+
#
|
|
1048
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
1049
|
+
# NuGet packages do not have a namespace.
|
|
1028
1050
|
# @return [String]
|
|
1029
1051
|
#
|
|
1030
1052
|
# @!attribute [rw] package
|
|
@@ -1315,7 +1337,7 @@ module Aws::CodeArtifact
|
|
|
1315
1337
|
# domain: "DomainName", # required
|
|
1316
1338
|
# domain_owner: "AccountId",
|
|
1317
1339
|
# repository: "RepositoryName", # required
|
|
1318
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
1340
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
1319
1341
|
# namespace: "PackageNamespace",
|
|
1320
1342
|
# package: "PackageName", # required
|
|
1321
1343
|
# package_version: "PackageVersion", # required
|
|
@@ -1347,6 +1369,8 @@ module Aws::CodeArtifact
|
|
|
1347
1369
|
# * `pypi`
|
|
1348
1370
|
#
|
|
1349
1371
|
# * `maven`
|
|
1372
|
+
#
|
|
1373
|
+
# * `nuget`
|
|
1350
1374
|
# @return [String]
|
|
1351
1375
|
#
|
|
1352
1376
|
# @!attribute [rw] namespace
|
|
@@ -1359,6 +1383,9 @@ module Aws::CodeArtifact
|
|
|
1359
1383
|
#
|
|
1360
1384
|
# * A Python package does not contain a corresponding component, so
|
|
1361
1385
|
# Python packages do not have a namespace.
|
|
1386
|
+
#
|
|
1387
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
1388
|
+
# NuGet packages do not have a namespace.
|
|
1362
1389
|
# @return [String]
|
|
1363
1390
|
#
|
|
1364
1391
|
# @!attribute [rw] package
|
|
@@ -1429,7 +1456,7 @@ module Aws::CodeArtifact
|
|
|
1429
1456
|
# domain: "DomainName", # required
|
|
1430
1457
|
# domain_owner: "AccountId",
|
|
1431
1458
|
# repository: "RepositoryName", # required
|
|
1432
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
1459
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
1433
1460
|
# namespace: "PackageNamespace",
|
|
1434
1461
|
# package: "PackageName", # required
|
|
1435
1462
|
# package_version: "PackageVersion", # required
|
|
@@ -1459,6 +1486,8 @@ module Aws::CodeArtifact
|
|
|
1459
1486
|
# * `pypi`
|
|
1460
1487
|
#
|
|
1461
1488
|
# * `maven`
|
|
1489
|
+
#
|
|
1490
|
+
# * `nuget`
|
|
1462
1491
|
# @return [String]
|
|
1463
1492
|
#
|
|
1464
1493
|
# @!attribute [rw] namespace
|
|
@@ -1471,6 +1500,9 @@ module Aws::CodeArtifact
|
|
|
1471
1500
|
#
|
|
1472
1501
|
# * A Python package does not contain a corresponding component, so
|
|
1473
1502
|
# Python packages do not have a namespace.
|
|
1503
|
+
#
|
|
1504
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
1505
|
+
# NuGet packages do not have a namespace.
|
|
1474
1506
|
# @return [String]
|
|
1475
1507
|
#
|
|
1476
1508
|
# @!attribute [rw] package
|
|
@@ -1505,6 +1537,8 @@ module Aws::CodeArtifact
|
|
|
1505
1537
|
# * `pypi`
|
|
1506
1538
|
#
|
|
1507
1539
|
# * `maven`
|
|
1540
|
+
#
|
|
1541
|
+
# * `nuget`
|
|
1508
1542
|
# @return [String]
|
|
1509
1543
|
#
|
|
1510
1544
|
# @!attribute [rw] namespace
|
|
@@ -1517,6 +1551,9 @@ module Aws::CodeArtifact
|
|
|
1517
1551
|
#
|
|
1518
1552
|
# * A Python package does not contain a corresponding component, so
|
|
1519
1553
|
# Python packages do not have a namespace.
|
|
1554
|
+
#
|
|
1555
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
1556
|
+
# NuGet packages do not have a namespace.
|
|
1520
1557
|
# @return [String]
|
|
1521
1558
|
#
|
|
1522
1559
|
# @!attribute [rw] package
|
|
@@ -1555,7 +1592,7 @@ module Aws::CodeArtifact
|
|
|
1555
1592
|
# domain: "DomainName", # required
|
|
1556
1593
|
# domain_owner: "AccountId",
|
|
1557
1594
|
# repository: "RepositoryName", # required
|
|
1558
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
1595
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
1559
1596
|
# }
|
|
1560
1597
|
#
|
|
1561
1598
|
# @!attribute [rw] domain
|
|
@@ -1580,6 +1617,8 @@ module Aws::CodeArtifact
|
|
|
1580
1617
|
# * `pypi`
|
|
1581
1618
|
#
|
|
1582
1619
|
# * `maven`
|
|
1620
|
+
#
|
|
1621
|
+
# * `nuget`
|
|
1583
1622
|
# @return [String]
|
|
1584
1623
|
#
|
|
1585
1624
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/GetRepositoryEndpointRequest AWS API Documentation
|
|
@@ -1737,7 +1776,7 @@ module Aws::CodeArtifact
|
|
|
1737
1776
|
# domain: "DomainName", # required
|
|
1738
1777
|
# domain_owner: "AccountId",
|
|
1739
1778
|
# repository: "RepositoryName", # required
|
|
1740
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
1779
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
1741
1780
|
# namespace: "PackageNamespace",
|
|
1742
1781
|
# package: "PackageName", # required
|
|
1743
1782
|
# package_version: "PackageVersion", # required
|
|
@@ -1770,6 +1809,8 @@ module Aws::CodeArtifact
|
|
|
1770
1809
|
#
|
|
1771
1810
|
# * `maven`\: A Maven package that contains compiled code in a
|
|
1772
1811
|
# distributable format, such as a JAR file.
|
|
1812
|
+
#
|
|
1813
|
+
# * `nuget`\: A NuGet package.
|
|
1773
1814
|
# @return [String]
|
|
1774
1815
|
#
|
|
1775
1816
|
# @!attribute [rw] namespace
|
|
@@ -1782,6 +1823,9 @@ module Aws::CodeArtifact
|
|
|
1782
1823
|
#
|
|
1783
1824
|
# * A Python package does not contain a corresponding component, so
|
|
1784
1825
|
# Python packages do not have a namespace.
|
|
1826
|
+
#
|
|
1827
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
1828
|
+
# NuGet packages do not have a namespace.
|
|
1785
1829
|
# @return [String]
|
|
1786
1830
|
#
|
|
1787
1831
|
# @!attribute [rw] package
|
|
@@ -1834,6 +1878,9 @@ module Aws::CodeArtifact
|
|
|
1834
1878
|
#
|
|
1835
1879
|
# * A Python package does not contain a corresponding component, so
|
|
1836
1880
|
# Python packages do not have a namespace.
|
|
1881
|
+
#
|
|
1882
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
1883
|
+
# NuGet packages do not have a namespace.
|
|
1837
1884
|
# @return [String]
|
|
1838
1885
|
#
|
|
1839
1886
|
# @!attribute [rw] package
|
|
@@ -1883,7 +1930,7 @@ module Aws::CodeArtifact
|
|
|
1883
1930
|
# domain: "DomainName", # required
|
|
1884
1931
|
# domain_owner: "AccountId",
|
|
1885
1932
|
# repository: "RepositoryName", # required
|
|
1886
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
1933
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
1887
1934
|
# namespace: "PackageNamespace",
|
|
1888
1935
|
# package: "PackageName", # required
|
|
1889
1936
|
# package_version: "PackageVersion", # required
|
|
@@ -1915,6 +1962,8 @@ module Aws::CodeArtifact
|
|
|
1915
1962
|
#
|
|
1916
1963
|
# * `maven`\: A Maven package that contains compiled code in a
|
|
1917
1964
|
# distributable format, such as a JAR file.
|
|
1965
|
+
#
|
|
1966
|
+
# * `nuget`\: A NuGet package.
|
|
1918
1967
|
# @return [String]
|
|
1919
1968
|
#
|
|
1920
1969
|
# @!attribute [rw] namespace
|
|
@@ -1927,6 +1976,9 @@ module Aws::CodeArtifact
|
|
|
1927
1976
|
#
|
|
1928
1977
|
# * A Python package does not contain a corresponding component, so
|
|
1929
1978
|
# Python packages do not have a namespace.
|
|
1979
|
+
#
|
|
1980
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
1981
|
+
# NuGet packages do not have a namespace.
|
|
1930
1982
|
# @return [String]
|
|
1931
1983
|
#
|
|
1932
1984
|
# @!attribute [rw] package
|
|
@@ -1967,6 +2019,8 @@ module Aws::CodeArtifact
|
|
|
1967
2019
|
# * `pypi`
|
|
1968
2020
|
#
|
|
1969
2021
|
# * `maven`
|
|
2022
|
+
#
|
|
2023
|
+
# * `nuget`
|
|
1970
2024
|
# @return [String]
|
|
1971
2025
|
#
|
|
1972
2026
|
# @!attribute [rw] namespace
|
|
@@ -1979,6 +2033,9 @@ module Aws::CodeArtifact
|
|
|
1979
2033
|
#
|
|
1980
2034
|
# * A Python package does not contain a corresponding component, so
|
|
1981
2035
|
# Python packages do not have a namespace.
|
|
2036
|
+
#
|
|
2037
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
2038
|
+
# NuGet packages do not have a namespace.
|
|
1982
2039
|
# @return [String]
|
|
1983
2040
|
#
|
|
1984
2041
|
# @!attribute [rw] package
|
|
@@ -2029,7 +2086,7 @@ module Aws::CodeArtifact
|
|
|
2029
2086
|
# domain: "DomainName", # required
|
|
2030
2087
|
# domain_owner: "AccountId",
|
|
2031
2088
|
# repository: "RepositoryName", # required
|
|
2032
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
2089
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
2033
2090
|
# namespace: "PackageNamespace",
|
|
2034
2091
|
# package: "PackageName", # required
|
|
2035
2092
|
# status: "Published", # accepts Published, Unfinished, Unlisted, Archived, Disposed, Deleted
|
|
@@ -2061,6 +2118,8 @@ module Aws::CodeArtifact
|
|
|
2061
2118
|
#
|
|
2062
2119
|
# * `maven`\: A Maven package that contains compiled code in a
|
|
2063
2120
|
# distributable format, such as a JAR file.
|
|
2121
|
+
#
|
|
2122
|
+
# * `nuget`\: A NuGet package.
|
|
2064
2123
|
# @return [String]
|
|
2065
2124
|
#
|
|
2066
2125
|
# @!attribute [rw] namespace
|
|
@@ -2073,6 +2132,9 @@ module Aws::CodeArtifact
|
|
|
2073
2132
|
#
|
|
2074
2133
|
# * A Python package does not contain a corresponding component, so
|
|
2075
2134
|
# Python packages do not have a namespace.
|
|
2135
|
+
#
|
|
2136
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
2137
|
+
# NuGet packages do not have a namespace.
|
|
2076
2138
|
# @return [String]
|
|
2077
2139
|
#
|
|
2078
2140
|
# @!attribute [rw] package
|
|
@@ -2146,6 +2208,8 @@ module Aws::CodeArtifact
|
|
|
2146
2208
|
# * `pypi`
|
|
2147
2209
|
#
|
|
2148
2210
|
# * `maven`
|
|
2211
|
+
#
|
|
2212
|
+
# * `nuget`
|
|
2149
2213
|
# @return [String]
|
|
2150
2214
|
#
|
|
2151
2215
|
# @!attribute [rw] namespace
|
|
@@ -2158,6 +2222,9 @@ module Aws::CodeArtifact
|
|
|
2158
2222
|
#
|
|
2159
2223
|
# * A Python package does not contain a corresponding component, so
|
|
2160
2224
|
# Python packages do not have a namespace.
|
|
2225
|
+
#
|
|
2226
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
2227
|
+
# NuGet packages do not have a namespace.
|
|
2161
2228
|
# @return [String]
|
|
2162
2229
|
#
|
|
2163
2230
|
# @!attribute [rw] package
|
|
@@ -2197,7 +2264,7 @@ module Aws::CodeArtifact
|
|
|
2197
2264
|
# domain: "DomainName", # required
|
|
2198
2265
|
# domain_owner: "AccountId",
|
|
2199
2266
|
# repository: "RepositoryName", # required
|
|
2200
|
-
# format: "npm", # accepts npm, pypi, maven
|
|
2267
|
+
# format: "npm", # accepts npm, pypi, maven, nuget
|
|
2201
2268
|
# namespace: "PackageNamespace",
|
|
2202
2269
|
# package_prefix: "PackageName",
|
|
2203
2270
|
# max_results: 1,
|
|
@@ -2227,6 +2294,8 @@ module Aws::CodeArtifact
|
|
|
2227
2294
|
#
|
|
2228
2295
|
# * `maven`\: A Maven package that contains compiled code in a
|
|
2229
2296
|
# distributable format, such as a JAR file.
|
|
2297
|
+
#
|
|
2298
|
+
# * `nuget`\: A NuGet package.
|
|
2230
2299
|
# @return [String]
|
|
2231
2300
|
#
|
|
2232
2301
|
# @!attribute [rw] namespace
|
|
@@ -2239,11 +2308,14 @@ module Aws::CodeArtifact
|
|
|
2239
2308
|
#
|
|
2240
2309
|
# * A Python package does not contain a corresponding component, so
|
|
2241
2310
|
# Python packages do not have a namespace.
|
|
2311
|
+
#
|
|
2312
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
2313
|
+
# NuGet packages do not have a namespace.
|
|
2242
2314
|
# @return [String]
|
|
2243
2315
|
#
|
|
2244
2316
|
# @!attribute [rw] package_prefix
|
|
2245
|
-
# A prefix used to filter returned
|
|
2246
|
-
#
|
|
2317
|
+
# A prefix used to filter returned packages. Only packages with names
|
|
2318
|
+
# that start with `packagePrefix` are returned.
|
|
2247
2319
|
# @return [String]
|
|
2248
2320
|
#
|
|
2249
2321
|
# @!attribute [rw] max_results
|
|
@@ -2466,6 +2538,9 @@ module Aws::CodeArtifact
|
|
|
2466
2538
|
#
|
|
2467
2539
|
# * A Python package does not contain a corresponding component, so
|
|
2468
2540
|
# Python packages do not have a namespace.
|
|
2541
|
+
#
|
|
2542
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
2543
|
+
# NuGet packages do not have a namespace.
|
|
2469
2544
|
# @return [String]
|
|
2470
2545
|
#
|
|
2471
2546
|
# @!attribute [rw] package
|
|
@@ -2512,6 +2587,8 @@ module Aws::CodeArtifact
|
|
|
2512
2587
|
# * `pypi`
|
|
2513
2588
|
#
|
|
2514
2589
|
# * `maven`
|
|
2590
|
+
#
|
|
2591
|
+
# * `nuget`
|
|
2515
2592
|
# @return [String]
|
|
2516
2593
|
#
|
|
2517
2594
|
# @!attribute [rw] namespace
|
|
@@ -2524,6 +2601,9 @@ module Aws::CodeArtifact
|
|
|
2524
2601
|
#
|
|
2525
2602
|
# * A Python package does not contain a corresponding component, so
|
|
2526
2603
|
# Python packages do not have a namespace.
|
|
2604
|
+
#
|
|
2605
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
2606
|
+
# NuGet packages do not have a namespace.
|
|
2527
2607
|
# @return [String]
|
|
2528
2608
|
#
|
|
2529
2609
|
# @!attribute [rw] package
|
|
@@ -2551,6 +2631,8 @@ module Aws::CodeArtifact
|
|
|
2551
2631
|
#
|
|
2552
2632
|
# * `maven`\: A Maven package that contains compiled code in a
|
|
2553
2633
|
# distributable format, such as a JAR file.
|
|
2634
|
+
#
|
|
2635
|
+
# * `nuget`\: A NuGet package.
|
|
2554
2636
|
# @return [String]
|
|
2555
2637
|
#
|
|
2556
2638
|
# @!attribute [rw] namespace
|
|
@@ -2563,6 +2645,9 @@ module Aws::CodeArtifact
|
|
|
2563
2645
|
#
|
|
2564
2646
|
# * A Python package does not contain a corresponding component, so
|
|
2565
2647
|
# Python packages do not have a namespace.
|
|
2648
|
+
#
|
|
2649
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
2650
|
+
# NuGet packages do not have a namespace.
|
|
2566
2651
|
# @return [String]
|
|
2567
2652
|
#
|
|
2568
2653
|
# @!attribute [rw] package_name
|
|
@@ -2909,6 +2994,8 @@ module Aws::CodeArtifact
|
|
|
2909
2994
|
#
|
|
2910
2995
|
# * `maven`\: A Maven package that contains compiled code in a
|
|
2911
2996
|
# distributable format, such as a JAR file.
|
|
2997
|
+
#
|
|
2998
|
+
# * `nuget`\: A NuGet package.
|
|
2912
2999
|
# @return [String]
|
|
2913
3000
|
#
|
|
2914
3001
|
# @!attribute [rw] status
|
|
@@ -3086,11 +3173,11 @@ module Aws::CodeArtifact
|
|
|
3086
3173
|
# }
|
|
3087
3174
|
#
|
|
3088
3175
|
# @!attribute [rw] key
|
|
3089
|
-
# The tag
|
|
3176
|
+
# The tag key.
|
|
3090
3177
|
# @return [String]
|
|
3091
3178
|
#
|
|
3092
3179
|
# @!attribute [rw] value
|
|
3093
|
-
# The tag
|
|
3180
|
+
# The tag value.
|
|
3094
3181
|
# @return [String]
|
|
3095
3182
|
#
|
|
3096
3183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/Tag AWS API Documentation
|
|
@@ -3116,8 +3203,8 @@ module Aws::CodeArtifact
|
|
|
3116
3203
|
# }
|
|
3117
3204
|
#
|
|
3118
3205
|
# @!attribute [rw] resource_arn
|
|
3119
|
-
# The Amazon Resource Name (ARN) of the resource
|
|
3120
|
-
#
|
|
3206
|
+
# The Amazon Resource Name (ARN) of the resource that you want to add
|
|
3207
|
+
# or update tags for.
|
|
3121
3208
|
# @return [String]
|
|
3122
3209
|
#
|
|
3123
3210
|
# @!attribute [rw] tags
|
|
@@ -3165,8 +3252,8 @@ module Aws::CodeArtifact
|
|
|
3165
3252
|
# }
|
|
3166
3253
|
#
|
|
3167
3254
|
# @!attribute [rw] resource_arn
|
|
3168
|
-
# The Amazon Resource Name (ARN) of the resource
|
|
3169
|
-
# remove tags.
|
|
3255
|
+
# The Amazon Resource Name (ARN) of the resource that you want to
|
|
3256
|
+
# remove tags from.
|
|
3170
3257
|
# @return [String]
|
|
3171
3258
|
#
|
|
3172
3259
|
# @!attribute [rw] tag_keys
|
|
@@ -3193,7 +3280,7 @@ module Aws::CodeArtifact
|
|
|
3193
3280
|
# domain: "DomainName", # required
|
|
3194
3281
|
# domain_owner: "AccountId",
|
|
3195
3282
|
# repository: "RepositoryName", # required
|
|
3196
|
-
# format: "npm", # required, accepts npm, pypi, maven
|
|
3283
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget
|
|
3197
3284
|
# namespace: "PackageNamespace",
|
|
3198
3285
|
# package: "PackageName", # required
|
|
3199
3286
|
# versions: ["PackageVersion"], # required
|
|
@@ -3228,6 +3315,8 @@ module Aws::CodeArtifact
|
|
|
3228
3315
|
# * `pypi`
|
|
3229
3316
|
#
|
|
3230
3317
|
# * `maven`
|
|
3318
|
+
#
|
|
3319
|
+
# * `nuget`
|
|
3231
3320
|
# @return [String]
|
|
3232
3321
|
#
|
|
3233
3322
|
# @!attribute [rw] namespace
|
|
@@ -3240,6 +3329,9 @@ module Aws::CodeArtifact
|
|
|
3240
3329
|
#
|
|
3241
3330
|
# * A Python package does not contain a corresponding component, so
|
|
3242
3331
|
# Python packages do not have a namespace.
|
|
3332
|
+
#
|
|
3333
|
+
# * A NuGet package does not contain a corresponding component, so
|
|
3334
|
+
# NuGet packages do not have a namespace.
|
|
3243
3335
|
# @return [String]
|
|
3244
3336
|
#
|
|
3245
3337
|
# @!attribute [rw] package
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-codeartifact
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-11-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|