aws-sdk-cleanrooms 1.34.0 → 1.35.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -55,7 +55,7 @@ module Aws::CleanRooms
55
55
  autoload :EndpointProvider, 'aws-sdk-cleanrooms/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-cleanrooms/endpoints'
57
57
 
58
- GEM_VERSION = '1.34.0'
58
+ GEM_VERSION = '1.35.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -133,7 +133,7 @@ module Aws
133
133
  ?analysis_parameters: Array[
134
134
  {
135
135
  name: ::String,
136
- type: ("SMALLINT" | "INTEGER" | "BIGINT" | "DECIMAL" | "REAL" | "DOUBLE_PRECISION" | "BOOLEAN" | "CHAR" | "VARCHAR" | "DATE" | "TIMESTAMP" | "TIMESTAMPTZ" | "TIME" | "TIMETZ" | "VARBYTE"),
136
+ type: ("SMALLINT" | "INTEGER" | "BIGINT" | "DECIMAL" | "REAL" | "DOUBLE_PRECISION" | "BOOLEAN" | "CHAR" | "VARCHAR" | "DATE" | "TIMESTAMP" | "TIMESTAMPTZ" | "TIME" | "TIMETZ" | "VARBYTE" | "BINARY" | "BYTE" | "CHARACTER" | "DOUBLE" | "FLOAT" | "INT" | "LONG" | "NUMERIC" | "SHORT" | "STRING" | "TIMESTAMP_LTZ" | "TIMESTAMP_NTZ" | "TINYINT"),
137
137
  default_value: ::String?
138
138
  },
139
139
  ]
@@ -174,7 +174,8 @@ module Aws
174
174
  query_compute: {
175
175
  is_responsible: bool
176
176
  }
177
- }
177
+ },
178
+ ?analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
178
179
  ) -> _CreateCollaborationResponseSuccess
179
180
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCollaborationResponseSuccess
180
181
 
@@ -363,7 +364,8 @@ module Aws
363
364
  s3: {
364
365
  result_format: ("CSV" | "PARQUET"),
365
366
  bucket: ::String,
366
- key_prefix: ::String?
367
+ key_prefix: ::String?,
368
+ single_file_output: bool?
367
369
  }?
368
370
  },
369
371
  role_arn: ::String?
@@ -1002,12 +1004,19 @@ module Aws
1002
1004
  s3: {
1003
1005
  result_format: ("CSV" | "PARQUET"),
1004
1006
  bucket: ::String,
1005
- key_prefix: ::String?
1007
+ key_prefix: ::String?,
1008
+ single_file_output: bool?
1006
1009
  }?,
1007
1010
  member: {
1008
1011
  account_id: ::String
1009
1012
  }?
1010
1013
  }
1014
+ },
1015
+ ?compute_configuration: {
1016
+ worker: {
1017
+ type: ("CR.1X" | "CR.4X")?,
1018
+ number: ::Integer?
1019
+ }?
1011
1020
  }
1012
1021
  ) -> _StartProtectedQueryResponseSuccess
1013
1022
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartProtectedQueryResponseSuccess
@@ -1219,7 +1228,8 @@ module Aws
1219
1228
  s3: {
1220
1229
  result_format: ("CSV" | "PARQUET"),
1221
1230
  bucket: ::String,
1222
- key_prefix: ::String?
1231
+ key_prefix: ::String?,
1232
+ single_file_output: bool?
1223
1233
  }?
1224
1234
  },
1225
1235
  role_arn: ::String?
data/sig/types.rbs CHANGED
@@ -29,7 +29,7 @@ module Aws::CleanRooms
29
29
 
30
30
  class AnalysisParameter
31
31
  attr_accessor name: ::String
32
- attr_accessor type: ("SMALLINT" | "INTEGER" | "BIGINT" | "DECIMAL" | "REAL" | "DOUBLE_PRECISION" | "BOOLEAN" | "CHAR" | "VARCHAR" | "DATE" | "TIMESTAMP" | "TIMESTAMPTZ" | "TIME" | "TIMETZ" | "VARBYTE")
32
+ attr_accessor type: ("SMALLINT" | "INTEGER" | "BIGINT" | "DECIMAL" | "REAL" | "DOUBLE_PRECISION" | "BOOLEAN" | "CHAR" | "VARCHAR" | "DATE" | "TIMESTAMP" | "TIMESTAMPTZ" | "TIME" | "TIMETZ" | "VARBYTE" | "BINARY" | "BYTE" | "CHARACTER" | "DOUBLE" | "FLOAT" | "INT" | "LONG" | "NUMERIC" | "SHORT" | "STRING" | "TIMESTAMP_LTZ" | "TIMESTAMP_NTZ" | "TINYINT")
33
33
  attr_accessor default_value: ::String
