aws-sdk-cleanroomsml 1.49.0 → 1.50.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: 4f90350d576b93c98ce681cd92ada4ac88f4acac58dbb3a0295c9415d51f2b1c
4
- data.tar.gz: 5218671b48ced12168d0c24a8f04515fc2a0a45ba7d57097cadd8cbee5afc62c
3
+ metadata.gz: 3e395d9b172934a1c87d127dd8e737d5de452b291138eae5c29502e394917557
4
+ data.tar.gz: 8dd30cea93861e1e3ce5837d7bd6b3dc4a98a0577c47bc094c3a7096f721bf4f
5
5
  SHA512:
6
- metadata.gz: 010e77c18689835e0b7b77a1eed1b5fcaddcd9c17dac88e836c7188274180d02c3928a52350810daddd7401a0d2078a21620defd5362d3bf011f9cc9fe40fe82
7
- data.tar.gz: 43a013236a2e6fdc13a7a6b788a6d899cf793a746974c209fd8f88c559375369139793af44ac7eab0d9775eee654170fbf82b4c020bd799fb045e6ddad2e30dc
6
+ metadata.gz: 9abcb2c18618651970cea52e32d829722d5075677313f514dacb1250dfe3014052fca24639b49dbbe1ec71c56e512f5acbc76d97592965e3fefe90a0e7b3521e
7
+ data.tar.gz: f28b1f7adabe15ffa6b01c6eaec55b1eb507fe779350ae62eb4c5d7357694f55ecb32a45b19eee5c15b5fde5df6e616417e9827f5ad458a2ff48976d0703ad4c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.50.0 (2026-07-27)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for the CR.8X worker type for SQL (32 vCPU)
8
+
4
9
  1.49.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.50.0
@@ -1073,7 +1073,7 @@ module Aws::CleanRoomsML
1073
1073
  # },
1074
1074
  # compute_configuration: {
1075
1075
  # worker: {
1076
- # type: "CR.1X", # accepts CR.1X, CR.4X
1076
+ # type: "CR.1X", # accepts CR.1X, CR.4X, CR.8X
1077
1077
  # number: 1,
1078
1078
  # properties: {
1079
1079
  # spark: {
@@ -1691,7 +1691,7 @@ module Aws::CleanRoomsML
1691
1691
  # resp.seed_audience.sql_parameters.analysis_template_arn #=> String
1692
1692
  # resp.seed_audience.sql_parameters.parameters #=> Hash
1693
1693
  # resp.seed_audience.sql_parameters.parameters["ParameterName"] #=> String
1694
- # resp.seed_audience.sql_compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
1694
+ # resp.seed_audience.sql_compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X", "CR.8X"
1695
1695
  # resp.seed_audience.sql_compute_configuration.worker.number #=> Integer
1696
1696
  # resp.seed_audience.sql_compute_configuration.worker.properties.spark #=> Hash
1697
1697
  # resp.seed_audience.sql_compute_configuration.worker.properties.spark["SparkPropertyKey"] #=> String
@@ -2365,7 +2365,7 @@ module Aws::CleanRoomsML
2365
2365
  # resp.input_channel.data_source.protected_query_input_parameters.sql_parameters.analysis_template_arn #=> String
2366
2366
  # resp.input_channel.data_source.protected_query_input_parameters.sql_parameters.parameters #=> Hash
2367
2367
  # resp.input_channel.data_source.protected_query_input_parameters.sql_parameters.parameters["ParameterName"] #=> String
2368
- # resp.input_channel.data_source.protected_query_input_parameters.compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
2368
+ # resp.input_channel.data_source.protected_query_input_parameters.compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X", "CR.8X"
2369
2369
  # resp.input_channel.data_source.protected_query_input_parameters.compute_configuration.worker.number #=> Integer
2370
2370
  # resp.input_channel.data_source.protected_query_input_parameters.compute_configuration.worker.properties.spark #=> Hash
2371
2371
  # resp.input_channel.data_source.protected_query_input_parameters.compute_configuration.worker.properties.spark["SparkPropertyKey"] #=> String
@@ -3753,7 +3753,7 @@ module Aws::CleanRoomsML
3753
3753
  # },
3754
3754
  # sql_compute_configuration: {
3755
3755
  # worker: {
3756
- # type: "CR.1X", # accepts CR.1X, CR.4X
3756
+ # type: "CR.1X", # accepts CR.1X, CR.4X, CR.8X
3757
3757
  # number: 1,
3758
3758
  # properties: {
3759
3759
  # spark: {
@@ -4146,7 +4146,7 @@ module Aws::CleanRoomsML
4146
4146
  tracer: tracer
4147
4147
  )
4148
4148
  context[:gem_name] = 'aws-sdk-cleanroomsml'
4149
- context[:gem_version] = '1.49.0'
4149
+ context[:gem_version] = '1.50.0'
4150
4150
  Seahorse::Client::Request.new(handlers, context)
4151
4151
  end
4152
4152
 
