aws-sdk-cleanrooms 1.61.0 → 1.62.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: af5090f5aa3c79fc387601a333f20abc021190bad6226baabc3dcc7f8716e1d9
4
- data.tar.gz: 28866c9f3ff818f56a998e95083d90cf07ea9c30386aff9531b66731d8f415b8
3
+ metadata.gz: d18f8c3352d8412740eb7586bfc6f22b1e09bcdf7f5aa331bccdb76814eedbcc
4
+ data.tar.gz: 2f264e7009e65042eef388cead5c5bf2914191f625b2aedd6937a1c640811076
5
5
  SHA512:
6
- metadata.gz: fe45a4f20d25c7371703e19194955904b0082b6568895b5993dd720cf8c6e8af1649417b023bb057c96f30db1097e0ae26596a7409cf07d0e5f9e75228312414
7
- data.tar.gz: 986eb29b70aa4144efd524711dae8a1bf4de0d51cb61911610f024e95dcffb335679a68e7fb73f360b27cf9505ea94f51c76471a8e9e5245ba103577b03dfa43
6
+ metadata.gz: a3c91da87c4a7b3208f7eb2ef1bea7a4f2b62014dd6683fdd8d377d827d6abc5979ad381c2e421d42db8c026491cd8e4978dde9fdc585041c25ec5827088fc54
7
+ data.tar.gz: d8f7a1294f7639ef6c78786a6a83988a6675c0765274e62bd2a0b5abaa9e4a1966bb681bedf6a933d1c02f4234dbef377ce10f0e98c978470dba0d1364ce9da0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.62.0 (2025-12-18)
5
+ ------------------
6
+
7
+ * Feature - Adding support for collaboration change requests requiring an approval workflow. Adding support for change requests that grant or revoke results receiver ability and modifying auto approved change types in an existing collaboration.
8
+
4
9
  1.61.0 (2025-12-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.61.0
1
+ 1.62.0
@@ -1076,7 +1076,7 @@ module Aws::CleanRooms
1076
1076
  # },
1077
1077
  # },
1078
1078
  # analytics_engine: "SPARK", # accepts SPARK, CLEAN_ROOMS_SQL
1079
- # auto_approved_change_request_types: ["ADD_MEMBER"], # accepts ADD_MEMBER
1079
+ # auto_approved_change_request_types: ["ADD_MEMBER"], # accepts ADD_MEMBER, GRANT_RECEIVE_RESULTS_ABILITY, REVOKE_RECEIVE_RESULTS_ABILITY
1080
1080
  # allowed_result_regions: ["us-west-1"], # accepts us-west-1, us-west-2, us-east-1, us-east-2, af-south-1, ap-east-1, ap-east-2, ap-south-2, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-southeast-5, ap-southeast-4, ap-southeast-7, ap-south-1, ap-northeast-3, ap-northeast-1, ap-northeast-2, ca-central-1, ca-west-1, eu-south-1, eu-west-3, eu-south-2, eu-central-2, eu-central-1, eu-north-1, eu-west-1, eu-west-2, me-south-1, me-central-1, il-central-1, sa-east-1, mx-central-1
1081
1081
  # })
1082
1082
  #
@@ -1101,7 +1101,7 @@ module Aws::CleanRooms
1101
1101
  # resp.collaboration.job_log_status #=> String, one of "ENABLED", "DISABLED"
1102
1102
  # resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
1103
1103
  # resp.collaboration.auto_approved_change_types #=> Array
1104
- # resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER"
1104
+ # resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
1105
1105
  # resp.collaboration.allowed_result_regions #=> Array
1106
1106
  # resp.collaboration.allowed_result_regions[0] #=> String, one of "us-west-1", "us-west-2", "us-east-1", "us-east-2", "af-south-1", "ap-east-1", "ap-east-2", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-5", "ap-southeast-4", "ap-southeast-7", "ap-south-1", "ap-northeast-3", "ap-northeast-1", "ap-northeast-2", "ca-central-1", "ca-west-1", "eu-south-1", "eu-west-3", "eu-south-2", "eu-central-2", "eu-central-1", "eu-north-1", "eu-west-1", "eu-west-2", "me-south-1", "me-central-1", "il-central-1", "sa-east-1", "mx-central-1"
1107
1107
  #
@@ -1137,13 +1137,16 @@ module Aws::CleanRooms
1137
1137
  # collaboration_identifier: "CollaborationIdentifier", # required
1138
1138
  # changes: [ # required
1139
1139
  # {
1140
- # specification_type: "MEMBER", # required, accepts MEMBER
1140
+ # specification_type: "MEMBER", # required, accepts MEMBER, COLLABORATION
1141
1141
  # specification: { # required
1142
1142
  # member: {
1143
1143
  # account_id: "AccountId", # required
1144
1144
  # member_abilities: ["CAN_QUERY"], # required, accepts CAN_QUERY, CAN_RECEIVE_RESULTS, CAN_RUN_JOB
1145
1145
  # display_name: "DisplayName",
1146
1146
  # },
1147
+ # collaboration: {
1148
+ # auto_approved_change_types: ["ADD_MEMBER"], # accepts ADD_MEMBER, GRANT_RECEIVE_RESULTS_ABILITY, REVOKE_RECEIVE_RESULTS_ABILITY
1149
+ # },
1147
1150
  # },
1148
1151
  # },
1149
1152
  # ],
@@ -1158,13 +1161,17 @@ module Aws::CleanRooms
1158
1161
  # resp.collaboration_change_request.status #=> String, one of "PENDING", "APPROVED", "CANCELLED", "DENIED", "COMMITTED"
1159
1162
  # resp.collaboration_change_request.is_auto_approved #=> Boolean
1160
1163
  # resp.collaboration_change_request.changes #=> Array
1161
- # resp.collaboration_change_request.changes[0].specification_type #=> String, one of "MEMBER"
1164
+ # resp.collaboration_change_request.changes[0].specification_type #=> String, one of "MEMBER", "COLLABORATION"
1162
1165
  # resp.collaboration_change_request.changes[0].specification.member.account_id #=> String
1163
1166
  # resp.collaboration_change_request.changes[0].specification.member.member_abilities #=> Array
1164
1167
  # resp.collaboration_change_request.changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
1165
1168
  # resp.collaboration_change_request.changes[0].specification.member.display_name #=> String
1169
+ # resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types #=> Array
1170
+ # resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
1166
1171
  # resp.collaboration_change_request.changes[0].types #=> Array
1167
- # resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER"
1172
+ # resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY", "EDIT_AUTO_APPROVED_CHANGE_TYPES"
1173
+ # resp.collaboration_change_request.approvals #=> Hash
1174
+ # resp.collaboration_change_request.approvals["AccountId"].status #=> String, one of "APPROVED", "DENIED", "PENDING"
1168
1175
  #
1169
1176
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationChangeRequest AWS API Documentation
1170
1177
  #
@@ -2454,7 +2461,7 @@ module Aws::CleanRooms
2454
2461
  # resp.collaboration.job_log_status #=> String, one of "ENABLED", "DISABLED"
2455
2462
  # resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
2456
2463
  # resp.collaboration.auto_approved_change_types #=> Array
2457
- # resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER"
2464
+ # resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
2458
2465
  # resp.collaboration.allowed_result_regions #=> Array
2459
2466
  # resp.collaboration.allowed_result_regions[0] #=> String, one of "us-west-1", "us-west-2", "us-east-1", "us-east-2", "af-south-1", "ap-east-1", "ap-east-2", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-5", "ap-southeast-4", "ap-southeast-7", "ap-south-1", "ap-northeast-3", "ap-northeast-1", "ap-northeast-2", "ca-central-1", "ca-west-1", "eu-south-1", "eu-west-3", "eu-south-2", "eu-central-2", "eu-central-1", "eu-north-1", "eu-west-1", "eu-west-2", "me-south-1", "me-central-1", "il-central-1", "sa-east-1", "mx-central-1"
2460
2467
  #
@@ -2568,13 +2575,17 @@ module Aws::CleanRooms
2568
2575
  # resp.collaboration_change_request.status #=> String, one of "PENDING", "APPROVED", "CANCELLED", "DENIED", "COMMITTED"
2569
2576
  # resp.collaboration_change_request.is_auto_approved #=> Boolean
2570
2577
  # resp.collaboration_change_request.changes #=> Array
2571
- # resp.collaboration_change_request.changes[0].specification_type #=> String, one of "MEMBER"
2578
+ # resp.collaboration_change_request.changes[0].specification_type #=> String, one of "MEMBER", "COLLABORATION"
2572
2579
  # resp.collaboration_change_request.changes[0].specification.member.account_id #=> String
2573
2580
  # resp.collaboration_change_request.changes[0].specification.member.member_abilities #=> Array
2574
2581
  # resp.collaboration_change_request.changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
2575
2582
  # resp.collaboration_change_request.changes[0].specification.member.display_name #=> String
2583
+ # resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types #=> Array
2584
+ # resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
2576
2585
  # resp.collaboration_change_request.changes[0].types #=> Array
2577
- # resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER"
2586
+ # resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY", "EDIT_AUTO_APPROVED_CHANGE_TYPES"
2587
+ # resp.collaboration_change_request.approvals #=> Hash
2588
+ # resp.collaboration_change_request.approvals["AccountId"].status #=> String, one of "APPROVED", "DENIED", "PENDING"
2578
2589
  #
2579
2590
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationChangeRequest AWS API Documentation
2580
2591
  #
@@ -3678,13 +3689,17 @@ module Aws::CleanRooms
3678
3689
  # resp.collaboration_change_request_summaries[0].status #=> String, one of "PENDING", "APPROVED", "CANCELLED", "DENIED", "COMMITTED"
3679
3690
  # resp.collaboration_change_request_summaries[0].is_auto_approved #=> Boolean
3680
3691
  # resp.collaboration_change_request_summaries[0].changes #=> Array
3681
- # resp.collaboration_change_request_summaries[0].changes[0].specification_type #=> String, one of "MEMBER"
3692
+ # resp.collaboration_change_request_summaries[0].changes[0].specification_type #=> String, one of "MEMBER", "COLLABORATION"
3682
3693
  # resp.collaboration_change_request_summaries[0].changes[0].specification.member.account_id #=> String
3683
3694
  # resp.collaboration_change_request_summaries[0].changes[0].specification.member.member_abilities #=> Array
3684
3695
  # resp.collaboration_change_request_summaries[0].changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
3685
3696
  # resp.collaboration_change_request_summaries[0].changes[0].specification.member.display_name #=> String
3697
+ # resp.collaboration_change_request_summaries[0].changes[0].specification.collaboration.auto_approved_change_types #=> Array
3698
+ # resp.collaboration_change_request_summaries[0].changes[0].specification.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
3686
3699
  # resp.collaboration_change_request_summaries[0].changes[0].types #=> Array
3687
- # resp.collaboration_change_request_summaries[0].changes[0].types[0] #=> String, one of "ADD_MEMBER"
3700
+ # resp.collaboration_change_request_summaries[0].changes[0].types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY", "EDIT_AUTO_APPROVED_CHANGE_TYPES"
3701
+ # resp.collaboration_change_request_summaries[0].approvals #=> Hash
3702
+ # resp.collaboration_change_request_summaries[0].approvals["AccountId"].status #=> String, one of "APPROVED", "DENIED", "PENDING"
3688
3703
  # resp.next_token #=> String
3689
3704
  #
3690
3705
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationChangeRequests AWS API Documentation
@@ -5202,7 +5217,7 @@ module Aws::CleanRooms
5202
5217
  # resp.collaboration.job_log_status #=> String, one of "ENABLED", "DISABLED"
5203
5218
  # resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
5204
5219
  # resp.collaboration.auto_approved_change_types #=> Array
5205
- # resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER"
5220
+ # resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
5206
5221
  # resp.collaboration.allowed_result_regions #=> Array
5207
5222
  # resp.collaboration.allowed_result_regions[0] #=> String, one of "us-west-1", "us-west-2", "us-east-1", "us-east-2", "af-south-1", "ap-east-1", "ap-east-2", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-5", "ap-southeast-4", "ap-southeast-7", "ap-south-1", "ap-northeast-3", "ap-northeast-1", "ap-northeast-2", "ca-central-1", "ca-west-1", "eu-south-1", "eu-west-3", "eu-south-2", "eu-central-2", "eu-central-1", "eu-north-1", "eu-west-1", "eu-west-2", "me-south-1", "me-central-1", "il-central-1", "sa-east-1", "mx-central-1"
5208
5223
  #
@@ -5215,6 +5230,73 @@ module Aws::CleanRooms
5215
5230
  req.send_request(options)
5216
5231
  end
5217
5232
 
5233
+ # Updates an existing collaboration change request. This operation
5234
+ # allows approval actions for pending change requests in collaborations
5235
+ # (APPROVE, DENY, CANCEL, COMMIT).
5236
+ #
5237
+ # For change requests without automatic approval, a member in the
5238
+ # collaboration can manually APPROVE or DENY a change request. The
5239
+ # collaboration owner can manually CANCEL or COMMIT a change request.
5240
+ #
5241
+ # @option params [required, String] :collaboration_identifier
5242
+ # The unique identifier of the collaboration that contains the change
5243
+ # request to be updated.
5244
+ #
5245
+ # @option params [required, String] :change_request_identifier
5246
+ # The unique identifier of the specific change request to be updated
5247
+ # within the collaboration.
5248
+ #
5249
+ # @option params [required, String] :action
5250
+ # The action to perform on the change request. Valid values include
5251
+ # APPROVE (approve the change), DENY (reject the change), CANCEL (cancel
5252
+ # the request), and COMMIT (commit after the request is approved).
5253
+ #
5254
+ # For change requests without automatic approval, a member in the
5255
+ # collaboration can manually APPROVE or DENY a change request. The
5256
+ # collaboration owner can manually CANCEL or COMMIT a change request.
5257
+ #
5258
+ # @return [Types::UpdateCollaborationChangeRequestOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5259
+ #
5260
+ # * {Types::UpdateCollaborationChangeRequestOutput#collaboration_change_request #collaboration_change_request} => Types::CollaborationChangeRequest
5261
+ #
5262
+ # @example Request syntax with placeholder values
5263
+ #
5264
+ # resp = client.update_collaboration_change_request({
5265
+ # collaboration_identifier: "CollaborationIdentifier", # required
5266
+ # change_request_identifier: "CollaborationChangeRequestIdentifier", # required
5267
+ # action: "APPROVE", # required, accepts APPROVE, DENY, CANCEL, COMMIT
5268
+ # })
5269
+ #
5270
+ # @example Response structure
5271
+ #
5272
+ # resp.collaboration_change_request.id #=> String
5273
+ # resp.collaboration_change_request.collaboration_id #=> String
5274
+ # resp.collaboration_change_request.create_time #=> Time
5275
+ # resp.collaboration_change_request.update_time #=> Time
5276
+ # resp.collaboration_change_request.status #=> String, one of "PENDING", "APPROVED", "CANCELLED", "DENIED", "COMMITTED"
5277
+ # resp.collaboration_change_request.is_auto_approved #=> Boolean
5278
+ # resp.collaboration_change_request.changes #=> Array
5279
+ # resp.collaboration_change_request.changes[0].specification_type #=> String, one of "MEMBER", "COLLABORATION"
5280
+ # resp.collaboration_change_request.changes[0].specification.member.account_id #=> String
5281
+ # resp.collaboration_change_request.changes[0].specification.member.member_abilities #=> Array
5282
+ # resp.collaboration_change_request.changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
5283
+ # resp.collaboration_change_request.changes[0].specification.member.display_name #=> String
5284
+ # resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types #=> Array
5285
+ # resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
5286
+ # resp.collaboration_change_request.changes[0].types #=> Array
5287
+ # resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY", "EDIT_AUTO_APPROVED_CHANGE_TYPES"
5288
+ # resp.collaboration_change_request.approvals #=> Hash
5289
+ # resp.collaboration_change_request.approvals["AccountId"].status #=> String, one of "APPROVED", "DENIED", "PENDING"
5290
+ #
5291
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaborationChangeRequest AWS API Documentation
5292
+ #
5293
+ # @overload update_collaboration_change_request(params = {})
5294
+ # @param [Hash] params ({})
5295
+ def update_collaboration_change_request(params = {}, options = {})
5296
+ req = build_request(:update_collaboration_change_request, params)
5297
+ req.send_request(options)
5298
+ end
5299
+
5218
5300
  # Provides the details necessary to update a configured audience model
5219
5301
  # association.
5220
5302
  #
@@ -6076,7 +6158,7 @@ module Aws::CleanRooms
6076
6158
  tracer: tracer
6077
6159
  )
