aws-sdk-codeartifact 1.40.0 → 1.41.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31a5845060a53f44dce9b664eec88507cb842b3a7354e5a96f066a243413589c
4
- data.tar.gz: 23315cb0a99dafa4568dae80a7a079e16610d147c15a5b915e1d2a68da30329e
3
+ metadata.gz: b47370a44df2e916dd3b67a5719731be5100f0abb3baee5cc2c67e1d4c342a9f
4
+ data.tar.gz: f31ed0e874ab277cae41fd69c99820530b2c420f5b831ce26a805d2cc7eefa36
5
5
  SHA512:
6
- metadata.gz: 586d1c95560559f54b05d10ab5155c3be352586f1afc9565eee9ee18392037696b633f5b20501790df0990d59180c1e34baff28059627a9c649996d5cf0afc46
7
- data.tar.gz: f2f35560fdb9b234f95aa7916e840f3b23f9d03e457f37ebb9c56b8fe4789fca42cde4c32e0e67595d000d8a08b2ec14b48e4bbff159fa67bf732ca154802d2e
6
+ metadata.gz: 4080271c56a4cf074abc80b614e195b15945fc989af4231c34a83b841522f0b8a084a6b4b630ad8cbd451d69f8cc2847bfdf235ebdd4f322e4a1e367b52543e6
7
+ data.tar.gz: f1be9d732f1d518257ad1be17f1ba1c0ef787f8c2737a858b37616b14ee29b071afcff2cf4af5325c504f05c5e31267925d0efbc7cc31493b22551321ab3f670
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2024-04-30)
5
+ ------------------
6
+
7
+ * Feature - Add support for the Ruby package format.
8
+
4
9
  1.40.0 (2024-04-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.41.0
@@ -475,7 +475,7 @@ module Aws::CodeArtifact
475
475
  # resp.repository.upstreams[0].repository_name #=> String
476
476
  # resp.repository.external_connections #=> Array
477
477
  # 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"
478
+ # resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
479
479
  # resp.repository.external_connections[0].status #=> String, one of "Available"
480
480
  # resp.repository.created_time #=> Time
481
481
  #
@@ -536,9 +536,9 @@ module Aws::CodeArtifact
536
536
  #
537
537
  # * The namespace of a generic package is its `namespace`.
538
538
  #
539
- # * Python and NuGet package versions do not contain a corresponding
540
- # component, package versions of those formats do not have a
541
- # namespace.
539
+ # * Python, NuGet, and Ruby package versions do not contain a
540
+ # corresponding component, package versions of those formats do not
541
+ # have a namespace.
542
542
  #
543
543
  # @option params [required, String] :package
544
544
  # The name of the package that contains the versions to be copied.
@@ -591,7 +591,7 @@ module Aws::CodeArtifact
591
591
  # domain_owner: "AccountId",
592
592
  # source_repository: "RepositoryName", # required
593
593
  # destination_repository: "RepositoryName", # required
594
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
594
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
595
595
  # namespace: "PackageNamespace",
596
596
  # package: "PackageName", # required
597
597
  # versions: ["PackageVersion"],
@@ -841,7 +841,7 @@ module Aws::CodeArtifact
841
841
  # resp.repository.upstreams[0].repository_name #=> String
842
842
  # resp.repository.external_connections #=> Array
843
843
  # 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"
844
+ # resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
845
845
  # resp.repository.external_connections[0].status #=> String, one of "Available"
846
846
  # resp.repository.created_time #=> Time
847
847
  #
@@ -981,9 +981,9 @@ module Aws::CodeArtifact
981
981
  #
982
982
  # * The namespace of a generic package is its `namespace`.
983
983
  #
984
- # * Python and NuGet package versions do not contain a corresponding
985
- # component, package versions of those formats do not have a
986
- # namespace.
984
+ # * Python, NuGet, and Ruby package versions do not contain a
985
+ # corresponding component, package versions of those formats do not
986
+ # have a namespace.
987
987
  #
988
988
  # @option params [required, String] :package
989
989
  # The name of the package to delete.
@@ -998,14 +998,14 @@ module Aws::CodeArtifact
998
998
  # domain: "DomainName", # required
999
999
  # domain_owner: "AccountId",
1000
1000
  # repository: "RepositoryName", # required
1001
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
1001
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
1002
1002
  # namespace: "PackageNamespace",
1003
1003
  # package: "PackageName", # required
1004
1004
  # })
1005
1005
  #
1006
1006
  # @example Response structure
1007
1007
  #
1008
- # resp.deleted_package.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
1008
+ # resp.deleted_package.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
1009
1009
  # resp.deleted_package.namespace #=> String
1010
1010
  # resp.deleted_package.package #=> String
1011
1011
  # resp.deleted_package.origin_configuration.restrictions.publish #=> String, one of "ALLOW", "BLOCK"
@@ -1125,9 +1125,9 @@ module Aws::CodeArtifact
1125
1125
  #
1126
1126
  # * The namespace of a generic package is its `namespace`.
1127
1127
  #
1128
- # * Python and NuGet package versions do not contain a corresponding
1129
- # component, package versions of those formats do not have a
1130
- # namespace.
1128
+ # * Python, NuGet, and Ruby package versions do not contain a
1129
+ # corresponding component, package versions of those formats do not
1130
+ # have a namespace.
1131
1131
  #
1132
1132
  # @option params [required, String] :package
1133
1133
  # The name of the package with the versions to delete.
@@ -1150,7 +1150,7 @@ module Aws::CodeArtifact
1150
1150
  # domain: "DomainName", # required
1151
1151
  # domain_owner: "AccountId",
1152
1152
  # repository: "RepositoryName", # required
1153
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
1153
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
1154
1154
  # namespace: "PackageNamespace",
1155
1155
  # package: "PackageName", # required
1156
1156
  # versions: ["PackageVersion"], # required
@@ -1211,7 +1211,7 @@ module Aws::CodeArtifact
1211
1211
  # resp.repository.upstreams[0].repository_name #=> String
1212
1212
  # resp.repository.external_connections #=> Array
1213
1213
  # 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"
1214
+ # resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
1215
1215
  # resp.repository.external_connections[0].status #=> String, one of "Available"
1216
1216
  # resp.repository.created_time #=> Time
1217
1217
  #
@@ -1368,9 +1368,9 @@ module Aws::CodeArtifact
1368
1368
  #
1369
1369
  # * The namespace of a generic package is its `namespace`.
1370
1370
  #
1371
- # * Python and NuGet package versions do not contain a corresponding
1372
- # component, package versions of those formats do not have a
1373
- # namespace.
1371
+ # * Python, NuGet, and Ruby package versions do not contain a
1372
+ # corresponding component, package versions of those formats do not
1373
+ # have a namespace.
1374
1374
  #
1375
1375
  # @option params [required, String] :package
1376
1376
  # The name of the requested package.
@@ -1385,14 +1385,14 @@ module Aws::CodeArtifact
1385
1385
  # domain: "DomainName", # required
1386
1386
  # domain_owner: "AccountId",
1387
1387
  # repository: "RepositoryName", # required
1388
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
1388
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
1389
1389
  # namespace: "PackageNamespace",
1390
1390
  # package: "PackageName", # required
1391
1391
  # })
1392
1392
  #
1393
1393
  # @example Response structure
1394
1394
  #
1395
- # resp.package.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
1395
+ # resp.package.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
1396
1396
  # resp.package.namespace #=> String
1397
1397
  # resp.package.name #=> String
1398
1398
  # resp.package.origin_configuration.restrictions.publish #=> String, one of "ALLOW", "BLOCK"
@@ -1505,9 +1505,9 @@ module Aws::CodeArtifact
1505
1505
  #
1506
1506
  # * The namespace of a generic package is its `namespace`.
1507
1507
  #
1508
- # * Python and NuGet package versions do not contain a corresponding
1509
- # component, package versions of those formats do not have a
1510
- # namespace.
1508
+ # * Python, NuGet, and Ruby package versions do not contain a
1509
+ # corresponding component, package versions of those formats do not
1510
+ # have a namespace.
1511
1511
  #
1512
1512
  # @option params [required, String] :package
1513
1513
  # The name of the requested package version.
@@ -1525,7 +1525,7 @@ module Aws::CodeArtifact
1525
1525
  # domain: "DomainName", # required
1526
1526
  # domain_owner: "AccountId",
1527
1527
  # repository: "RepositoryName", # required
1528
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
1528
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
1529
1529
  # namespace: "PackageNamespace",
1530
1530
  # package: "PackageName", # required
1531
1531
  # package_version: "PackageVersion", # required
@@ -1533,7 +1533,7 @@ module Aws::CodeArtifact
1533
1533
  #
1534
1534
  # @example Response structure
1535
1535
  #
1536
- # resp.package_version.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
1536
+ # resp.package_version.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
1537
1537
  # resp.package_version.namespace #=> String
1538
1538
  # resp.package_version.package_name #=> String
1539
1539
  # resp.package_version.display_name #=> String
@@ -1597,7 +1597,7 @@ module Aws::CodeArtifact
1597
1597
  # resp.repository.upstreams[0].repository_name #=> String
1598
1598
  # resp.repository.external_connections #=> Array
1599
1599
  # 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"
1600
+ # resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
1601
1601
  # resp.repository.external_connections[0].status #=> String, one of "Available"
1602
1602
  # resp.repository.created_time #=> Time
1603
1603
  #
@@ -1652,7 +1652,7 @@ module Aws::CodeArtifact
1652
1652
  # resp.repository.upstreams[0].repository_name #=> String
1653
1653
  # resp.repository.external_connections #=> Array
1654
1654
  # 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"
1655
+ # resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
1656
1656
  # resp.repository.external_connections[0].status #=> String, one of "Available"
1657
1657
  # resp.repository.created_time #=> Time
1658
1658
  #
@@ -1720,9 +1720,9 @@ module Aws::CodeArtifact
1720
1720
  #
1721
1721
  # * The namespace of a generic package is its `namespace`.
1722
1722
  #
1723
- # * Python and NuGet package versions do not contain a corresponding
1724
- # component, package versions of those formats do not have a
1725
- # namespace.
1723
+ # * Python, NuGet, and Ruby package versions do not contain a
1724
+ # corresponding component, package versions of those formats do not
1725
+ # have a namespace.
1726
1726
  #
1727
1727
  # @option params [required, String] :package
1728
1728
  # The name of the package with the versions you want to dispose.
@@ -1747,7 +1747,7 @@ module Aws::CodeArtifact
1747
1747
  # domain: "DomainName", # required
1748
1748
  # domain_owner: "AccountId",
1749
1749
  # repository: "RepositoryName", # required
1750
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
1750
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
1751
1751
  # namespace: "PackageNamespace",
1752
1752
  # package: "PackageName", # required
1753
1753
  # versions: ["PackageVersion"], # required
@@ -1824,9 +1824,9 @@ module Aws::CodeArtifact
1824
1824
  #
1825
1825
  # * The namespace of a generic package is its `namespace`.
1826
1826
  #
1827
- # * Python and NuGet package versions do not contain a corresponding
1828
- # component, package versions of those formats do not have a
1829
- # namespace.
1827
+ # * Python, NuGet, and Ruby package versions do not contain a
1828
+ # corresponding component, package versions of those formats do not
1829
+ # have a namespace.
1830
1830
  #
1831
1831
  # @option params [required, String] :package
1832
1832
  # The package from which to get the associated package group.
@@ -1841,7 +1841,7 @@ module Aws::CodeArtifact
1841
1841
  # resp = client.get_associated_package_group({
1842
1842
  # domain: "DomainName", # required
1843
1843
  # domain_owner: "AccountId",
1844
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
1844
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
1845
1845
  # namespace: "PackageNamespace",
1846
1846
  # package: "PackageName", # required
1847
1847
  # })
@@ -2035,9 +2035,9 @@ module Aws::CodeArtifact
2035
2035
  #
2036
2036
  # * The namespace of a generic package is its `namespace`.
2037
2037
  #
2038
- # * Python and NuGet package versions do not contain a corresponding
2039
- # component, package versions of those formats do not have a
2040
- # namespace.
2038
+ # * Python, NuGet, and Ruby package versions do not contain a
2039
+ # corresponding component, package versions of those formats do not
2040
+ # have a namespace.
2041
2041
  #
2042
2042
  # @option params [required, String] :package
2043
2043
  # The name of the package that contains the requested asset.
@@ -2065,7 +2065,7 @@ module Aws::CodeArtifact
2065
2065
  # domain: "DomainName", # required
2066
2066
  # domain_owner: "AccountId",
2067
2067
  # repository: "RepositoryName", # required
2068
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
2068
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
2069
2069
  # namespace: "PackageNamespace",
2070
2070
  # package: "PackageName", # required
2071
2071
  # package_version: "PackageVersion", # required
@@ -2132,9 +2132,9 @@ module Aws::CodeArtifact
2132
2132
  #
2133
2133
  # * The namespace of a generic package is its `namespace`.
2134
2134
  #
2135
- # * Python and NuGet package versions do not contain a corresponding
2136
- # component, package versions of those formats do not have a
2137
- # namespace.
2135
+ # * Python, NuGet, and Ruby package versions do not contain a
2136
+ # corresponding component, package versions of those formats do not
2137
+ # have a namespace.
2138
2138
  #
2139
2139
  # @option params [required, String] :package
2140
2140
  # The name of the package version that contains the requested readme
@@ -2158,7 +2158,7 @@ module Aws::CodeArtifact
2158
2158
  # domain: "DomainName", # required
2159
2159
  # domain_owner: "AccountId",
2160
2160
  # repository: "RepositoryName", # required
2161
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
2161
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
2162
2162
  # namespace: "PackageNamespace",
2163
2163
  # package: "PackageName", # required
2164
2164
  # package_version: "PackageVersion", # required
@@ -2166,7 +2166,7 @@ module Aws::CodeArtifact
2166
2166
  #
2167
2167
  # @example Response structure
2168
2168
  #
2169
- # resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
2169
+ # resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
2170
2170
  # resp.namespace #=> String
2171
2171
  # resp.package #=> String
2172
2172
  # resp.version #=> String
@@ -2195,6 +2195,8 @@ module Aws::CodeArtifact
2195
2195
  #
2196
2196
  # * `pypi`
2197
2197
  #
2198
+ # * `ruby`
2199
+ #
2198
2200
  # * `swift`
2199
2201
  #
2200
2202
  # @option params [required, String] :domain
@@ -2222,7 +2224,7 @@ module Aws::CodeArtifact
2222
2224
  # domain: "DomainName", # required
2223
2225
  # domain_owner: "AccountId",
2224
2226
  # repository: "RepositoryName", # required
2225
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
2227
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
2226
2228
  # })
2227
2229
  #
2228
2230
  # @example Response structure
@@ -2400,7 +2402,7 @@ module Aws::CodeArtifact
2400
2402
  # @example Response structure
2401
2403
  #
2402
2404
  # resp.packages #=> Array
2403
- # resp.packages[0].format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
2405
+ # resp.packages[0].format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
2404
2406
  # resp.packages[0].namespace #=> String
2405
2407
  # resp.packages[0].package #=> String
2406
2408
  # resp.packages[0].association_type #=> String, one of "STRONG", "WEAK"
@@ -2578,9 +2580,9 @@ module Aws::CodeArtifact
2578
2580
  #
2579
2581
  # * The namespace of a generic package is its `namespace`.
2580
2582
  #
2581
- # * Python and NuGet package versions do not contain a corresponding
2582
- # component, package versions of those formats do not have a
2583
- # namespace.
2583
+ # * Python, NuGet, and Ruby package versions do not contain a
2584
+ # corresponding component, package versions of those formats do not
2585
+ # have a namespace.
2584
2586
  #
2585
2587
  # @option params [required, String] :package
2586
2588
  # The name of the package that contains the requested package version
@@ -2615,7 +2617,7 @@ module Aws::CodeArtifact
2615
2617
  # domain: "DomainName", # required
2616
2618
  # domain_owner: "AccountId",
2617
2619
  # repository: "RepositoryName", # required
2618
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
2620
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
2619
2621
  # namespace: "PackageNamespace",
2620
2622
  # package: "PackageName", # required
2621
2623
  # package_version: "PackageVersion", # required
@@ -2625,7 +2627,7 @@ module Aws::CodeArtifact
2625
2627
  #
2626
2628
  # @example Response structure
2627
2629
  #
2628
- # resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
2630
+ # resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
2629
2631
  # resp.namespace #=> String
2630
2632
  # resp.package #=> String
2631
2633
  # resp.version #=> String
@@ -2695,9 +2697,9 @@ module Aws::CodeArtifact
2695
2697
  #
2696
2698
  # * The namespace of a generic package is its `namespace`.
2697
2699
  #
2698
- # * Python and NuGet package versions do not contain a corresponding
2699
- # component, package versions of those formats do not have a
2700
- # namespace.
2700
+ # * Python, NuGet, and Ruby package versions do not contain a
2701
+ # corresponding component, package versions of those formats do not
2702
+ # have a namespace.
2701
2703
  #
2702
2704
  # @option params [required, String] :package
2703
2705
  # The name of the package versions' package.
@@ -2726,7 +2728,7 @@ module Aws::CodeArtifact
2726
2728
  # domain: "DomainName", # required
2727
2729
  # domain_owner: "AccountId",
2728
2730
  # repository: "RepositoryName", # required
2729
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
2731
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
2730
2732
  # namespace: "PackageNamespace",
2731
2733
  # package: "PackageName", # required
2732
2734
  # package_version: "PackageVersion", # required
@@ -2735,7 +2737,7 @@ module Aws::CodeArtifact
2735
2737
  #
2736
2738
  # @example Response structure
2737
2739
  #
2738
- # resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
2740
+ # resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
2739
2741
  # resp.namespace #=> String
2740
2742
  # resp.package #=> String
2741
2743
  # resp.version #=> String
@@ -2802,9 +2804,9 @@ module Aws::CodeArtifact
2802
2804
  #
2803
2805
  # * The namespace of a generic package is its `namespace`.
2804
2806
  #
2805
- # * Python and NuGet package versions do not contain a corresponding
2806
- # component, package versions of those formats do not have a
2807
- # namespace.
2807
+ # * Python, NuGet, and Ruby package versions do not contain a
2808
+ # corresponding component, package versions of those formats do not
2809
+ # have a namespace.
2808
2810
  #
2809
2811
  # @option params [required, String] :package
2810
2812
  # The name of the package for which you want to request package
@@ -2845,7 +2847,7 @@ module Aws::CodeArtifact
2845
2847
  # domain: "DomainName", # required
2846
2848
  # domain_owner: "AccountId",
2847
2849
  # repository: "RepositoryName", # required
2848
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
2850
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
2849
2851
  # namespace: "PackageNamespace",
2850
2852
  # package: "PackageName", # required
2851
2853
  # status: "Published", # accepts Published, Unfinished, Unlisted, Archived, Disposed, Deleted
@@ -2858,7 +2860,7 @@ module Aws::CodeArtifact
2858
2860
  # @example Response structure
2859
2861
  #
2860
2862
  # resp.default_display_version #=> String
2861
- # resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
2863
+ # resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
2862
2864
  # resp.namespace #=> String
2863
2865
  # resp.package #=> String
2864
2866
  # resp.versions #=> Array
@@ -2915,9 +2917,9 @@ module Aws::CodeArtifact
2915
2917
  #
2916
2918
  # * The namespace of a generic package is its `namespace`.
2917
2919
  #
2918
- # * Python and NuGet package versions do not contain a corresponding
2919
- # component, package versions of those formats do not have a
2920
- # namespace.
2920
+ # * Python, NuGet, and Ruby package versions do not contain a
2921
+ # corresponding component, package versions of those formats do not
2922
+ # have a namespace.
2921
2923
  #
2922
2924
  # @option params [String] :package_prefix
2923
2925
  # A prefix used to filter requested packages. Only packages with names
@@ -2964,7 +2966,7 @@ module Aws::CodeArtifact
2964
2966
  # domain: "DomainName", # required
2965
2967
  # domain_owner: "AccountId",
2966
2968
  # repository: "RepositoryName", # required
2967
- # format: "npm", # accepts npm, pypi, maven, nuget, generic, swift
2969
+ # format: "npm", # accepts npm, pypi, maven, nuget, generic, ruby, swift
2968
2970
  # namespace: "PackageNamespace",
2969
2971
  # package_prefix: "PackageName",
2970
2972
  # max_results: 1,
@@ -2976,7 +2978,7 @@ module Aws::CodeArtifact
2976
2978
  # @example Response structure
2977
2979
  #
2978
2980
  # resp.packages #=> Array
2979
- # resp.packages[0].format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
2981
+ # resp.packages[0].format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
2980
2982
  # resp.packages[0].namespace #=> String
2981
2983
  # resp.packages[0].package #=> String
2982
2984
  # resp.packages[0].origin_configuration.restrictions.publish #=> String, one of "ALLOW", "BLOCK"
@@ -3324,7 +3326,7 @@ module Aws::CodeArtifact
3324
3326
  # domain: "DomainName", # required
3325
3327
  # domain_owner: "AccountId",
3326
3328
  # repository: "RepositoryName", # required
3327
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
3329
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
3328
3330
  # namespace: "PackageNamespace",
3329
3331
  # package: "PackageName", # required
3330
3332
  # package_version: "PackageVersion", # required
@@ -3336,7 +3338,7 @@ module Aws::CodeArtifact
3336
3338
  #
3337
3339
  # @example Response structure
3338
3340
  #
3339
- # resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "swift"
3341
+ # resp.format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
3340
3342
  # resp.namespace #=> String
3341
3343
  # resp.package #=> String
3342
3344
  # resp.version #=> String
@@ -3454,9 +3456,9 @@ module Aws::CodeArtifact
3454
3456
  #
3455
3457
  # * The namespace of a generic package is its `namespace`.
3456
3458
  #
3457
- # * Python and NuGet package versions do not contain a corresponding
3458
- # component, package versions of those formats do not have a
3459
- # namespace.
3459
+ # * Python, NuGet, and Ruby package versions do not contain a
3460
+ # corresponding component, package versions of those formats do not
3461
+ # have a namespace.
3460
3462
  #
3461
3463
  # @option params [required, String] :package
3462
3464
  # The name of the package to be updated.
@@ -3486,7 +3488,7 @@ module Aws::CodeArtifact
3486
3488
  # domain: "DomainName", # required
3487
3489
  # domain_owner: "AccountId",
3488
3490
  # repository: "RepositoryName", # required
3489
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
3491
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
3490
3492
  # namespace: "PackageNamespace",
3491
3493
  # package: "PackageName", # required
3492
3494
  # restrictions: { # required
@@ -3826,9 +3828,9 @@ module Aws::CodeArtifact
3826
3828
  #
3827
3829
  # * The namespace of a generic package is its `namespace`.
3828
3830
  #
3829
- # * Python and NuGet package versions do not contain a corresponding
3830
- # component, package versions of those formats do not have a
3831
- # namespace.
3831
+ # * Python, NuGet, and Ruby package versions do not contain a
3832
+ # corresponding component, package versions of those formats do not
3833
+ # have a namespace.
3832
3834
  #
3833
3835
  # @option params [required, String] :package
3834
3836
  # The name of the package with the version statuses to update.
@@ -3862,7 +3864,7 @@ module Aws::CodeArtifact
3862
3864
  # domain: "DomainName", # required
3863
3865
  # domain_owner: "AccountId",
3864
3866
  # repository: "RepositoryName", # required
3865
- # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, swift
3867
+ # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift
3866
3868
  # namespace: "PackageNamespace",
3867
3869
  # package: "PackageName", # required
3868
3870
  # versions: ["PackageVersion"], # required
@@ -3947,7 +3949,7 @@ module Aws::CodeArtifact
3947
3949
  # resp.repository.upstreams[0].repository_name #=> String
3948
3950
  # resp.repository.external_connections #=> Array
3949
3951
  # 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"
3952
+ # resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic", "ruby", "swift"
3951
3953
  # resp.repository.external_connections[0].status #=> String, one of "Available"
3952
3954
  # resp.repository.created_time #=> Time
3953
3955
  #
@@ -3973,7 +3975,7 @@ module Aws::CodeArtifact
3973
3975
  params: params,
3974
3976
  config: config)
