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.
@@ -976,6 +976,76 @@ module Aws::CleanRooms
976
976
  include Aws::Structure
977
977
  end
978
978
 
979
+ # Represents a single change within a collaboration change request,
980
+ # containing the change identifier and specification.
981
+ #
982
+ # @!attribute [rw] specification_type
983
+ # The type of specification for this change.
984
+ # @return [String]
985
+ #
986
+ # @!attribute [rw] specification
987
+ # The specification details for this change.
988
+ # @return [Types::ChangeSpecification]
989
+ #
990
+ # @!attribute [rw] types
991
+ # The list of change types that were applied.
992
+ # @return [Array<String>]
993
+ #
994
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/Change AWS API Documentation
995
+ #
996
+ class Change < Struct.new(
997
+ :specification_type,
998
+ :specification,
999
+ :types)
1000
+ SENSITIVE = []
1001
+ include Aws::Structure
1002
+ end
1003
+
1004
+ # Specifies a change to apply to a collaboration.
1005
+ #
1006
+ # @!attribute [rw] specification_type
1007
+ # The type of specification for the change. Currently supports
1008
+ # `MEMBER` for member-related changes.
1009
+ # @return [String]
1010
+ #
1011
+ # @!attribute [rw] specification
1012
+ # The specification details for the change. The structure depends on
1013
+ # the specification type.
1014
+ # @return [Types::ChangeSpecification]
1015
+ #
1016
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ChangeInput AWS API Documentation
1017
+ #
1018
+ class ChangeInput < Struct.new(
1019
+ :specification_type,
1020
+ :specification)
1021
+ SENSITIVE = []
1022
+ include Aws::Structure
1023
+ end
1024
+
1025
+ # A union that contains the specification details for different types of
1026
+ # changes.
1027
+ #
1028
+ # @note ChangeSpecification is a union - when making an API calls you must set exactly one of the members.
1029
+ #
1030
+ # @note ChangeSpecification is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ChangeSpecification corresponding to the set member.
1031
+ #
1032
+ # @!attribute [rw] member
1033
+ # The member change specification when the change type is `MEMBER`.
1034
+ # @return [Types::MemberChangeSpecification]
1035
+ #
1036
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ChangeSpecification AWS API Documentation
1037
+ #
1038
+ class ChangeSpecification < Struct.new(
1039
+ :member,
1040
+ :unknown)
1041
+ SENSITIVE = []
1042
+ include Aws::Structure
1043
+ include Aws::Structure::Union
1044
+
1045
+ class Member < ChangeSpecification; end
1046
+ class Unknown < ChangeSpecification; end
1047
+ end
1048
+
979
1049
  # The multi-party data share environment. The collaboration contains
980
1050
  # metadata about its purpose and participants.
981
1051
  #
@@ -1057,6 +1127,11 @@ module Aws::CleanRooms
1057
1127
  # </note>
1058
1128
  # @return [String]
1059
1129
  #
1130
+ # @!attribute [rw] auto_approved_change_types
1131
+ # The types of change requests that are automatically approved for
1132
+ # this collaboration.
1133
+ # @return [Array<String>]
1134
+ #
1060
1135
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/Collaboration AWS API Documentation
1061
1136
  #
1062
1137
  class Collaboration < Struct.new(
@@ -1074,7 +1149,8 @@ module Aws::CleanRooms
1074
1149
  :data_encryption_metadata,
1075
1150
  :query_log_status,
1076
1151
  :job_log_status,
1077
- :analytics_engine)
1152
+ :analytics_engine,
1153
+ :auto_approved_change_types)
1078
1154
  SENSITIVE = []
1079
1155
  include Aws::Structure
1080
1156
  end
@@ -1236,6 +1312,98 @@ module Aws::CleanRooms
1236
1312
  include Aws::Structure
1237
1313
  end
1238
1314
 