6078
6160
  context[:gem_name] = 'aws-sdk-cleanrooms'
6079
- context[:gem_version] = '1.61.0'
6161
+ context[:gem_version] = '1.62.0'
6080
6162
  Seahorse::Client::Request.new(handlers, context)
6081
6163
  end
6082
6164
 
@@ -80,6 +80,9 @@ module Aws::CleanRooms
80
80
  AnalysisTemplateValidationType = Shapes::StringShape.new(name: 'AnalysisTemplateValidationType')
81
81
  AnalysisType = Shapes::StringShape.new(name: 'AnalysisType')
82
82
  AnalyticsEngine = Shapes::StringShape.new(name: 'AnalyticsEngine')
83
+ ApprovalStatus = Shapes::StringShape.new(name: 'ApprovalStatus')
84
+ ApprovalStatusDetails = Shapes::StructureShape.new(name: 'ApprovalStatusDetails')
85
+ ApprovalStatuses = Shapes::MapShape.new(name: 'ApprovalStatuses')
83
86
  AthenaDatabaseName = Shapes::StringShape.new(name: 'AthenaDatabaseName')
84
87
  AthenaOutputLocation = Shapes::StringShape.new(name: 'AthenaOutputLocation')
85
88
  AthenaTableName = Shapes::StringShape.new(name: 'AthenaTableName')