3975
3977
  context[:gem_name] = 'aws-sdk-codeartifact'
3976
- context[:gem_version] = '1.40.0'
3978
+ context[:gem_version] = '1.41.0'
3977
3979
  Seahorse::Client::Request.new(handlers, context)
3978
3980
  end
3979
3981
 
@@ -124,9 +124,9 @@ module Aws::CodeArtifact
124
124
  #
125
125
  # * The namespace of a generic package is its `namespace`.
126
126
  #
127
- # * Python and NuGet package versions do not contain a corresponding
128
- # component, package versions of those formats do not have a
129
- # namespace.
127
+ # * Python, NuGet, and Ruby package versions do not contain a
128
+ # corresponding component, package versions of those formats do not
129
+ # have a namespace.
130
130
  # @return [String]
131
131
  #
132
132
  # @!attribute [rw] package
@@ -226,9 +226,9 @@ module Aws::CodeArtifact
226
226
  #
227
227
  # * The namespace of a generic package is its `namespace`.
228
228
  #
229
- # * Python and NuGet package versions do not contain a corresponding
230
- # component, package versions of those formats do not have a
231
- # namespace.
229
+ # * Python, NuGet, and Ruby package versions do not contain a
230
+ # corresponding component, package versions of those formats do not
231
+ # have a namespace.
232
232
  # @return [String]