@@ -1640,6 +1640,7 @@ module Aws::CleanRoomsML
1640
1640
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1641
1641
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1642
1642
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1643
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1643
1644
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
1644
1645
  end)
1645
1646
 
@@ -1653,6 +1654,7 @@ module Aws::CleanRoomsML
1653
1654
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1654
1655
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1655
1656
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1657
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1656
1658
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
1657
1659
  end)
1658
1660
 
@@ -1665,6 +1667,7 @@ module Aws::CleanRoomsML
1665
1667
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1666
1668
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1667
1669
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1670
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1668
1671
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
1669
1672
  end)
1670
1673
 
@@ -1720,6 +1723,7 @@ module Aws::CleanRoomsML
1720
1723
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1721
1724
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1722
1725
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1726
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1723
1727
  end)
1724
1728
 
1725
1729
  api.add_operation(:delete_audience_generation_job, Seahorse::Model::Operation.new.tap do |o|
@@ -1732,6 +1736,7 @@ module Aws::CleanRoomsML
1732
1736
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1733
1737
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1734
1738
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1739
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1735
1740
  end)
1736
1741
 
1737
1742
  api.add_operation(:delete_audience_model, Seahorse::Model::Operation.new.tap do |o|
@@ -1744,6 +1749,7 @@ module Aws::CleanRoomsML
1744
1749
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1745
1750
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1746
1751
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1752
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1747
1753
  end)
1748
1754
 
1749
1755
  api.add_operation(:delete_configured_audience_model, Seahorse::Model::Operation.new.tap do |o|
@@ -1756,6 +1762,7 @@ module Aws::CleanRoomsML
1756
1762
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1757
1763
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1758
1764
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1765
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1759
1766
  end)
1760
1767
 
1761
1768
  api.add_operation(:delete_configured_audience_model_policy, Seahorse::Model::Operation.new.tap do |o|
@@ -1767,6 +1774,7 @@ module Aws::CleanRoomsML
1767
1774
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1768
1775
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1769
1776
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1777
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1770
1778
  end)
1771
1779
 
1772
1780
  api.add_operation(:delete_configured_model_algorithm, Seahorse::Model::Operation.new.tap do |o|
@@ -1779,6 +1787,7 @@ module Aws::CleanRoomsML
1779
1787
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1780
1788
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1781
1789
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1790
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1782
1791
  end)
1783
1792
 
1784
1793
  api.add_operation(:delete_configured_model_algorithm_association, Seahorse::Model::Operation.new.tap do |o|
@@ -1842,6 +1851,7 @@ module Aws::CleanRoomsML
1842
1851
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1843
1852
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1844
1853
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1854
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1845
1855
  end)
1846
1856
 
1847
1857
  api.add_operation(:get_audience_generation_job, Seahorse::Model::Operation.new.tap do |o|
@@ -1853,6 +1863,7 @@ module Aws::CleanRoomsML
1853
1863
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1854
1864
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1855
1865
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1866
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1856
1867
  end)
1857
1868
 
1858
1869
  api.add_operation(:get_audience_model, Seahorse::Model::Operation.new.tap do |o|
@@ -1864,6 +1875,7 @@ module Aws::CleanRoomsML
1864
1875
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1865
1876
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1866
1877
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1878
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1867
1879
  end)
1868
1880
 
1869
1881
  api.add_operation(:get_collaboration_configured_model_algorithm_association, Seahorse::Model::Operation.new.tap do |o|
@@ -1911,6 +1923,7 @@ module Aws::CleanRoomsML
1911
1923
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1912
1924
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1913
1925
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1926
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1914
1927
  end)
1915
1928
 
1916
1929
  api.add_operation(:get_configured_audience_model_policy, Seahorse::Model::Operation.new.tap do |o|
@@ -1922,6 +1935,7 @@ module Aws::CleanRoomsML
1922
1935
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1923
1936
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1924
1937
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1938
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1925
1939
  end)
1926
1940
 
1927
1941
  api.add_operation(:get_configured_model_algorithm, Seahorse::Model::Operation.new.tap do |o|
@@ -1933,6 +1947,7 @@ module Aws::CleanRoomsML
1933
1947
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1934
1948
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1935
1949
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1950
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1936
1951
  end)
1937
1952
 
1938
1953
  api.add_operation(:get_configured_model_algorithm_association, Seahorse::Model::Operation.new.tap do |o|
@@ -2004,6 +2019,7 @@ module Aws::CleanRoomsML
2004
2019
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2005
2020
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2006
2021
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2022
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2007
2023
  end)
2008
2024
 