@@ -111,6 +114,7 @@ module Aws::CleanRooms
111
114
  ChangeInput = Shapes::StructureShape.new(name: 'ChangeInput')
112
115
  ChangeInputList = Shapes::ListShape.new(name: 'ChangeInputList')
113
116
  ChangeList = Shapes::ListShape.new(name: 'ChangeList')
117
+ ChangeRequestAction = Shapes::StringShape.new(name: 'ChangeRequestAction')
114
118
  ChangeRequestStatus = Shapes::StringShape.new(name: 'ChangeRequestStatus')
115
119
  ChangeSpecification = Shapes::UnionShape.new(name: 'ChangeSpecification')
116
120
  ChangeSpecificationType = Shapes::StringShape.new(name: 'ChangeSpecificationType')
@@ -127,6 +131,7 @@ module Aws::CleanRooms
127
131
  CollaborationChangeRequestIdentifier = Shapes::StringShape.new(name: 'CollaborationChangeRequestIdentifier')
128
132
  CollaborationChangeRequestSummary = Shapes::StructureShape.new(name: 'CollaborationChangeRequestSummary')
129
133
  CollaborationChangeRequestSummaryList = Shapes::ListShape.new(name: 'CollaborationChangeRequestSummaryList')
134
+ CollaborationChangeSpecification = Shapes::StructureShape.new(name: 'CollaborationChangeSpecification')
130
135
  CollaborationConfiguredAudienceModelAssociation = Shapes::StructureShape.new(name: 'CollaborationConfiguredAudienceModelAssociation')