1315
+ # Represents a request to modify a collaboration. Change requests enable
1316
+ # structured modifications to collaborations after they have been
1317
+ # created.
1318
+ #
1319
+ # @!attribute [rw] id
1320
+ # The unique identifier for the change request.
1321
+ # @return [String]
1322
+ #
1323
+ # @!attribute [rw] collaboration_id
1324
+ # The unique identifier for the collaboration being modified.
1325
+ # @return [String]
1326
+ #
1327
+ # @!attribute [rw] create_time
1328
+ # The time when the change request was created.
1329
+ # @return [Time]
1330
+ #
1331
+ # @!attribute [rw] update_time
1332
+ # The time when the change request was last updated.
1333
+ # @return [Time]
1334
+ #
1335
+ # @!attribute [rw] status
1336
+ # The current status of the change request. Valid values are
1337
+ # `PENDING`, `APPROVED`, `DENIED`, `COMMITTED`, and `CANCELLED`.
1338
+ # @return [String]
1339
+ #
1340
+ # @!attribute [rw] is_auto_approved
1341
+ # Whether the change request was automatically approved based on the
1342
+ # collaboration's auto-approval settings.
1343
+ # @return [Boolean]
1344
+ #
1345
+ # @!attribute [rw] changes
1346
+ # The list of changes specified in this change request.
1347
+ # @return [Array<Types::Change>]
1348
+ #
1349
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationChangeRequest AWS API Documentation
1350
+ #
1351
+ class CollaborationChangeRequest < Struct.new(
1352
+ :id,
1353
+ :collaboration_id,
1354
+ :create_time,
1355
+ :update_time,
1356
+ :status,
1357
+ :is_auto_approved,
1358
+ :changes)
1359
+ SENSITIVE = []
1360
+ include Aws::Structure
1361
+ end
1362
+
1363
+ # Summary information about a collaboration change request.
1364
+ #
1365
+ # @!attribute [rw] id
1366
+ # The unique identifier for the change request.
1367
+ # @return [String]
1368
+ #
1369
+ # @!attribute [rw] collaboration_id
1370
+ # The unique identifier for the collaboration.
1371
+ # @return [String]
1372
+ #
1373
+ # @!attribute [rw] create_time
1374
+ # The time when the change request was created.
1375
+ # @return [Time]
1376
+ #
1377
+ # @!attribute [rw] update_time
1378
+ # The time when the change request was last updated.
1379
+ # @return [Time]
1380
+ #
1381
+ # @!attribute [rw] status
1382
+ # The current status of the change request.
1383
+ # @return [String]
1384
+ #
1385
+ # @!attribute [rw] is_auto_approved
1386
+ # Whether the change request was automatically approved.
1387
+ # @return [Boolean]
1388
+ #
1389
+ # @!attribute [rw] changes
1390
+ # Summary of the changes in this change request.
1391
+ # @return [Array<Types::Change>]
1392
+ #
1393
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationChangeRequestSummary AWS API Documentation
1394
+ #
1395
+ class CollaborationChangeRequestSummary < Struct.new(
1396
+ :id,
1397
+ :collaboration_id,
1398
+ :create_time,
1399
+ :update_time,
1400
+ :status,
1401
+ :is_auto_approved,
1402
+ :changes)
1403
+ SENSITIVE = []
1404
+ include Aws::Structure
1405
+ end
1406
+
1239
1407
  # The configured audience model association within a collaboration.
1240
1408
  #
1241
1409
  # @!attribute [rw] id
@@ -2851,6 +3019,40 @@ module Aws::CleanRooms
2851
3019
  include Aws::Structure
2852
3020
  end
2853
3021
 