233
233
  #
234
234
  # @!attribute [rw] package
@@ -637,9 +637,9 @@ module Aws::CodeArtifact
637
637
  #
638
638
  # * The namespace of a generic package is its `namespace`.
639
639
  #
640
- # * Python and NuGet package versions do not contain a corresponding
641
- # component, package versions of those formats do not have a
642
- # namespace.
640
+ # * Python, NuGet, and Ruby package versions do not contain a
641
+ # corresponding component, package versions of those formats do not
642
+ # have a namespace.
643
643
  # @return [String]
644
644
  #
645
645
  # @!attribute [rw] package
@@ -711,9 +711,9 @@ module Aws::CodeArtifact
711
711
  #
712
712
  # * The namespace of a generic package is its `namespace`.
713
713
  #
714
- # * Python and NuGet package versions do not contain a corresponding
715
- # component, package versions of those formats do not have a
716
- # namespace.
714
+ # * Python, NuGet, and Ruby package versions do not contain a
715
+ # corresponding component, package versions of those formats do not
716
+ # have a namespace.
717
717
  # @return [String]
718
718
  #
719
719
  # @!attribute [rw] package
@@ -967,9 +967,9 @@ module Aws::CodeArtifact
967
967
  #
968
968
  # * The namespace of a generic package is its `namespace`.