131
136
  CollaborationConfiguredAudienceModelAssociationSummary = Shapes::StructureShape.new(name: 'CollaborationConfiguredAudienceModelAssociationSummary')
132
137
  CollaborationConfiguredAudienceModelAssociationSummaryList = Shapes::ListShape.new(name: 'CollaborationConfiguredAudienceModelAssociationSummaryList')
@@ -597,6 +602,8 @@ module Aws::CleanRooms
597
602
  UntagResourceOutput = Shapes::StructureShape.new(name: 'UntagResourceOutput')
598
603
  UpdateAnalysisTemplateInput = Shapes::StructureShape.new(name: 'UpdateAnalysisTemplateInput')
599
604
  UpdateAnalysisTemplateOutput = Shapes::StructureShape.new(name: 'UpdateAnalysisTemplateOutput')
605
+ UpdateCollaborationChangeRequestInput = Shapes::StructureShape.new(name: 'UpdateCollaborationChangeRequestInput')
606
+ UpdateCollaborationChangeRequestOutput = Shapes::StructureShape.new(name: 'UpdateCollaborationChangeRequestOutput')
600
607
  UpdateCollaborationInput = Shapes::StructureShape.new(name: 'UpdateCollaborationInput')
601
608
  UpdateCollaborationOutput = Shapes::StructureShape.new(name: 'UpdateCollaborationOutput')
602
609
  UpdateConfiguredAudienceModelAssociationInput = Shapes::StructureShape.new(name: 'UpdateConfiguredAudienceModelAssociationInput')
@@ -839,6 +846,12 @@ module Aws::CleanRooms
839
846
 
840
847
  AnalysisTemplateValidationStatusReasonList.member = Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatusReason)
841
848
 
849
+ ApprovalStatusDetails.add_member(:status, Shapes::ShapeRef.new(shape: ApprovalStatus, required: true, location_name: "status"))
850
+ ApprovalStatusDetails.struct_class = Types::ApprovalStatusDetails
851
+
852
+ ApprovalStatuses.key = Shapes::ShapeRef.new(shape: AccountId)
853
+ ApprovalStatuses.value = Shapes::ShapeRef.new(shape: ApprovalStatusDetails)
854
+
842
855
  AthenaTableReference.add_member(:region, Shapes::ShapeRef.new(shape: CommercialRegion, location_name: "region"))
843
856
  AthenaTableReference.add_member(:work_group, Shapes::ShapeRef.new(shape: AthenaWorkGroup, required: true, location_name: "workGroup"))
844
857
  AthenaTableReference.add_member(:output_location, Shapes::ShapeRef.new(shape: AthenaOutputLocation, location_name: "outputLocation"))