3022
+ # @!attribute [rw] collaboration_identifier
3023
+ # The identifier of the collaboration that the change request is made
3024
+ # against.
3025
+ # @return [String]
3026
+ #
3027
+ # @!attribute [rw] changes
3028
+ # The list of changes to apply to the collaboration. Each change
3029
+ # specifies the type of modification and the details of what should be
3030
+ # changed.
3031
+ # @return [Array<Types::ChangeInput>]
3032
+ #
3033
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationChangeRequestInput AWS API Documentation
3034
+ #
3035
+ class CreateCollaborationChangeRequestInput < Struct.new(
3036
+ :collaboration_identifier,
3037
+ :changes)
3038
+ SENSITIVE = []
3039
+ include Aws::Structure
3040
+ end
3041
+
3042
+ # @!attribute [rw] collaboration_change_request
3043
+ # Represents a request to modify a collaboration. Change requests
3044
+ # enable structured modifications to collaborations after they have
3045
+ # been created.
3046
+ # @return [Types::CollaborationChangeRequest]
3047
+ #
3048
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationChangeRequestOutput AWS API Documentation
3049
+ #
3050
+ class CreateCollaborationChangeRequestOutput < Struct.new(
3051
+ :collaboration_change_request)
3052
+ SENSITIVE = []
3053
+ include Aws::Structure
3054
+ end
3055
+
2854
3056
  # @!attribute [rw] members
2855
3057
  # A list of initial members, not including the creator. This list is
2856
3058
  # immutable.
@@ -2924,6 +3126,11 @@ module Aws::CleanRooms
2924
3126
  # </note>
2925
3127
  # @return [String]
2926
3128
  #
3129
+ # @!attribute [rw] auto_approved_change_request_types
3130
+ # The types of change requests that are automatically approved for
3131
+ # this collaboration.
3132
+ # @return [Array<String>]
3133
+ #
2927
3134
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationInput AWS API Documentation
2928
3135
  #
2929
3136
  class CreateCollaborationInput < Struct.new(
@@ -2938,7 +3145,8 @@ module Aws::CleanRooms
2938
3145
  :job_log_status,
2939
3146
  :tags,
2940
3147
  :creator_payment_configuration,
2941
- :analytics_engine)
3148
+ :analytics_engine,
3149
+ :auto_approved_change_request_types)
2942
3150
  SENSITIVE = []
2943
3151
  include Aws::Structure
2944
3152
  end
@@ -4117,6 +4325,36 @@ module Aws::CleanRooms
4117
4325
  include Aws::Structure
4118
4326
  end
4119
4327
 
4328
+ # @!attribute [rw] collaboration_identifier
4329
+ # The identifier of the collaboration that the change request is made
4330
+ # against.
4331
+ # @return [String]
4332
+ #
4333
+ # @!attribute [rw] change_request_identifier
4334
+ # A unique identifier for the change request to retrieve.
4335
+ # @return [String]
4336
+ #
4337
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationChangeRequestInput AWS API Documentation
4338
+ #
4339
+ class GetCollaborationChangeRequestInput < Struct.new(
4340
+ :collaboration_identifier,
4341
+ :change_request_identifier)
4342
+ SENSITIVE = []
4343
+ include Aws::Structure
4344
+ end
4345
+
4346
+ # @!attribute [rw] collaboration_change_request
4347
+ # The collaboration change request that was requested.
4348
+ # @return [Types::CollaborationChangeRequest]
4349
+ #
4350
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationChangeRequestOutput AWS API Documentation
4351
+ #
4352
+ class GetCollaborationChangeRequestOutput < Struct.new(
4353
+ :collaboration_change_request)
4354
+ SENSITIVE = []
4355
+ include Aws::Structure
4356
+ end
4357
+
4120
4358
  # @!attribute [rw] collaboration_identifier
4121
4359
  # A unique identifier for the collaboration that the configured
4122
4360
  # audience model association belongs to. Accepts a collaboration ID.
@@ -5243,6 +5481,52 @@ module Aws::CleanRooms
5243
5481
  include Aws::Structure
5244
5482
  end
5245
5483
 