2009
2025
  api.add_operation(:list_audience_export_jobs, Seahorse::Model::Operation.new.tap do |o|
@@ -2014,6 +2030,7 @@ module Aws::CleanRoomsML
2014
2030
  o.output = Shapes::ShapeRef.new(shape: ListAudienceExportJobsResponse)
2015
2031
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2016
2032
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2033
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2017
2034
  o[:pager] = Aws::Pager.new(
2018
2035
  limit_key: "max_results",
2019
2036
  tokens: {
@@ -2030,6 +2047,7 @@ module Aws::CleanRoomsML
2030
2047
  o.output = Shapes::ShapeRef.new(shape: ListAudienceGenerationJobsResponse)
2031
2048
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2032
2049
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2050
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2033
2051
  o[:pager] = Aws::Pager.new(
2034
2052
  limit_key: "max_results",
2035
2053
  tokens: {
@@ -2046,6 +2064,7 @@ module Aws::CleanRoomsML
2046
2064
  o.output = Shapes::ShapeRef.new(shape: ListAudienceModelsResponse)
2047
2065
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2048
2066
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2067
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2049
2068
  o[:pager] = Aws::Pager.new(
2050
2069
  limit_key: "max_results",
2051
2070
  tokens: {
@@ -2147,6 +2166,7 @@ module Aws::CleanRoomsML
2147
2166
  o.output = Shapes::ShapeRef.new(shape: ListConfiguredAudienceModelsResponse)
2148
2167
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2149
2168
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2169
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2150
2170
  o[:pager] = Aws::Pager.new(
2151
2171
  limit_key: "max_results",
2152
2172
  tokens: {
@@ -2180,6 +2200,7 @@ module Aws::CleanRoomsML
2180
2200
  o.output = Shapes::ShapeRef.new(shape: ListConfiguredModelAlgorithmsResponse)
2181
2201
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2182
2202
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2203
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2183
2204
  o[:pager] = Aws::Pager.new(
2184
2205
  limit_key: "max_results",
2185
2206
  tokens: {
@@ -2276,6 +2297,7 @@ module Aws::CleanRoomsML
2276
2297
  o.output = Shapes::ShapeRef.new(shape: ListTrainingDatasetsResponse)
2277
2298
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2278
2299
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2300
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2279
2301
  o[:pager] = Aws::Pager.new(
2280
2302
  limit_key: "max_results",
2281
2303
  tokens: {
@@ -2293,6 +2315,7 @@ module Aws::CleanRoomsML
2293
2315
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2294
2316
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2295
2317
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2318
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2296
2319
  end)
2297
2320
 
2298
2321
  api.add_operation(:put_ml_configuration, Seahorse::Model::Operation.new.tap do |o|
@@ -2316,6 +2339,7 @@ module Aws::CleanRoomsML
2316
2339
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2317
2340
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2318
2341
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2342
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2319
2343
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
2320
2344
  end)
2321
2345
 
@@ -2392,6 +2416,7 @@ module Aws::CleanRoomsML
2392
2416
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2393
2417
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2394
2418
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2419
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2395
2420
  end)
2396
2421
  end
2397
2422
 
@@ -5033,7 +5033,7 @@ module Aws::CleanRoomsML
5033
5033
  :query_string,
5034
5034
  :analysis_template_arn,
5035
5035
  :parameters)
5036
- SENSITIVE = []
5036
+ SENSITIVE = [:parameters]
5037
5037
  include Aws::Structure
5038
5038
  end
5039
5039
 
@@ -55,7 +55,7 @@ module Aws::CleanRoomsML
55
55
  autoload :EndpointProvider, 'aws-sdk-cleanroomsml/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-cleanroomsml/endpoints'
57
57
 
58
- GEM_VERSION = '1.49.0'
58
+ GEM_VERSION = '1.50.0'
59
59
 
60
60
  end
61
61
 
data/sig/params.rbs CHANGED
@@ -31,7 +31,7 @@ module Aws
31
31
 
32
32
  type compute_configuration = {
33
33
  worker: {
34
- type: ("CR.1X" | "CR.4X")?,
34
+ type: ("CR.1X" | "CR.4X" | "CR.8X")?,
35
35
  number: ::Integer?,
36
36
  properties: {
37
37
  spark: Hash[::String, ::String]?
data/sig/types.rbs CHANGED
@@ -1209,7 +1209,7 @@ module Aws::CleanRoomsML
1209
1209
  attr_accessor query_string: ::String
1210
1210
  attr_accessor analysis_template_arn: ::String
1211
1211
  attr_accessor parameters: ::Hash[::String, ::String]
1212
- SENSITIVE: []
1212
+ SENSITIVE: [:parameters]
1213
1213
  end
1214
1214
 
1215
1215
  class PutConfiguredAudienceModelPolicyRequest
@@ -1487,7 +1487,7 @@ module Aws::CleanRoomsML
1487
1487
  end
1488
1488
 
1489
1489
  class WorkerComputeConfiguration
1490
- attr_accessor type: ("CR.1X" | "CR.4X")
1490
+ attr_accessor type: ("CR.1X" | "CR.4X" | "CR.8X")
1491
1491
  attr_accessor number: ::Integer
1492
1492
  attr_accessor properties: Types::WorkerComputeConfigurationProperties
1493
1493
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cleanroomsml
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.49.0
4
+ version: 1.50.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services