@@ -921,8 +934,10 @@ module Aws::CleanRooms
921
934
  ChangeList.member = Shapes::ShapeRef.new(shape: Change)
922
935
 
923
936
  ChangeSpecification.add_member(:member, Shapes::ShapeRef.new(shape: MemberChangeSpecification, location_name: "member"))
937
+ ChangeSpecification.add_member(:collaboration, Shapes::ShapeRef.new(shape: CollaborationChangeSpecification, location_name: "collaboration"))
924
938
  ChangeSpecification.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
925
939
  ChangeSpecification.add_member_subclass(:member, Types::ChangeSpecification::Member)
940
+ ChangeSpecification.add_member_subclass(:collaboration, Types::ChangeSpecification::Collaboration)
926
941
  ChangeSpecification.add_member_subclass(:unknown, Types::ChangeSpecification::Unknown)
927
942
  ChangeSpecification.struct_class = Types::ChangeSpecification
928
943
 
@@ -989,6 +1004,7 @@ module Aws::CleanRooms
989
1004
  CollaborationChangeRequest.add_member(:status, Shapes::ShapeRef.new(shape: ChangeRequestStatus, required: true, location_name: "status"))
990
1005
  CollaborationChangeRequest.add_member(:is_auto_approved, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isAutoApproved"))
991
1006
  CollaborationChangeRequest.add_member(:changes, Shapes::ShapeRef.new(shape: ChangeList, required: true, location_name: "changes"))
1007
+ CollaborationChangeRequest.add_member(:approvals, Shapes::ShapeRef.new(shape: ApprovalStatuses, location_name: "approvals"))
992
1008
  CollaborationChangeRequest.struct_class = Types::CollaborationChangeRequest
993
1009
 
994
1010
  CollaborationChangeRequestSummary.add_member(:id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "id"))
@@ -998,10 +1014,14 @@ module Aws::CleanRooms
998
1014
  CollaborationChangeRequestSummary.add_member(:status, Shapes::ShapeRef.new(shape: ChangeRequestStatus, required: true, location_name: "status"))
999
1015
  CollaborationChangeRequestSummary.add_member(:is_auto_approved, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isAutoApproved"))
1000
1016
  CollaborationChangeRequestSummary.add_member(:changes, Shapes::ShapeRef.new(shape: ChangeList, required: true, location_name: "changes"))
1017
+ CollaborationChangeRequestSummary.add_member(:approvals, Shapes::ShapeRef.new(shape: ApprovalStatuses, location_name: "approvals"))
1001
1018
  CollaborationChangeRequestSummary.struct_class = Types::CollaborationChangeRequestSummary
1002
1019
 
1003
1020
  CollaborationChangeRequestSummaryList.member = Shapes::ShapeRef.new(shape: CollaborationChangeRequestSummary)
1004
1021
 
1022
+ CollaborationChangeSpecification.add_member(:auto_approved_change_types, Shapes::ShapeRef.new(shape: AutoApprovedChangeTypeList, location_name: "autoApprovedChangeTypes"))
1023
+ CollaborationChangeSpecification.struct_class = Types::CollaborationChangeSpecification
1024
+
1005
1025
  CollaborationConfiguredAudienceModelAssociation.add_member(:id, Shapes::ShapeRef.new(shape: ConfiguredAudienceModelAssociationIdentifier, required: true, location_name: "id"))
1006
1026
  CollaborationConfiguredAudienceModelAssociation.add_member(:arn, Shapes::ShapeRef.new(shape: ConfiguredAudienceModelAssociationArn, required: true, location_name: "arn"))
1007
1027
  CollaborationConfiguredAudienceModelAssociation.add_member(:collaboration_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "collaborationId"))
@@ -2710,6 +2730,14 @@ module Aws::CleanRooms
2710
2730
  UpdateAnalysisTemplateOutput.add_member(:analysis_template, Shapes::ShapeRef.new(shape: AnalysisTemplate, required: true, location_name: "analysisTemplate"))
2711
2731
  UpdateAnalysisTemplateOutput.struct_class = Types::UpdateAnalysisTemplateOutput
2712
2732
 
2733
+ UpdateCollaborationChangeRequestInput.add_member(:collaboration_identifier, Shapes::ShapeRef.new(shape: CollaborationIdentifier, required: true, location: "uri", location_name: "collaborationIdentifier"))
2734
+ UpdateCollaborationChangeRequestInput.add_member(:change_request_identifier, Shapes::ShapeRef.new(shape: CollaborationChangeRequestIdentifier, required: true, location: "uri", location_name: "changeRequestIdentifier"))
2735
+ UpdateCollaborationChangeRequestInput.add_member(:action, Shapes::ShapeRef.new(shape: ChangeRequestAction, required: true, location_name: "action"))
2736
+ UpdateCollaborationChangeRequestInput.struct_class = Types::UpdateCollaborationChangeRequestInput
2737
+
2738
+ UpdateCollaborationChangeRequestOutput.add_member(:collaboration_change_request, Shapes::ShapeRef.new(shape: CollaborationChangeRequest, required: true, location_name: "collaborationChangeRequest"))
2739
+ UpdateCollaborationChangeRequestOutput.struct_class = Types::UpdateCollaborationChangeRequestOutput
2740
+
2713
2741
  UpdateCollaborationInput.add_member(:collaboration_identifier, Shapes::ShapeRef.new(shape: CollaborationIdentifier, required: true, location: "uri", location_name: "collaborationIdentifier"))
2714
2742
  UpdateCollaborationInput.add_member(:name, Shapes::ShapeRef.new(shape: CollaborationName, location_name: "name"))
