aws-sdk-cleanrooms 1.52.0 → 1.54.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.
data/sig/types.rbs CHANGED
@@ -284,6 +284,30 @@ module Aws::CleanRooms
284
284
  SENSITIVE: []
285
285
  end
286
286
 
287
+ class Change
288
+ attr_accessor specification_type: ("MEMBER")
289
+ attr_accessor specification: Types::ChangeSpecification
290
+ attr_accessor types: ::Array[("ADD_MEMBER")]
291
+ SENSITIVE: []
292
+ end
293
+
294
+ class ChangeInput
295
+ attr_accessor specification_type: ("MEMBER")
296
+ attr_accessor specification: Types::ChangeSpecification
297
+ SENSITIVE: []
298
+ end
299
+
300
+ class ChangeSpecification
301
+ attr_accessor member: Types::MemberChangeSpecification
302
+ attr_accessor unknown: untyped
303
+ SENSITIVE: []
304
+
305
+ class Member < ChangeSpecification
306
+ end
307
+ class Unknown < ChangeSpecification
308
+ end
309
+ end
310
+
287
311
  class Collaboration
288
312
  attr_accessor id: ::String
289
313
  attr_accessor arn: ::String
@@ -300,6 +324,7 @@ module Aws::CleanRooms
300
324
  attr_accessor query_log_status: ("ENABLED" | "DISABLED")
301
325
  attr_accessor job_log_status: ("ENABLED" | "DISABLED")
302
326
  attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
327
+ attr_accessor auto_approved_change_types: ::Array[("ADD_MEMBER")]
303
328
  SENSITIVE: []
304
329
  end
305
330
 
@@ -336,6 +361,28 @@ module Aws::CleanRooms
336
361
  SENSITIVE: []
337
362
  end
338
363
 
364
+ class CollaborationChangeRequest
365
+ attr_accessor id: ::String
366
+ attr_accessor collaboration_id: ::String
367
+ attr_accessor create_time: ::Time
368
+ attr_accessor update_time: ::Time
369
+ attr_accessor status: ("PENDING" | "APPROVED" | "CANCELLED" | "DENIED" | "COMMITTED")
370
+ attr_accessor is_auto_approved: bool
371
+ attr_accessor changes: ::Array[Types::Change]
372
+ SENSITIVE: []
373
+ end
374
+
375
+ class CollaborationChangeRequestSummary
376
+ attr_accessor id: ::String
377
+ attr_accessor collaboration_id: ::String
378
+ attr_accessor create_time: ::Time
379
+ attr_accessor update_time: ::Time
380
+ attr_accessor status: ("PENDING" | "APPROVED" | "CANCELLED" | "DENIED" | "COMMITTED")
381
+ attr_accessor is_auto_approved: bool
382
+ attr_accessor changes: ::Array[Types::Change]
383
+ SENSITIVE: []
384
+ end
385
+
339
386
  class CollaborationConfiguredAudienceModelAssociation
340
387
  attr_accessor id: ::String
341
388
  attr_accessor arn: ::String
@@ -748,6 +795,17 @@ module Aws::CleanRooms
748
795
  SENSITIVE: []
749
796
  end
750
797
 
798
+ class CreateCollaborationChangeRequestInput
799
+ attr_accessor collaboration_identifier: ::String
800
+ attr_accessor changes: ::Array[Types::ChangeInput]
801
+ SENSITIVE: []
802
+ end
803
+
804
+ class CreateCollaborationChangeRequestOutput
805
+ attr_accessor collaboration_change_request: Types::CollaborationChangeRequest
806
+ SENSITIVE: []
807
+ end
808
+
751
809
  class CreateCollaborationInput
752
810
  attr_accessor members: ::Array[Types::MemberSpecification]
753
811
  attr_accessor name: ::String
@@ -761,6 +819,7 @@ module Aws::CleanRooms
761
819
  attr_accessor tags: ::Hash[::String, ::String]
762
820
  attr_accessor creator_payment_configuration: Types::PaymentConfiguration
763
821
  attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
822
+ attr_accessor auto_approved_change_request_types: ::Array[("ADD_MEMBER")]
764
823
  SENSITIVE: []
765
824
  end
766
825
 
@@ -1118,6 +1177,17 @@ module Aws::CleanRooms
1118
1177
  SENSITIVE: []
1119
1178
  end
1120
1179
 