969
969
  #
970
- # * Python and NuGet package versions do not contain a corresponding
971
- # component, package versions of those formats do not have a
972
- # namespace.
970
+ # * Python, NuGet, and Ruby package versions do not contain a
971
+ # corresponding component, package versions of those formats do not
972
+ # have a namespace.
973
973
  # @return [String]
974
974
  #
975
975
  # @!attribute [rw] package
@@ -1046,9 +1046,9 @@ module Aws::CodeArtifact
1046
1046
  #
1047
1047
  # * The namespace of a generic package is its `namespace`.
1048
1048
  #
1049
- # * Python and NuGet package versions do not contain a corresponding
1050
- # component, package versions of those formats do not have a
1051
- # namespace.
1049
+ # * Python, NuGet, and Ruby package versions do not contain a
1050
+ # corresponding component, package versions of those formats do not
1051
+ # have a namespace.
1052
1052
  # @return [String]
1053
1053
  #
1054
1054
  # @!attribute [rw] package
@@ -1211,9 +1211,9 @@ module Aws::CodeArtifact
1211
1211
  #
1212
1212
  # * The namespace of a generic package is its `namespace`.
1213
1213
  #
1214
- # * Python and NuGet package versions do not contain a corresponding
1215
- # component, package versions of those formats do not have a
1216
- # namespace.
1214
+ # * Python, NuGet, and Ruby package versions do not contain a
1215
+ # corresponding component, package versions of those formats do not
1216
+ # have a namespace.
1217
1217
  # @return [String]