34
34
  SENSITIVE: []
35
35
  end
@@ -230,6 +230,11 @@ module Aws::CleanRooms
230
230
  SENSITIVE: []
231
231
  end
232
232
 
233
+ class BilledResourceUtilization
234
+ attr_accessor units: ::Float
235
+ SENSITIVE: []
236
+ end
237
+
233
238
  class Collaboration
234
239
  attr_accessor id: ::String
235
240
  attr_accessor arn: ::String
@@ -244,6 +249,7 @@ module Aws::CleanRooms
244
249
  attr_accessor membership_arn: ::String
245
250
  attr_accessor data_encryption_metadata: Types::DataEncryptionMetadata
246
251
  attr_accessor query_log_status: ("ENABLED" | "DISABLED")
252
+ attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
247
253
  SENSITIVE: []
248
254
  end
249
255
 
@@ -387,6 +393,7 @@ module Aws::CleanRooms
387
393
  attr_accessor member_status: ("INVITED" | "ACTIVE" | "LEFT" | "REMOVED")
388
394
  attr_accessor membership_id: ::String
389
395
  attr_accessor membership_arn: ::String
396
+ attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
390
397
  SENSITIVE: []
391
398
  end
392
399
 
@@ -396,6 +403,17 @@ module Aws::CleanRooms
396
403
  SENSITIVE: []
397
404
  end
398
405
 
406
+ class ComputeConfiguration
407
+ attr_accessor worker: Types::WorkerComputeConfiguration
408
+ attr_accessor unknown: untyped
409
+ SENSITIVE: []
410
+
411
+ class Worker < ComputeConfiguration
412
+ end
413
+ class Unknown < ComputeConfiguration
414
+ end
415
+ end
416
+
399
417
  class ConfigurationDetails
400
418
  attr_accessor direct_analysis_configuration_details: Types::DirectAnalysisConfigurationDetails
401
419
  attr_accessor unknown: untyped
@@ -620,6 +638,7 @@ module Aws::CleanRooms
620
638
  attr_accessor query_log_status: ("ENABLED" | "DISABLED")
621
639
  attr_accessor tags: ::Hash[::String, ::String]
622
640
  attr_accessor creator_payment_configuration: Types::PaymentConfiguration
641
+ attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
623
642
  SENSITIVE: []
624
643
  end
625
644
 
@@ -1741,6 +1760,7 @@ module Aws::CleanRooms
1741
1760
  attr_accessor result: Types::ProtectedQueryResult
1742
1761
  attr_accessor error: Types::ProtectedQueryError
1743
1762
  attr_accessor differential_privacy: Types::DifferentialPrivacyParameters
1763
+ attr_accessor compute_configuration: Types::ComputeConfiguration
1744
1764
  SENSITIVE: [:sql_parameters]
1745
1765
  end
1746
1766
 
@@ -1802,6 +1822,7 @@ module Aws::CleanRooms
1802
1822
  attr_accessor result_format: ("CSV" | "PARQUET")
1803
1823
  attr_accessor bucket: ::String
1804
1824
  attr_accessor key_prefix: ::String
1825
+ attr_accessor single_file_output: bool
1805
1826
  SENSITIVE: []
1806
1827
  end
1807
1828
 
@@ -1819,6 +1840,7 @@ module Aws::CleanRooms
1819
1840
 
1820
1841
  class ProtectedQueryStatistics
1821
1842
  attr_accessor total_duration_in_millis: ::Integer
1843
+ attr_accessor billed_resource_utilization: Types::BilledResourceUtilization
1822
1844
  SENSITIVE: []
1823
1845
  end
1824
1846
 
@@ -1941,6 +1963,7 @@ module Aws::CleanRooms
1941
1963
  attr_accessor membership_identifier: ::String
1942
1964
  attr_accessor sql_parameters: Types::ProtectedQuerySQLParameters
1943
1965
  attr_accessor result_configuration: Types::ProtectedQueryResultConfiguration
1966
+ attr_accessor compute_configuration: Types::ComputeConfiguration
1944
1967
  SENSITIVE: [:sql_parameters]
1945
1968
  end
1946
1969
 
@@ -2146,5 +2169,11 @@ module Aws::CleanRooms
2146
2169
  attr_accessor message: ::String
2147
2170
  SENSITIVE: []
2148
2171
  end
2172
+
2173
+ class WorkerComputeConfiguration
2174
+ attr_accessor type: ("CR.1X" | "CR.4X")
2175
+ attr_accessor number: ::Integer
2176
+ SENSITIVE: []
2177
+ end
2149
2178
  end
2150
2179
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cleanrooms
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.34.0
4
+ version: 1.35.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-10-18 00:00:00.000000000 Z
11
+ date: 2024-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core