aws-sdk-cleanrooms 1.34.0 → 1.36.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanrooms/client.rb +179 -68
- data/lib/aws-sdk-cleanrooms/client_api.rb +68 -0
- data/lib/aws-sdk-cleanrooms/types.rb +474 -113
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +48 -8
- data/sig/types.rbs +74 -1
- metadata +2 -2
data/lib/aws-sdk-cleanrooms.rb
CHANGED
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
|
]
|
@@ -150,17 +150,31 @@ module Aws
|
|
150
150
|
{
|
151
151
|
account_id: ::String,
|
152
152
|
member_abilities: Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")],
|
153
|
+
ml_member_abilities: {
|
154
|
+
custom_ml_member_abilities: Array[("CAN_RECEIVE_MODEL_OUTPUT" | "CAN_RECEIVE_INFERENCE_OUTPUT")]
|
155
|
+
}?,
|
153
156
|
display_name: ::String,
|
154
157
|
payment_configuration: {
|
155
158
|
query_compute: {
|
156
159
|
is_responsible: bool
|
157
|
-
}
|
160
|
+
},
|
161
|
+
machine_learning: {
|
162
|
+
model_training: {
|
163
|
+
is_responsible: bool
|
164
|
+
}?,
|
165
|
+
model_inference: {
|
166
|
+
is_responsible: bool
|
167
|
+
}?
|
168
|
+
}?
|
158
169
|
}?
|
159
170
|
},
|
160
171
|
],
|
161
172
|
name: ::String,
|
162
173
|
description: ::String,
|
163
174
|
creator_member_abilities: Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")],
|
175
|
+
?creator_ml_member_abilities: {
|
176
|
+
custom_ml_member_abilities: Array[("CAN_RECEIVE_MODEL_OUTPUT" | "CAN_RECEIVE_INFERENCE_OUTPUT")]
|
177
|
+
},
|
164
178
|
creator_display_name: ::String,
|
165
179
|
?data_encryption_metadata: {
|
166
180
|
allow_cleartext: bool,
|
@@ -173,8 +187,17 @@ module Aws
|
|
173
187
|
?creator_payment_configuration: {
|
174
188
|
query_compute: {
|
175
189
|
is_responsible: bool
|
176
|
-
}
|
177
|
-
|
190
|
+
},
|
191
|
+
machine_learning: {
|
192
|
+
model_training: {
|
193
|
+
is_responsible: bool
|
194
|
+
}?,
|
195
|
+
model_inference: {
|
196
|
+
is_responsible: bool
|
197
|
+
}?
|
198
|
+
}?
|
199
|
+
},
|
200
|
+
?analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
|
178
201
|
) -> _CreateCollaborationResponseSuccess
|
179
202
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCollaborationResponseSuccess
|
180
203
|
|
@@ -363,7 +386,8 @@ module Aws
|
|
363
386
|
s3: {
|
364
387
|
result_format: ("CSV" | "PARQUET"),
|
365
388
|
bucket: ::String,
|
366
|
-
key_prefix: ::String
|
389
|
+
key_prefix: ::String?,
|
390
|
+
single_file_output: bool?
|
367
391
|
}?
|
368
392
|
},
|
369
393
|
role_arn: ::String?
|
@@ -371,7 +395,15 @@ module Aws
|
|
371
395
|
?payment_configuration: {
|
372
396
|
query_compute: {
|
373
397
|
is_responsible: bool
|
374
|
-
}
|
398
|
+
},
|
399
|
+
machine_learning: {
|
400
|
+
model_training: {
|
401
|
+
is_responsible: bool
|
402
|
+
}?,
|
403
|
+
model_inference: {
|
404
|
+
is_responsible: bool
|
405
|
+
}?
|
406
|
+
}?
|
375
407
|
}
|
376
408
|
) -> _CreateMembershipResponseSuccess
|
377
409
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMembershipResponseSuccess
|
@@ -1002,12 +1034,19 @@ module Aws
|
|
1002
1034
|
s3: {
|
1003
1035
|
result_format: ("CSV" | "PARQUET"),
|
1004
1036
|
bucket: ::String,
|
1005
|
-
key_prefix: ::String
|
1037
|
+
key_prefix: ::String?,
|
1038
|
+
single_file_output: bool?
|
1006
1039
|
}?,
|
1007
1040
|
member: {
|
1008
1041
|
account_id: ::String
|
1009
1042
|
}?
|
1010
1043
|
}
|
1044
|
+
},
|
1045
|
+
?compute_configuration: {
|
1046
|
+
worker: {
|
1047
|
+
type: ("CR.1X" | "CR.4X")?,
|
1048
|
+
number: ::Integer?
|
1049
|
+
}?
|
1011
1050
|
}
|
1012
1051
|
) -> _StartProtectedQueryResponseSuccess
|
1013
1052
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartProtectedQueryResponseSuccess
|
@@ -1219,7 +1258,8 @@ module Aws
|
|
1219
1258
|
s3: {
|
1220
1259
|
result_format: ("CSV" | "PARQUET"),
|
1221
1260
|
bucket: ::String,
|
1222
|
-
key_prefix: ::String
|
1261
|
+
key_prefix: ::String?,
|
1262
|
+
single_file_output: bool?
|
1223
1263
|
}?
|
1224
1264
|
},
|
1225
1265
|
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
|
@@ -615,11 +633,13 @@ module Aws::CleanRooms
|
|
615
633
|
attr_accessor name: ::String
|
616
634
|
attr_accessor description: ::String
|
617
635
|
attr_accessor creator_member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
636
|
+
attr_accessor creator_ml_member_abilities: Types::MLMemberAbilities
|
618
637
|
attr_accessor creator_display_name: ::String
|
619
638
|
attr_accessor data_encryption_metadata: Types::DataEncryptionMetadata
|
620
639
|
attr_accessor query_log_status: ("ENABLED" | "DISABLED")
|
621
640
|
attr_accessor tags: ::Hash[::String, ::String]
|
622
641
|
attr_accessor creator_payment_configuration: Types::PaymentConfiguration
|
642
|
+
attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
|
623
643
|
SENSITIVE: []
|
624
644
|
end
|
625
645
|
|
@@ -1511,9 +1531,21 @@ module Aws::CleanRooms
|
|
1511
1531
|
SENSITIVE: []
|
1512
1532
|
end
|
1513
1533
|
|
1534
|
+
class MLMemberAbilities
|
1535
|
+
attr_accessor custom_ml_member_abilities: ::Array[("CAN_RECEIVE_MODEL_OUTPUT" | "CAN_RECEIVE_INFERENCE_OUTPUT")]
|
1536
|
+
SENSITIVE: []
|
1537
|
+
end
|
1538
|
+
|
1539
|
+
class MLPaymentConfig
|
1540
|
+
attr_accessor model_training: Types::ModelTrainingPaymentConfig
|
1541
|
+
attr_accessor model_inference: Types::ModelInferencePaymentConfig
|
1542
|
+
SENSITIVE: []
|
1543
|
+
end
|
1544
|
+
|
1514
1545
|
class MemberSpecification
|
1515
1546
|
attr_accessor account_id: ::String
|
1516
1547
|
attr_accessor member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
1548
|
+
attr_accessor ml_member_abilities: Types::MLMemberAbilities
|
1517
1549
|
attr_accessor display_name: ::String
|
1518
1550
|
attr_accessor payment_configuration: Types::PaymentConfiguration
|
1519
1551
|
SENSITIVE: []
|
@@ -1524,6 +1556,7 @@ module Aws::CleanRooms
|
|
1524
1556
|
attr_accessor status: ("INVITED" | "ACTIVE" | "LEFT" | "REMOVED")
|
1525
1557
|
attr_accessor display_name: ::String
|
1526
1558
|
attr_accessor abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
1559
|
+
attr_accessor ml_abilities: Types::MLMemberAbilities
|
1527
1560
|
attr_accessor create_time: ::Time
|
1528
1561
|
attr_accessor update_time: ::Time
|
1529
1562
|
attr_accessor membership_id: ::String
|
@@ -1544,14 +1577,32 @@ module Aws::CleanRooms
|
|
1544
1577
|
attr_accessor update_time: ::Time
|
1545
1578
|
attr_accessor status: ("ACTIVE" | "REMOVED" | "COLLABORATION_DELETED")
|
1546
1579
|
attr_accessor member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
1580
|
+
attr_accessor ml_member_abilities: Types::MLMemberAbilities
|
1547
1581
|
attr_accessor query_log_status: ("ENABLED" | "DISABLED")
|
1548
1582
|
attr_accessor default_result_configuration: Types::MembershipProtectedQueryResultConfiguration
|
1549
1583
|
attr_accessor payment_configuration: Types::MembershipPaymentConfiguration
|
1550
1584
|
SENSITIVE: []
|
1551
1585
|
end
|
1552
1586
|
|
1587
|
+
class MembershipMLPaymentConfig
|
1588
|
+
attr_accessor model_training: Types::MembershipModelTrainingPaymentConfig
|
1589
|
+
attr_accessor model_inference: Types::MembershipModelInferencePaymentConfig
|
1590
|
+
SENSITIVE: []
|
1591
|
+
end
|
1592
|
+
|
1593
|
+
class MembershipModelInferencePaymentConfig
|
1594
|
+
attr_accessor is_responsible: bool
|
1595
|
+
SENSITIVE: []
|
1596
|
+
end
|
1597
|
+
|
1598
|
+
class MembershipModelTrainingPaymentConfig
|
1599
|
+
attr_accessor is_responsible: bool
|
1600
|
+
SENSITIVE: []
|
1601
|
+
end
|
1602
|
+
|
1553
1603
|
class MembershipPaymentConfiguration
|
1554
1604
|
attr_accessor query_compute: Types::MembershipQueryComputePaymentConfig
|
1605
|
+
attr_accessor machine_learning: Types::MembershipMLPaymentConfig
|
1555
1606
|
SENSITIVE: []
|
1556
1607
|
end
|
1557
1608
|
|
@@ -1589,12 +1640,24 @@ module Aws::CleanRooms
|
|
1589
1640
|
attr_accessor update_time: ::Time
|
1590
1641
|
attr_accessor status: ("ACTIVE" | "REMOVED" | "COLLABORATION_DELETED")
|
1591
1642
|
attr_accessor member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
1643
|
+
attr_accessor ml_member_abilities: Types::MLMemberAbilities
|
1592
1644
|
attr_accessor payment_configuration: Types::MembershipPaymentConfiguration
|
1593
1645
|
SENSITIVE: []
|
1594
1646
|
end
|
1595
1647
|
|
1648
|
+
class ModelInferencePaymentConfig
|
1649
|
+
attr_accessor is_responsible: bool
|
1650
|
+
SENSITIVE: []
|
1651
|
+
end
|
1652
|
+
|
1653
|
+
class ModelTrainingPaymentConfig
|
1654
|
+
attr_accessor is_responsible: bool
|
1655
|
+
SENSITIVE: []
|
1656
|
+
end
|
1657
|
+
|
1596
1658
|
class PaymentConfiguration
|
1597
1659
|
attr_accessor query_compute: Types::QueryComputePaymentConfig
|
1660
|
+
attr_accessor machine_learning: Types::MLPaymentConfig
|
1598
1661
|
SENSITIVE: []
|
1599
1662
|
end
|
1600
1663
|
|
@@ -1741,6 +1804,7 @@ module Aws::CleanRooms
|
|
1741
1804
|
attr_accessor result: Types::ProtectedQueryResult
|
1742
1805
|
attr_accessor error: Types::ProtectedQueryError
|
1743
1806
|
attr_accessor differential_privacy: Types::DifferentialPrivacyParameters
|
1807
|
+
attr_accessor compute_configuration: Types::ComputeConfiguration
|
1744
1808
|
SENSITIVE: [:sql_parameters]
|
1745
1809
|
end
|
1746
1810
|
|
@@ -1802,6 +1866,7 @@ module Aws::CleanRooms
|
|
1802
1866
|
attr_accessor result_format: ("CSV" | "PARQUET")
|
1803
1867
|
attr_accessor bucket: ::String
|
1804
1868
|
attr_accessor key_prefix: ::String
|
1869
|
+
attr_accessor single_file_output: bool
|
1805
1870
|
SENSITIVE: []
|
1806
1871
|
end
|
1807
1872
|
|
@@ -1819,6 +1884,7 @@ module Aws::CleanRooms
|
|
1819
1884
|
|
1820
1885
|
class ProtectedQueryStatistics
|
1821
1886
|
attr_accessor total_duration_in_millis: ::Integer
|
1887
|
+
attr_accessor billed_resource_utilization: Types::BilledResourceUtilization
|
1822
1888
|
SENSITIVE: []
|
1823
1889
|
end
|
1824
1890
|
|
@@ -1941,6 +2007,7 @@ module Aws::CleanRooms
|
|
1941
2007
|
attr_accessor membership_identifier: ::String
|
1942
2008
|
attr_accessor sql_parameters: Types::ProtectedQuerySQLParameters
|
1943
2009
|
attr_accessor result_configuration: Types::ProtectedQueryResultConfiguration
|
2010
|
+
attr_accessor compute_configuration: Types::ComputeConfiguration
|
1944
2011
|
SENSITIVE: [:sql_parameters]
|
1945
2012
|
end
|
1946
2013
|
|
@@ -2146,5 +2213,11 @@ module Aws::CleanRooms
|
|
2146
2213
|
attr_accessor message: ::String
|
2147
2214
|
SENSITIVE: []
|
2148
2215
|
end
|
2216
|
+
|
2217
|
+
class WorkerComputeConfiguration
|
2218
|
+
attr_accessor type: ("CR.1X" | "CR.4X")
|
2219
|
+
attr_accessor number: ::Integer
|
2220
|
+
SENSITIVE: []
|
2221
|
+
end
|
2149
2222
|
end
|
2150
2223
|
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.
|
4
|
+
version: 1.36.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-
|
11
|
+
date: 2024-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|