1218
1218
  #
1219
1219
  # @!attribute [rw] package
@@ -1455,9 +1455,9 @@ module Aws::CodeArtifact
1455
1455
  #
1456
1456
  # * The namespace of a generic package is its `namespace`.
1457
1457
  #
1458
- # * Python and NuGet package versions do not contain a corresponding
1459
- # component, package versions of those formats do not have a
1460
- # namespace.
1458
+ # * Python, NuGet, and Ruby package versions do not contain a
1459
+ # corresponding component, package versions of those formats do not
1460
+ # have a namespace.
1461
1461
  # @return [String]
1462
1462
  #
1463
1463
  # @!attribute [rw] package
@@ -1613,9 +1613,9 @@ module Aws::CodeArtifact
1613
1613
  #
1614
1614
  # * The namespace of a generic package is its `namespace`.
1615
1615
  #
1616
- # * Python and NuGet package versions do not contain a corresponding
1617
- # component, package versions of those formats do not have a
1618
- # namespace.
1616
+ # * Python, NuGet, and Ruby package versions do not contain a
1617
+ # corresponding component, package versions of those formats do not
1618
+ # have a namespace.
1619
1619
  # @return [String]
1620
1620
  #
1621
1621
  # @!attribute [rw] package
@@ -1721,9 +1721,9 @@ module Aws::CodeArtifact
1721
1721
  #
1722
1722
  # * The namespace of a generic package is its `namespace`.
1723
1723
  #
1724
- # * Python and NuGet package versions do not contain a corresponding
1725
- # component, package versions of those formats do not have a
1726
- # 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.
1727
1727
  # @return [String]
1728
1728
  #
1729
1729
  # @!attribute [rw] package
@@ -1764,9 +1764,9 @@ module Aws::CodeArtifact
1764
1764
  #
1765
1765
  # * The namespace of a generic package is its `namespace`.
1766
1766
  #
1767
- # * Python and NuGet package versions do not contain a corresponding
1768
- # component, package versions of those formats do not have a
1769
- # namespace.
1767
+ # * Python, NuGet, and Ruby package versions do not contain a
1768
+ # corresponding component, package versions of those formats do not
1769
+ # have a namespace.
1770
1770
  # @return [String]
1771
1771
  #
1772
1772
  # @!attribute [rw] package
@@ -2176,9 +2176,9 @@ module Aws::CodeArtifact
2176
2176
  #
2177
2177
  # * The namespace of a generic package is its `namespace`.
2178
2178
  #
2179
- # * Python and NuGet package versions do not contain a corresponding
2180
- # component, package versions of those formats do not have a
2181
- # namespace.
2179
+ # * Python, NuGet, and Ruby package versions do not contain a
2180
+ # corresponding component, package versions of those formats do not
2181
+ # have a namespace.
2182
2182
  # @return [String]
2183
2183
  #
2184
2184
  # @!attribute [rw] package
@@ -2232,9 +2232,9 @@ module Aws::CodeArtifact
2232
2232
  #
2233
2233
  # * The namespace of a generic package is its `namespace`.
2234
2234
  #
2235
- # * Python and NuGet package versions do not contain a corresponding
2236
- # component, package versions of those formats do not have a
2237
- # namespace.
2235
+ # * Python, NuGet, and Ruby package versions do not contain a
2236
+ # corresponding component, package versions of those formats do not
2237
+ # have a namespace.
2238
2238
  # @return [String]
2239
2239
  #
2240
2240
  # @!attribute [rw] package
@@ -2318,9 +2318,9 @@ module Aws::CodeArtifact
2318
2318
  #
2319
2319
  # * The namespace of a generic package is its `namespace`.
2320
2320
  #
2321
- # * Python and NuGet package versions do not contain a corresponding
2322
- # component, package versions of those formats do not have a
2323
- # namespace.
2321
+ # * Python, NuGet, and Ruby package versions do not contain a
2322
+ # corresponding component, package versions of those formats do not
2323
+ # have a namespace.
2324
2324
  # @return [String]
2325
2325
  #
2326
2326
  # @!attribute [rw] package
@@ -2368,9 +2368,9 @@ module Aws::CodeArtifact
2368
2368
  #
2369
2369
  # * The namespace of a generic package is its `namespace`.
2370
2370
  #
2371
- # * Python and NuGet package versions do not contain a corresponding
2372
- # component, package versions of those formats do not have a
2373
- # namespace.
2371
+ # * Python, NuGet, and Ruby package versions do not contain a
2372
+ # corresponding component, package versions of those formats do not
2373
+ # have a namespace.
2374
2374
  # @return [String]
2375
2375
  #
2376
2376
  # @!attribute [rw] package
@@ -2455,9 +2455,9 @@ module Aws::CodeArtifact
2455
2455
  #
2456
2456
  # * The namespace of a generic package is its `namespace`.
2457
2457
  #
2458
- # * Python and NuGet package versions do not contain a corresponding
2459
- # component, package versions of those formats do not have a
2460
- # namespace.
2458
+ # * Python, NuGet, and Ruby package versions do not contain a
2459
+ # corresponding component, package versions of those formats do not
2460
+ # have a namespace.
2461
2461
  # @return [String]
2462
2462
  #
2463
2463
  # @!attribute [rw] package
@@ -2533,9 +2533,9 @@ module Aws::CodeArtifact
2533
2533
  #
2534
2534
  # * The namespace of a generic package is its `namespace`.
2535
2535
  #
2536
- # * Python and NuGet package versions do not contain a corresponding
2537
- # component, package versions of those formats do not have a
2538
- # namespace.
2536
+ # * Python, NuGet, and Ruby package versions do not contain a
2537
+ # corresponding component, package versions of those formats do not
2538
+ # have a namespace.
2539
2539
  # @return [String]
2540
2540
  #
2541
2541
  # @!attribute [rw] package
@@ -2601,9 +2601,9 @@ module Aws::CodeArtifact
2601
2601
  #
2602
2602
  # * The namespace of a generic package is its `namespace`.
2603
2603
  #
2604
- # * Python and NuGet package versions do not contain a corresponding
2605
- # component, package versions of those formats do not have a
2606
- # namespace.
2604
+ # * Python, NuGet, and Ruby package versions do not contain a
2605
+ # corresponding component, package versions of those formats do not
2606
+ # have a namespace.
2607
2607
  # @return [String]
