aws-sdk-cleanrooms 1.52.0 → 1.53.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanrooms/client.rb +181 -1
- data/lib/aws-sdk-cleanrooms/client_api.rb +143 -0
- data/lib/aws-sdk-cleanrooms/types.rb +324 -2
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +49 -1
- data/sig/types.rbs +91 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17b3d580221bd14a1cfc57e6a4e48fe955480567b295ed91fdef5d1a76b2b551
|
4
|
+
data.tar.gz: f608ef9d73e8ba62aa8e6ba105744b4a8bb5aca499b0afcda545350e7db2c599
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fb65269df045b871a11fe2c796d7d253794b98fe9a1cafab7a764cc914c67dda5f72677451da66c4db7d999f5973f2c321cb300b6157a1d8fabffb9f656e17f
|
7
|
+
data.tar.gz: dab5824bd3f43de1cee6f0612e8bc80e646adc86fc49c6350d8826201b4651aa361004a8982b3ad74d967ebeef5cb923a896e0b056b7e88f287efdbbf55040af
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.53.0
|
@@ -959,6 +959,10 @@ module Aws::CleanRooms
|
|
959
959
|
#
|
960
960
|
# </note>
|
961
961
|
#
|
962
|
+
# @option params [Array<String>] :auto_approved_change_request_types
|
963
|
+
# The types of change requests that are automatically approved for this
|
964
|
+
# collaboration.
|
965
|
+
#
|
962
966
|
# @return [Types::CreateCollaborationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
963
967
|
#
|
964
968
|
# * {Types::CreateCollaborationOutput#collaboration #collaboration} => Types::Collaboration
|
@@ -1027,6 +1031,7 @@ module Aws::CleanRooms
|
|
1027
1031
|
# },
|
1028
1032
|
# },
|
1029
1033
|
# analytics_engine: "SPARK", # accepts SPARK, CLEAN_ROOMS_SQL
|
1034
|
+
# auto_approved_change_request_types: ["ADD_MEMBER"], # accepts ADD_MEMBER
|
1030
1035
|
# })
|
1031
1036
|
#
|
1032
1037
|
# @example Response structure
|
@@ -1049,6 +1054,8 @@ module Aws::CleanRooms
|
|
1049
1054
|
# resp.collaboration.query_log_status #=> String, one of "ENABLED", "DISABLED"
|
1050
1055
|
# resp.collaboration.job_log_status #=> String, one of "ENABLED", "DISABLED"
|
1051
1056
|
# resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
|
1057
|
+
# resp.collaboration.auto_approved_change_types #=> Array
|
1058
|
+
# resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER"
|
1052
1059
|
#
|
1053
1060
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaboration AWS API Documentation
|
1054
1061
|
#
|
@@ -1059,6 +1066,67 @@ module Aws::CleanRooms
|
|
1059
1066
|
req.send_request(options)
|
1060
1067
|
end
|
1061
1068
|
|
1069
|
+
# Creates a new change request to modify an existing collaboration. This
|
1070
|
+
# enables post-creation modifications to collaborations through a
|
1071
|
+
# structured API-driven approach.
|
1072
|
+
#
|
1073
|
+
# @option params [required, String] :collaboration_identifier
|
1074
|
+
# The identifier of the collaboration that the change request is made
|
1075
|
+
# against.
|
1076
|
+
#
|
1077
|
+
# @option params [required, Array<Types::ChangeInput>] :changes
|
1078
|
+
# The list of changes to apply to the collaboration. Each change
|
1079
|
+
# specifies the type of modification and the details of what should be
|
1080
|
+
# changed.
|
1081
|
+
#
|
1082
|
+
# @return [Types::CreateCollaborationChangeRequestOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1083
|
+
#
|
1084
|
+
# * {Types::CreateCollaborationChangeRequestOutput#collaboration_change_request #collaboration_change_request} => Types::CollaborationChangeRequest
|
1085
|
+
#
|
1086
|
+
# @example Request syntax with placeholder values
|
1087
|
+
#
|
1088
|
+
# resp = client.create_collaboration_change_request({
|
1089
|
+
# collaboration_identifier: "CollaborationIdentifier", # required
|
1090
|
+
# changes: [ # required
|
1091
|
+
# {
|
1092
|
+
# specification_type: "MEMBER", # required, accepts MEMBER
|
1093
|
+
# specification: { # required
|
1094
|
+
# member: {
|
1095
|
+
# account_id: "AccountId", # required
|
1096
|
+
# member_abilities: ["CAN_QUERY"], # required, accepts CAN_QUERY, CAN_RECEIVE_RESULTS, CAN_RUN_JOB
|
1097
|
+
# display_name: "DisplayName",
|
1098
|
+
# },
|
1099
|
+
# },
|
1100
|
+
# },
|
1101
|
+
# ],
|
1102
|
+
# })
|
1103
|
+
#
|
1104
|
+
# @example Response structure
|
1105
|
+
#
|
1106
|
+
# resp.collaboration_change_request.id #=> String
|
1107
|
+
# resp.collaboration_change_request.collaboration_id #=> String
|
1108
|
+
# resp.collaboration_change_request.create_time #=> Time
|
1109
|
+
# resp.collaboration_change_request.update_time #=> Time
|
1110
|
+
# resp.collaboration_change_request.status #=> String, one of "PENDING", "APPROVED", "CANCELLED", "DENIED", "COMMITTED"
|
1111
|
+
# resp.collaboration_change_request.is_auto_approved #=> Boolean
|
1112
|
+
# resp.collaboration_change_request.changes #=> Array
|
1113
|
+
# resp.collaboration_change_request.changes[0].specification_type #=> String, one of "MEMBER"
|
1114
|
+
# resp.collaboration_change_request.changes[0].specification.member.account_id #=> String
|
1115
|
+
# resp.collaboration_change_request.changes[0].specification.member.member_abilities #=> Array
|
1116
|
+
# resp.collaboration_change_request.changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
|
1117
|
+
# resp.collaboration_change_request.changes[0].specification.member.display_name #=> String
|
1118
|
+
# resp.collaboration_change_request.changes[0].types #=> Array
|
1119
|
+
# resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER"
|
1120
|
+
#
|
1121
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationChangeRequest AWS API Documentation
|
1122
|
+
#
|
1123
|
+
# @overload create_collaboration_change_request(params = {})
|
1124
|
+
# @param [Hash] params ({})
|
1125
|
+
def create_collaboration_change_request(params = {}, options = {})
|
1126
|
+
req = build_request(:create_collaboration_change_request, params)
|
1127
|
+
req.send_request(options)
|
1128
|
+
end
|
1129
|
+
|
1062
1130
|
# Provides the details necessary to create a configured audience model
|
1063
1131
|
# association.
|
1064
1132
|
#
|
@@ -2308,6 +2376,8 @@ module Aws::CleanRooms
|
|
2308
2376
|
# resp.collaboration.query_log_status #=> String, one of "ENABLED", "DISABLED"
|
2309
2377
|
# resp.collaboration.job_log_status #=> String, one of "ENABLED", "DISABLED"
|
2310
2378
|
# resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
|
2379
|
+
# resp.collaboration.auto_approved_change_types #=> Array
|
2380
|
+
# resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER"
|
2311
2381
|
#
|
2312
2382
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaboration AWS API Documentation
|
2313
2383
|
#
|
@@ -2383,6 +2453,53 @@ module Aws::CleanRooms
|
|
2383
2453
|
req.send_request(options)
|
2384
2454
|
end
|
2385
2455
|
|
2456
|
+
# Retrieves detailed information about a specific collaboration change
|
2457
|
+
# request.
|
2458
|
+
#
|
2459
|
+
# @option params [required, String] :collaboration_identifier
|
2460
|
+
# The identifier of the collaboration that the change request is made
|
2461
|
+
# against.
|
2462
|
+
#
|
2463
|
+
# @option params [required, String] :change_request_identifier
|
2464
|
+
# A unique identifier for the change request to retrieve.
|
2465
|
+
#
|
2466
|
+
# @return [Types::GetCollaborationChangeRequestOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2467
|
+
#
|
2468
|
+
# * {Types::GetCollaborationChangeRequestOutput#collaboration_change_request #collaboration_change_request} => Types::CollaborationChangeRequest
|
2469
|
+
#
|
2470
|
+
# @example Request syntax with placeholder values
|
2471
|
+
#
|
2472
|
+
# resp = client.get_collaboration_change_request({
|
2473
|
+
# collaboration_identifier: "CollaborationIdentifier", # required
|
2474
|
+
# change_request_identifier: "CollaborationChangeRequestIdentifier", # required
|
2475
|
+
# })
|
2476
|
+
#
|
2477
|
+
# @example Response structure
|
2478
|
+
#
|
2479
|
+
# resp.collaboration_change_request.id #=> String
|
2480
|
+
# resp.collaboration_change_request.collaboration_id #=> String
|
2481
|
+
# resp.collaboration_change_request.create_time #=> Time
|
2482
|
+
# resp.collaboration_change_request.update_time #=> Time
|
2483
|
+
# resp.collaboration_change_request.status #=> String, one of "PENDING", "APPROVED", "CANCELLED", "DENIED", "COMMITTED"
|
2484
|
+
# resp.collaboration_change_request.is_auto_approved #=> Boolean
|
2485
|
+
# resp.collaboration_change_request.changes #=> Array
|
2486
|
+
# resp.collaboration_change_request.changes[0].specification_type #=> String, one of "MEMBER"
|
2487
|
+
# resp.collaboration_change_request.changes[0].specification.member.account_id #=> String
|
2488
|
+
# resp.collaboration_change_request.changes[0].specification.member.member_abilities #=> Array
|
2489
|
+
# resp.collaboration_change_request.changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
|
2490
|
+
# resp.collaboration_change_request.changes[0].specification.member.display_name #=> String
|
2491
|
+
# resp.collaboration_change_request.changes[0].types #=> Array
|
2492
|
+
# resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER"
|
2493
|
+
#
|
2494
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationChangeRequest AWS API Documentation
|
2495
|
+
#
|
2496
|
+
# @overload get_collaboration_change_request(params = {})
|
2497
|
+
# @param [Hash] params ({})
|
2498
|
+
def get_collaboration_change_request(params = {}, options = {})
|
2499
|
+
req = build_request(:get_collaboration_change_request, params)
|
2500
|
+
req.send_request(options)
|
2501
|
+
end
|
2502
|
+
|
2386
2503
|
# Retrieves a configured audience model association within a
|
2387
2504
|
# collaboration.
|
2388
2505
|
#
|
@@ -3413,6 +3530,67 @@ module Aws::CleanRooms
|
|
3413
3530
|
req.send_request(options)
|
3414
3531
|
end
|
3415
3532
|
|
3533
|
+
# Lists all change requests for a collaboration with pagination support.
|
3534
|
+
# Returns change requests sorted by creation time.
|
3535
|
+
#
|
3536
|
+
# @option params [required, String] :collaboration_identifier
|
3537
|
+
# The identifier of the collaboration that the change request is made
|
3538
|
+
# against.
|
3539
|
+
#
|
3540
|
+
# @option params [String] :status
|
3541
|
+
# A filter to only return change requests with the specified status.
|
3542
|
+
#
|
3543
|
+
# @option params [String] :next_token
|
3544
|
+
# The pagination token that's used to fetch the next set of results.
|
3545
|
+
#
|
3546
|
+
# @option params [Integer] :max_results
|
3547
|
+
# The maximum number of results that are returned for an API request
|
3548
|
+
# call.
|
3549
|
+
#
|
3550
|
+
# @return [Types::ListCollaborationChangeRequestsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3551
|
+
#
|
3552
|
+
# * {Types::ListCollaborationChangeRequestsOutput#collaboration_change_request_summaries #collaboration_change_request_summaries} => Array<Types::CollaborationChangeRequestSummary>
|
3553
|
+
# * {Types::ListCollaborationChangeRequestsOutput#next_token #next_token} => String
|
3554
|
+
#
|
3555
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3556
|
+
#
|
3557
|
+
# @example Request syntax with placeholder values
|
3558
|
+
#
|
3559
|
+
# resp = client.list_collaboration_change_requests({
|
3560
|
+
# collaboration_identifier: "CollaborationIdentifier", # required
|
3561
|
+
# status: "PENDING", # accepts PENDING, APPROVED, CANCELLED, DENIED, COMMITTED
|
3562
|
+
# next_token: "PaginationToken",
|
3563
|
+
# max_results: 1,
|
3564
|
+
# })
|
3565
|
+
#
|
3566
|
+
# @example Response structure
|
3567
|
+
#
|
3568
|
+
# resp.collaboration_change_request_summaries #=> Array
|
3569
|
+
# resp.collaboration_change_request_summaries[0].id #=> String
|
3570
|
+
# resp.collaboration_change_request_summaries[0].collaboration_id #=> String
|
3571
|
+
# resp.collaboration_change_request_summaries[0].create_time #=> Time
|
3572
|
+
# resp.collaboration_change_request_summaries[0].update_time #=> Time
|
3573
|
+
# resp.collaboration_change_request_summaries[0].status #=> String, one of "PENDING", "APPROVED", "CANCELLED", "DENIED", "COMMITTED"
|
3574
|
+
# resp.collaboration_change_request_summaries[0].is_auto_approved #=> Boolean
|
3575
|
+
# resp.collaboration_change_request_summaries[0].changes #=> Array
|
3576
|
+
# resp.collaboration_change_request_summaries[0].changes[0].specification_type #=> String, one of "MEMBER"
|
3577
|
+
# resp.collaboration_change_request_summaries[0].changes[0].specification.member.account_id #=> String
|
3578
|
+
# resp.collaboration_change_request_summaries[0].changes[0].specification.member.member_abilities #=> Array
|
3579
|
+
# resp.collaboration_change_request_summaries[0].changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
|
3580
|
+
# resp.collaboration_change_request_summaries[0].changes[0].specification.member.display_name #=> String
|
3581
|
+
# resp.collaboration_change_request_summaries[0].changes[0].types #=> Array
|
3582
|
+
# resp.collaboration_change_request_summaries[0].changes[0].types[0] #=> String, one of "ADD_MEMBER"
|
3583
|
+
# resp.next_token #=> String
|
3584
|
+
#
|
3585
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationChangeRequests AWS API Documentation
|
3586
|
+
#
|
3587
|
+
# @overload list_collaboration_change_requests(params = {})
|
3588
|
+
# @param [Hash] params ({})
|
3589
|
+
def list_collaboration_change_requests(params = {}, options = {})
|
3590
|
+
req = build_request(:list_collaboration_change_requests, params)
|
3591
|
+
req.send_request(options)
|
3592
|
+
end
|
3593
|
+
|
3416
3594
|
# Lists configured audience model associations within a collaboration.
|
3417
3595
|
#
|
3418
3596
|
# @option params [required, String] :collaboration_identifier
|
@@ -4840,6 +5018,8 @@ module Aws::CleanRooms
|
|
4840
5018
|
# resp.collaboration.query_log_status #=> String, one of "ENABLED", "DISABLED"
|
4841
5019
|
# resp.collaboration.job_log_status #=> String, one of "ENABLED", "DISABLED"
|
4842
5020
|
# resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
|
5021
|
+
# resp.collaboration.auto_approved_change_types #=> Array
|
5022
|
+
# resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER"
|
4843
5023
|
#
|
4844
5024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaboration AWS API Documentation
|
4845
5025
|
#
|
@@ -5688,7 +5868,7 @@ module Aws::CleanRooms
|
|
5688
5868
|
tracer: tracer
|
5689
5869
|
)
|
5690
5870
|
context[:gem_name] = 'aws-sdk-cleanrooms'
|
5691
|
-
context[:gem_version] = '1.
|
5871
|
+
context[:gem_version] = '1.53.0'
|
5692
5872
|
Seahorse::Client::Request.new(handlers, context)
|
5693
5873
|
end
|
5694
5874
|
|
@@ -77,6 +77,8 @@ module Aws::CleanRooms
|
|
77
77
|
AthenaTableName = Shapes::StringShape.new(name: 'AthenaTableName')
|
78
78
|
AthenaTableReference = Shapes::StructureShape.new(name: 'AthenaTableReference')
|
79
79
|
AthenaWorkGroup = Shapes::StringShape.new(name: 'AthenaWorkGroup')
|
80
|
+
AutoApprovedChangeType = Shapes::StringShape.new(name: 'AutoApprovedChangeType')
|
81
|
+
AutoApprovedChangeTypeList = Shapes::ListShape.new(name: 'AutoApprovedChangeTypeList')
|
80
82
|
BatchGetCollaborationAnalysisTemplateError = Shapes::StructureShape.new(name: 'BatchGetCollaborationAnalysisTemplateError')
|
81
83
|
BatchGetCollaborationAnalysisTemplateErrorList = Shapes::ListShape.new(name: 'BatchGetCollaborationAnalysisTemplateErrorList')
|
82
84
|
BatchGetCollaborationAnalysisTemplateInput = Shapes::StructureShape.new(name: 'BatchGetCollaborationAnalysisTemplateInput')
|
@@ -92,6 +94,15 @@ module Aws::CleanRooms
|
|
92
94
|
BilledJobResourceUtilization = Shapes::StructureShape.new(name: 'BilledJobResourceUtilization')
|
93
95
|
BilledResourceUtilization = Shapes::StructureShape.new(name: 'BilledResourceUtilization')
|
94
96
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
97
|
+
Change = Shapes::StructureShape.new(name: 'Change')
|
98
|
+
ChangeInput = Shapes::StructureShape.new(name: 'ChangeInput')
|
99
|
+
ChangeInputList = Shapes::ListShape.new(name: 'ChangeInputList')
|
100
|
+
ChangeList = Shapes::ListShape.new(name: 'ChangeList')
|
101
|
+
ChangeRequestStatus = Shapes::StringShape.new(name: 'ChangeRequestStatus')
|
102
|
+
ChangeSpecification = Shapes::UnionShape.new(name: 'ChangeSpecification')
|
103
|
+
ChangeSpecificationType = Shapes::StringShape.new(name: 'ChangeSpecificationType')
|
104
|
+
ChangeType = Shapes::StringShape.new(name: 'ChangeType')
|
105
|
+
ChangeTypeList = Shapes::ListShape.new(name: 'ChangeTypeList')
|
95
106
|
CleanroomsArn = Shapes::StringShape.new(name: 'CleanroomsArn')
|
96
107
|
Collaboration = Shapes::StructureShape.new(name: 'Collaboration')
|
97
108
|
CollaborationAnalysisTemplate = Shapes::StructureShape.new(name: 'CollaborationAnalysisTemplate')
|
@@ -99,6 +110,10 @@ module Aws::CleanRooms
|
|
99
110
|
CollaborationAnalysisTemplateSummary = Shapes::StructureShape.new(name: 'CollaborationAnalysisTemplateSummary')
|
100
111
|
CollaborationAnalysisTemplateSummaryList = Shapes::ListShape.new(name: 'CollaborationAnalysisTemplateSummaryList')
|
101
112
|
CollaborationArn = Shapes::StringShape.new(name: 'CollaborationArn')
|
113
|
+
CollaborationChangeRequest = Shapes::StructureShape.new(name: 'CollaborationChangeRequest')
|
114
|
+
CollaborationChangeRequestIdentifier = Shapes::StringShape.new(name: 'CollaborationChangeRequestIdentifier')
|
115
|
+
CollaborationChangeRequestSummary = Shapes::StructureShape.new(name: 'CollaborationChangeRequestSummary')
|
116
|
+
CollaborationChangeRequestSummaryList = Shapes::ListShape.new(name: 'CollaborationChangeRequestSummaryList')
|
102
117
|
CollaborationConfiguredAudienceModelAssociation = Shapes::StructureShape.new(name: 'CollaborationConfiguredAudienceModelAssociation')
|
103
118
|
CollaborationConfiguredAudienceModelAssociationSummary = Shapes::StructureShape.new(name: 'CollaborationConfiguredAudienceModelAssociationSummary')
|
104
119
|
CollaborationConfiguredAudienceModelAssociationSummaryList = Shapes::ListShape.new(name: 'CollaborationConfiguredAudienceModelAssociationSummaryList')
|
@@ -166,6 +181,8 @@ module Aws::CleanRooms
|
|
166
181
|
ConsolidatedPolicyV1 = Shapes::UnionShape.new(name: 'ConsolidatedPolicyV1')
|
167
182
|
CreateAnalysisTemplateInput = Shapes::StructureShape.new(name: 'CreateAnalysisTemplateInput')
|
168
183
|
CreateAnalysisTemplateOutput = Shapes::StructureShape.new(name: 'CreateAnalysisTemplateOutput')
|
184
|
+
CreateCollaborationChangeRequestInput = Shapes::StructureShape.new(name: 'CreateCollaborationChangeRequestInput')
|
185
|
+
CreateCollaborationChangeRequestOutput = Shapes::StructureShape.new(name: 'CreateCollaborationChangeRequestOutput')
|
169
186
|
CreateCollaborationInput = Shapes::StructureShape.new(name: 'CreateCollaborationInput')
|
170
187
|
CreateCollaborationOutput = Shapes::StructureShape.new(name: 'CreateCollaborationOutput')
|
171
188
|
CreateConfiguredAudienceModelAssociationInput = Shapes::StructureShape.new(name: 'CreateConfiguredAudienceModelAssociationInput')
|
@@ -249,6 +266,8 @@ module Aws::CleanRooms
|
|
249
266
|
GetAnalysisTemplateOutput = Shapes::StructureShape.new(name: 'GetAnalysisTemplateOutput')
|
250
267
|
GetCollaborationAnalysisTemplateInput = Shapes::StructureShape.new(name: 'GetCollaborationAnalysisTemplateInput')
|
251
268
|
GetCollaborationAnalysisTemplateOutput = Shapes::StructureShape.new(name: 'GetCollaborationAnalysisTemplateOutput')
|
269
|
+
GetCollaborationChangeRequestInput = Shapes::StructureShape.new(name: 'GetCollaborationChangeRequestInput')
|
270
|
+
GetCollaborationChangeRequestOutput = Shapes::StructureShape.new(name: 'GetCollaborationChangeRequestOutput')
|
252
271
|
GetCollaborationConfiguredAudienceModelAssociationInput = Shapes::StructureShape.new(name: 'GetCollaborationConfiguredAudienceModelAssociationInput')
|
253
272
|
GetCollaborationConfiguredAudienceModelAssociationOutput = Shapes::StructureShape.new(name: 'GetCollaborationConfiguredAudienceModelAssociationOutput')
|
254
273
|
GetCollaborationIdNamespaceAssociationInput = Shapes::StructureShape.new(name: 'GetCollaborationIdNamespaceAssociationInput')
|
@@ -321,6 +340,8 @@ module Aws::CleanRooms
|
|
321
340
|
ListAnalysisTemplatesOutput = Shapes::StructureShape.new(name: 'ListAnalysisTemplatesOutput')
|
322
341
|
ListCollaborationAnalysisTemplatesInput = Shapes::StructureShape.new(name: 'ListCollaborationAnalysisTemplatesInput')
|
323
342
|
ListCollaborationAnalysisTemplatesOutput = Shapes::StructureShape.new(name: 'ListCollaborationAnalysisTemplatesOutput')
|
343
|
+
ListCollaborationChangeRequestsInput = Shapes::StructureShape.new(name: 'ListCollaborationChangeRequestsInput')
|
344
|
+
ListCollaborationChangeRequestsOutput = Shapes::StructureShape.new(name: 'ListCollaborationChangeRequestsOutput')
|
324
345
|
ListCollaborationConfiguredAudienceModelAssociationsInput = Shapes::StructureShape.new(name: 'ListCollaborationConfiguredAudienceModelAssociationsInput')
|
325
346
|
ListCollaborationConfiguredAudienceModelAssociationsOutput = Shapes::StructureShape.new(name: 'ListCollaborationConfiguredAudienceModelAssociationsOutput')
|
326
347
|
ListCollaborationIdNamespaceAssociationsInput = Shapes::StructureShape.new(name: 'ListCollaborationIdNamespaceAssociationsInput')
|
@@ -363,6 +384,7 @@ module Aws::CleanRooms
|
|
363
384
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
364
385
|
MemberAbilities = Shapes::ListShape.new(name: 'MemberAbilities')
|
365
386
|
MemberAbility = Shapes::StringShape.new(name: 'MemberAbility')
|
387
|
+
MemberChangeSpecification = Shapes::StructureShape.new(name: 'MemberChangeSpecification')
|
366
388
|
MemberList = Shapes::ListShape.new(name: 'MemberList')
|
367
389
|
MemberSpecification = Shapes::StructureShape.new(name: 'MemberSpecification')
|
368
390
|
MemberStatus = Shapes::StringShape.new(name: 'MemberStatus')
|
@@ -756,6 +778,8 @@ module Aws::CleanRooms
|
|
756
778
|
AthenaTableReference.add_member(:table_name, Shapes::ShapeRef.new(shape: AthenaTableName, required: true, location_name: "tableName"))
|
757
779
|
AthenaTableReference.struct_class = Types::AthenaTableReference
|
758
780
|
|
781
|
+
AutoApprovedChangeTypeList.member = Shapes::ShapeRef.new(shape: AutoApprovedChangeType)
|
782
|
+
|
759
783
|
BatchGetCollaborationAnalysisTemplateError.add_member(:arn, Shapes::ShapeRef.new(shape: AnalysisTemplateArn, required: true, location_name: "arn"))
|
760
784
|
BatchGetCollaborationAnalysisTemplateError.add_member(:code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "code"))
|
761
785
|
BatchGetCollaborationAnalysisTemplateError.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
@@ -808,6 +832,27 @@ module Aws::CleanRooms
|
|
808
832
|
BilledResourceUtilization.add_member(:units, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "units"))
|
809
833
|
BilledResourceUtilization.struct_class = Types::BilledResourceUtilization
|
810
834
|
|
835
|
+
Change.add_member(:specification_type, Shapes::ShapeRef.new(shape: ChangeSpecificationType, required: true, location_name: "specificationType"))
|
836
|
+
Change.add_member(:specification, Shapes::ShapeRef.new(shape: ChangeSpecification, required: true, location_name: "specification"))
|
837
|
+
Change.add_member(:types, Shapes::ShapeRef.new(shape: ChangeTypeList, required: true, location_name: "types"))
|
838
|
+
Change.struct_class = Types::Change
|
839
|
+
|
840
|
+
ChangeInput.add_member(:specification_type, Shapes::ShapeRef.new(shape: ChangeSpecificationType, required: true, location_name: "specificationType"))
|
841
|
+
ChangeInput.add_member(:specification, Shapes::ShapeRef.new(shape: ChangeSpecification, required: true, location_name: "specification"))
|
842
|
+
ChangeInput.struct_class = Types::ChangeInput
|
843
|
+
|
844
|
+
ChangeInputList.member = Shapes::ShapeRef.new(shape: ChangeInput)
|
845
|
+
|
846
|
+
ChangeList.member = Shapes::ShapeRef.new(shape: Change)
|
847
|
+
|
848
|
+
ChangeSpecification.add_member(:member, Shapes::ShapeRef.new(shape: MemberChangeSpecification, location_name: "member"))
|
849
|
+
ChangeSpecification.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
850
|
+
ChangeSpecification.add_member_subclass(:member, Types::ChangeSpecification::Member)
|
851
|
+
ChangeSpecification.add_member_subclass(:unknown, Types::ChangeSpecification::Unknown)
|
852
|
+
ChangeSpecification.struct_class = Types::ChangeSpecification
|
853
|
+
|
854
|
+
ChangeTypeList.member = Shapes::ShapeRef.new(shape: ChangeType)
|
855
|
+
|
811
856
|
Collaboration.add_member(:id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "id"))
|
812
857
|
Collaboration.add_member(:arn, Shapes::ShapeRef.new(shape: CollaborationArn, required: true, location_name: "arn"))
|
813
858
|
Collaboration.add_member(:name, Shapes::ShapeRef.new(shape: CollaborationName, required: true, location_name: "name"))
|
@@ -823,6 +868,7 @@ module Aws::CleanRooms
|
|
823
868
|
Collaboration.add_member(:query_log_status, Shapes::ShapeRef.new(shape: CollaborationQueryLogStatus, required: true, location_name: "queryLogStatus"))
|
824
869
|
Collaboration.add_member(:job_log_status, Shapes::ShapeRef.new(shape: CollaborationJobLogStatus, location_name: "jobLogStatus"))
|
825
870
|
Collaboration.add_member(:analytics_engine, Shapes::ShapeRef.new(shape: AnalyticsEngine, location_name: "analyticsEngine"))
|
871
|
+
Collaboration.add_member(:auto_approved_change_types, Shapes::ShapeRef.new(shape: AutoApprovedChangeTypeList, location_name: "autoApprovedChangeTypes"))
|
826
872
|
Collaboration.struct_class = Types::Collaboration
|
827
873
|
|
828
874
|
CollaborationAnalysisTemplate.add_member(:id, Shapes::ShapeRef.new(shape: AnalysisTemplateIdentifier, required: true, location_name: "id"))
|
@@ -858,6 +904,26 @@ module Aws::CleanRooms
|
|
858
904
|
|
859
905
|
CollaborationAnalysisTemplateSummaryList.member = Shapes::ShapeRef.new(shape: CollaborationAnalysisTemplateSummary)
|
860
906
|
|
907
|
+
CollaborationChangeRequest.add_member(:id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "id"))
|
908
|
+
CollaborationChangeRequest.add_member(:collaboration_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "collaborationId"))
|
909
|
+
CollaborationChangeRequest.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createTime"))
|
910
|
+
CollaborationChangeRequest.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updateTime"))
|
911
|
+
CollaborationChangeRequest.add_member(:status, Shapes::ShapeRef.new(shape: ChangeRequestStatus, required: true, location_name: "status"))
|
912
|
+
CollaborationChangeRequest.add_member(:is_auto_approved, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isAutoApproved"))
|
913
|
+
CollaborationChangeRequest.add_member(:changes, Shapes::ShapeRef.new(shape: ChangeList, required: true, location_name: "changes"))
|
914
|
+
CollaborationChangeRequest.struct_class = Types::CollaborationChangeRequest
|
915
|
+
|
916
|
+
CollaborationChangeRequestSummary.add_member(:id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "id"))
|
917
|
+
CollaborationChangeRequestSummary.add_member(:collaboration_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "collaborationId"))
|
918
|
+
CollaborationChangeRequestSummary.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createTime"))
|
919
|
+
CollaborationChangeRequestSummary.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updateTime"))
|
920
|
+
CollaborationChangeRequestSummary.add_member(:status, Shapes::ShapeRef.new(shape: ChangeRequestStatus, required: true, location_name: "status"))
|
921
|
+
CollaborationChangeRequestSummary.add_member(:is_auto_approved, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isAutoApproved"))
|
922
|
+
CollaborationChangeRequestSummary.add_member(:changes, Shapes::ShapeRef.new(shape: ChangeList, required: true, location_name: "changes"))
|
923
|
+
CollaborationChangeRequestSummary.struct_class = Types::CollaborationChangeRequestSummary
|
924
|
+
|
925
|
+
CollaborationChangeRequestSummaryList.member = Shapes::ShapeRef.new(shape: CollaborationChangeRequestSummary)
|
926
|
+
|
861
927
|
CollaborationConfiguredAudienceModelAssociation.add_member(:id, Shapes::ShapeRef.new(shape: ConfiguredAudienceModelAssociationIdentifier, required: true, location_name: "id"))
|
862
928
|
CollaborationConfiguredAudienceModelAssociation.add_member(:arn, Shapes::ShapeRef.new(shape: ConfiguredAudienceModelAssociationArn, required: true, location_name: "arn"))
|
863
929
|
CollaborationConfiguredAudienceModelAssociation.add_member(:collaboration_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "collaborationId"))
|
@@ -1202,6 +1268,13 @@ module Aws::CleanRooms
|
|
1202
1268
|
CreateAnalysisTemplateOutput.add_member(:analysis_template, Shapes::ShapeRef.new(shape: AnalysisTemplate, required: true, location_name: "analysisTemplate"))
|
1203
1269
|
CreateAnalysisTemplateOutput.struct_class = Types::CreateAnalysisTemplateOutput
|
1204
1270
|
|
1271
|
+
CreateCollaborationChangeRequestInput.add_member(:collaboration_identifier, Shapes::ShapeRef.new(shape: CollaborationIdentifier, required: true, location: "uri", location_name: "collaborationIdentifier"))
|
1272
|
+
CreateCollaborationChangeRequestInput.add_member(:changes, Shapes::ShapeRef.new(shape: ChangeInputList, required: true, location_name: "changes"))
|
1273
|
+
CreateCollaborationChangeRequestInput.struct_class = Types::CreateCollaborationChangeRequestInput
|
1274
|
+
|
1275
|
+
CreateCollaborationChangeRequestOutput.add_member(:collaboration_change_request, Shapes::ShapeRef.new(shape: CollaborationChangeRequest, required: true, location_name: "collaborationChangeRequest"))
|
1276
|
+
CreateCollaborationChangeRequestOutput.struct_class = Types::CreateCollaborationChangeRequestOutput
|
1277
|
+
|
1205
1278
|
CreateCollaborationInput.add_member(:members, Shapes::ShapeRef.new(shape: MemberList, required: true, location_name: "members"))
|
1206
1279
|
CreateCollaborationInput.add_member(:name, Shapes::ShapeRef.new(shape: CollaborationName, required: true, location_name: "name"))
|
1207
1280
|
CreateCollaborationInput.add_member(:description, Shapes::ShapeRef.new(shape: CollaborationDescription, required: true, location_name: "description"))
|
@@ -1214,6 +1287,7 @@ module Aws::CleanRooms
|
|
1214
1287
|
CreateCollaborationInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
1215
1288
|
CreateCollaborationInput.add_member(:creator_payment_configuration, Shapes::ShapeRef.new(shape: PaymentConfiguration, location_name: "creatorPaymentConfiguration"))
|
1216
1289
|
CreateCollaborationInput.add_member(:analytics_engine, Shapes::ShapeRef.new(shape: AnalyticsEngine, location_name: "analyticsEngine"))
|
1290
|
+
CreateCollaborationInput.add_member(:auto_approved_change_request_types, Shapes::ShapeRef.new(shape: AutoApprovedChangeTypeList, location_name: "autoApprovedChangeRequestTypes"))
|
1217
1291
|
CreateCollaborationInput.struct_class = Types::CreateCollaborationInput
|
1218
1292
|
|
1219
1293
|
CreateCollaborationOutput.add_member(:collaboration, Shapes::ShapeRef.new(shape: Collaboration, required: true, location_name: "collaboration"))
|
@@ -1468,6 +1542,13 @@ module Aws::CleanRooms
|
|
1468
1542
|
GetCollaborationAnalysisTemplateOutput.add_member(:collaboration_analysis_template, Shapes::ShapeRef.new(shape: CollaborationAnalysisTemplate, required: true, location_name: "collaborationAnalysisTemplate"))
|
1469
1543
|
GetCollaborationAnalysisTemplateOutput.struct_class = Types::GetCollaborationAnalysisTemplateOutput
|
1470
1544
|
|
1545
|
+
GetCollaborationChangeRequestInput.add_member(:collaboration_identifier, Shapes::ShapeRef.new(shape: CollaborationIdentifier, required: true, location: "uri", location_name: "collaborationIdentifier"))
|
1546
|
+
GetCollaborationChangeRequestInput.add_member(:change_request_identifier, Shapes::ShapeRef.new(shape: CollaborationChangeRequestIdentifier, required: true, location: "uri", location_name: "changeRequestIdentifier"))
|
1547
|
+
GetCollaborationChangeRequestInput.struct_class = Types::GetCollaborationChangeRequestInput
|
1548
|
+
|
1549
|
+
GetCollaborationChangeRequestOutput.add_member(:collaboration_change_request, Shapes::ShapeRef.new(shape: CollaborationChangeRequest, required: true, location_name: "collaborationChangeRequest"))
|
1550
|
+
GetCollaborationChangeRequestOutput.struct_class = Types::GetCollaborationChangeRequestOutput
|
1551
|
+
|
1471
1552
|
GetCollaborationConfiguredAudienceModelAssociationInput.add_member(:collaboration_identifier, Shapes::ShapeRef.new(shape: CollaborationIdentifier, required: true, location: "uri", location_name: "collaborationIdentifier"))
|
1472
1553
|
GetCollaborationConfiguredAudienceModelAssociationInput.add_member(:configured_audience_model_association_identifier, Shapes::ShapeRef.new(shape: ConfiguredAudienceModelAssociationIdentifier, required: true, location: "uri", location_name: "configuredAudienceModelAssociationIdentifier"))
|
1473
1554
|
GetCollaborationConfiguredAudienceModelAssociationInput.struct_class = Types::GetCollaborationConfiguredAudienceModelAssociationInput
|
@@ -1714,6 +1795,16 @@ module Aws::CleanRooms
|
|
1714
1795
|
ListCollaborationAnalysisTemplatesOutput.add_member(:collaboration_analysis_template_summaries, Shapes::ShapeRef.new(shape: CollaborationAnalysisTemplateSummaryList, required: true, location_name: "collaborationAnalysisTemplateSummaries"))
|
1715
1796
|
ListCollaborationAnalysisTemplatesOutput.struct_class = Types::ListCollaborationAnalysisTemplatesOutput
|
1716
1797
|
|
1798
|
+
ListCollaborationChangeRequestsInput.add_member(:collaboration_identifier, Shapes::ShapeRef.new(shape: CollaborationIdentifier, required: true, location: "uri", location_name: "collaborationIdentifier"))
|
1799
|
+
ListCollaborationChangeRequestsInput.add_member(:status, Shapes::ShapeRef.new(shape: ChangeRequestStatus, location: "querystring", location_name: "status"))
|
1800
|
+
ListCollaborationChangeRequestsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
1801
|
+
ListCollaborationChangeRequestsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
1802
|
+
ListCollaborationChangeRequestsInput.struct_class = Types::ListCollaborationChangeRequestsInput
|
1803
|
+
|
1804
|
+
ListCollaborationChangeRequestsOutput.add_member(:collaboration_change_request_summaries, Shapes::ShapeRef.new(shape: CollaborationChangeRequestSummaryList, required: true, location_name: "collaborationChangeRequestSummaries"))
|
1805
|
+
ListCollaborationChangeRequestsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
1806
|
+
ListCollaborationChangeRequestsOutput.struct_class = Types::ListCollaborationChangeRequestsOutput
|
1807
|
+
|
1717
1808
|
ListCollaborationConfiguredAudienceModelAssociationsInput.add_member(:collaboration_identifier, Shapes::ShapeRef.new(shape: CollaborationIdentifier, required: true, location: "uri", location_name: "collaborationIdentifier"))
|
1718
1809
|
ListCollaborationConfiguredAudienceModelAssociationsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
1719
1810
|
ListCollaborationConfiguredAudienceModelAssociationsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
@@ -1886,6 +1977,11 @@ module Aws::CleanRooms
|
|
1886
1977
|
|
1887
1978
|
MemberAbilities.member = Shapes::ShapeRef.new(shape: MemberAbility)
|
1888
1979
|
|
1980
|
+
MemberChangeSpecification.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "accountId"))
|
1981
|
+
MemberChangeSpecification.add_member(:member_abilities, Shapes::ShapeRef.new(shape: MemberAbilities, required: true, location_name: "memberAbilities"))
|
1982
|
+
MemberChangeSpecification.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
|
1983
|
+
MemberChangeSpecification.struct_class = Types::MemberChangeSpecification
|
1984
|
+
|
1889
1985
|
MemberList.member = Shapes::ShapeRef.new(shape: MemberSpecification)
|
1890
1986
|
|
1891
1987
|
MemberSpecification.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "accountId"))
|
@@ -2687,6 +2783,21 @@ module Aws::CleanRooms
|
|
2687
2783
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2688
2784
|
end)
|
2689
2785
|
|
2786
|
+
api.add_operation(:create_collaboration_change_request, Seahorse::Model::Operation.new.tap do |o|
|
2787
|
+
o.name = "CreateCollaborationChangeRequest"
|
2788
|
+
o.http_method = "POST"
|
2789
|
+
o.http_request_uri = "/collaborations/{collaborationIdentifier}/changeRequests"
|
2790
|
+
o.input = Shapes::ShapeRef.new(shape: CreateCollaborationChangeRequestInput)
|
2791
|
+
o.output = Shapes::ShapeRef.new(shape: CreateCollaborationChangeRequestOutput)
|
2792
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
2793
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
2794
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2795
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
2796
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
2797
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2798
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2799
|
+
end)
|
2800
|
+
|
2690
2801
|
api.add_operation(:create_configured_audience_model_association, Seahorse::Model::Operation.new.tap do |o|
|
2691
2802
|
o.name = "CreateConfiguredAudienceModelAssociation"
|
2692
2803
|
o.http_method = "POST"
|
@@ -3019,6 +3130,19 @@ module Aws::CleanRooms
|
|
3019
3130
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3020
3131
|
end)
|
3021
3132
|
|
3133
|
+
api.add_operation(:get_collaboration_change_request, Seahorse::Model::Operation.new.tap do |o|
|
3134
|
+
o.name = "GetCollaborationChangeRequest"
|
3135
|
+
o.http_method = "GET"
|
3136
|
+
o.http_request_uri = "/collaborations/{collaborationIdentifier}/changeRequests/{changeRequestIdentifier}"
|
3137
|
+
o.input = Shapes::ShapeRef.new(shape: GetCollaborationChangeRequestInput)
|
3138
|
+
o.output = Shapes::ShapeRef.new(shape: GetCollaborationChangeRequestOutput)
|
3139
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
3140
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
3141
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
3142
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
3143
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3144
|
+
end)
|
3145
|
+
|
3022
3146
|
api.add_operation(:get_collaboration_configured_audience_model_association, Seahorse::Model::Operation.new.tap do |o|
|
3023
3147
|
o.name = "GetCollaborationConfiguredAudienceModelAssociation"
|
3024
3148
|
o.http_method = "GET"
|
@@ -3265,6 +3389,25 @@ module Aws::CleanRooms
|
|
3265
3389
|
)
|
3266
3390
|
end)
|
3267
3391
|
|
3392
|
+
api.add_operation(:list_collaboration_change_requests, Seahorse::Model::Operation.new.tap do |o|
|
3393
|
+
o.name = "ListCollaborationChangeRequests"
|
3394
|
+
o.http_method = "GET"
|
3395
|
+
o.http_request_uri = "/collaborations/{collaborationIdentifier}/changeRequests"
|
3396
|
+
o.input = Shapes::ShapeRef.new(shape: ListCollaborationChangeRequestsInput)
|
3397
|
+
o.output = Shapes::ShapeRef.new(shape: ListCollaborationChangeRequestsOutput)
|
3398
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
3399
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
3400
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
3401
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
3402
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3403
|
+
o[:pager] = Aws::Pager.new(
|
3404
|
+
limit_key: "max_results",
|
3405
|
+
tokens: {
|
3406
|
+
"next_token" => "next_token"
|
3407
|
+
}
|
3408
|
+
)
|
3409
|
+
end)
|
3410
|
+
|
3268
3411
|
api.add_operation(:list_collaboration_configured_audience_model_associations, Seahorse::Model::Operation.new.tap do |o|
|
3269
3412
|
o.name = "ListCollaborationConfiguredAudienceModelAssociations"
|
3270
3413
|
o.http_method = "GET"
|
@@ -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
|
data/lib/aws-sdk-cleanrooms.rb
CHANGED
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]
|
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")]
|