5484
+ # @!attribute [rw] collaboration_identifier
5485
+ # The identifier of the collaboration that the change request is made
5486
+ # against.
5487
+ # @return [String]
5488
+ #
5489
+ # @!attribute [rw] status
5490
+ # A filter to only return change requests with the specified status.
5491
+ # @return [String]
5492
+ #
5493
+ # @!attribute [rw] next_token
5494
+ # The pagination token that's used to fetch the next set of results.
5495
+ # @return [String]
5496
+ #
5497
+ # @!attribute [rw] max_results
5498
+ # The maximum number of results that are returned for an API request
5499
+ # call.
5500
+ # @return [Integer]
5501
+ #
5502
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationChangeRequestsInput AWS API Documentation
5503
+ #
5504
+ class ListCollaborationChangeRequestsInput < Struct.new(
5505
+ :collaboration_identifier,
5506
+ :status,
5507
+ :next_token,
5508
+ :max_results)
5509
+ SENSITIVE = []
5510
+ include Aws::Structure
5511
+ end
5512
+
5513
+ # @!attribute [rw] collaboration_change_request_summaries
5514
+ # The list of collaboration change request summaries.
5515
+ # @return [Array<Types::CollaborationChangeRequestSummary>]
5516
+ #
5517
+ # @!attribute [rw] next_token
5518
+ # The pagination token that's used to fetch the next set of results.
5519
+ # @return [String]
5520
+ #
5521
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationChangeRequestsOutput AWS API Documentation
5522
+ #
5523
+ class ListCollaborationChangeRequestsOutput < Struct.new(
5524
+ :collaboration_change_request_summaries,
5525
+ :next_token)
5526
+ SENSITIVE = []
5527
+ include Aws::Structure
5528
+ end
5529
+
5246
5530
  # @!attribute [rw] collaboration_identifier
5247
5531
  # A unique identifier for the collaboration that the configured
5248
5532
  # audience model association belongs to. Accepts a collaboration ID.
@@ -6056,6 +6340,44 @@ module Aws::CleanRooms
6056
6340
  include Aws::Structure
6057
6341
  end
6058
6342
 
6343
+ # Specifies changes to collaboration membership, including adding new
6344
+ # members with their abilities and display names.
6345
+ #
6346
+ # @!attribute [rw] account_id
6347
+ # The Amazon Web Services account ID of the member to add to the
6348
+ # collaboration.
6349
+ # @return [String]
6350
+ #
6351
+ # @!attribute [rw] member_abilities
6352
+ # The abilities granted to the collaboration member. These determine
6353
+ # what actions the member can perform within the collaboration.
6354
+ #
6355
+ # <note markdown="1"> The following values are currently not supported: `CAN_QUERY`,
6356
+ # `CAN_RECEIVE_RESULTS,` and `CAN_RUN_JOB`.
6357
+ #
6358
+ # Set the value of `memberAbilities` to `[]` to allow a member to
6359
+ # contribute data.
6360
+ #
6361
+ # </note>
6362
+ # @return [Array<String>]
6363
+ #
6364
+ # @!attribute [rw] display_name
6365
+ # Specifies the display name that will be shown for this member in the
6366
+ # collaboration. While this field is required when inviting new
6367
+ # members, it becomes optional when modifying abilities of existing
6368
+ # collaboration members.
6369
+ # @return [String]
6370
+ #
6371
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MemberChangeSpecification AWS API Documentation
6372
+ #
6373
+ class MemberChangeSpecification < Struct.new(
6374
+ :account_id,
6375
+ :member_abilities,
6376
+ :display_name)
6377
+ SENSITIVE = []
6378
+ include Aws::Structure
6379
+ end
6380
+
6059
6381
  # Basic metadata used to construct a new member.
6060
6382
  #
6061
6383
  # @!attribute [rw] account_id
@@ -7121,6 +7443,10 @@ module Aws::CleanRooms
7121
7443
  # The error from the protected job.
7122
7444
  # @return [Types::ProtectedJobError]
7123
7445
  #
7446
+ # @!attribute [rw] compute_configuration
7447
+ # The compute configuration for the protected job.
7448
+ # @return [Types::ProtectedJobComputeConfiguration]
7449
+ #
7124
7450
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedJob AWS API Documentation
7125
7451
  #