2608
2608
  #
2609
2609
  # @!attribute [rw] package_prefix
@@ -2883,9 +2883,9 @@ module Aws::CodeArtifact
2883
2883
  #
2884
2884
  # * The namespace of a generic package is its `namespace`.
2885
2885
  #
2886
- # * Python and NuGet package versions do not contain a corresponding
2887
- # component, package versions of those formats do not have a
2888
- # namespace.
2886
+ # * Python, NuGet, and Ruby package versions do not contain a
2887
+ # corresponding component, package versions of those formats do not
2888
+ # have a namespace.
2889
2889
  # @return [String]
2890
2890
  #
2891
2891
  # @!attribute [rw] package
@@ -2946,9 +2946,9 @@ module Aws::CodeArtifact
2946
2946
  #
2947
2947
  # * The namespace of a generic package is its `namespace`.
2948
2948
  #
2949
- # * Python and NuGet package versions do not contain a corresponding
2950
- # component, package versions of those formats do not have a
2951
- # namespace.
2949
+ # * Python, NuGet, and Ruby package versions do not contain a
2950
+ # corresponding component, package versions of those formats do not
2951
+ # have a namespace.
2952
2952
  # @return [String]
2953
2953
  #
2954
2954
  # @!attribute [rw] name
@@ -3238,9 +3238,9 @@ module Aws::CodeArtifact
3238
3238
  #
3239
3239
  # * The namespace of a generic package is its `namespace`.
3240
3240
  #
3241
- # * Python and NuGet package versions do not contain a corresponding
3242
- # component, package versions of those formats do not have a
3243
- # namespace.
3241
+ # * Python, NuGet, and Ruby package versions do not contain a
3242
+ # corresponding component, package versions of those formats do not
3243
+ # have a namespace.
3244
3244
  # @return [String]
3245
3245
  #
3246
3246
  # @!attribute [rw] package
@@ -3285,9 +3285,9 @@ module Aws::CodeArtifact
3285
3285
  #
3286
3286
  # * The namespace of a generic package is its `namespace`.
3287
3287
  #
3288
- # * Python and NuGet package versions do not contain a corresponding
3289
- # component, package versions of those formats do not have a
3290
- # namespace.
3288
+ # * Python, NuGet, and Ruby package versions do not contain a
3289
+ # corresponding component, package versions of those formats do not
3290
+ # have a namespace.
3291
3291
  # @return [String]
3292
3292
  #
3293
3293
  # @!attribute [rw] package_name
@@ -3678,9 +3678,9 @@ module Aws::CodeArtifact
3678
3678
  #
3679
3679
  # * The namespace of a generic package is its `namespace`.
3680
3680
  #
3681
- # * Python and NuGet package versions do not contain a corresponding
3682
- # component, package versions of those formats do not have a
3683
- # namespace.
3681
+ # * Python, NuGet, and Ruby package versions do not contain a
3682
+ # corresponding component, package versions of those formats do not
3683
+ # have a namespace.
3684
3684
  # @return [String]
3685
3685
  #
3686
3686
  # @!attribute [rw] package
@@ -4262,9 +4262,9 @@ module Aws::CodeArtifact
4262
4262
  #
4263
4263
  # * The namespace of a generic package is its `namespace`.
4264
4264
  #
4265
- # * Python and NuGet package versions do not contain a corresponding
4266
- # component, package versions of those formats do not have a
4267
- # namespace.
4265
+ # * Python, NuGet, and Ruby package versions do not contain a
4266
+ # corresponding component, package versions of those formats do not
4267
+ # have a namespace.
4268
4268
  # @return [String]
4269
4269
  #
4270
4270
  # @!attribute [rw] package
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-codeartifact/customizations'
52
52
  # @!group service
53
53
  module Aws::CodeArtifact
54
54
 
55
- GEM_VERSION = '1.40.0'
55
+ GEM_VERSION = '1.41.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -96,7 +96,7 @@ module Aws
96
96
  ?domain_owner: ::String,
97
97
  source_repository: ::String,
98
98
  destination_repository: ::String,
99
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
99
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
100
100
  ?namespace: ::String,
101
101
  package: ::String,
102
102
  ?versions: Array[::String],
@@ -199,7 +199,7 @@ module Aws
199
199
  domain: ::String,
200
200
  ?domain_owner: ::String,
201
201
  repository: ::String,
202
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
202
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
203
203
  ?namespace: ::String,
204
204
  package: ::String
205
205
  ) -> _DeletePackageResponseSuccess
@@ -227,7 +227,7 @@ module Aws
227
227
  domain: ::String,
228
228
  ?domain_owner: ::String,
229
229
  repository: ::String,
230
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
230
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
231
231
  ?namespace: ::String,
232
232
  package: ::String,
233
233
  versions: Array[::String],
@@ -280,7 +280,7 @@ module Aws
280
280
  domain: ::String,
281
281
  ?domain_owner: ::String,
282
282
  repository: ::String,
283
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
283
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
284
284
  ?namespace: ::String,
285
285
  package: ::String
286
286
  ) -> _DescribePackageResponseSuccess
@@ -307,7 +307,7 @@ module Aws
307
307
  domain: ::String,
308
308
  ?domain_owner: ::String,
309
309
  repository: ::String,
310
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
310
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
311
311
  ?namespace: ::String,
312
312
  package: ::String,
313
313
  package_version: ::String
@@ -349,7 +349,7 @@ module Aws
349
349
  domain: ::String,
350
350
  ?domain_owner: ::String,
351
351
  repository: ::String,
352
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
352
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
353
353
  ?namespace: ::String,
354
354
  package: ::String,
355
355
  versions: Array[::String],
@@ -367,7 +367,7 @@ module Aws
367
367
  def get_associated_package_group: (
368
368
  domain: ::String,
369
369
  ?domain_owner: ::String,
370
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
370
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
371
371
  ?namespace: ::String,
372
372
  package: ::String
373
373
  ) -> _GetAssociatedPackageGroupResponseSuccess
@@ -409,7 +409,7 @@ module Aws
409
409
  domain: ::String,
410
410
  ?domain_owner: ::String,
411
411
  repository: ::String,
412
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
412
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
413
413
  ?namespace: ::String,
414
414
  package: ::String,
415
415
  package_version: ::String,
@@ -420,7 +420,7 @@ module Aws
420
420
 
421
421
  interface _GetPackageVersionReadmeResponseSuccess
422
422
  include ::Seahorse::Client::_ResponseSuccess[Types::GetPackageVersionReadmeResult]
423
- def format: () -> ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
423
+ def format: () -> ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
424
424
  def namespace: () -> ::String
425
425
  def package: () -> ::String
426
426
  def version: () -> ::String
@@ -432,7 +432,7 @@ module Aws
432
432
  domain: ::String,
433
433
  ?domain_owner: ::String,
434
434
  repository: ::String,