2715
2743
  UpdateCollaborationInput.add_member(:description, Shapes::ShapeRef.new(shape: CollaborationDescription, location_name: "description"))
@@ -3985,6 +4013,20 @@ module Aws::CleanRooms
3985
4013
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
3986
4014
  end)
3987
4015
 
4016
+ api.add_operation(:update_collaboration_change_request, Seahorse::Model::Operation.new.tap do |o|
4017
+ o.name = "UpdateCollaborationChangeRequest"
4018
+ o.http_method = "PATCH"
4019
+ o.http_request_uri = "/collaborations/{collaborationIdentifier}/changeRequests/{changeRequestIdentifier}"
4020
+ o.input = Shapes::ShapeRef.new(shape: UpdateCollaborationChangeRequestInput)
4021
+ o.output = Shapes::ShapeRef.new(shape: UpdateCollaborationChangeRequestOutput)
4022
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
4023
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
4024
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
4025
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
4026
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
4027
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
4028
+ end)
4029
+
3988
4030
  api.add_operation(:update_configured_audience_model_association, Seahorse::Model::Operation.new.tap do |o|
3989
4031
  o.name = "UpdateConfiguredAudienceModelAssociation"
3990
4032
  o.http_method = "PATCH"
@@ -894,6 +894,22 @@ module Aws::CleanRooms
894
894
  include Aws::Structure
895
895
  end
896
896
 
897
+ # Contains detailed information about the approval state of a given
898
+ # member in the collaboration for a given collaboration change request.
899
+ #
900
+ # @!attribute [rw] status
901
+ # The approval status of a member's vote on the change request. Valid
902
+ # values are PENDING (if they haven't voted), APPROVED, or DENIED.
903
+ # @return [String]
904
+ #
905
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ApprovalStatusDetails AWS API Documentation
906
+ #
907
+ class ApprovalStatusDetails < Struct.new(
908
+ :status)
909
+ SENSITIVE = []
910
+ include Aws::Structure
911
+ end
912
+
897
913
  # A reference to a table within Athena.
898
914
  #
899
915
  # @!attribute [rw] region
@@ -1234,16 +1250,24 @@ module Aws::CleanRooms
1234
1250
  # The member change specification when the change type is `MEMBER`.
1235
1251
  # @return [Types::MemberChangeSpecification]
1236
1252
  #
1253
+ # @!attribute [rw] collaboration
1254
+ # The collaboration configuration changes being requested. Currently,
1255
+ # this only supports modifying which change types are auto-approved
1256
+ # for the collaboration.
1257
+ # @return [Types::CollaborationChangeSpecification]
1258
+ #
1237
1259
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ChangeSpecification AWS API Documentation
1238
1260
  #
1239
1261
  class ChangeSpecification < Struct.new(
1240
1262
  :member,
1263
+ :collaboration,
1241
1264
  :unknown)
1242
1265
  SENSITIVE = []
1243
1266
  include Aws::Structure
1244
1267
  include Aws::Structure::Union
1245
1268
 
1246
1269
  class Member < ChangeSpecification; end
1270
+ class Collaboration < ChangeSpecification; end
1247
1271
  class Unknown < ChangeSpecification; end
1248
1272
  end
1249
1273
 
@@ -1567,6 +1591,11 @@ module Aws::CleanRooms
1567
1591
  # The list of changes specified in this change request.
1568
1592
  # @return [Array<Types::Change>]
1569
1593
  #
1594
+ # @!attribute [rw] approvals
1595
+ # A list of approval details from collaboration members, including
1596
+ # approval status and multi-party approval workflow information.
1597
+ # @return [Hash<String,Types::ApprovalStatusDetails>]
1598
+ #
1570
1599
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationChangeRequest AWS API Documentation
1571
1600
  #
1572
1601
  class CollaborationChangeRequest < Struct.new(
@@ -1576,7 +1605,8 @@ module Aws::CleanRooms
1576
1605
  :update_time,
1577
1606
  :status,
1578
1607
  :is_auto_approved,
1579
- :changes)
1608
+ :changes,
1609
+ :approvals)
1580
1610
  SENSITIVE = []
1581
1611
  include Aws::Structure
1582
1612
  end
@@ -1611,6 +1641,11 @@ module Aws::CleanRooms
1611
1641
  # Summary of the changes in this change request.
1612
1642
  # @return [Array<Types::Change>]
1613
1643
  #
1644
+ # @!attribute [rw] approvals
1645
+ # Summary of approval statuses from all collaboration members for this
1646
+ # change request.
1647
+ # @return [Hash<String,Types::ApprovalStatusDetails>]
1648
+ #
1614
1649
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationChangeRequestSummary AWS API Documentation
1615
1650
  #
1616
1651
  class CollaborationChangeRequestSummary < Struct.new(
@@ -1620,7 +1655,25 @@ module Aws::CleanRooms
1620
1655
  :update_time,
1621
1656
  :status,
1622
1657
  :is_auto_approved,
1623
- :changes)
1658
+ :changes,
1659
+ :approvals)
1660
+ SENSITIVE = []
1661
+ include Aws::Structure
1662
+ end
1663
+
1664
+ # Defines the specific changes being requested for a collaboration,
1665
+ # including configuration modifications and approval requirements.
1666
+ #
1667
+ # @!attribute [rw] auto_approved_change_types
1668
+ # Defines requested updates to properties of the collaboration.
1669
+ # Currently, this only supports modifying which change types are
1670
+ # auto-approved for the collaboration.
1671
+ # @return [Array<String>]
1672
+ #
1673
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationChangeSpecification AWS API Documentation
1674
+ #
1675
+ class CollaborationChangeSpecification < Struct.new(
1676
+ :auto_approved_change_types)
1624
1677
  SENSITIVE = []