7126
7452
  class ProtectedJob < Struct.new(
@@ -7133,9 +7459,33 @@ module Aws::CleanRooms
7133
7459
  :result_configuration,
7134
7460
  :statistics,
7135
7461
  :result,
7136
- :error)
7462
+ :error,
7463
+ :compute_configuration)
7464
+ SENSITIVE = []
7465
+ include Aws::Structure
7466
+ end
7467
+
7468
+ # The configuration of the compute resources for a PySpark job.
7469
+ #
7470
+ # @note ProtectedJobComputeConfiguration is a union - when making an API calls you must set exactly one of the members.
7471
+ #
7472
+ # @note ProtectedJobComputeConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProtectedJobComputeConfiguration corresponding to the set member.
7473
+ #
7474
+ # @!attribute [rw] worker
7475
+ # The worker configuration for the compute environment.
7476
+ # @return [Types::ProtectedJobWorkerComputeConfiguration]
7477
+ #
7478
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedJobComputeConfiguration AWS API Documentation
7479
+ #
7480
+ class ProtectedJobComputeConfiguration < Struct.new(
7481
+ :worker,
7482
+ :unknown)
7137
7483
  SENSITIVE = []
7138
7484
  include Aws::Structure
7485
+ include Aws::Structure::Union
7486
+
7487
+ class Worker < ProtectedJobComputeConfiguration; end
7488
+ class Unknown < ProtectedJobComputeConfiguration; end
7139
7489
  end
7140
7490
 
7141
7491
  # The protected job configuration details.
@@ -7499,6 +7849,25 @@ module Aws::CleanRooms
7499
7849
  include Aws::Structure
7500
7850
  end
7501
7851
 
7852
+ # The configuration of the compute resources for a PySpark job.
7853
+ #
7854
+ # @!attribute [rw] type
7855
+ # The worker compute configuration type.
7856
+ # @return [String]
7857
+ #
7858
+ # @!attribute [rw] number
7859
+ # The number of workers for a PySpark job.
7860
+ # @return [Integer]
7861
+ #
7862
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedJobWorkerComputeConfiguration AWS API Documentation
7863
+ #
7864
+ class ProtectedJobWorkerComputeConfiguration < Struct.new(
7865
+ :type,
7866
+ :number)
7867
+ SENSITIVE = []
7868
+ include Aws::Structure
7869
+ end
7870
+
7502
7871
  # The parameters for an Clean Rooms protected query.
7503
7872
  #
7504
7873
  # @!attribute [rw] id
@@ -8464,13 +8833,18 @@ module Aws::CleanRooms
8464
8833
  # The details needed to write the job results.
8465
8834
  # @return [Types::ProtectedJobResultConfigurationInput]
8466
8835
  #
8836
+ # @!attribute [rw] compute_configuration
8837
+ # The compute configuration for the protected job.
8838
+ # @return [Types::ProtectedJobComputeConfiguration]
8839
+ #
8467
8840
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/StartProtectedJobInput AWS API Documentation
8468
8841
  #
8469
8842
  class StartProtectedJobInput < Struct.new(
8470
8843
  :type,
8471
8844
  :membership_identifier,
8472
8845
  :job_parameters,
8473
- :result_configuration)
8846
+ :result_configuration,
8847
+ :compute_configuration)
8474
8848
  SENSITIVE = []
8475
8849
  include Aws::Structure
8476
8850
  end
@@ -9239,6 +9613,11 @@ module Aws::CleanRooms
9239
9613
  #
9240
9614
  # @!attribute [rw] number
9241
9615
  # The number of workers.
9616
+ #
9617
+ # SQL queries support a minimum value of 2 and a maximum value of 400.
9618
+ #
9619
+ # PySpark jobs support a minimum value of 4 and a maximum value of
9620
+ # 128.
9242
9621
  # @return [Integer]
9243
9622
  #
9244
9623
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/WorkerComputeConfiguration AWS API Documentation
@@ -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.52.0'
58
+ GEM_VERSION = '1.54.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -230,10 +230,33 @@ module Aws
230
230
  is_responsible: bool
231
231
  }?
232
232
  },
233
- ?analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
233
+ ?analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL"),
234
+ ?auto_approved_change_request_types: Array[("ADD_MEMBER")]
234
235
  ) -> _CreateCollaborationResponseSuccess
235
236
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCollaborationResponseSuccess
236
237
 