435
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
435
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
436
436
  ?namespace: ::String,
437
437
  package: ::String,
438
438
  package_version: ::String
@@ -448,7 +448,7 @@ module Aws
448
448
  domain: ::String,
449
449
  ?domain_owner: ::String,
450
450
  repository: ::String,
451
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
451
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
452
452
  ) -> _GetRepositoryEndpointResponseSuccess
453
453
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRepositoryEndpointResponseSuccess
454
454
 
@@ -525,7 +525,7 @@ module Aws
525
525
 
526
526
  interface _ListPackageVersionAssetsResponseSuccess
527
527
  include ::Seahorse::Client::_ResponseSuccess[Types::ListPackageVersionAssetsResult]
528
- def format: () -> ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
528
+ def format: () -> ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
529
529
  def namespace: () -> ::String
530
530
  def package: () -> ::String
531
531
  def version: () -> ::String
@@ -538,7 +538,7 @@ module Aws
538
538
  domain: ::String,
539
539
  ?domain_owner: ::String,
540
540
  repository: ::String,
541
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
541
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
542
542
  ?namespace: ::String,
543
543
  package: ::String,
544
544
  package_version: ::String,
@@ -549,7 +549,7 @@ module Aws
549
549
 
550
550
  interface _ListPackageVersionDependenciesResponseSuccess
551
551
  include ::Seahorse::Client::_ResponseSuccess[Types::ListPackageVersionDependenciesResult]
552
- def format: () -> ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
552
+ def format: () -> ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
553
553
  def namespace: () -> ::String
554
554
  def package: () -> ::String
555
555
  def version: () -> ::String
@@ -562,7 +562,7 @@ module Aws
562
562
  domain: ::String,
563
563
  ?domain_owner: ::String,
564
564
  repository: ::String,
565
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
565
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
566
566
  ?namespace: ::String,
567
567
  package: ::String,
568
568
  package_version: ::String,
@@ -573,7 +573,7 @@ module Aws
573
573
  interface _ListPackageVersionsResponseSuccess
574
574
  include ::Seahorse::Client::_ResponseSuccess[Types::ListPackageVersionsResult]
575
575
  def default_display_version: () -> ::String
576
- def format: () -> ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
576
+ def format: () -> ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
577
577
  def namespace: () -> ::String
578
578
  def package: () -> ::String
579
579
  def versions: () -> ::Array[Types::PackageVersionSummary]
@@ -584,7 +584,7 @@ module Aws
584
584
  domain: ::String,
585
585
  ?domain_owner: ::String,
586
586
  repository: ::String,
587
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
587
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
588
588
  ?namespace: ::String,
589
589
  package: ::String,
590
590
  ?status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted"),
@@ -605,7 +605,7 @@ module Aws
605
605
  domain: ::String,
606
606
  ?domain_owner: ::String,
607
607
  repository: ::String,
608
- ?format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
608
+ ?format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
609
609
  ?namespace: ::String,
610
610
  ?package_prefix: ::String,
611
611
  ?max_results: ::Integer,
@@ -671,7 +671,7 @@ module Aws
671
671
 
672
672
  interface _PublishPackageVersionResponseSuccess
673
673
  include ::Seahorse::Client::_ResponseSuccess[Types::PublishPackageVersionResult]
674
- def format: () -> ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
674
+ def format: () -> ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
675
675
  def namespace: () -> ::String
676
676
  def package: () -> ::String
677
677
  def version: () -> ::String
@@ -684,7 +684,7 @@ module Aws
684
684
  domain: ::String,
685
685
  ?domain_owner: ::String,
686
686
  repository: ::String,
687
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
687
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
688
688
  ?namespace: ::String,
689
689
  package: ::String,
690
690
  package_version: ::String,
@@ -717,7 +717,7 @@ module Aws
717
717
  domain: ::String,
718
718
  ?domain_owner: ::String,
719
719
  repository: ::String,
720
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
720
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
721
721
  ?namespace: ::String,
722
722
  package: ::String,