1625
1678
  include Aws::Structure
1626
1679
  end
@@ -9500,6 +9553,51 @@ module Aws::CleanRooms
9500
9553
  include Aws::Structure
9501
9554
  end
9502
9555
 
9556
+ # @!attribute [rw] collaboration_identifier
9557
+ # The unique identifier of the collaboration that contains the change
9558
+ # request to be updated.
9559
+ # @return [String]
9560
+ #
9561
+ # @!attribute [rw] change_request_identifier
9562
+ # The unique identifier of the specific change request to be updated
9563
+ # within the collaboration.
9564
+ # @return [String]
9565
+ #
9566
+ # @!attribute [rw] action
9567
+ # The action to perform on the change request. Valid values include
9568
+ # APPROVE (approve the change), DENY (reject the change), CANCEL
9569
+ # (cancel the request), and COMMIT (commit after the request is
9570
+ # approved).
9571
+ #
9572
+ # For change requests without automatic approval, a member in the
9573
+ # collaboration can manually APPROVE or DENY a change request. The
9574
+ # collaboration owner can manually CANCEL or COMMIT a change request.
9575
+ # @return [String]
9576
+ #
9577
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaborationChangeRequestInput AWS API Documentation
9578
+ #
9579
+ class UpdateCollaborationChangeRequestInput < Struct.new(
9580
+ :collaboration_identifier,
9581
+ :change_request_identifier,
9582
+ :action)
9583
+ SENSITIVE = []
9584
+ include Aws::Structure
9585
+ end
9586
+
9587
+ # @!attribute [rw] collaboration_change_request
9588
+ # Represents a request to modify a collaboration. Change requests
9589
+ # enable structured modifications to collaborations after they have
9590
+ # been created.
9591
+ # @return [Types::CollaborationChangeRequest]
9592
+ #
9593
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaborationChangeRequestOutput AWS API Documentation
9594
+ #
9595
+ class UpdateCollaborationChangeRequestOutput < Struct.new(
9596
+ :collaboration_change_request)
9597
+ SENSITIVE = []
9598
+ include Aws::Structure
9599
+ end
9600
+
9503
9601
  # @!attribute [rw] collaboration_identifier
9504
9602
  # The identifier for the collaboration.
9505
9603
  # @return [String]
@@ -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.61.0'
58
+ GEM_VERSION = '1.62.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -252,7 +252,7 @@ module Aws
252
252
  }?
253
253
  },
254
254
  ?analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL"),
255
- ?auto_approved_change_request_types: Array[("ADD_MEMBER")],
255
+ ?auto_approved_change_request_types: Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")],
256
256
  ?allowed_result_regions: Array[("us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "ap-east-2" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-5" | "ap-southeast-4" | "ap-southeast-7" | "ap-south-1" | "ap-northeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ca-central-1" | "ca-west-1" | "eu-south-1" | "eu-west-3" | "eu-south-2" | "eu-central-2" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "me-south-1" | "me-central-1" | "il-central-1" | "sa-east-1" | "mx-central-1")]
257
257
  ) -> _CreateCollaborationResponseSuccess
258
258
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCollaborationResponseSuccess
@@ -266,12 +266,15 @@ module Aws
266
266
  collaboration_identifier: ::String,
267
267
  changes: Array[
268
268
  {
269
- specification_type: ("MEMBER"),
269
+ specification_type: ("MEMBER" | "COLLABORATION"),
270
270
  specification: {
271
271
  member: {
272
272
  account_id: ::String,
273
273
  member_abilities: Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS" | "CAN_RUN_JOB")],
274
274
  display_name: ::String?
275
+ }?,
276
+ collaboration: {
277
+ auto_approved_change_types: Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")]?
275
278
  }?
276
279
  }
277
280
  },
@@ -1322,6 +1325,18 @@ module Aws
1322
1325
  ) -> _UpdateCollaborationResponseSuccess
1323
1326
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCollaborationResponseSuccess
1324
1327
 
1328
+ interface _UpdateCollaborationChangeRequestResponseSuccess
1329
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCollaborationChangeRequestOutput]
1330
+ def collaboration_change_request: () -> Types::CollaborationChangeRequest
1331
+ end
1332
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#update_collaboration_change_request-instance_method
1333
+ def update_collaboration_change_request: (
1334
+ collaboration_identifier: ::String,
1335
+ change_request_identifier: ::String,
1336
+ action: ("APPROVE" | "DENY" | "CANCEL" | "COMMIT")
1337
+ ) -> _UpdateCollaborationChangeRequestResponseSuccess
1338
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCollaborationChangeRequestResponseSuccess
1339
+
1325
1340
  interface _UpdateConfiguredAudienceModelAssociationResponseSuccess
1326
1341
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfiguredAudienceModelAssociationOutput]
1327
1342
  def configured_audience_model_association: () -> Types::ConfiguredAudienceModelAssociation
data/sig/types.rbs CHANGED
@@ -244,6 +244,11 @@ module Aws::CleanRooms
244
244
  SENSITIVE: []
245
245
  end
246
246
 
247
+ class ApprovalStatusDetails
248
+ attr_accessor status: ("APPROVED" | "DENIED" | "PENDING")
249
+ SENSITIVE: []
250
+ end
251
+
247
252
  class AthenaTableReference