1180
+ class GetCollaborationChangeRequestInput
1181
+ attr_accessor collaboration_identifier: ::String
1182
+ attr_accessor change_request_identifier: ::String
1183
+ SENSITIVE: []
1184
+ end
1185
+
1186
+ class GetCollaborationChangeRequestOutput
1187
+ attr_accessor collaboration_change_request: Types::CollaborationChangeRequest
1188
+ SENSITIVE: []
1189
+ end
1190
+
1121
1191
  class GetCollaborationConfiguredAudienceModelAssociationInput
1122
1192
  attr_accessor collaboration_identifier: ::String
1123
1193
  attr_accessor configured_audience_model_association_identifier: ::String
@@ -1460,6 +1530,20 @@ module Aws::CleanRooms
1460
1530
  SENSITIVE: []
1461
1531
  end
1462
1532
 
1533
+ class ListCollaborationChangeRequestsInput
1534
+ attr_accessor collaboration_identifier: ::String
1535
+ attr_accessor status: ("PENDING" | "APPROVED" | "CANCELLED" | "DENIED" | "COMMITTED")
1536
+ attr_accessor next_token: ::String
1537
+ attr_accessor max_results: ::Integer
1538
+ SENSITIVE: []
1539
+ end
1540
+
1541
+ class ListCollaborationChangeRequestsOutput
1542
+ attr_accessor collaboration_change_request_summaries: ::Array[Types::CollaborationChangeRequestSummary]
1543
+ attr_accessor next_token: ::String
1544
+ SENSITIVE: []
1545
+ end
1546
+
1463
1547
  class ListCollaborationConfiguredAudienceModelAssociationsInput
1464
1548
  attr_accessor collaboration_identifier: ::String
1465
1549
  attr_accessor next_token: ::String
@@ -1706,6 +1790,13 @@ module Aws::CleanRooms
1706
1790
  SENSITIVE: []
1707
1791
  end
1708
1792
 
1793
+ class MemberChangeSpecification
1794
+ attr_accessor account_id: ::String
1795
+ attr_accessor member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS" | "CAN_RUN_JOB")]
1796
+ attr_accessor display_name: ::String
1797
+ SENSITIVE: []
1798
+ end
1799
+
1709
1800
  class MemberSpecification
1710
1801
  attr_accessor account_id: ::String
1711
1802
  attr_accessor member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS" | "CAN_RUN_JOB")]
@@ -1993,9 +2084,21 @@ module Aws::CleanRooms
1993
2084
  attr_accessor statistics: Types::ProtectedJobStatistics
1994
2085
  attr_accessor result: Types::ProtectedJobResult
1995
2086
  attr_accessor error: Types::ProtectedJobError
2087
+ attr_accessor compute_configuration: Types::ProtectedJobComputeConfiguration
1996
2088
  SENSITIVE: []
1997
2089
  end
1998
2090
 
2091
+ class ProtectedJobComputeConfiguration
2092
+ attr_accessor worker: Types::ProtectedJobWorkerComputeConfiguration
2093
+ attr_accessor unknown: untyped
2094
+ SENSITIVE: []
2095
+
2096
+ class Worker < ProtectedJobComputeConfiguration
2097
+ end
2098
+ class Unknown < ProtectedJobComputeConfiguration
2099
+ end
2100
+ end
2101
+
1999
2102
  class ProtectedJobConfigurationDetails
2000
2103
  attr_accessor direct_analysis_configuration_details: Types::ProtectedJobDirectAnalysisConfigurationDetails
2001
2104
  attr_accessor unknown: untyped
@@ -2131,6 +2234,12 @@ module Aws::CleanRooms
2131
2234
  SENSITIVE: []
2132
2235
  end
2133
2236
 
2237
+ class ProtectedJobWorkerComputeConfiguration
2238
+ attr_accessor type: ("CR.1X" | "CR.4X")
2239
+ attr_accessor number: ::Integer
2240
+ SENSITIVE: []
2241
+ end
2242
+
2134
2243
  class ProtectedQuery
2135
2244
  attr_accessor id: ::String
2136
2245
  attr_accessor membership_id: ::String
@@ -2412,6 +2521,7 @@ module Aws::CleanRooms
2412
2521
  attr_accessor membership_identifier: ::String
2413
2522
  attr_accessor job_parameters: Types::ProtectedJobParameters
2414
2523
  attr_accessor result_configuration: Types::ProtectedJobResultConfigurationInput
2524
+ attr_accessor compute_configuration: Types::ProtectedJobComputeConfiguration
2415
2525
  SENSITIVE: []
2416
2526
  end
2417
2527
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cleanrooms
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.52.0
4
+ version: 1.54.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services