723
723
  restrictions: {
@@ -816,7 +816,7 @@ module Aws
816
816
  domain: ::String,
817
817
  ?domain_owner: ::String,
818
818
  repository: ::String,
819
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
819
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift"),
820
820
  ?namespace: ::String,
821
821
  package: ::String,
822
822
  versions: Array[::String],
data/sig/types.rbs CHANGED
@@ -34,7 +34,7 @@ module Aws::CodeArtifact
34
34
  end
35
35
 
36
36
  class AssociatedPackage
37
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
37
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
38
38
  attr_accessor namespace: ::String
39
39
  attr_accessor package: ::String
40
40
  attr_accessor association_type: ("STRONG" | "WEAK")
@@ -53,7 +53,7 @@ module Aws::CodeArtifact
53
53
  attr_accessor domain_owner: ::String
54
54
  attr_accessor source_repository: ::String
55
55
  attr_accessor destination_repository: ::String
56
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
56
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
57
57
  attr_accessor namespace: ::String
58
58
  attr_accessor package: ::String
59
59
  attr_accessor versions: ::Array[::String]
@@ -150,7 +150,7 @@ module Aws::CodeArtifact
150
150
  attr_accessor domain: ::String
151
151
  attr_accessor domain_owner: ::String
152
152
  attr_accessor repository: ::String
153
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
153
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
154
154
  attr_accessor namespace: ::String
155
155
  attr_accessor package: ::String
156
156
  SENSITIVE: []
@@ -165,7 +165,7 @@ module Aws::CodeArtifact
165
165
  attr_accessor domain: ::String
166
166
  attr_accessor domain_owner: ::String
167
167
  attr_accessor repository: ::String
168
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
168
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
169
169
  attr_accessor namespace: ::String
170
170
  attr_accessor package: ::String
171
171
  attr_accessor versions: ::Array[::String]
@@ -231,7 +231,7 @@ module Aws::CodeArtifact
231
231
  attr_accessor domain: ::String
232
232
  attr_accessor domain_owner: ::String
233
233
  attr_accessor repository: ::String
234
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
234
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
235
235
  attr_accessor namespace: ::String
236
236
  attr_accessor package: ::String
237
237
  SENSITIVE: []
@@ -246,7 +246,7 @@ module Aws::CodeArtifact
246
246
  attr_accessor domain: ::String
247
247
  attr_accessor domain_owner: ::String
248
248
  attr_accessor repository: ::String
249
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
249
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
250
250
  attr_accessor namespace: ::String
251
251
  attr_accessor package: ::String
252
252
  attr_accessor package_version: ::String
@@ -287,7 +287,7 @@ module Aws::CodeArtifact
287
287
  attr_accessor domain: ::String
288
288
  attr_accessor domain_owner: ::String
289
289
  attr_accessor repository: ::String
290
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
290
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
291
291
  attr_accessor namespace: ::String
292
292
  attr_accessor package: ::String
293
293
  attr_accessor versions: ::Array[::String]
@@ -334,7 +334,7 @@ module Aws::CodeArtifact
334
334
  class GetAssociatedPackageGroupRequest
335
335
  attr_accessor domain: ::String
336
336
  attr_accessor domain_owner: ::String
337
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
337
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
338
338
  attr_accessor namespace: ::String
339
339
  attr_accessor package: ::String
340
340
  SENSITIVE: []
@@ -374,7 +374,7 @@ module Aws::CodeArtifact
374
374
  attr_accessor domain: ::String
375
375
  attr_accessor domain_owner: ::String
376
376
  attr_accessor repository: ::String
377
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
377
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
378
378
  attr_accessor namespace: ::String
379
379
  attr_accessor package: ::String
380
380
  attr_accessor package_version: ::String
@@ -395,7 +395,7 @@ module Aws::CodeArtifact
395
395
  attr_accessor domain: ::String
396
396
  attr_accessor domain_owner: ::String
397
397
  attr_accessor repository: ::String
398
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
398
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
399
399
  attr_accessor namespace: ::String
400
400
  attr_accessor package: ::String
401
401
  attr_accessor package_version: ::String
@@ -403,7 +403,7 @@ module Aws::CodeArtifact
403
403
  end
404
404
 
405
405
  class GetPackageVersionReadmeResult
406
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
406
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
407
407
  attr_accessor namespace: ::String
408
408
  attr_accessor package: ::String
409
409
  attr_accessor version: ::String
@@ -416,7 +416,7 @@ module Aws::CodeArtifact
416
416
  attr_accessor domain: ::String
417
417
  attr_accessor domain_owner: ::String
418
418
  attr_accessor repository: ::String
419
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
419
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
420
420
  SENSITIVE: []
421
421
  end
422
422
 
@@ -511,7 +511,7 @@ module Aws::CodeArtifact
511
511
  attr_accessor domain: ::String
512
512
  attr_accessor domain_owner: ::String
513
513
  attr_accessor repository: ::String
514
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
514
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
515
515
  attr_accessor namespace: ::String
516
516
  attr_accessor package: ::String
517
517
  attr_accessor package_version: ::String
@@ -521,7 +521,7 @@ module Aws::CodeArtifact
521
521
  end
522
522
 
523
523
  class ListPackageVersionAssetsResult
524
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
524
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
525
525
  attr_accessor namespace: ::String
526
526
  attr_accessor package: ::String
527
527
  attr_accessor version: ::String
@@ -535,7 +535,7 @@ module Aws::CodeArtifact
535
535
  attr_accessor domain: ::String
536
536
  attr_accessor domain_owner: ::String
537
537
  attr_accessor repository: ::String
538
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
538
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
539
539
  attr_accessor namespace: ::String
540
540
  attr_accessor package: ::String
541
541
  attr_accessor package_version: ::String
@@ -544,7 +544,7 @@ module Aws::CodeArtifact
544
544
  end
545
545
 
546
546
  class ListPackageVersionDependenciesResult
547
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
547
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
548
548
  attr_accessor namespace: ::String
549
549
  attr_accessor package: ::String
550
550
  attr_accessor version: ::String
@@ -558,7 +558,7 @@ module Aws::CodeArtifact
558
558
  attr_accessor domain: ::String
559
559
  attr_accessor domain_owner: ::String
560
560
  attr_accessor repository: ::String
561
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
561
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
562
562
  attr_accessor namespace: ::String
563
563
  attr_accessor package: ::String
564
564
  attr_accessor status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
@@ -571,7 +571,7 @@ module Aws::CodeArtifact
571
571
 
572
572
  class ListPackageVersionsResult
573
573
  attr_accessor default_display_version: ::String
574
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
574
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
575
575
  attr_accessor namespace: ::String
576
576
  attr_accessor package: ::String
577
577
  attr_accessor versions: ::Array[Types::PackageVersionSummary]
@@ -583,7 +583,7 @@ module Aws::CodeArtifact
583
583
  attr_accessor domain: ::String
584
584
  attr_accessor domain_owner: ::String
585
585
  attr_accessor repository: ::String
586
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
586
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
587
587
  attr_accessor namespace: ::String
588
588
  attr_accessor package_prefix: ::String
589
589
  attr_accessor max_results: ::Integer
@@ -662,7 +662,7 @@ module Aws::CodeArtifact
662
662
  end
663
663
 
664
664
  class PackageDescription
665
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
665
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
666
666
  attr_accessor namespace: ::String
667
667
  attr_accessor name: ::String
668
668
  attr_accessor origin_configuration: Types::PackageOriginConfiguration
@@ -732,7 +732,7 @@ module Aws::CodeArtifact
732
732
  end
733
733
 
734
734
  class PackageSummary
735
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
735
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
736
736
  attr_accessor namespace: ::String
737
737
  attr_accessor package: ::String
738
738
  attr_accessor origin_configuration: Types::PackageOriginConfiguration
@@ -740,7 +740,7 @@ module Aws::CodeArtifact
740
740
  end
741
741
 
742
742
  class PackageVersionDescription
743
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
743
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
744
744
  attr_accessor namespace: ::String
745
745
  attr_accessor package_name: ::String
746
746
  attr_accessor display_name: ::String
@@ -780,7 +780,7 @@ module Aws::CodeArtifact
780
780
  attr_accessor domain: ::String
781
781
  attr_accessor domain_owner: ::String
782
782
  attr_accessor repository: ::String
783
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
783
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
784
784
  attr_accessor namespace: ::String
785
785
  attr_accessor package: ::String
786
786
  attr_accessor package_version: ::String
@@ -792,7 +792,7 @@ module Aws::CodeArtifact
792
792
  end
793
793
 
794
794
  class PublishPackageVersionResult
795
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
795
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
796
796
  attr_accessor namespace: ::String
797
797
  attr_accessor package: ::String
798
798
  attr_accessor version: ::String
@@ -819,7 +819,7 @@ module Aws::CodeArtifact
819
819
  attr_accessor domain: ::String
820
820
  attr_accessor domain_owner: ::String
821
821
  attr_accessor repository: ::String
822
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
822
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
823
823
  attr_accessor namespace: ::String
824
824
  attr_accessor package: ::String
825
825
  attr_accessor restrictions: Types::PackageOriginRestrictions
@@ -860,7 +860,7 @@ module Aws::CodeArtifact
860
860
 
861
861
  class RepositoryExternalConnectionInfo
862
862
  attr_accessor external_connection_name: ::String
863
- attr_accessor package_format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
863
+ attr_accessor package_format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
864
864
  attr_accessor status: ("Available")
865
865
  SENSITIVE: []
866
866
  end
@@ -967,7 +967,7 @@ module Aws::CodeArtifact
967
967
  attr_accessor domain: ::String
968
968
  attr_accessor domain_owner: ::String
969
969
  attr_accessor repository: ::String
970
- attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
970
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift")
971
971
  attr_accessor namespace: ::String
972
972
  attr_accessor package: ::String
973
973
  attr_accessor versions: ::Array[::String]
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.40.0
4
+ version: 1.41.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: 2024-04-25 00:00:00.000000000 Z
11
+ date: 2024-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core