aws-sdk-cleanrooms 1.61.0 → 1.63.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanrooms/client.rb +121 -12
- data/lib/aws-sdk-cleanrooms/client_api.rb +46 -0
- data/lib/aws-sdk-cleanrooms/types.rb +145 -6
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +21 -4
- data/sig/types.rbs +36 -5
- 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: 7122dd92a628852fc53a33bf0f01c5af0309d96e72f79aebc7b49ea374e4713d
|
|
4
|
+
data.tar.gz: 63525fe29fb78515309c0a7933d638da6ce200f80fe79e4f89d32a1f3475cb67
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a1d06aba213e03a2ee204383b854bffaa395a099f5b65c0771c7ecfb42d1b73b76088abf562e6267eda64d3bbef69a6af9245a37118fbfcdf650fcd8375ba060
|
|
7
|
+
data.tar.gz: 0b5a881df1c39cf034e2047e347683ce9701414fcc6581fa3fb490bf1bdedb738eb79754e03a0594bbebf8f9a4e18d11edc3ef327e40ba5e897bd3479c465014
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.63.0 (2026-01-02)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support for publishing detailed metrics to CloudWatch for operational monitoring of collaborations, including query performance and resource utilization.
|
|
8
|
+
|
|
9
|
+
1.62.0 (2025-12-18)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* 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.
|
|
13
|
+
|
|
4
14
|
1.61.0 (2025-12-01)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.63.0
|
|
@@ -1002,6 +1002,13 @@ module Aws::CleanRooms
|
|
|
1002
1002
|
# governance requirements, and implement regional data governance
|
|
1003
1003
|
# policies.
|
|
1004
1004
|
#
|
|
1005
|
+
# @option params [Boolean] :is_metrics_enabled
|
|
1006
|
+
# An indicator as to whether metrics have been enabled or disabled for
|
|
1007
|
+
# the collaboration.
|
|
1008
|
+
#
|
|
1009
|
+
# When `true`, collaboration members can opt in to Amazon CloudWatch
|
|
1010
|
+
# metrics for their membership queries. The default value is `false`.
|
|
1011
|
+
#
|
|
1005
1012
|
# @return [Types::CreateCollaborationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1006
1013
|
#
|
|
1007
1014
|
# * {Types::CreateCollaborationOutput#collaboration #collaboration} => Types::Collaboration
|
|
@@ -1076,8 +1083,9 @@ module Aws::CleanRooms
|
|
|
1076
1083
|
# },
|
|
1077
1084
|
# },
|
|
1078
1085
|
# analytics_engine: "SPARK", # accepts SPARK, CLEAN_ROOMS_SQL
|
|
1079
|
-
# auto_approved_change_request_types: ["ADD_MEMBER"], # accepts ADD_MEMBER
|
|
1086
|
+
# auto_approved_change_request_types: ["ADD_MEMBER"], # accepts ADD_MEMBER, GRANT_RECEIVE_RESULTS_ABILITY, REVOKE_RECEIVE_RESULTS_ABILITY
|
|
1080
1087
|
# 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
|
|
1088
|
+
# is_metrics_enabled: false,
|
|
1081
1089
|
# })
|
|
1082
1090
|
#
|
|
1083
1091
|
# @example Response structure
|
|
@@ -1101,9 +1109,10 @@ module Aws::CleanRooms
|
|
|
1101
1109
|
# resp.collaboration.job_log_status #=> String, one of "ENABLED", "DISABLED"
|
|
1102
1110
|
# resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
|
|
1103
1111
|
# resp.collaboration.auto_approved_change_types #=> Array
|
|
1104
|
-
# resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER"
|
|
1112
|
+
# resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
|
|
1105
1113
|
# resp.collaboration.allowed_result_regions #=> Array
|
|
1106
1114
|
# 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"
|
|
1115
|
+
# resp.collaboration.is_metrics_enabled #=> Boolean
|
|
1107
1116
|
#
|
|
1108
1117
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaboration AWS API Documentation
|
|
1109
1118
|
#
|
|
@@ -1137,13 +1146,16 @@ module Aws::CleanRooms
|
|
|
1137
1146
|
# collaboration_identifier: "CollaborationIdentifier", # required
|
|
1138
1147
|
# changes: [ # required
|
|
1139
1148
|
# {
|
|
1140
|
-
# specification_type: "MEMBER", # required, accepts MEMBER
|
|
1149
|
+
# specification_type: "MEMBER", # required, accepts MEMBER, COLLABORATION
|
|
1141
1150
|
# specification: { # required
|
|
1142
1151
|
# member: {
|
|
1143
1152
|
# account_id: "AccountId", # required
|
|
1144
1153
|
# member_abilities: ["CAN_QUERY"], # required, accepts CAN_QUERY, CAN_RECEIVE_RESULTS, CAN_RUN_JOB
|
|
1145
1154
|
# display_name: "DisplayName",
|
|
1146
1155
|
# },
|
|
1156
|
+
# collaboration: {
|
|
1157
|
+
# auto_approved_change_types: ["ADD_MEMBER"], # accepts ADD_MEMBER, GRANT_RECEIVE_RESULTS_ABILITY, REVOKE_RECEIVE_RESULTS_ABILITY
|
|
1158
|
+
# },
|
|
1147
1159
|
# },
|
|
1148
1160
|
# },
|
|
1149
1161
|
# ],
|
|
@@ -1158,13 +1170,17 @@ module Aws::CleanRooms
|
|
|
1158
1170
|
# resp.collaboration_change_request.status #=> String, one of "PENDING", "APPROVED", "CANCELLED", "DENIED", "COMMITTED"
|
|
1159
1171
|
# resp.collaboration_change_request.is_auto_approved #=> Boolean
|
|
1160
1172
|
# resp.collaboration_change_request.changes #=> Array
|
|
1161
|
-
# resp.collaboration_change_request.changes[0].specification_type #=> String, one of "MEMBER"
|
|
1173
|
+
# resp.collaboration_change_request.changes[0].specification_type #=> String, one of "MEMBER", "COLLABORATION"
|
|
1162
1174
|
# resp.collaboration_change_request.changes[0].specification.member.account_id #=> String
|
|
1163
1175
|
# resp.collaboration_change_request.changes[0].specification.member.member_abilities #=> Array
|
|
1164
1176
|
# resp.collaboration_change_request.changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
|
|
1165
1177
|
# resp.collaboration_change_request.changes[0].specification.member.display_name #=> String
|
|
1178
|
+
# resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types #=> Array
|
|
1179
|
+
# 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
1180
|
# resp.collaboration_change_request.changes[0].types #=> Array
|
|
1167
|
-
# resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER"
|
|
1181
|
+
# 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"
|
|
1182
|
+
# resp.collaboration_change_request.approvals #=> Hash
|
|
1183
|
+
# resp.collaboration_change_request.approvals["AccountId"].status #=> String, one of "APPROVED", "DENIED", "PENDING"
|
|
1168
1184
|
#
|
|
1169
1185
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationChangeRequest AWS API Documentation
|
|
1170
1186
|
#
|
|
@@ -1837,6 +1853,18 @@ module Aws::CleanRooms
|
|
|
1837
1853
|
# to run queries but is configured as a payer by the collaboration
|
|
1838
1854
|
# creator.
|
|
1839
1855
|
#
|
|
1856
|
+
# @option params [Boolean] :is_metrics_enabled
|
|
1857
|
+
# An indicator as to whether Amazon CloudWatch metrics have been enabled
|
|
1858
|
+
# or disabled for the membership.
|
|
1859
|
+
#
|
|
1860
|
+
# Amazon CloudWatch metrics are only available when the collaboration
|
|
1861
|
+
# has metrics enabled. This option can be set by collaboration members
|
|
1862
|
+
# who have the ability to run queries (analysis runners) or by members
|
|
1863
|
+
# who are configured as payers.
|
|
1864
|
+
#
|
|
1865
|
+
# When `true`, metrics about query execution are collected in Amazon
|
|
1866
|
+
# CloudWatch. The default value is `false`.
|
|
1867
|
+
#
|
|
1840
1868
|
# @return [Types::CreateMembershipOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1841
1869
|
#
|
|
1842
1870
|
# * {Types::CreateMembershipOutput#membership #membership} => Types::Membership
|
|
@@ -1889,6 +1917,7 @@ module Aws::CleanRooms
|
|
|
1889
1917
|
# is_responsible: false, # required
|
|
1890
1918
|
# },
|
|
1891
1919
|
# },
|
|
1920
|
+
# is_metrics_enabled: false,
|
|
1892
1921
|
# })
|
|
1893
1922
|
#
|
|
1894
1923
|
# @example Response structure
|
|
@@ -1922,6 +1951,7 @@ module Aws::CleanRooms
|
|
|
1922
1951
|
# resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
|
|
1923
1952
|
# resp.membership.payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
|
|
1924
1953
|
# resp.membership.payment_configuration.job_compute.is_responsible #=> Boolean
|
|
1954
|
+
# resp.membership.is_metrics_enabled #=> Boolean
|
|
1925
1955
|
#
|
|
1926
1956
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateMembership AWS API Documentation
|
|
1927
1957
|
#
|
|
@@ -2454,9 +2484,10 @@ module Aws::CleanRooms
|
|
|
2454
2484
|
# resp.collaboration.job_log_status #=> String, one of "ENABLED", "DISABLED"
|
|
2455
2485
|
# resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
|
|
2456
2486
|
# resp.collaboration.auto_approved_change_types #=> Array
|
|
2457
|
-
# resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER"
|
|
2487
|
+
# resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
|
|
2458
2488
|
# resp.collaboration.allowed_result_regions #=> Array
|
|
2459
2489
|
# 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"
|
|
2490
|
+
# resp.collaboration.is_metrics_enabled #=> Boolean
|
|
2460
2491
|
#
|
|
2461
2492
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaboration AWS API Documentation
|
|
2462
2493
|
#
|
|
@@ -2568,13 +2599,17 @@ module Aws::CleanRooms
|
|
|
2568
2599
|
# resp.collaboration_change_request.status #=> String, one of "PENDING", "APPROVED", "CANCELLED", "DENIED", "COMMITTED"
|
|
2569
2600
|
# resp.collaboration_change_request.is_auto_approved #=> Boolean
|
|
2570
2601
|
# resp.collaboration_change_request.changes #=> Array
|
|
2571
|
-
# resp.collaboration_change_request.changes[0].specification_type #=> String, one of "MEMBER"
|
|
2602
|
+
# resp.collaboration_change_request.changes[0].specification_type #=> String, one of "MEMBER", "COLLABORATION"
|
|
2572
2603
|
# resp.collaboration_change_request.changes[0].specification.member.account_id #=> String
|
|
2573
2604
|
# resp.collaboration_change_request.changes[0].specification.member.member_abilities #=> Array
|
|
2574
2605
|
# resp.collaboration_change_request.changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
|
|
2575
2606
|
# resp.collaboration_change_request.changes[0].specification.member.display_name #=> String
|
|
2607
|
+
# resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types #=> Array
|
|
2608
|
+
# 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
2609
|
# resp.collaboration_change_request.changes[0].types #=> Array
|
|
2577
|
-
# resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER"
|
|
2610
|
+
# 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"
|
|
2611
|
+
# resp.collaboration_change_request.approvals #=> Hash
|
|
2612
|
+
# resp.collaboration_change_request.approvals["AccountId"].status #=> String, one of "APPROVED", "DENIED", "PENDING"
|
|
2578
2613
|
#
|
|
2579
2614
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationChangeRequest AWS API Documentation
|
|
2580
2615
|
#
|
|
@@ -3141,6 +3176,7 @@ module Aws::CleanRooms
|
|
|
3141
3176
|
# resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
|
|
3142
3177
|
# resp.membership.payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
|
|
3143
3178
|
# resp.membership.payment_configuration.job_compute.is_responsible #=> Boolean
|
|
3179
|
+
# resp.membership.is_metrics_enabled #=> Boolean
|
|
3144
3180
|
#
|
|
3145
3181
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetMembership AWS API Documentation
|
|
3146
3182
|
#
|
|
@@ -3678,13 +3714,17 @@ module Aws::CleanRooms
|
|
|
3678
3714
|
# resp.collaboration_change_request_summaries[0].status #=> String, one of "PENDING", "APPROVED", "CANCELLED", "DENIED", "COMMITTED"
|
|
3679
3715
|
# resp.collaboration_change_request_summaries[0].is_auto_approved #=> Boolean
|
|
3680
3716
|
# resp.collaboration_change_request_summaries[0].changes #=> Array
|
|
3681
|
-
# resp.collaboration_change_request_summaries[0].changes[0].specification_type #=> String, one of "MEMBER"
|
|
3717
|
+
# resp.collaboration_change_request_summaries[0].changes[0].specification_type #=> String, one of "MEMBER", "COLLABORATION"
|
|
3682
3718
|
# resp.collaboration_change_request_summaries[0].changes[0].specification.member.account_id #=> String
|
|
3683
3719
|
# resp.collaboration_change_request_summaries[0].changes[0].specification.member.member_abilities #=> Array
|
|
3684
3720
|
# 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
3721
|
# resp.collaboration_change_request_summaries[0].changes[0].specification.member.display_name #=> String
|
|
3722
|
+
# resp.collaboration_change_request_summaries[0].changes[0].specification.collaboration.auto_approved_change_types #=> Array
|
|
3723
|
+
# 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
3724
|
# 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"
|
|
3725
|
+
# 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"
|
|
3726
|
+
# resp.collaboration_change_request_summaries[0].approvals #=> Hash
|
|
3727
|
+
# resp.collaboration_change_request_summaries[0].approvals["AccountId"].status #=> String, one of "APPROVED", "DENIED", "PENDING"
|
|
3688
3728
|
# resp.next_token #=> String
|
|
3689
3729
|
#
|
|
3690
3730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationChangeRequests AWS API Documentation
|
|
@@ -5202,9 +5242,10 @@ module Aws::CleanRooms
|
|
|
5202
5242
|
# resp.collaboration.job_log_status #=> String, one of "ENABLED", "DISABLED"
|
|
5203
5243
|
# resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
|
|
5204
5244
|
# resp.collaboration.auto_approved_change_types #=> Array
|
|
5205
|
-
# resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER"
|
|
5245
|
+
# resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
|
|
5206
5246
|
# resp.collaboration.allowed_result_regions #=> Array
|
|
5207
5247
|
# 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"
|
|
5248
|
+
# resp.collaboration.is_metrics_enabled #=> Boolean
|
|
5208
5249
|
#
|
|
5209
5250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaboration AWS API Documentation
|
|
5210
5251
|
#
|
|
@@ -5215,6 +5256,73 @@ module Aws::CleanRooms
|
|
|
5215
5256
|
req.send_request(options)
|
|
5216
5257
|
end
|
|
5217
5258
|
|
|
5259
|
+
# Updates an existing collaboration change request. This operation
|
|
5260
|
+
# allows approval actions for pending change requests in collaborations
|
|
5261
|
+
# (APPROVE, DENY, CANCEL, COMMIT).
|
|
5262
|
+
#
|
|
5263
|
+
# For change requests without automatic approval, a member in the
|
|
5264
|
+
# collaboration can manually APPROVE or DENY a change request. The
|
|
5265
|
+
# collaboration owner can manually CANCEL or COMMIT a change request.
|
|
5266
|
+
#
|
|
5267
|
+
# @option params [required, String] :collaboration_identifier
|
|
5268
|
+
# The unique identifier of the collaboration that contains the change
|
|
5269
|
+
# request to be updated.
|
|
5270
|
+
#
|
|
5271
|
+
# @option params [required, String] :change_request_identifier
|
|
5272
|
+
# The unique identifier of the specific change request to be updated
|
|
5273
|
+
# within the collaboration.
|
|
5274
|
+
#
|
|
5275
|
+
# @option params [required, String] :action
|
|
5276
|
+
# The action to perform on the change request. Valid values include
|
|
5277
|
+
# APPROVE (approve the change), DENY (reject the change), CANCEL (cancel
|
|
5278
|
+
# the request), and COMMIT (commit after the request is approved).
|
|
5279
|
+
#
|
|
5280
|
+
# For change requests without automatic approval, a member in the
|
|
5281
|
+
# collaboration can manually APPROVE or DENY a change request. The
|
|
5282
|
+
# collaboration owner can manually CANCEL or COMMIT a change request.
|
|
5283
|
+
#
|
|
5284
|
+
# @return [Types::UpdateCollaborationChangeRequestOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5285
|
+
#
|
|
5286
|
+
# * {Types::UpdateCollaborationChangeRequestOutput#collaboration_change_request #collaboration_change_request} => Types::CollaborationChangeRequest
|
|
5287
|
+
#
|
|
5288
|
+
# @example Request syntax with placeholder values
|
|
5289
|
+
#
|
|
5290
|
+
# resp = client.update_collaboration_change_request({
|
|
5291
|
+
# collaboration_identifier: "CollaborationIdentifier", # required
|
|
5292
|
+
# change_request_identifier: "CollaborationChangeRequestIdentifier", # required
|
|
5293
|
+
# action: "APPROVE", # required, accepts APPROVE, DENY, CANCEL, COMMIT
|
|
5294
|
+
# })
|
|
5295
|
+
#
|
|
5296
|
+
# @example Response structure
|
|
5297
|
+
#
|
|
5298
|
+
# resp.collaboration_change_request.id #=> String
|
|
5299
|
+
# resp.collaboration_change_request.collaboration_id #=> String
|
|
5300
|
+
# resp.collaboration_change_request.create_time #=> Time
|
|
5301
|
+
# resp.collaboration_change_request.update_time #=> Time
|
|
5302
|
+
# resp.collaboration_change_request.status #=> String, one of "PENDING", "APPROVED", "CANCELLED", "DENIED", "COMMITTED"
|
|
5303
|
+
# resp.collaboration_change_request.is_auto_approved #=> Boolean
|
|
5304
|
+
# resp.collaboration_change_request.changes #=> Array
|
|
5305
|
+
# resp.collaboration_change_request.changes[0].specification_type #=> String, one of "MEMBER", "COLLABORATION"
|
|
5306
|
+
# resp.collaboration_change_request.changes[0].specification.member.account_id #=> String
|
|
5307
|
+
# resp.collaboration_change_request.changes[0].specification.member.member_abilities #=> Array
|
|
5308
|
+
# resp.collaboration_change_request.changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
|
|
5309
|
+
# resp.collaboration_change_request.changes[0].specification.member.display_name #=> String
|
|
5310
|
+
# resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types #=> Array
|
|
5311
|
+
# 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"
|
|
5312
|
+
# resp.collaboration_change_request.changes[0].types #=> Array
|
|
5313
|
+
# 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"
|
|
5314
|
+
# resp.collaboration_change_request.approvals #=> Hash
|
|
5315
|
+
# resp.collaboration_change_request.approvals["AccountId"].status #=> String, one of "APPROVED", "DENIED", "PENDING"
|
|
5316
|
+
#
|
|
5317
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaborationChangeRequest AWS API Documentation
|
|
5318
|
+
#
|
|
5319
|
+
# @overload update_collaboration_change_request(params = {})
|
|
5320
|
+
# @param [Hash] params ({})
|
|
5321
|
+
def update_collaboration_change_request(params = {}, options = {})
|
|
5322
|
+
req = build_request(:update_collaboration_change_request, params)
|
|
5323
|
+
req.send_request(options)
|
|
5324
|
+
end
|
|
5325
|
+
|
|
5218
5326
|
# Provides the details necessary to update a configured audience model
|
|
5219
5327
|
# association.
|
|
5220
5328
|
#
|
|
@@ -5844,6 +5952,7 @@ module Aws::CleanRooms
|
|
|
5844
5952
|
# resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
|
|
5845
5953
|
# resp.membership.payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
|
|
5846
5954
|
# resp.membership.payment_configuration.job_compute.is_responsible #=> Boolean
|
|
5955
|
+
# resp.membership.is_metrics_enabled #=> Boolean
|
|
5847
5956
|
#
|
|
5848
5957
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateMembership AWS API Documentation
|
|
5849
5958
|
#
|
|
@@ -6076,7 +6185,7 @@ module Aws::CleanRooms
|
|
|
6076
6185
|
tracer: tracer
|
|
6077
6186
|
)
|
|
6078
6187
|
context[:gem_name] = 'aws-sdk-cleanrooms'
|
|
6079
|
-
context[:gem_version] = '1.
|
|
6188
|
+
context[:gem_version] = '1.63.0'
|
|
6080
6189
|
Seahorse::Client::Request.new(handlers, context)
|
|
6081
6190
|
end
|
|
6082
6191
|
|
|
@@ -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
|
|
|
@@ -945,6 +960,7 @@ module Aws::CleanRooms
|
|
|
945
960
|
Collaboration.add_member(:analytics_engine, Shapes::ShapeRef.new(shape: AnalyticsEngine, location_name: "analyticsEngine"))
|
|
946
961
|
Collaboration.add_member(:auto_approved_change_types, Shapes::ShapeRef.new(shape: AutoApprovedChangeTypeList, location_name: "autoApprovedChangeTypes"))
|
|
947
962
|
Collaboration.add_member(:allowed_result_regions, Shapes::ShapeRef.new(shape: AllowedResultRegions, location_name: "allowedResultRegions"))
|
|
963
|
+
Collaboration.add_member(:is_metrics_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "isMetricsEnabled"))
|
|
948
964
|
Collaboration.struct_class = Types::Collaboration
|
|
949
965
|
|
|
950
966
|
CollaborationAnalysisTemplate.add_member(:id, Shapes::ShapeRef.new(shape: AnalysisTemplateIdentifier, required: true, location_name: "id"))
|
|
@@ -989,6 +1005,7 @@ module Aws::CleanRooms
|
|
|
989
1005
|
CollaborationChangeRequest.add_member(:status, Shapes::ShapeRef.new(shape: ChangeRequestStatus, required: true, location_name: "status"))
|
|
990
1006
|
CollaborationChangeRequest.add_member(:is_auto_approved, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isAutoApproved"))
|
|
991
1007
|
CollaborationChangeRequest.add_member(:changes, Shapes::ShapeRef.new(shape: ChangeList, required: true, location_name: "changes"))
|
|
1008
|
+
CollaborationChangeRequest.add_member(:approvals, Shapes::ShapeRef.new(shape: ApprovalStatuses, location_name: "approvals"))
|
|
992
1009
|
CollaborationChangeRequest.struct_class = Types::CollaborationChangeRequest
|
|
993
1010
|
|
|
994
1011
|
CollaborationChangeRequestSummary.add_member(:id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "id"))
|
|
@@ -998,10 +1015,14 @@ module Aws::CleanRooms
|
|
|
998
1015
|
CollaborationChangeRequestSummary.add_member(:status, Shapes::ShapeRef.new(shape: ChangeRequestStatus, required: true, location_name: "status"))
|
|
999
1016
|
CollaborationChangeRequestSummary.add_member(:is_auto_approved, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isAutoApproved"))
|
|
1000
1017
|
CollaborationChangeRequestSummary.add_member(:changes, Shapes::ShapeRef.new(shape: ChangeList, required: true, location_name: "changes"))
|
|
1018
|
+
CollaborationChangeRequestSummary.add_member(:approvals, Shapes::ShapeRef.new(shape: ApprovalStatuses, location_name: "approvals"))
|
|
1001
1019
|
CollaborationChangeRequestSummary.struct_class = Types::CollaborationChangeRequestSummary
|
|
1002
1020
|
|
|
1003
1021
|
CollaborationChangeRequestSummaryList.member = Shapes::ShapeRef.new(shape: CollaborationChangeRequestSummary)
|
|
1004
1022
|
|
|
1023
|
+
CollaborationChangeSpecification.add_member(:auto_approved_change_types, Shapes::ShapeRef.new(shape: AutoApprovedChangeTypeList, location_name: "autoApprovedChangeTypes"))
|
|
1024
|
+
CollaborationChangeSpecification.struct_class = Types::CollaborationChangeSpecification
|
|
1025
|
+
|
|
1005
1026
|
CollaborationConfiguredAudienceModelAssociation.add_member(:id, Shapes::ShapeRef.new(shape: ConfiguredAudienceModelAssociationIdentifier, required: true, location_name: "id"))
|
|
1006
1027
|
CollaborationConfiguredAudienceModelAssociation.add_member(:arn, Shapes::ShapeRef.new(shape: ConfiguredAudienceModelAssociationArn, required: true, location_name: "arn"))
|
|
1007
1028
|
CollaborationConfiguredAudienceModelAssociation.add_member(:collaboration_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "collaborationId"))
|
|
@@ -1373,6 +1394,7 @@ module Aws::CleanRooms
|
|
|
1373
1394
|
CreateCollaborationInput.add_member(:analytics_engine, Shapes::ShapeRef.new(shape: AnalyticsEngine, location_name: "analyticsEngine"))
|
|
1374
1395
|
CreateCollaborationInput.add_member(:auto_approved_change_request_types, Shapes::ShapeRef.new(shape: AutoApprovedChangeTypeList, location_name: "autoApprovedChangeRequestTypes"))
|
|
1375
1396
|
CreateCollaborationInput.add_member(:allowed_result_regions, Shapes::ShapeRef.new(shape: AllowedResultRegions, location_name: "allowedResultRegions"))
|
|
1397
|
+
CreateCollaborationInput.add_member(:is_metrics_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "isMetricsEnabled"))
|
|
1376
1398
|
CreateCollaborationInput.struct_class = Types::CreateCollaborationInput
|
|
1377
1399
|
|
|
1378
1400
|
CreateCollaborationOutput.add_member(:collaboration, Shapes::ShapeRef.new(shape: Collaboration, required: true, location_name: "collaboration"))
|
|
@@ -1458,6 +1480,7 @@ module Aws::CleanRooms
|
|
|
1458
1480
|
CreateMembershipInput.add_member(:default_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedQueryResultConfiguration, location_name: "defaultResultConfiguration"))
|
|
1459
1481
|
CreateMembershipInput.add_member(:default_job_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedJobResultConfiguration, location_name: "defaultJobResultConfiguration"))
|
|
1460
1482
|
CreateMembershipInput.add_member(:payment_configuration, Shapes::ShapeRef.new(shape: MembershipPaymentConfiguration, location_name: "paymentConfiguration"))
|
|
1483
|
+
CreateMembershipInput.add_member(:is_metrics_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "isMetricsEnabled"))
|
|
1461
1484
|
CreateMembershipInput.struct_class = Types::CreateMembershipInput
|
|
1462
1485
|
|
|
1463
1486
|
CreateMembershipOutput.add_member(:membership, Shapes::ShapeRef.new(shape: Membership, required: true, location_name: "membership"))
|
|
@@ -2116,6 +2139,7 @@ module Aws::CleanRooms
|
|
|
2116
2139
|
Membership.add_member(:default_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedQueryResultConfiguration, location_name: "defaultResultConfiguration"))
|
|
2117
2140
|
Membership.add_member(:default_job_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedJobResultConfiguration, location_name: "defaultJobResultConfiguration"))
|
|
2118
2141
|
Membership.add_member(:payment_configuration, Shapes::ShapeRef.new(shape: MembershipPaymentConfiguration, required: true, location_name: "paymentConfiguration"))
|
|
2142
|
+
Membership.add_member(:is_metrics_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "isMetricsEnabled"))
|
|
2119
2143
|
Membership.struct_class = Types::Membership
|
|
2120
2144
|
|
|
2121
2145
|
MembershipJobComputePaymentConfig.add_member(:is_responsible, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isResponsible"))
|
|
@@ -2710,6 +2734,14 @@ module Aws::CleanRooms
|
|
|
2710
2734
|
UpdateAnalysisTemplateOutput.add_member(:analysis_template, Shapes::ShapeRef.new(shape: AnalysisTemplate, required: true, location_name: "analysisTemplate"))
|
|
2711
2735
|
UpdateAnalysisTemplateOutput.struct_class = Types::UpdateAnalysisTemplateOutput
|
|
2712
2736
|
|
|
2737
|
+
UpdateCollaborationChangeRequestInput.add_member(:collaboration_identifier, Shapes::ShapeRef.new(shape: CollaborationIdentifier, required: true, location: "uri", location_name: "collaborationIdentifier"))
|
|
2738
|
+
UpdateCollaborationChangeRequestInput.add_member(:change_request_identifier, Shapes::ShapeRef.new(shape: CollaborationChangeRequestIdentifier, required: true, location: "uri", location_name: "changeRequestIdentifier"))
|
|
2739
|
+
UpdateCollaborationChangeRequestInput.add_member(:action, Shapes::ShapeRef.new(shape: ChangeRequestAction, required: true, location_name: "action"))
|
|
2740
|
+
UpdateCollaborationChangeRequestInput.struct_class = Types::UpdateCollaborationChangeRequestInput
|
|
2741
|
+
|
|
2742
|
+
UpdateCollaborationChangeRequestOutput.add_member(:collaboration_change_request, Shapes::ShapeRef.new(shape: CollaborationChangeRequest, required: true, location_name: "collaborationChangeRequest"))
|
|
2743
|
+
UpdateCollaborationChangeRequestOutput.struct_class = Types::UpdateCollaborationChangeRequestOutput
|
|
2744
|
+
|
|
2713
2745
|
UpdateCollaborationInput.add_member(:collaboration_identifier, Shapes::ShapeRef.new(shape: CollaborationIdentifier, required: true, location: "uri", location_name: "collaborationIdentifier"))
|
|
2714
2746
|
UpdateCollaborationInput.add_member(:name, Shapes::ShapeRef.new(shape: CollaborationName, location_name: "name"))
|
|
2715
2747
|
UpdateCollaborationInput.add_member(:description, Shapes::ShapeRef.new(shape: CollaborationDescription, location_name: "description"))
|
|
@@ -3985,6 +4017,20 @@ module Aws::CleanRooms
|
|
|
3985
4017
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3986
4018
|
end)
|
|
3987
4019
|
|
|
4020
|
+
api.add_operation(:update_collaboration_change_request, Seahorse::Model::Operation.new.tap do |o|
|
|
4021
|
+
o.name = "UpdateCollaborationChangeRequest"
|
|
4022
|
+
o.http_method = "PATCH"
|
|
4023
|
+
o.http_request_uri = "/collaborations/{collaborationIdentifier}/changeRequests/{changeRequestIdentifier}"
|
|
4024
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateCollaborationChangeRequestInput)
|
|
4025
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateCollaborationChangeRequestOutput)
|
|
4026
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
4027
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
4028
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
4029
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
4030
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
4031
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
4032
|
+
end)
|
|
4033
|
+
|
|
3988
4034
|
api.add_operation(:update_configured_audience_model_association, Seahorse::Model::Operation.new.tap do |o|
|
|
3989
4035
|
o.name = "UpdateConfiguredAudienceModelAssociation"
|
|
3990
4036
|
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
|
|
|
@@ -1340,6 +1364,14 @@ module Aws::CleanRooms
|
|
|
1340
1364
|
# enforce regional storage policies and compliance requirements.
|
|
1341
1365
|
# @return [Array<String>]
|
|
1342
1366
|
#
|
|
1367
|
+
# @!attribute [rw] is_metrics_enabled
|
|
1368
|
+
# An indicator as to whether metrics are enabled for the
|
|
1369
|
+
# collaboration.
|
|
1370
|
+
#
|
|
1371
|
+
# When `true`, collaboration members can opt in to Amazon CloudWatch
|
|
1372
|
+
# metrics for their membership queries.
|
|
1373
|
+
# @return [Boolean]
|
|
1374
|
+
#
|
|
1343
1375
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/Collaboration AWS API Documentation
|
|
1344
1376
|
#
|
|
1345
1377
|
class Collaboration < Struct.new(
|
|
@@ -1359,7 +1391,8 @@ module Aws::CleanRooms
|
|
|
1359
1391
|
:job_log_status,
|
|
1360
1392
|
:analytics_engine,
|
|
1361
1393
|
:auto_approved_change_types,
|
|
1362
|
-
:allowed_result_regions
|
|
1394
|
+
:allowed_result_regions,
|
|
1395
|
+
:is_metrics_enabled)
|
|
1363
1396
|
SENSITIVE = []
|
|
1364
1397
|
include Aws::Structure
|
|
1365
1398
|
end
|
|
@@ -1567,6 +1600,11 @@ module Aws::CleanRooms
|
|
|
1567
1600
|
# The list of changes specified in this change request.
|
|
1568
1601
|
# @return [Array<Types::Change>]
|
|
1569
1602
|
#
|
|
1603
|
+
# @!attribute [rw] approvals
|
|
1604
|
+
# A list of approval details from collaboration members, including
|
|
1605
|
+
# approval status and multi-party approval workflow information.
|
|
1606
|
+
# @return [Hash<String,Types::ApprovalStatusDetails>]
|
|
1607
|
+
#
|
|
1570
1608
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationChangeRequest AWS API Documentation
|
|
1571
1609
|
#
|
|
1572
1610
|
class CollaborationChangeRequest < Struct.new(
|
|
@@ -1576,7 +1614,8 @@ module Aws::CleanRooms
|
|
|
1576
1614
|
:update_time,
|
|
1577
1615
|
:status,
|
|
1578
1616
|
:is_auto_approved,
|
|
1579
|
-
:changes
|
|
1617
|
+
:changes,
|
|
1618
|
+
:approvals)
|
|
1580
1619
|
SENSITIVE = []
|
|
1581
1620
|
include Aws::Structure
|
|
1582
1621
|
end
|
|
@@ -1611,6 +1650,11 @@ module Aws::CleanRooms
|
|
|
1611
1650
|
# Summary of the changes in this change request.
|
|
1612
1651
|
# @return [Array<Types::Change>]
|
|
1613
1652
|
#
|
|
1653
|
+
# @!attribute [rw] approvals
|
|
1654
|
+
# Summary of approval statuses from all collaboration members for this
|
|
1655
|
+
# change request.
|
|
1656
|
+
# @return [Hash<String,Types::ApprovalStatusDetails>]
|
|
1657
|
+
#
|
|
1614
1658
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationChangeRequestSummary AWS API Documentation
|
|
1615
1659
|
#
|
|
1616
1660
|
class CollaborationChangeRequestSummary < Struct.new(
|
|
@@ -1620,7 +1664,25 @@ module Aws::CleanRooms
|
|
|
1620
1664
|
:update_time,
|
|
1621
1665
|
:status,
|
|
1622
1666
|
:is_auto_approved,
|
|
1623
|
-
:changes
|
|
1667
|
+
:changes,
|
|
1668
|
+
:approvals)
|
|
1669
|
+
SENSITIVE = []
|
|
1670
|
+
include Aws::Structure
|
|
1671
|
+
end
|
|
1672
|
+
|
|
1673
|
+
# Defines the specific changes being requested for a collaboration,
|
|
1674
|
+
# including configuration modifications and approval requirements.
|
|
1675
|
+
#
|
|
1676
|
+
# @!attribute [rw] auto_approved_change_types
|
|
1677
|
+
# Defines requested updates to properties of the collaboration.
|
|
1678
|
+
# Currently, this only supports modifying which change types are
|
|
1679
|
+
# auto-approved for the collaboration.
|
|
1680
|
+
# @return [Array<String>]
|
|
1681
|
+
#
|
|
1682
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationChangeSpecification AWS API Documentation
|
|
1683
|
+
#
|
|
1684
|
+
class CollaborationChangeSpecification < Struct.new(
|
|
1685
|
+
:auto_approved_change_types)
|
|
1624
1686
|
SENSITIVE = []
|
|
1625
1687
|
include Aws::Structure
|
|
1626
1688
|
end
|
|
@@ -3384,6 +3446,14 @@ module Aws::CleanRooms
|
|
|
3384
3446
|
# policies.
|
|
3385
3447
|
# @return [Array<String>]
|
|
3386
3448
|
#
|
|
3449
|
+
# @!attribute [rw] is_metrics_enabled
|
|
3450
|
+
# An indicator as to whether metrics have been enabled or disabled for
|
|
3451
|
+
# the collaboration.
|
|
3452
|
+
#
|
|
3453
|
+
# When `true`, collaboration members can opt in to Amazon CloudWatch
|
|
3454
|
+
# metrics for their membership queries. The default value is `false`.
|
|
3455
|
+
# @return [Boolean]
|
|
3456
|
+
#
|
|
3387
3457
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationInput AWS API Documentation
|
|
3388
3458
|
#
|
|
3389
3459
|
class CreateCollaborationInput < Struct.new(
|
|
@@ -3400,7 +3470,8 @@ module Aws::CleanRooms
|
|
|
3400
3470
|
:creator_payment_configuration,
|
|
3401
3471
|
:analytics_engine,
|
|
3402
3472
|
:auto_approved_change_request_types,
|
|
3403
|
-
:allowed_result_regions
|
|
3473
|
+
:allowed_result_regions,
|
|
3474
|
+
:is_metrics_enabled)
|
|
3404
3475
|
SENSITIVE = []
|
|
3405
3476
|
include Aws::Structure
|
|
3406
3477
|
end
|
|
@@ -3846,6 +3917,19 @@ module Aws::CleanRooms
|
|
|
3846
3917
|
# collaboration creator.
|
|
3847
3918
|
# @return [Types::MembershipPaymentConfiguration]
|
|
3848
3919
|
#
|
|
3920
|
+
# @!attribute [rw] is_metrics_enabled
|
|
3921
|
+
# An indicator as to whether Amazon CloudWatch metrics have been
|
|
3922
|
+
# enabled or disabled for the membership.
|
|
3923
|
+
#
|
|
3924
|
+
# Amazon CloudWatch metrics are only available when the collaboration
|
|
3925
|
+
# has metrics enabled. This option can be set by collaboration members
|
|
3926
|
+
# who have the ability to run queries (analysis runners) or by members
|
|
3927
|
+
# who are configured as payers.
|
|
3928
|
+
#
|
|
3929
|
+
# When `true`, metrics about query execution are collected in Amazon
|
|
3930
|
+
# CloudWatch. The default value is `false`.
|
|
3931
|
+
# @return [Boolean]
|
|
3932
|
+
#
|
|
3849
3933
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateMembershipInput AWS API Documentation
|
|
3850
3934
|
#
|
|
3851
3935
|
class CreateMembershipInput < Struct.new(
|
|
@@ -3855,7 +3939,8 @@ module Aws::CleanRooms
|
|
|
3855
3939
|
:tags,
|
|
3856
3940
|
:default_result_configuration,
|
|
3857
3941
|
:default_job_result_configuration,
|
|
3858
|
-
:payment_configuration
|
|
3942
|
+
:payment_configuration,
|
|
3943
|
+
:is_metrics_enabled)
|
|
3859
3944
|
SENSITIVE = []
|
|
3860
3945
|
include Aws::Structure
|
|
3861
3946
|
end
|
|
@@ -6872,6 +6957,14 @@ module Aws::CleanRooms
|
|
|
6872
6957
|
# The payment responsibilities accepted by the collaboration member.
|
|
6873
6958
|
# @return [Types::MembershipPaymentConfiguration]
|
|
6874
6959
|
#
|
|
6960
|
+
# @!attribute [rw] is_metrics_enabled
|
|
6961
|
+
# An indicator as to whether Amazon CloudWatch metrics are enabled for
|
|
6962
|
+
# the membership.
|
|
6963
|
+
#
|
|
6964
|
+
# When `true`, metrics about query execution are collected in Amazon
|
|
6965
|
+
# CloudWatch.
|
|
6966
|
+
# @return [Boolean]
|
|
6967
|
+
#
|
|
6875
6968
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/Membership AWS API Documentation
|
|
6876
6969
|
#
|
|
6877
6970
|
class Membership < Struct.new(
|
|
@@ -6891,7 +6984,8 @@ module Aws::CleanRooms
|
|
|
6891
6984
|
:job_log_status,
|
|
6892
6985
|
:default_result_configuration,
|
|
6893
6986
|
:default_job_result_configuration,
|
|
6894
|
-
:payment_configuration
|
|
6987
|
+
:payment_configuration,
|
|
6988
|
+
:is_metrics_enabled)
|
|
6895
6989
|
SENSITIVE = []
|
|
6896
6990
|
include Aws::Structure
|
|
6897
6991
|
end
|
|
@@ -9500,6 +9594,51 @@ module Aws::CleanRooms
|
|
|
9500
9594
|
include Aws::Structure
|
|
9501
9595
|
end
|
|
9502
9596
|
|
|
9597
|
+
# @!attribute [rw] collaboration_identifier
|
|
9598
|
+
# The unique identifier of the collaboration that contains the change
|
|
9599
|
+
# request to be updated.
|
|
9600
|
+
# @return [String]
|
|
9601
|
+
#
|
|
9602
|
+
# @!attribute [rw] change_request_identifier
|
|
9603
|
+
# The unique identifier of the specific change request to be updated
|
|
9604
|
+
# within the collaboration.
|
|
9605
|
+
# @return [String]
|
|
9606
|
+
#
|
|
9607
|
+
# @!attribute [rw] action
|
|
9608
|
+
# The action to perform on the change request. Valid values include
|
|
9609
|
+
# APPROVE (approve the change), DENY (reject the change), CANCEL
|
|
9610
|
+
# (cancel the request), and COMMIT (commit after the request is
|
|
9611
|
+
# approved).
|
|
9612
|
+
#
|
|
9613
|
+
# For change requests without automatic approval, a member in the
|
|
9614
|
+
# collaboration can manually APPROVE or DENY a change request. The
|
|
9615
|
+
# collaboration owner can manually CANCEL or COMMIT a change request.
|
|
9616
|
+
# @return [String]
|
|
9617
|
+
#
|
|
9618
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaborationChangeRequestInput AWS API Documentation
|
|
9619
|
+
#
|
|
9620
|
+
class UpdateCollaborationChangeRequestInput < Struct.new(
|
|
9621
|
+
:collaboration_identifier,
|
|
9622
|
+
:change_request_identifier,
|
|
9623
|
+
:action)
|
|
9624
|
+
SENSITIVE = []
|
|
9625
|
+
include Aws::Structure
|
|
9626
|
+
end
|
|
9627
|
+
|
|
9628
|
+
# @!attribute [rw] collaboration_change_request
|
|
9629
|
+
# Represents a request to modify a collaboration. Change requests
|
|
9630
|
+
# enable structured modifications to collaborations after they have
|
|
9631
|
+
# been created.
|
|
9632
|
+
# @return [Types::CollaborationChangeRequest]
|
|
9633
|
+
#
|
|
9634
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaborationChangeRequestOutput AWS API Documentation
|
|
9635
|
+
#
|
|
9636
|
+
class UpdateCollaborationChangeRequestOutput < Struct.new(
|
|
9637
|
+
:collaboration_change_request)
|
|
9638
|
+
SENSITIVE = []
|
|
9639
|
+
include Aws::Structure
|
|
9640
|
+
end
|
|
9641
|
+
|
|
9503
9642
|
# @!attribute [rw] collaboration_identifier
|
|
9504
9643
|
# The identifier for the collaboration.
|
|
9505
9644
|
# @return [String]
|
data/lib/aws-sdk-cleanrooms.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -252,8 +252,9 @@ module Aws
|
|
|
252
252
|
}?
|
|
253
253
|
},
|
|
254
254
|
?analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL"),
|
|
255
|
-
?auto_approved_change_request_types: Array[("ADD_MEMBER")],
|
|
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")]
|
|
255
|
+
?auto_approved_change_request_types: Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")],
|
|
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
|
+
?is_metrics_enabled: bool
|
|
257
258
|
) -> _CreateCollaborationResponseSuccess
|
|
258
259
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCollaborationResponseSuccess
|
|
259
260
|
|
|
@@ -266,12 +267,15 @@ module Aws
|
|
|
266
267
|
collaboration_identifier: ::String,
|
|
267
268
|
changes: Array[
|
|
268
269
|
{
|
|
269
|
-
specification_type: ("MEMBER"),
|
|
270
|
+
specification_type: ("MEMBER" | "COLLABORATION"),
|
|
270
271
|
specification: {
|
|
271
272
|
member: {
|
|
272
273
|
account_id: ::String,
|
|
273
274
|
member_abilities: Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS" | "CAN_RUN_JOB")],
|
|
274
275
|
display_name: ::String?
|
|
276
|
+
}?,
|
|
277
|
+
collaboration: {
|
|
278
|
+
auto_approved_change_types: Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")]?
|
|
275
279
|
}?
|
|
276
280
|
}
|
|
277
281
|
},
|
|
@@ -522,7 +526,8 @@ module Aws
|
|
|
522
526
|
job_compute: {
|
|
523
527
|
is_responsible: bool
|
|
524
528
|
}?
|
|
525
|
-
}
|
|
529
|
+
},
|
|
530
|
+
?is_metrics_enabled: bool
|
|
526
531
|
) -> _CreateMembershipResponseSuccess
|
|
527
532
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMembershipResponseSuccess
|
|
528
533
|
|
|
@@ -1322,6 +1327,18 @@ module Aws
|
|
|
1322
1327
|
) -> _UpdateCollaborationResponseSuccess
|
|
1323
1328
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCollaborationResponseSuccess
|
|
1324
1329
|
|
|
1330
|
+
interface _UpdateCollaborationChangeRequestResponseSuccess
|
|
1331
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCollaborationChangeRequestOutput]
|
|
1332
|
+
def collaboration_change_request: () -> Types::CollaborationChangeRequest
|
|
1333
|
+
end
|
|
1334
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#update_collaboration_change_request-instance_method
|
|
1335
|
+
def update_collaboration_change_request: (
|
|
1336
|
+
collaboration_identifier: ::String,
|
|
1337
|
+
change_request_identifier: ::String,
|
|
1338
|
+
action: ("APPROVE" | "DENY" | "CANCEL" | "COMMIT")
|
|
1339
|
+
) -> _UpdateCollaborationChangeRequestResponseSuccess
|
|
1340
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCollaborationChangeRequestResponseSuccess
|
|
1341
|
+
|
|
1325
1342
|
interface _UpdateConfiguredAudienceModelAssociationResponseSuccess
|
|
1326
1343
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfiguredAudienceModelAssociationOutput]
|
|
1327
1344
|
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,8 +376,9 @@ 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")]
|
|
381
|
+
attr_accessor is_metrics_enabled: bool
|
|
373
382
|
SENSITIVE: []
|
|
374
383
|
end
|
|
375
384
|
|
|
@@ -416,6 +425,7 @@ module Aws::CleanRooms
|
|
|
416
425
|
attr_accessor status: ("PENDING" | "APPROVED" | "CANCELLED" | "DENIED" | "COMMITTED")
|
|
417
426
|
attr_accessor is_auto_approved: bool
|
|
418
427
|
attr_accessor changes: ::Array[Types::Change]
|
|
428
|
+
attr_accessor approvals: ::Hash[::String, Types::ApprovalStatusDetails]
|
|
419
429
|
SENSITIVE: []
|
|
420
430
|
end
|
|
421
431
|
|
|
@@ -427,6 +437,12 @@ module Aws::CleanRooms
|
|
|
427
437
|
attr_accessor status: ("PENDING" | "APPROVED" | "CANCELLED" | "DENIED" | "COMMITTED")
|
|
428
438
|
attr_accessor is_auto_approved: bool
|
|
429
439
|
attr_accessor changes: ::Array[Types::Change]
|
|
440
|
+
attr_accessor approvals: ::Hash[::String, Types::ApprovalStatusDetails]
|
|
441
|
+
SENSITIVE: []
|
|
442
|
+
end
|
|
443
|
+
|
|
444
|
+
class CollaborationChangeSpecification
|
|
445
|
+
attr_accessor auto_approved_change_types: ::Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")]
|
|
430
446
|
SENSITIVE: []
|
|
431
447
|
end
|
|
432
448
|
|
|
@@ -872,8 +888,9 @@ module Aws::CleanRooms
|
|
|
872
888
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
873
889
|
attr_accessor creator_payment_configuration: Types::PaymentConfiguration
|
|
874
890
|
attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
|
|
875
|
-
attr_accessor auto_approved_change_request_types: ::Array[("ADD_MEMBER")]
|
|
891
|
+
attr_accessor auto_approved_change_request_types: ::Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")]
|
|
876
892
|
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")]
|
|
893
|
+
attr_accessor is_metrics_enabled: bool
|
|
877
894
|
SENSITIVE: []
|
|
878
895
|
end
|
|
879
896
|
|
|
@@ -991,6 +1008,7 @@ module Aws::CleanRooms
|
|
|
991
1008
|
attr_accessor default_result_configuration: Types::MembershipProtectedQueryResultConfiguration
|
|
992
1009
|
attr_accessor default_job_result_configuration: Types::MembershipProtectedJobResultConfiguration
|
|
993
1010
|
attr_accessor payment_configuration: Types::MembershipPaymentConfiguration
|
|
1011
|
+
attr_accessor is_metrics_enabled: bool
|
|
994
1012
|
SENSITIVE: []
|
|
995
1013
|
end
|
|
996
1014
|
|
|
@@ -1903,6 +1921,7 @@ module Aws::CleanRooms
|
|
|
1903
1921
|
attr_accessor default_result_configuration: Types::MembershipProtectedQueryResultConfiguration
|
|
1904
1922
|
attr_accessor default_job_result_configuration: Types::MembershipProtectedJobResultConfiguration
|
|
1905
1923
|
attr_accessor payment_configuration: Types::MembershipPaymentConfiguration
|
|
1924
|
+
attr_accessor is_metrics_enabled: bool
|
|
1906
1925
|
SENSITIVE: []
|
|
1907
1926
|
end
|
|
1908
1927
|
|
|
@@ -2705,6 +2724,18 @@ module Aws::CleanRooms
|
|
|
2705
2724
|
SENSITIVE: []
|
|
2706
2725
|
end
|
|
2707
2726
|
|
|
2727
|
+
class UpdateCollaborationChangeRequestInput
|
|
2728
|
+
attr_accessor collaboration_identifier: ::String
|
|
2729
|
+
attr_accessor change_request_identifier: ::String
|
|
2730
|
+
attr_accessor action: ("APPROVE" | "DENY" | "CANCEL" | "COMMIT")
|
|
2731
|
+
SENSITIVE: []
|
|
2732
|
+
end
|
|
2733
|
+
|
|
2734
|
+
class UpdateCollaborationChangeRequestOutput
|
|
2735
|
+
attr_accessor collaboration_change_request: Types::CollaborationChangeRequest
|
|
2736
|
+
SENSITIVE: []
|
|
2737
|
+
end
|
|
2738
|
+
|
|
2708
2739
|
class UpdateCollaborationInput
|
|
2709
2740
|
attr_accessor collaboration_identifier: ::String
|
|
2710
2741
|
attr_accessor name: ::String
|