aws-sdk-cleanrooms 1.9.0 → 1.10.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 +50 -4
- data/lib/aws-sdk-cleanrooms/client_api.rb +27 -3
- data/lib/aws-sdk-cleanrooms/types.rb +87 -3
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07e79cfdbb302c16bfc5b2ffe8cb27c38a6931cabfaa5ab262303a22598ec2aa
|
4
|
+
data.tar.gz: 20ef645b07d64c59e56bafe0b3dcbda38bc55a00ceaa18e7fc3f26df3b1a0557
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9fbc5df58be46e7db66954963287ff101afbcd0c68d98aa26808a91cf3ff75e48cf1f554b0577395a77d7ab54a6a299bc12e43f07f6fbf29d0b0e2a669c01e81
|
7
|
+
data.tar.gz: 80000e51eabf0f993d76294953c47d25a8d1f9f7437ef7319074b9b82e957d9a4ff711c38b335efcca30ff52e6450174aa41926cb91db3b52bea18040ac99d62
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.10.0 (2023-08-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release decouples member abilities in a collaboration. With this change, the member who can run queries no longer needs to be the same as the member who can receive results.
|
8
|
+
|
4
9
|
1.9.0 (2023-07-31)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.10.0
|
@@ -932,6 +932,10 @@ module Aws::CleanRooms
|
|
932
932
|
# you define. When you use tagging, you can also use tag-based access
|
933
933
|
# control in IAM policies to control access to this resource.
|
934
934
|
#
|
935
|
+
# @option params [Types::MembershipProtectedQueryResultConfiguration] :default_result_configuration
|
936
|
+
# The default protected query result configuration as specified by the
|
937
|
+
# member who can receive results.
|
938
|
+
#
|
935
939
|
# @return [Types::CreateMembershipOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
936
940
|
#
|
937
941
|
# * {Types::CreateMembershipOutput#membership #membership} => Types::Membership
|
@@ -944,6 +948,16 @@ module Aws::CleanRooms
|
|
944
948
|
# tags: {
|
945
949
|
# "TagKey" => "TagValue",
|
946
950
|
# },
|
951
|
+
# default_result_configuration: {
|
952
|
+
# output_configuration: { # required
|
953
|
+
# s3: {
|
954
|
+
# result_format: "CSV", # required, accepts CSV, PARQUET
|
955
|
+
# bucket: "ProtectedQueryS3OutputConfigurationBucketString", # required
|
956
|
+
# key_prefix: "KeyPrefix",
|
957
|
+
# },
|
958
|
+
# },
|
959
|
+
# role_arn: "RoleArn",
|
960
|
+
# },
|
947
961
|
# })
|
948
962
|
#
|
949
963
|
# @example Response structure
|
@@ -961,6 +975,10 @@ module Aws::CleanRooms
|
|
961
975
|
# resp.membership.member_abilities #=> Array
|
962
976
|
# resp.membership.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS"
|
963
977
|
# resp.membership.query_log_status #=> String, one of "ENABLED", "DISABLED"
|
978
|
+
# resp.membership.default_result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
|
979
|
+
# resp.membership.default_result_configuration.output_configuration.s3.bucket #=> String
|
980
|
+
# resp.membership.default_result_configuration.output_configuration.s3.key_prefix #=> String
|
981
|
+
# resp.membership.default_result_configuration.role_arn #=> String
|
964
982
|
#
|
965
983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateMembership AWS API Documentation
|
966
984
|
#
|
@@ -1473,6 +1491,10 @@ module Aws::CleanRooms
|
|
1473
1491
|
# resp.membership.member_abilities #=> Array
|
1474
1492
|
# resp.membership.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS"
|
1475
1493
|
# resp.membership.query_log_status #=> String, one of "ENABLED", "DISABLED"
|
1494
|
+
# resp.membership.default_result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
|
1495
|
+
# resp.membership.default_result_configuration.output_configuration.s3.bucket #=> String
|
1496
|
+
# resp.membership.default_result_configuration.output_configuration.s3.key_prefix #=> String
|
1497
|
+
# resp.membership.default_result_configuration.role_arn #=> String
|
1476
1498
|
#
|
1477
1499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetMembership AWS API Documentation
|
1478
1500
|
#
|
@@ -1518,6 +1540,8 @@ module Aws::CleanRooms
|
|
1518
1540
|
# resp.protected_query.result_configuration.output_configuration.s3.key_prefix #=> String
|
1519
1541
|
# resp.protected_query.statistics.total_duration_in_millis #=> Integer
|
1520
1542
|
# resp.protected_query.result.output.s3.location #=> String
|
1543
|
+
# resp.protected_query.result.output.member_list #=> Array
|
1544
|
+
# resp.protected_query.result.output.member_list[0].account_id #=> String
|
1521
1545
|
# resp.protected_query.error.message #=> String
|
1522
1546
|
# resp.protected_query.error.code #=> String
|
1523
1547
|
#
|
@@ -2142,7 +2166,7 @@ module Aws::CleanRooms
|
|
2142
2166
|
req.send_request(options)
|
2143
2167
|
end
|
2144
2168
|
|
2145
|
-
# Creates a protected query that is started by Clean Rooms
|
2169
|
+
# Creates a protected query that is started by Clean Rooms.
|
2146
2170
|
#
|
2147
2171
|
# @option params [required, String] :type
|
2148
2172
|
# The type of the protected query to be started.
|
@@ -2154,7 +2178,7 @@ module Aws::CleanRooms
|
|
2154
2178
|
# @option params [required, Types::ProtectedQuerySQLParameters] :sql_parameters
|
2155
2179
|
# The protected SQL query parameters.
|
2156
2180
|
#
|
2157
|
-
# @option params [
|
2181
|
+
# @option params [Types::ProtectedQueryResultConfiguration] :result_configuration
|
2158
2182
|
# The details needed to write the query results.
|
2159
2183
|
#
|
2160
2184
|
# @return [Types::StartProtectedQueryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -2173,7 +2197,7 @@ module Aws::CleanRooms
|
|
2173
2197
|
# "ParameterName" => "ParameterValue",
|
2174
2198
|
# },
|
2175
2199
|
# },
|
2176
|
-
# result_configuration: {
|
2200
|
+
# result_configuration: {
|
2177
2201
|
# output_configuration: { # required
|
2178
2202
|
# s3: {
|
2179
2203
|
# result_format: "CSV", # required, accepts CSV, PARQUET
|
@@ -2200,6 +2224,8 @@ module Aws::CleanRooms
|
|
2200
2224
|
# resp.protected_query.result_configuration.output_configuration.s3.key_prefix #=> String
|
2201
2225
|
# resp.protected_query.statistics.total_duration_in_millis #=> Integer
|
2202
2226
|
# resp.protected_query.result.output.s3.location #=> String
|
2227
|
+
# resp.protected_query.result.output.member_list #=> Array
|
2228
|
+
# resp.protected_query.result.output.member_list[0].account_id #=> String
|
2203
2229
|
# resp.protected_query.error.message #=> String
|
2204
2230
|
# resp.protected_query.error.code #=> String
|
2205
2231
|
#
|
@@ -2587,6 +2613,10 @@ module Aws::CleanRooms
|
|
2587
2613
|
# An indicator as to whether query logging has been enabled or disabled
|
2588
2614
|
# for the collaboration.
|
2589
2615
|
#
|
2616
|
+
# @option params [Types::MembershipProtectedQueryResultConfiguration] :default_result_configuration
|
2617
|
+
# The default protected query result configuration as specified by the
|
2618
|
+
# member who can receive results.
|
2619
|
+
#
|
2590
2620
|
# @return [Types::UpdateMembershipOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2591
2621
|
#
|
2592
2622
|
# * {Types::UpdateMembershipOutput#membership #membership} => Types::Membership
|
@@ -2596,6 +2626,16 @@ module Aws::CleanRooms
|
|
2596
2626
|
# resp = client.update_membership({
|
2597
2627
|
# membership_identifier: "MembershipIdentifier", # required
|
2598
2628
|
# query_log_status: "ENABLED", # accepts ENABLED, DISABLED
|
2629
|
+
# default_result_configuration: {
|
2630
|
+
# output_configuration: { # required
|
2631
|
+
# s3: {
|
2632
|
+
# result_format: "CSV", # required, accepts CSV, PARQUET
|
2633
|
+
# bucket: "ProtectedQueryS3OutputConfigurationBucketString", # required
|
2634
|
+
# key_prefix: "KeyPrefix",
|
2635
|
+
# },
|
2636
|
+
# },
|
2637
|
+
# role_arn: "RoleArn",
|
2638
|
+
# },
|
2599
2639
|
# })
|
2600
2640
|
#
|
2601
2641
|
# @example Response structure
|
@@ -2613,6 +2653,10 @@ module Aws::CleanRooms
|
|
2613
2653
|
# resp.membership.member_abilities #=> Array
|
2614
2654
|
# resp.membership.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS"
|
2615
2655
|
# resp.membership.query_log_status #=> String, one of "ENABLED", "DISABLED"
|
2656
|
+
# resp.membership.default_result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
|
2657
|
+
# resp.membership.default_result_configuration.output_configuration.s3.bucket #=> String
|
2658
|
+
# resp.membership.default_result_configuration.output_configuration.s3.key_prefix #=> String
|
2659
|
+
# resp.membership.default_result_configuration.role_arn #=> String
|
2616
2660
|
#
|
2617
2661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateMembership AWS API Documentation
|
2618
2662
|
#
|
@@ -2663,6 +2707,8 @@ module Aws::CleanRooms
|
|
2663
2707
|
# resp.protected_query.result_configuration.output_configuration.s3.key_prefix #=> String
|
2664
2708
|
# resp.protected_query.statistics.total_duration_in_millis #=> Integer
|
2665
2709
|
# resp.protected_query.result.output.s3.location #=> String
|
2710
|
+
# resp.protected_query.result.output.member_list #=> Array
|
2711
|
+
# resp.protected_query.result.output.member_list[0].account_id #=> String
|
2666
2712
|
# resp.protected_query.error.message #=> String
|
2667
2713
|
# resp.protected_query.error.code #=> String
|
2668
2714
|
#
|
@@ -2688,7 +2734,7 @@ module Aws::CleanRooms
|
|
2688
2734
|
params: params,
|
2689
2735
|
config: config)
|
2690
2736
|
context[:gem_name] = 'aws-sdk-cleanrooms'
|
2691
|
-
context[:gem_version] = '1.
|
2737
|
+
context[:gem_version] = '1.10.0'
|
2692
2738
|
Seahorse::Client::Request.new(handlers, context)
|
2693
2739
|
end
|
2694
2740
|
|
@@ -185,6 +185,8 @@ module Aws::CleanRooms
|
|
185
185
|
Membership = Shapes::StructureShape.new(name: 'Membership')
|
186
186
|
MembershipArn = Shapes::StringShape.new(name: 'MembershipArn')
|
187
187
|
MembershipIdentifier = Shapes::StringShape.new(name: 'MembershipIdentifier')
|
188
|
+
MembershipProtectedQueryOutputConfiguration = Shapes::UnionShape.new(name: 'MembershipProtectedQueryOutputConfiguration')
|
189
|
+
MembershipProtectedQueryResultConfiguration = Shapes::StructureShape.new(name: 'MembershipProtectedQueryResultConfiguration')
|
188
190
|
MembershipQueryLogStatus = Shapes::StringShape.new(name: 'MembershipQueryLogStatus')
|
189
191
|
MembershipStatus = Shapes::StringShape.new(name: 'MembershipStatus')
|
190
192
|
MembershipSummary = Shapes::StructureShape.new(name: 'MembershipSummary')
|
@@ -197,6 +199,7 @@ module Aws::CleanRooms
|
|
197
199
|
ProtectedQuery = Shapes::StructureShape.new(name: 'ProtectedQuery')
|
198
200
|
ProtectedQueryError = Shapes::StructureShape.new(name: 'ProtectedQueryError')
|
199
201
|
ProtectedQueryIdentifier = Shapes::StringShape.new(name: 'ProtectedQueryIdentifier')
|
202
|
+
ProtectedQueryMemberOutputList = Shapes::ListShape.new(name: 'ProtectedQueryMemberOutputList')
|
200
203
|
ProtectedQueryOutput = Shapes::UnionShape.new(name: 'ProtectedQueryOutput')
|
201
204
|
ProtectedQueryOutputConfiguration = Shapes::UnionShape.new(name: 'ProtectedQueryOutputConfiguration')
|
202
205
|
ProtectedQueryResult = Shapes::StructureShape.new(name: 'ProtectedQueryResult')
|
@@ -206,6 +209,7 @@ module Aws::CleanRooms
|
|
206
209
|
ProtectedQueryS3OutputConfigurationBucketString = Shapes::StringShape.new(name: 'ProtectedQueryS3OutputConfigurationBucketString')
|
207
210
|
ProtectedQuerySQLParameters = Shapes::StructureShape.new(name: 'ProtectedQuerySQLParameters')
|
208
211
|
ProtectedQuerySQLParametersQueryStringString = Shapes::StringShape.new(name: 'ProtectedQuerySQLParametersQueryStringString')
|
212
|
+
ProtectedQuerySingleMemberOutput = Shapes::StructureShape.new(name: 'ProtectedQuerySingleMemberOutput')
|
209
213
|
ProtectedQueryStatistics = Shapes::StructureShape.new(name: 'ProtectedQueryStatistics')
|
210
214
|
ProtectedQueryStatus = Shapes::StringShape.new(name: 'ProtectedQueryStatus')
|
211
215
|
ProtectedQuerySummary = Shapes::StructureShape.new(name: 'ProtectedQuerySummary')
|
@@ -618,6 +622,7 @@ module Aws::CleanRooms
|
|
618
622
|
CreateMembershipInput.add_member(:collaboration_identifier, Shapes::ShapeRef.new(shape: CollaborationIdentifier, required: true, location_name: "collaborationIdentifier"))
|
619
623
|
CreateMembershipInput.add_member(:query_log_status, Shapes::ShapeRef.new(shape: MembershipQueryLogStatus, required: true, location_name: "queryLogStatus"))
|
620
624
|
CreateMembershipInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
625
|
+
CreateMembershipInput.add_member(:default_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedQueryResultConfiguration, location_name: "defaultResultConfiguration"))
|
621
626
|
CreateMembershipInput.struct_class = Types::CreateMembershipInput
|
622
627
|
|
623
628
|
CreateMembershipOutput.add_member(:membership, Shapes::ShapeRef.new(shape: Membership, required: true, location_name: "membership"))
|
@@ -866,8 +871,19 @@ module Aws::CleanRooms
|
|
866
871
|
Membership.add_member(:status, Shapes::ShapeRef.new(shape: MembershipStatus, required: true, location_name: "status"))
|
867
872
|
Membership.add_member(:member_abilities, Shapes::ShapeRef.new(shape: MemberAbilities, required: true, location_name: "memberAbilities"))
|
868
873
|
Membership.add_member(:query_log_status, Shapes::ShapeRef.new(shape: MembershipQueryLogStatus, required: true, location_name: "queryLogStatus"))
|
874
|
+
Membership.add_member(:default_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedQueryResultConfiguration, location_name: "defaultResultConfiguration"))
|
869
875
|
Membership.struct_class = Types::Membership
|
870
876
|
|
877
|
+
MembershipProtectedQueryOutputConfiguration.add_member(:s3, Shapes::ShapeRef.new(shape: ProtectedQueryS3OutputConfiguration, location_name: "s3"))
|
878
|
+
MembershipProtectedQueryOutputConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
879
|
+
MembershipProtectedQueryOutputConfiguration.add_member_subclass(:s3, Types::MembershipProtectedQueryOutputConfiguration::S3)
|
880
|
+
MembershipProtectedQueryOutputConfiguration.add_member_subclass(:unknown, Types::MembershipProtectedQueryOutputConfiguration::Unknown)
|
881
|
+
MembershipProtectedQueryOutputConfiguration.struct_class = Types::MembershipProtectedQueryOutputConfiguration
|
882
|
+
|
883
|
+
MembershipProtectedQueryResultConfiguration.add_member(:output_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedQueryOutputConfiguration, required: true, location_name: "outputConfiguration"))
|
884
|
+
MembershipProtectedQueryResultConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
|
885
|
+
MembershipProtectedQueryResultConfiguration.struct_class = Types::MembershipProtectedQueryResultConfiguration
|
886
|
+
|
871
887
|
MembershipSummary.add_member(:id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "id"))
|
872
888
|
MembershipSummary.add_member(:arn, Shapes::ShapeRef.new(shape: MembershipArn, required: true, location_name: "arn"))
|
873
889
|
MembershipSummary.add_member(:collaboration_arn, Shapes::ShapeRef.new(shape: CollaborationArn, required: true, location_name: "collaborationArn"))
|
@@ -890,9 +906,9 @@ module Aws::CleanRooms
|
|
890
906
|
ProtectedQuery.add_member(:membership_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "membershipId"))
|
891
907
|
ProtectedQuery.add_member(:membership_arn, Shapes::ShapeRef.new(shape: MembershipArn, required: true, location_name: "membershipArn"))
|
892
908
|
ProtectedQuery.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createTime"))
|
893
|
-
ProtectedQuery.add_member(:sql_parameters, Shapes::ShapeRef.new(shape: ProtectedQuerySQLParameters,
|
909
|
+
ProtectedQuery.add_member(:sql_parameters, Shapes::ShapeRef.new(shape: ProtectedQuerySQLParameters, location_name: "sqlParameters"))
|
894
910
|
ProtectedQuery.add_member(:status, Shapes::ShapeRef.new(shape: ProtectedQueryStatus, required: true, location_name: "status"))
|
895
|
-
ProtectedQuery.add_member(:result_configuration, Shapes::ShapeRef.new(shape: ProtectedQueryResultConfiguration,
|
911
|
+
ProtectedQuery.add_member(:result_configuration, Shapes::ShapeRef.new(shape: ProtectedQueryResultConfiguration, location_name: "resultConfiguration"))
|
896
912
|
ProtectedQuery.add_member(:statistics, Shapes::ShapeRef.new(shape: ProtectedQueryStatistics, location_name: "statistics"))
|
897
913
|
ProtectedQuery.add_member(:result, Shapes::ShapeRef.new(shape: ProtectedQueryResult, location_name: "result"))
|
898
914
|
ProtectedQuery.add_member(:error, Shapes::ShapeRef.new(shape: ProtectedQueryError, location_name: "error"))
|
@@ -902,9 +918,13 @@ module Aws::CleanRooms
|
|
902
918
|
ProtectedQueryError.add_member(:code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "code"))
|
903
919
|
ProtectedQueryError.struct_class = Types::ProtectedQueryError
|
904
920
|
|
921
|
+
ProtectedQueryMemberOutputList.member = Shapes::ShapeRef.new(shape: ProtectedQuerySingleMemberOutput)
|
922
|
+
|
905
923
|
ProtectedQueryOutput.add_member(:s3, Shapes::ShapeRef.new(shape: ProtectedQueryS3Output, location_name: "s3"))
|
924
|
+
ProtectedQueryOutput.add_member(:member_list, Shapes::ShapeRef.new(shape: ProtectedQueryMemberOutputList, location_name: "memberList"))
|
906
925
|
ProtectedQueryOutput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
907
926
|
ProtectedQueryOutput.add_member_subclass(:s3, Types::ProtectedQueryOutput::S3)
|
927
|
+
ProtectedQueryOutput.add_member_subclass(:member_list, Types::ProtectedQueryOutput::MemberList)
|
908
928
|
ProtectedQueryOutput.add_member_subclass(:unknown, Types::ProtectedQueryOutput::Unknown)
|
909
929
|
ProtectedQueryOutput.struct_class = Types::ProtectedQueryOutput
|
910
930
|
|
@@ -933,6 +953,9 @@ module Aws::CleanRooms
|
|
933
953
|
ProtectedQuerySQLParameters.add_member(:parameters, Shapes::ShapeRef.new(shape: ParameterMap, location_name: "parameters"))
|
934
954
|
ProtectedQuerySQLParameters.struct_class = Types::ProtectedQuerySQLParameters
|
935
955
|
|
956
|
+
ProtectedQuerySingleMemberOutput.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "accountId"))
|
957
|
+
ProtectedQuerySingleMemberOutput.struct_class = Types::ProtectedQuerySingleMemberOutput
|
958
|
+
|
936
959
|
ProtectedQueryStatistics.add_member(:total_duration_in_millis, Shapes::ShapeRef.new(shape: Long, location_name: "totalDurationInMillis"))
|
937
960
|
ProtectedQueryStatistics.struct_class = Types::ProtectedQueryStatistics
|
938
961
|
|
@@ -991,7 +1014,7 @@ module Aws::CleanRooms
|
|
991
1014
|
StartProtectedQueryInput.add_member(:type, Shapes::ShapeRef.new(shape: ProtectedQueryType, required: true, location_name: "type"))
|
992
1015
|
StartProtectedQueryInput.add_member(:membership_identifier, Shapes::ShapeRef.new(shape: MembershipIdentifier, required: true, location: "uri", location_name: "membershipIdentifier"))
|
993
1016
|
StartProtectedQueryInput.add_member(:sql_parameters, Shapes::ShapeRef.new(shape: ProtectedQuerySQLParameters, required: true, location_name: "sqlParameters"))
|
994
|
-
StartProtectedQueryInput.add_member(:result_configuration, Shapes::ShapeRef.new(shape: ProtectedQueryResultConfiguration,
|
1017
|
+
StartProtectedQueryInput.add_member(:result_configuration, Shapes::ShapeRef.new(shape: ProtectedQueryResultConfiguration, location_name: "resultConfiguration"))
|
995
1018
|
StartProtectedQueryInput.struct_class = Types::StartProtectedQueryInput
|
996
1019
|
|
997
1020
|
StartProtectedQueryOutput.add_member(:protected_query, Shapes::ShapeRef.new(shape: ProtectedQuery, required: true, location_name: "protectedQuery"))
|
@@ -1068,6 +1091,7 @@ module Aws::CleanRooms
|
|
1068
1091
|
|
1069
1092
|
UpdateMembershipInput.add_member(:membership_identifier, Shapes::ShapeRef.new(shape: MembershipIdentifier, required: true, location: "uri", location_name: "membershipIdentifier"))
|
1070
1093
|
UpdateMembershipInput.add_member(:query_log_status, Shapes::ShapeRef.new(shape: MembershipQueryLogStatus, location_name: "queryLogStatus"))
|
1094
|
+
UpdateMembershipInput.add_member(:default_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedQueryResultConfiguration, location_name: "defaultResultConfiguration"))
|
1071
1095
|
UpdateMembershipInput.struct_class = Types::UpdateMembershipInput
|
1072
1096
|
|
1073
1097
|
UpdateMembershipOutput.add_member(:membership, Shapes::ShapeRef.new(shape: Membership, required: true, location_name: "membership"))
|
@@ -1563,12 +1563,18 @@ module Aws::CleanRooms
|
|
1563
1563
|
# control in IAM policies to control access to this resource.
|
1564
1564
|
# @return [Hash<String,String>]
|
1565
1565
|
#
|
1566
|
+
# @!attribute [rw] default_result_configuration
|
1567
|
+
# The default protected query result configuration as specified by the
|
1568
|
+
# member who can receive results.
|
1569
|
+
# @return [Types::MembershipProtectedQueryResultConfiguration]
|
1570
|
+
#
|
1566
1571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateMembershipInput AWS API Documentation
|
1567
1572
|
#
|
1568
1573
|
class CreateMembershipInput < Struct.new(
|
1569
1574
|
:collaboration_identifier,
|
1570
1575
|
:query_log_status,
|
1571
|
-
:tags
|
1576
|
+
:tags,
|
1577
|
+
:default_result_configuration)
|
1572
1578
|
SENSITIVE = []
|
1573
1579
|
include Aws::Structure
|
1574
1580
|
end
|
@@ -2620,6 +2626,11 @@ module Aws::CleanRooms
|
|
2620
2626
|
# disabled for the collaboration.
|
2621
2627
|
# @return [String]
|
2622
2628
|
#
|
2629
|
+
# @!attribute [rw] default_result_configuration
|
2630
|
+
# The default protected query result configuration as specified by the
|
2631
|
+
# member who can receive results.
|
2632
|
+
# @return [Types::MembershipProtectedQueryResultConfiguration]
|
2633
|
+
#
|
2623
2634
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/Membership AWS API Documentation
|
2624
2635
|
#
|
2625
2636
|
class Membership < Struct.new(
|
@@ -2634,7 +2645,52 @@ module Aws::CleanRooms
|
|
2634
2645
|
:update_time,
|
2635
2646
|
:status,
|
2636
2647
|
:member_abilities,
|
2637
|
-
:query_log_status
|
2648
|
+
:query_log_status,
|
2649
|
+
:default_result_configuration)
|
2650
|
+
SENSITIVE = []
|
2651
|
+
include Aws::Structure
|
2652
|
+
end
|
2653
|
+
|
2654
|
+
# Contains configurations for protected query results.
|
2655
|
+
#
|
2656
|
+
# @note MembershipProtectedQueryOutputConfiguration is a union - when making an API calls you must set exactly one of the members.
|
2657
|
+
#
|
2658
|
+
# @note MembershipProtectedQueryOutputConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MembershipProtectedQueryOutputConfiguration corresponding to the set member.
|
2659
|
+
#
|
2660
|
+
# @!attribute [rw] s3
|
2661
|
+
# Contains the configuration to write the query results to S3.
|
2662
|
+
# @return [Types::ProtectedQueryS3OutputConfiguration]
|
2663
|
+
#
|
2664
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipProtectedQueryOutputConfiguration AWS API Documentation
|
2665
|
+
#
|
2666
|
+
class MembershipProtectedQueryOutputConfiguration < Struct.new(
|
2667
|
+
:s3,
|
2668
|
+
:unknown)
|
2669
|
+
SENSITIVE = []
|
2670
|
+
include Aws::Structure
|
2671
|
+
include Aws::Structure::Union
|
2672
|
+
|
2673
|
+
class S3 < MembershipProtectedQueryOutputConfiguration; end
|
2674
|
+
class Unknown < MembershipProtectedQueryOutputConfiguration; end
|
2675
|
+
end
|
2676
|
+
|
2677
|
+
# Contains configurations for protected query results.
|
2678
|
+
#
|
2679
|
+
# @!attribute [rw] output_configuration
|
2680
|
+
# Configuration for protected query results.
|
2681
|
+
# @return [Types::MembershipProtectedQueryOutputConfiguration]
|
2682
|
+
#
|
2683
|
+
# @!attribute [rw] role_arn
|
2684
|
+
# The unique ARN for an IAM role that is used by Clean Rooms to write
|
2685
|
+
# protected query results to the result location, given by the member
|
2686
|
+
# who can receive results.
|
2687
|
+
# @return [String]
|
2688
|
+
#
|
2689
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipProtectedQueryResultConfiguration AWS API Documentation
|
2690
|
+
#
|
2691
|
+
class MembershipProtectedQueryResultConfiguration < Struct.new(
|
2692
|
+
:output_configuration,
|
2693
|
+
:role_arn)
|
2638
2694
|
SENSITIVE = []
|
2639
2695
|
include Aws::Structure
|
2640
2696
|
end
|
@@ -2793,16 +2849,23 @@ module Aws::CleanRooms
|
|
2793
2849
|
# type.
|
2794
2850
|
# @return [Types::ProtectedQueryS3Output]
|
2795
2851
|
#
|
2852
|
+
# @!attribute [rw] member_list
|
2853
|
+
# The list of member Amazon Web Services account(s) that received the
|
2854
|
+
# results of the query.
|
2855
|
+
# @return [Array<Types::ProtectedQuerySingleMemberOutput>]
|
2856
|
+
#
|
2796
2857
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQueryOutput AWS API Documentation
|
2797
2858
|
#
|
2798
2859
|
class ProtectedQueryOutput < Struct.new(
|
2799
2860
|
:s3,
|
2861
|
+
:member_list,
|
2800
2862
|
:unknown)
|
2801
2863
|
SENSITIVE = []
|
2802
2864
|
include Aws::Structure
|
2803
2865
|
include Aws::Structure::Union
|
2804
2866
|
|
2805
2867
|
class S3 < ProtectedQueryOutput; end
|
2868
|
+
class MemberList < ProtectedQueryOutput; end
|
2806
2869
|
class Unknown < ProtectedQueryOutput; end
|
2807
2870
|
end
|
2808
2871
|
|
@@ -2922,6 +2985,21 @@ module Aws::CleanRooms
|
|
2922
2985
|
include Aws::Structure
|
2923
2986
|
end
|
2924
2987
|
|
2988
|
+
# Details about the member who received the query result.
|
2989
|
+
#
|
2990
|
+
# @!attribute [rw] account_id
|
2991
|
+
# The Amazon Web Services account ID of the member in the
|
2992
|
+
# collaboration who can receive results for the query.
|
2993
|
+
# @return [String]
|
2994
|
+
#
|
2995
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQuerySingleMemberOutput AWS API Documentation
|
2996
|
+
#
|
2997
|
+
class ProtectedQuerySingleMemberOutput < Struct.new(
|
2998
|
+
:account_id)
|
2999
|
+
SENSITIVE = []
|
3000
|
+
include Aws::Structure
|
3001
|
+
end
|
3002
|
+
|
2925
3003
|
# Contains statistics about the execution of the protected query.
|
2926
3004
|
#
|
2927
3005
|
# @!attribute [rw] total_duration_in_millis
|
@@ -3465,11 +3543,17 @@ module Aws::CleanRooms
|
|
3465
3543
|
# disabled for the collaboration.
|
3466
3544
|
# @return [String]
|
3467
3545
|
#
|
3546
|
+
# @!attribute [rw] default_result_configuration
|
3547
|
+
# The default protected query result configuration as specified by the
|
3548
|
+
# member who can receive results.
|
3549
|
+
# @return [Types::MembershipProtectedQueryResultConfiguration]
|
3550
|
+
#
|
3468
3551
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateMembershipInput AWS API Documentation
|
3469
3552
|
#
|
3470
3553
|
class UpdateMembershipInput < Struct.new(
|
3471
3554
|
:membership_identifier,
|
3472
|
-
:query_log_status
|
3555
|
+
:query_log_status,
|
3556
|
+
:default_result_configuration)
|
3473
3557
|
SENSITIVE = []
|
3474
3558
|
include Aws::Structure
|
3475
3559
|
end
|
data/lib/aws-sdk-cleanrooms.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cleanrooms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|