248
253
  attr_accessor region: ("us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-5" | "ap-southeast-4" | "ap-southeast-7" | "ap-south-1" | "ap-northeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ca-central-1" | "ca-west-1" | "eu-south-1" | "eu-west-3" | "eu-south-2" | "eu-central-2" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "me-south-1" | "me-central-1" | "il-central-1" | "sa-east-1" | "mx-central-1" | "ap-east-2")
249
254
  attr_accessor work_group: ::String
@@ -329,25 +334,28 @@ module Aws::CleanRooms
329
334
  end
330
335
 
331
336
  class Change
332
- attr_accessor specification_type: ("MEMBER")
337
+ attr_accessor specification_type: ("MEMBER" | "COLLABORATION")
333
338
  attr_accessor specification: Types::ChangeSpecification
334
- attr_accessor types: ::Array[("ADD_MEMBER")]
339
+ attr_accessor types: ::Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY" | "EDIT_AUTO_APPROVED_CHANGE_TYPES")]
335
340
  SENSITIVE: []
336
341
  end
337
342
 
338
343
  class ChangeInput
339
- attr_accessor specification_type: ("MEMBER")
344
+ attr_accessor specification_type: ("MEMBER" | "COLLABORATION")
340
345
  attr_accessor specification: Types::ChangeSpecification
341
346
  SENSITIVE: []
342
347
  end
343
348
 
344
349
  class ChangeSpecification
345
350
  attr_accessor member: Types::MemberChangeSpecification
351
+ attr_accessor collaboration: Types::CollaborationChangeSpecification
346
352
  attr_accessor unknown: untyped
347
353
  SENSITIVE: []
348
354
 
349
355
  class Member < ChangeSpecification
350
356
  end
357
+ class Collaboration < ChangeSpecification
358
+ end
351
359
  class Unknown < ChangeSpecification
352
360
  end
353
361
  end
@@ -368,7 +376,7 @@ module Aws::CleanRooms
368
376
  attr_accessor query_log_status: ("ENABLED" | "DISABLED")
369
377
  attr_accessor job_log_status: ("ENABLED" | "DISABLED")
370
378
  attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
371
- attr_accessor auto_approved_change_types: ::Array[("ADD_MEMBER")]
379
+ attr_accessor auto_approved_change_types: ::Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")]
372
380
  attr_accessor allowed_result_regions: ::Array[("us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "ap-east-2" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-5" | "ap-southeast-4" | "ap-southeast-7" | "ap-south-1" | "ap-northeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ca-central-1" | "ca-west-1" | "eu-south-1" | "eu-west-3" | "eu-south-2" | "eu-central-2" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "me-south-1" | "me-central-1" | "il-central-1" | "sa-east-1" | "mx-central-1")]
373
381
  SENSITIVE: []
374
382
  end
@@ -416,6 +424,7 @@ module Aws::CleanRooms
416
424
  attr_accessor status: ("PENDING" | "APPROVED" | "CANCELLED" | "DENIED" | "COMMITTED")
417
425
  attr_accessor is_auto_approved: bool
418
426
  attr_accessor changes: ::Array[Types::Change]
427
+ attr_accessor approvals: ::Hash[::String, Types::ApprovalStatusDetails]
419
428
  SENSITIVE: []
420
429
  end
421
430
 
@@ -427,6 +436,12 @@ module Aws::CleanRooms
427
436
  attr_accessor status: ("PENDING" | "APPROVED" | "CANCELLED" | "DENIED" | "COMMITTED")
428
437
  attr_accessor is_auto_approved: bool
429
438
  attr_accessor changes: ::Array[Types::Change]
439
+ attr_accessor approvals: ::Hash[::String, Types::ApprovalStatusDetails]
440
+ SENSITIVE: []
441
+ end
442
+
443
+ class CollaborationChangeSpecification
444
+ attr_accessor auto_approved_change_types: ::Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")]
430
445
  SENSITIVE: []
431
446
  end
432
447
 
@@ -872,7 +887,7 @@ module Aws::CleanRooms
872
887
  attr_accessor tags: ::Hash[::String, ::String]
873
888
  attr_accessor creator_payment_configuration: Types::PaymentConfiguration
874
889
  attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
875
- attr_accessor auto_approved_change_request_types: ::Array[("ADD_MEMBER")]
890
+ attr_accessor auto_approved_change_request_types: ::Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")]
876
891
  attr_accessor allowed_result_regions: ::Array[("us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "ap-east-2" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-5" | "ap-southeast-4" | "ap-southeast-7" | "ap-south-1" | "ap-northeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ca-central-1" | "ca-west-1" | "eu-south-1" | "eu-west-3" | "eu-south-2" | "eu-central-2" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "me-south-1" | "me-central-1" | "il-central-1" | "sa-east-1" | "mx-central-1")]
877
892
  SENSITIVE: []
878
893
  end
@@ -2705,6 +2720,18 @@ module Aws::CleanRooms
2705
2720
  SENSITIVE: []
2706
2721
  end
2707
2722
 
2723
+ class UpdateCollaborationChangeRequestInput
2724
+ attr_accessor collaboration_identifier: ::String
2725
+ attr_accessor change_request_identifier: ::String
2726
+ attr_accessor action: ("APPROVE" | "DENY" | "CANCEL" | "COMMIT")
2727
+ SENSITIVE: []
2728
+ end
2729
+
2730
+ class UpdateCollaborationChangeRequestOutput
2731
+ attr_accessor collaboration_change_request: Types::CollaborationChangeRequest
2732
+ SENSITIVE: []
2733
+ end
2734
+
2708
2735
  class UpdateCollaborationInput
2709
2736
  attr_accessor collaboration_identifier: ::String
2710
2737
  attr_accessor name: ::String
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.61.0
4
+ version: 1.62.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services