aws-sdk-codeartifact 1.40.0 → 1.42.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codeartifact/client.rb +84 -81
- data/lib/aws-sdk-codeartifact/types.rb +72 -72
- data/lib/aws-sdk-codeartifact.rb +1 -1
- data/sig/client.rbs +22 -22
- data/sig/types.rbs +27 -27
- 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: ebd13c3f4c435b266859a7181e66f2e09b79bd8db274836f7dd3e6a10ec5e6d2
|
|
4
|
+
data.tar.gz: 22c7c6ef6cde8366c89976ae464e7176751927bdb68830a06cb793520d0abd80
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5fc4b4485a0e0e595e6c33edf2140298b14214ada2d3388afe3b68bd379fdd794480411d698b2605303800e66d39a9109595eb13b3cb6a36f904f4e2cacd07ca
|
|
7
|
+
data.tar.gz: bc761ea448496fe8a4381c89eefa9d6229831cefcf9491ea54f30e453efb27c0d82825e177c31955ee049ccad45455dae12be9876d2a9d0f96ad7327403455aa
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.42.0 (2024-05-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.41.0 (2024-04-30)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Add support for the Ruby package format.
|
|
13
|
+
|
|
4
14
|
1.40.0 (2024-04-25)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.42.0
|
|
@@ -301,8 +301,9 @@ module Aws::CodeArtifact
|
|
|
301
301
|
#
|
|
302
302
|
# @option options [String] :sdk_ua_app_id
|
|
303
303
|
# A unique and opaque application ID that is appended to the
|
|
304
|
-
# User-Agent header as app
|
|
305
|
-
# maximum length of 50.
|
|
304
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
|
305
|
+
# maximum length of 50. This variable is sourced from environment
|
|
306
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
|
306
307
|
#
|
|
307
308
|
# @option options [String] :secret_access_key
|
|
308
309
|
#
|
|
@@ -475,7 +476,7 @@ module Aws::CodeArtifact
|
|
|
475
476
|
# resp.repository.upstreams[0].repository_name #=> String
|
|
476
477
|
# resp.repository.external_connections #=> Array
|
|
477
478
|
# resp.repository.external_connections[0].external_connection_name #=> String
|
|
478
|
-
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
479
|
+
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
479
480
|
# resp.repository.external_connections[0].status #=> String, one of "Available"
|
|
480
481
|
# resp.repository.created_time #=> Time
|
|
481
482
|
#
|
|
@@ -536,9 +537,9 @@ module Aws::CodeArtifact
|
|
|
536
537
|
#
|
|
537
538
|
# * The namespace of a generic package is its `namespace`.
|
|
538
539
|
#
|
|
539
|
-
# * Python and
|
|
540
|
-
# component, package versions of those formats do not
|
|
541
|
-
# namespace.
|
|
540
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
541
|
+
# corresponding component, package versions of those formats do not
|
|
542
|
+
# have a namespace.
|
|
542
543
|
#
|
|
543
544
|
# @option params [required, String] :package
|
|
544
545
|
# The name of the package that contains the versions to be copied.
|
|
@@ -591,7 +592,7 @@ module Aws::CodeArtifact
|
|
|
591
592
|
# domain_owner: "AccountId",
|
|
592
593
|
# source_repository: "RepositoryName", # required
|
|
593
594
|
# destination_repository: "RepositoryName", # required
|
|
594
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
595
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
595
596
|
# namespace: "PackageNamespace",
|
|
596
597
|
# package: "PackageName", # required
|
|
597
598
|
# versions: ["PackageVersion"],
|
|
@@ -841,7 +842,7 @@ module Aws::CodeArtifact
|
|
|
841
842
|
# resp.repository.upstreams[0].repository_name #=> String
|
|
842
843
|
# resp.repository.external_connections #=> Array
|
|
843
844
|
# resp.repository.external_connections[0].external_connection_name #=> String
|
|
844
|
-
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
845
|
+
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
845
846
|
# resp.repository.external_connections[0].status #=> String, one of "Available"
|
|
846
847
|
# resp.repository.created_time #=> Time
|
|
847
848
|
#
|
|
@@ -981,9 +982,9 @@ module Aws::CodeArtifact
|
|
|
981
982
|
#
|
|
982
983
|
# * The namespace of a generic package is its `namespace`.
|
|
983
984
|
#
|
|
984
|
-
# * Python and
|
|
985
|
-
# component, package versions of those formats do not
|
|
986
|
-
# namespace.
|
|
985
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
986
|
+
# corresponding component, package versions of those formats do not
|
|
987
|
+
# have a namespace.
|
|
987
988
|
#
|
|
988
989
|
# @option params [required, String] :package
|
|
989
990
|
# The name of the package to delete.
|
|
@@ -998,14 +999,14 @@ module Aws::CodeArtifact
|
|
|
998
999
|
# domain: "DomainName", # required
|
|
999
1000
|
# domain_owner: "AccountId",
|
|
1000
1001
|
# repository: "RepositoryName", # required
|
|
1001
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
1002
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
1002
1003
|
# namespace: "PackageNamespace",
|
|
1003
1004
|
# package: "PackageName", # required
|
|
1004
1005
|
# })
|
|
1005
1006
|
#
|
|
1006
1007
|
# @example Response structure
|
|
1007
1008
|
#
|
|
1008
|
-
# resp.deleted_package.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
1009
|
+
# resp.deleted_package.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
1009
1010
|
# resp.deleted_package.namespace #=> String
|
|
1010
1011
|
# resp.deleted_package.package #=> String
|
|
1011
1012
|
# resp.deleted_package.origin_configuration.restrictions.publish #=> String, one of "ALLOW", "BLOCK"
|
|
@@ -1125,9 +1126,9 @@ module Aws::CodeArtifact
|
|
|
1125
1126
|
#
|
|
1126
1127
|
# * The namespace of a generic package is its `namespace`.
|
|
1127
1128
|
#
|
|
1128
|
-
# * Python and
|
|
1129
|
-
# component, package versions of those formats do not
|
|
1130
|
-
# namespace.
|
|
1129
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
1130
|
+
# corresponding component, package versions of those formats do not
|
|
1131
|
+
# have a namespace.
|
|
1131
1132
|
#
|
|
1132
1133
|
# @option params [required, String] :package
|
|
1133
1134
|
# The name of the package with the versions to delete.
|
|
@@ -1150,7 +1151,7 @@ module Aws::CodeArtifact
|
|
|
1150
1151
|
# domain: "DomainName", # required
|
|
1151
1152
|
# domain_owner: "AccountId",
|
|
1152
1153
|
# repository: "RepositoryName", # required
|
|
1153
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
1154
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
1154
1155
|
# namespace: "PackageNamespace",
|
|
1155
1156
|
# package: "PackageName", # required
|
|
1156
1157
|
# versions: ["PackageVersion"], # required
|
|
@@ -1211,7 +1212,7 @@ module Aws::CodeArtifact
|
|
|
1211
1212
|
# resp.repository.upstreams[0].repository_name #=> String
|
|
1212
1213
|
# resp.repository.external_connections #=> Array
|
|
1213
1214
|
# resp.repository.external_connections[0].external_connection_name #=> String
|
|
1214
|
-
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
1215
|
+
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
1215
1216
|
# resp.repository.external_connections[0].status #=> String, one of "Available"
|
|
1216
1217
|
# resp.repository.created_time #=> Time
|
|
1217
1218
|
#
|
|
@@ -1368,9 +1369,9 @@ module Aws::CodeArtifact
|
|
|
1368
1369
|
#
|
|
1369
1370
|
# * The namespace of a generic package is its `namespace`.
|
|
1370
1371
|
#
|
|
1371
|
-
# * Python and
|
|
1372
|
-
# component, package versions of those formats do not
|
|
1373
|
-
# namespace.
|
|
1372
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
1373
|
+
# corresponding component, package versions of those formats do not
|
|
1374
|
+
# have a namespace.
|
|
1374
1375
|
#
|
|
1375
1376
|
# @option params [required, String] :package
|
|
1376
1377
|
# The name of the requested package.
|
|
@@ -1385,14 +1386,14 @@ module Aws::CodeArtifact
|
|
|
1385
1386
|
# domain: "DomainName", # required
|
|
1386
1387
|
# domain_owner: "AccountId",
|
|
1387
1388
|
# repository: "RepositoryName", # required
|
|
1388
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
1389
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
1389
1390
|
# namespace: "PackageNamespace",
|
|
1390
1391
|
# package: "PackageName", # required
|
|
1391
1392
|
# })
|
|
1392
1393
|
#
|
|
1393
1394
|
# @example Response structure
|
|
1394
1395
|
#
|
|
1395
|
-
# resp.package.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
1396
|
+
# resp.package.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
1396
1397
|
# resp.package.namespace #=> String
|
|
1397
1398
|
# resp.package.name #=> String
|
|
1398
1399
|
# resp.package.origin_configuration.restrictions.publish #=> String, one of "ALLOW", "BLOCK"
|
|
@@ -1505,9 +1506,9 @@ module Aws::CodeArtifact
|
|
|
1505
1506
|
#
|
|
1506
1507
|
# * The namespace of a generic package is its `namespace`.
|
|
1507
1508
|
#
|
|
1508
|
-
# * Python and
|
|
1509
|
-
# component, package versions of those formats do not
|
|
1510
|
-
# namespace.
|
|
1509
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
1510
|
+
# corresponding component, package versions of those formats do not
|
|
1511
|
+
# have a namespace.
|
|
1511
1512
|
#
|
|
1512
1513
|
# @option params [required, String] :package
|
|
1513
1514
|
# The name of the requested package version.
|
|
@@ -1525,7 +1526,7 @@ module Aws::CodeArtifact
|
|
|
1525
1526
|
# domain: "DomainName", # required
|
|
1526
1527
|
# domain_owner: "AccountId",
|
|
1527
1528
|
# repository: "RepositoryName", # required
|
|
1528
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
1529
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
1529
1530
|
# namespace: "PackageNamespace",
|
|
1530
1531
|
# package: "PackageName", # required
|
|
1531
1532
|
# package_version: "PackageVersion", # required
|
|
@@ -1533,7 +1534,7 @@ module Aws::CodeArtifact
|
|
|
1533
1534
|
#
|
|
1534
1535
|
# @example Response structure
|
|
1535
1536
|
#
|
|
1536
|
-
# resp.package_version.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
1537
|
+
# resp.package_version.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
1537
1538
|
# resp.package_version.namespace #=> String
|
|
1538
1539
|
# resp.package_version.package_name #=> String
|
|
1539
1540
|
# resp.package_version.display_name #=> String
|
|
@@ -1597,7 +1598,7 @@ module Aws::CodeArtifact
|
|
|
1597
1598
|
# resp.repository.upstreams[0].repository_name #=> String
|
|
1598
1599
|
# resp.repository.external_connections #=> Array
|
|
1599
1600
|
# resp.repository.external_connections[0].external_connection_name #=> String
|
|
1600
|
-
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
1601
|
+
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
1601
1602
|
# resp.repository.external_connections[0].status #=> String, one of "Available"
|
|
1602
1603
|
# resp.repository.created_time #=> Time
|
|
1603
1604
|
#
|
|
@@ -1652,7 +1653,7 @@ module Aws::CodeArtifact
|
|
|
1652
1653
|
# resp.repository.upstreams[0].repository_name #=> String
|
|
1653
1654
|
# resp.repository.external_connections #=> Array
|
|
1654
1655
|
# resp.repository.external_connections[0].external_connection_name #=> String
|
|
1655
|
-
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
1656
|
+
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
1656
1657
|
# resp.repository.external_connections[0].status #=> String, one of "Available"
|
|
1657
1658
|
# resp.repository.created_time #=> Time
|
|
1658
1659
|
#
|
|
@@ -1720,9 +1721,9 @@ module Aws::CodeArtifact
|
|
|
1720
1721
|
#
|
|
1721
1722
|
# * The namespace of a generic package is its `namespace`.
|
|
1722
1723
|
#
|
|
1723
|
-
# * Python and
|
|
1724
|
-
# component, package versions of those formats do not
|
|
1725
|
-
# namespace.
|
|
1724
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
1725
|
+
# corresponding component, package versions of those formats do not
|
|
1726
|
+
# have a namespace.
|
|
1726
1727
|
#
|
|
1727
1728
|
# @option params [required, String] :package
|
|
1728
1729
|
# The name of the package with the versions you want to dispose.
|
|
@@ -1747,7 +1748,7 @@ module Aws::CodeArtifact
|
|
|
1747
1748
|
# domain: "DomainName", # required
|
|
1748
1749
|
# domain_owner: "AccountId",
|
|
1749
1750
|
# repository: "RepositoryName", # required
|
|
1750
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
1751
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
1751
1752
|
# namespace: "PackageNamespace",
|
|
1752
1753
|
# package: "PackageName", # required
|
|
1753
1754
|
# versions: ["PackageVersion"], # required
|
|
@@ -1824,9 +1825,9 @@ module Aws::CodeArtifact
|
|
|
1824
1825
|
#
|
|
1825
1826
|
# * The namespace of a generic package is its `namespace`.
|
|
1826
1827
|
#
|
|
1827
|
-
# * Python and
|
|
1828
|
-
# component, package versions of those formats do not
|
|
1829
|
-
# namespace.
|
|
1828
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
1829
|
+
# corresponding component, package versions of those formats do not
|
|
1830
|
+
# have a namespace.
|
|
1830
1831
|
#
|
|
1831
1832
|
# @option params [required, String] :package
|
|
1832
1833
|
# The package from which to get the associated package group.
|
|
@@ -1841,7 +1842,7 @@ module Aws::CodeArtifact
|
|
|
1841
1842
|
# resp = client.get_associated_package_group({
|
|
1842
1843
|
# domain: "DomainName", # required
|
|
1843
1844
|
# domain_owner: "AccountId",
|
|
1844
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
1845
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
1845
1846
|
# namespace: "PackageNamespace",
|
|
1846
1847
|
# package: "PackageName", # required
|
|
1847
1848
|
# })
|
|
@@ -2035,9 +2036,9 @@ module Aws::CodeArtifact
|
|
|
2035
2036
|
#
|
|
2036
2037
|
# * The namespace of a generic package is its `namespace`.
|
|
2037
2038
|
#
|
|
2038
|
-
# * Python and
|
|
2039
|
-
# component, package versions of those formats do not
|
|
2040
|
-
# namespace.
|
|
2039
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
2040
|
+
# corresponding component, package versions of those formats do not
|
|
2041
|
+
# have a namespace.
|
|
2041
2042
|
#
|
|
2042
2043
|
# @option params [required, String] :package
|
|
2043
2044
|
# The name of the package that contains the requested asset.
|
|
@@ -2065,7 +2066,7 @@ module Aws::CodeArtifact
|
|
|
2065
2066
|
# domain: "DomainName", # required
|
|
2066
2067
|
# domain_owner: "AccountId",
|
|
2067
2068
|
# repository: "RepositoryName", # required
|
|
2068
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
2069
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
2069
2070
|
# namespace: "PackageNamespace",
|
|
2070
2071
|
# package: "PackageName", # required
|
|
2071
2072
|
# package_version: "PackageVersion", # required
|
|
@@ -2132,9 +2133,9 @@ module Aws::CodeArtifact
|
|
|
2132
2133
|
#
|
|
2133
2134
|
# * The namespace of a generic package is its `namespace`.
|
|
2134
2135
|
#
|
|
2135
|
-
# * Python and
|
|
2136
|
-
# component, package versions of those formats do not
|
|
2137
|
-
# namespace.
|
|
2136
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
2137
|
+
# corresponding component, package versions of those formats do not
|
|
2138
|
+
# have a namespace.
|
|
2138
2139
|
#
|
|
2139
2140
|
# @option params [required, String] :package
|
|
2140
2141
|
# The name of the package version that contains the requested readme
|
|
@@ -2158,7 +2159,7 @@ module Aws::CodeArtifact
|
|
|
2158
2159
|
# domain: "DomainName", # required
|
|
2159
2160
|
# domain_owner: "AccountId",
|
|
2160
2161
|
# repository: "RepositoryName", # required
|
|
2161
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
2162
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
2162
2163
|
# namespace: "PackageNamespace",
|
|
2163
2164
|
# package: "PackageName", # required
|
|
2164
2165
|
# package_version: "PackageVersion", # required
|
|
@@ -2166,7 +2167,7 @@ module Aws::CodeArtifact
|
|
|
2166
2167
|
#
|
|
2167
2168
|
# @example Response structure
|
|
2168
2169
|
#
|
|
2169
|
-
# resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
2170
|
+
# resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
2170
2171
|
# resp.namespace #=> String
|
|
2171
2172
|
# resp.package #=> String
|
|
2172
2173
|
# resp.version #=> String
|
|
@@ -2195,6 +2196,8 @@ module Aws::CodeArtifact
|
|
|
2195
2196
|
#
|
|
2196
2197
|
# * `pypi`
|
|
2197
2198
|
#
|
|
2199
|
+
# * `ruby`
|
|
2200
|
+
#
|
|
2198
2201
|
# * `swift`
|
|
2199
2202
|
#
|
|
2200
2203
|
# @option params [required, String] :domain
|
|
@@ -2222,7 +2225,7 @@ module Aws::CodeArtifact
|
|
|
2222
2225
|
# domain: "DomainName", # required
|
|
2223
2226
|
# domain_owner: "AccountId",
|
|
2224
2227
|
# repository: "RepositoryName", # required
|
|
2225
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
2228
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
2226
2229
|
# })
|
|
2227
2230
|
#
|
|
2228
2231
|
# @example Response structure
|
|
@@ -2400,7 +2403,7 @@ module Aws::CodeArtifact
|
|
|
2400
2403
|
# @example Response structure
|
|
2401
2404
|
#
|
|
2402
2405
|
# resp.packages #=> Array
|
|
2403
|
-
# resp.packages[0].format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
2406
|
+
# resp.packages[0].format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
2404
2407
|
# resp.packages[0].namespace #=> String
|
|
2405
2408
|
# resp.packages[0].package #=> String
|
|
2406
2409
|
# resp.packages[0].association_type #=> String, one of "STRONG", "WEAK"
|
|
@@ -2578,9 +2581,9 @@ module Aws::CodeArtifact
|
|
|
2578
2581
|
#
|
|
2579
2582
|
# * The namespace of a generic package is its `namespace`.
|
|
2580
2583
|
#
|
|
2581
|
-
# * Python and
|
|
2582
|
-
# component, package versions of those formats do not
|
|
2583
|
-
# namespace.
|
|
2584
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
2585
|
+
# corresponding component, package versions of those formats do not
|
|
2586
|
+
# have a namespace.
|
|
2584
2587
|
#
|
|
2585
2588
|
# @option params [required, String] :package
|
|
2586
2589
|
# The name of the package that contains the requested package version
|
|
@@ -2615,7 +2618,7 @@ module Aws::CodeArtifact
|
|
|
2615
2618
|
# domain: "DomainName", # required
|
|
2616
2619
|
# domain_owner: "AccountId",
|
|
2617
2620
|
# repository: "RepositoryName", # required
|
|
2618
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
2621
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
2619
2622
|
# namespace: "PackageNamespace",
|
|
2620
2623
|
# package: "PackageName", # required
|
|
2621
2624
|
# package_version: "PackageVersion", # required
|
|
@@ -2625,7 +2628,7 @@ module Aws::CodeArtifact
|
|
|
2625
2628
|
#
|
|
2626
2629
|
# @example Response structure
|
|
2627
2630
|
#
|
|
2628
|
-
# resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
2631
|
+
# resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
2629
2632
|
# resp.namespace #=> String
|
|
2630
2633
|
# resp.package #=> String
|
|
2631
2634
|
# resp.version #=> String
|
|
@@ -2695,9 +2698,9 @@ module Aws::CodeArtifact
|
|
|
2695
2698
|
#
|
|
2696
2699
|
# * The namespace of a generic package is its `namespace`.
|
|
2697
2700
|
#
|
|
2698
|
-
# * Python and
|
|
2699
|
-
# component, package versions of those formats do not
|
|
2700
|
-
# namespace.
|
|
2701
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
2702
|
+
# corresponding component, package versions of those formats do not
|
|
2703
|
+
# have a namespace.
|
|
2701
2704
|
#
|
|
2702
2705
|
# @option params [required, String] :package
|
|
2703
2706
|
# The name of the package versions' package.
|
|
@@ -2726,7 +2729,7 @@ module Aws::CodeArtifact
|
|
|
2726
2729
|
# domain: "DomainName", # required
|
|
2727
2730
|
# domain_owner: "AccountId",
|
|
2728
2731
|
# repository: "RepositoryName", # required
|
|
2729
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
2732
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
2730
2733
|
# namespace: "PackageNamespace",
|
|
2731
2734
|
# package: "PackageName", # required
|
|
2732
2735
|
# package_version: "PackageVersion", # required
|
|
@@ -2735,7 +2738,7 @@ module Aws::CodeArtifact
|
|
|
2735
2738
|
#
|
|
2736
2739
|
# @example Response structure
|
|
2737
2740
|
#
|
|
2738
|
-
# resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
2741
|
+
# resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
2739
2742
|
# resp.namespace #=> String
|
|
2740
2743
|
# resp.package #=> String
|
|
2741
2744
|
# resp.version #=> String
|
|
@@ -2802,9 +2805,9 @@ module Aws::CodeArtifact
|
|
|
2802
2805
|
#
|
|
2803
2806
|
# * The namespace of a generic package is its `namespace`.
|
|
2804
2807
|
#
|
|
2805
|
-
# * Python and
|
|
2806
|
-
# component, package versions of those formats do not
|
|
2807
|
-
# namespace.
|
|
2808
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
2809
|
+
# corresponding component, package versions of those formats do not
|
|
2810
|
+
# have a namespace.
|
|
2808
2811
|
#
|
|
2809
2812
|
# @option params [required, String] :package
|
|
2810
2813
|
# The name of the package for which you want to request package
|
|
@@ -2845,7 +2848,7 @@ module Aws::CodeArtifact
|
|
|
2845
2848
|
# domain: "DomainName", # required
|
|
2846
2849
|
# domain_owner: "AccountId",
|
|
2847
2850
|
# repository: "RepositoryName", # required
|
|
2848
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
2851
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
2849
2852
|
# namespace: "PackageNamespace",
|
|
2850
2853
|
# package: "PackageName", # required
|
|
2851
2854
|
# status: "Published", # accepts Published, Unfinished, Unlisted, Archived, Disposed, Deleted
|
|
@@ -2858,7 +2861,7 @@ module Aws::CodeArtifact
|
|
|
2858
2861
|
# @example Response structure
|
|
2859
2862
|
#
|
|
2860
2863
|
# resp.default_display_version #=> String
|
|
2861
|
-
# resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
2864
|
+
# resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
2862
2865
|
# resp.namespace #=> String
|
|
2863
2866
|
# resp.package #=> String
|
|
2864
2867
|
# resp.versions #=> Array
|
|
@@ -2915,9 +2918,9 @@ module Aws::CodeArtifact
|
|
|
2915
2918
|
#
|
|
2916
2919
|
# * The namespace of a generic package is its `namespace`.
|
|
2917
2920
|
#
|
|
2918
|
-
# * Python and
|
|
2919
|
-
# component, package versions of those formats do not
|
|
2920
|
-
# namespace.
|
|
2921
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
2922
|
+
# corresponding component, package versions of those formats do not
|
|
2923
|
+
# have a namespace.
|
|
2921
2924
|
#
|
|
2922
2925
|
# @option params [String] :package_prefix
|
|
2923
2926
|
# A prefix used to filter requested packages. Only packages with names
|
|
@@ -2964,7 +2967,7 @@ module Aws::CodeArtifact
|
|
|
2964
2967
|
# domain: "DomainName", # required
|
|
2965
2968
|
# domain_owner: "AccountId",
|
|
2966
2969
|
# repository: "RepositoryName", # required
|
|
2967
|
-
# format: "npm", # accepts npm, pypi, maven, nuget, generic, swift
|
|
2970
|
+
# format: "npm", # accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
2968
2971
|
# namespace: "PackageNamespace",
|
|
2969
2972
|
# package_prefix: "PackageName",
|
|
2970
2973
|
# max_results: 1,
|
|
@@ -2976,7 +2979,7 @@ module Aws::CodeArtifact
|
|
|
2976
2979
|
# @example Response structure
|
|
2977
2980
|
#
|
|
2978
2981
|
# resp.packages #=> Array
|
|
2979
|
-
# resp.packages[0].format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
2982
|
+
# resp.packages[0].format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
2980
2983
|
# resp.packages[0].namespace #=> String
|
|
2981
2984
|
# resp.packages[0].package #=> String
|
|
2982
2985
|
# resp.packages[0].origin_configuration.restrictions.publish #=> String, one of "ALLOW", "BLOCK"
|
|
@@ -3324,7 +3327,7 @@ module Aws::CodeArtifact
|
|
|
3324
3327
|
# domain: "DomainName", # required
|
|
3325
3328
|
# domain_owner: "AccountId",
|
|
3326
3329
|
# repository: "RepositoryName", # required
|
|
3327
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
3330
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
3328
3331
|
# namespace: "PackageNamespace",
|
|
3329
3332
|
# package: "PackageName", # required
|
|
3330
3333
|
# package_version: "PackageVersion", # required
|
|
@@ -3336,7 +3339,7 @@ module Aws::CodeArtifact
|
|
|
3336
3339
|
#
|
|
3337
3340
|
# @example Response structure
|
|
3338
3341
|
#
|
|
3339
|
-
# resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
3342
|
+
# resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
3340
3343
|
# resp.namespace #=> String
|
|
3341
3344
|
# resp.package #=> String
|
|
3342
3345
|
# resp.version #=> String
|
|
@@ -3454,9 +3457,9 @@ module Aws::CodeArtifact
|
|
|
3454
3457
|
#
|
|
3455
3458
|
# * The namespace of a generic package is its `namespace`.
|
|
3456
3459
|
#
|
|
3457
|
-
# * Python and
|
|
3458
|
-
# component, package versions of those formats do not
|
|
3459
|
-
# namespace.
|
|
3460
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
3461
|
+
# corresponding component, package versions of those formats do not
|
|
3462
|
+
# have a namespace.
|
|
3460
3463
|
#
|
|
3461
3464
|
# @option params [required, String] :package
|
|
3462
3465
|
# The name of the package to be updated.
|
|
@@ -3486,7 +3489,7 @@ module Aws::CodeArtifact
|
|
|
3486
3489
|
# domain: "DomainName", # required
|
|
3487
3490
|
# domain_owner: "AccountId",
|
|
3488
3491
|
# repository: "RepositoryName", # required
|
|
3489
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
3492
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
3490
3493
|
# namespace: "PackageNamespace",
|
|
3491
3494
|
# package: "PackageName", # required
|
|
3492
3495
|
# restrictions: { # required
|
|
@@ -3826,9 +3829,9 @@ module Aws::CodeArtifact
|
|
|
3826
3829
|
#
|
|
3827
3830
|
# * The namespace of a generic package is its `namespace`.
|
|
3828
3831
|
#
|
|
3829
|
-
# * Python and
|
|
3830
|
-
# component, package versions of those formats do not
|
|
3831
|
-
# namespace.
|
|
3832
|
+
# * Python, NuGet, and Ruby package versions do not contain a
|
|
3833
|
+
# corresponding component, package versions of those formats do not
|
|
3834
|
+
# have a namespace.
|
|
3832
3835
|
#
|
|
3833
3836
|
# @option params [required, String] :package
|
|
3834
3837
|
# The name of the package with the version statuses to update.
|
|
@@ -3862,7 +3865,7 @@ module Aws::CodeArtifact
|
|
|
3862
3865
|
# domain: "DomainName", # required
|
|
3863
3866
|
# domain_owner: "AccountId",
|
|
3864
3867
|
# repository: "RepositoryName", # required
|
|
3865
|
-
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
|
|
3868
|
+
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
|
|
3866
3869
|
# namespace: "PackageNamespace",
|
|
3867
3870
|
# package: "PackageName", # required
|
|
3868
3871
|
# versions: ["PackageVersion"], # required
|
|
@@ -3947,7 +3950,7 @@ module Aws::CodeArtifact
|
|
|
3947
3950
|
# resp.repository.upstreams[0].repository_name #=> String
|
|
3948
3951
|
# resp.repository.external_connections #=> Array
|
|
3949
3952
|
# resp.repository.external_connections[0].external_connection_name #=> String
|
|
3950
|
-
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
|
|
3953
|
+
# resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
|
|
3951
3954
|
# resp.repository.external_connections[0].status #=> String, one of "Available"
|
|
3952
3955
|
# resp.repository.created_time #=> Time
|
|
3953
3956
|
#
|
|
@@ -3973,7 +3976,7 @@ module Aws::CodeArtifact
|
|
|
3973
3976
|
params: params,
|
|
3974
3977
|
config: config)
|
|
3975
3978
|
context[:gem_name] = 'aws-sdk-codeartifact'
|
|
3976
|
-
context[:gem_version] = '1.
|
|
3979
|
+
context[:gem_version] = '1.42.0'
|
|
3977
3980
|
Seahorse::Client::Request.new(handlers, context)
|
|
3978
3981
|
end
|
|
3979
3982
|
|