238
+ interface _CreateCollaborationChangeRequestResponseSuccess
239
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCollaborationChangeRequestOutput]
240
+ def collaboration_change_request: () -> Types::CollaborationChangeRequest
241
+ end
242
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#create_collaboration_change_request-instance_method
243
+ def create_collaboration_change_request: (
244
+ collaboration_identifier: ::String,
245
+ changes: Array[
246
+ {
247
+ specification_type: ("MEMBER"),
248
+ specification: {
249
+ member: {
250
+ account_id: ::String,
251
+ member_abilities: Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS" | "CAN_RUN_JOB")],
252
+ display_name: ::String?
253
+ }?
254
+ }
255
+ },
256
+ ]
257
+ ) -> _CreateCollaborationChangeRequestResponseSuccess
258
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCollaborationChangeRequestResponseSuccess
259
+
237
260
  interface _CreateConfiguredAudienceModelAssociationResponseSuccess
238
261
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfiguredAudienceModelAssociationOutput]
239
262
  def configured_audience_model_association: () -> Types::ConfiguredAudienceModelAssociation
@@ -645,6 +668,17 @@ module Aws
645
668
  ) -> _GetCollaborationAnalysisTemplateResponseSuccess
646
669
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCollaborationAnalysisTemplateResponseSuccess
647
670
 
671
+ interface _GetCollaborationChangeRequestResponseSuccess
672
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCollaborationChangeRequestOutput]
673
+ def collaboration_change_request: () -> Types::CollaborationChangeRequest
674
+ end
675
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_collaboration_change_request-instance_method
676
+ def get_collaboration_change_request: (
677
+ collaboration_identifier: ::String,
678
+ change_request_identifier: ::String
679
+ ) -> _GetCollaborationChangeRequestResponseSuccess
680
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCollaborationChangeRequestResponseSuccess
681
+
648
682
  interface _GetCollaborationConfiguredAudienceModelAssociationResponseSuccess
649
683
  include ::Seahorse::Client::_ResponseSuccess[Types::GetCollaborationConfiguredAudienceModelAssociationOutput]
650
684
  def collaboration_configured_audience_model_association: () -> Types::CollaborationConfiguredAudienceModelAssociation
@@ -847,6 +881,20 @@ module Aws
847
881
  ) -> _ListCollaborationAnalysisTemplatesResponseSuccess
848
882
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationAnalysisTemplatesResponseSuccess
849
883
 
884
+ interface _ListCollaborationChangeRequestsResponseSuccess
885
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCollaborationChangeRequestsOutput]
886
+ def collaboration_change_request_summaries: () -> ::Array[Types::CollaborationChangeRequestSummary]
887
+ def next_token: () -> ::String
888
+ end
889
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_collaboration_change_requests-instance_method
890
+ def list_collaboration_change_requests: (
891
+ collaboration_identifier: ::String,
892
+ ?status: ("PENDING" | "APPROVED" | "CANCELLED" | "DENIED" | "COMMITTED"),
893
+ ?next_token: ::String,
894
+ ?max_results: ::Integer
895
+ ) -> _ListCollaborationChangeRequestsResponseSuccess
896
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationChangeRequestsResponseSuccess
897
+
850
898
  interface _ListCollaborationConfiguredAudienceModelAssociationsResponseSuccess
851
899
  include ::Seahorse::Client::_ResponseSuccess[Types::ListCollaborationConfiguredAudienceModelAssociationsOutput]
852
900
  def collaboration_configured_audience_model_association_summaries: () -> ::Array[Types::CollaborationConfiguredAudienceModelAssociationSummary]
@@ -1126,6 +1174,12 @@ module Aws
1126
1174
  account_id: ::String
1127
1175
  }?
1128
1176
  }
1177
+ },
1178
+ ?compute_configuration: {
1179
+ worker: {
1180
+ type: ("CR.1X" | "CR.4X"),
1181
+ number: ::Integer
1182
+ }?
1129
1183
  }
1130
1184
  ) -> _StartProtectedJobResponseSuccess
1131
1185
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartProtectedJobResponseSuccess