aws-sdk-cleanrooms 1.5.0 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanrooms/client.rb +26 -6
- data/lib/aws-sdk-cleanrooms/client_api.rb +11 -4
- data/lib/aws-sdk-cleanrooms/types.rb +40 -25
- 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: d2bf652d5351fb7603f9afc7fb4657dd9ef1c558b0954e393948ba82c0b3da1f
|
4
|
+
data.tar.gz: 15d40834f0f4ff3ac6dfde4ec0a4a8886d818499528c7d758a8460a906d77f65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ba6d4defe8f75f84454a1bf03e1b1332540749c747392cc99cc31898ad6dad3a68609c1c635089b03ba7488c743cb79f90b2ec265aec976f731acdfc5d22f6d
|
7
|
+
data.tar.gz: 5bf677f299ec4edbf8bed66a0bc298e984d9009c0a7b640457aa6659e5d1bd68454734099b6d80e1326114bf50855cea9ed4580222f4585547cbf2a46e1b018b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.6.0 (2023-06-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for the OR operator in RSQL join match conditions and the ability to control which operators (AND, OR) are allowed in a join match condition.
|
8
|
+
|
4
9
|
1.5.0 (2023-06-28)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.6.0
|
@@ -528,7 +528,7 @@ module Aws::CleanRooms
|
|
528
528
|
# A description for the configured table.
|
529
529
|
#
|
530
530
|
# @option params [required, Types::TableReference] :table_reference
|
531
|
-
# A reference to the
|
531
|
+
# A reference to the Glue table being configured.
|
532
532
|
#
|
533
533
|
# @option params [required, Array<String>] :allowed_columns
|
534
534
|
# The columns of the underlying table that can be used by collaborations
|
@@ -555,8 +555,8 @@ module Aws::CleanRooms
|
|
555
555
|
# description: "TableDescription",
|
556
556
|
# table_reference: { # required
|
557
557
|
# glue: {
|
558
|
-
# table_name: "
|
559
|
-
# database_name: "
|
558
|
+
# table_name: "GlueTableName", # required
|
559
|
+
# database_name: "GlueDatabaseName", # required
|
560
560
|
# },
|
561
561
|
# },
|
562
562
|
# allowed_columns: ["ColumnName"], # required
|
@@ -617,6 +617,7 @@ module Aws::CleanRooms
|
|
617
617
|
# v1: {
|
618
618
|
# list: {
|
619
619
|
# join_columns: ["AnalysisRuleColumnName"], # required
|
620
|
+
# allowed_join_operators: ["OR"], # accepts OR, AND
|
620
621
|
# list_columns: ["AnalysisRuleColumnName"], # required
|
621
622
|
# },
|
622
623
|
# aggregation: {
|
@@ -628,6 +629,7 @@ module Aws::CleanRooms
|
|
628
629
|
# ],
|
629
630
|
# join_columns: ["AnalysisRuleColumnName"], # required
|
630
631
|
# join_required: "QUERY_RUNNER", # accepts QUERY_RUNNER
|
632
|
+
# allowed_join_operators: ["OR"], # accepts OR, AND
|
631
633
|
# dimension_columns: ["AnalysisRuleColumnName"], # required
|
632
634
|
# scalar_functions: ["TRUNC"], # required, accepts TRUNC, ABS, CEILING, FLOOR, LN, LOG, ROUND, SQRT, CAST, LOWER, RTRIM, UPPER, COALESCE
|
633
635
|
# output_constraints: [ # required
|
@@ -648,6 +650,8 @@ module Aws::CleanRooms
|
|
648
650
|
# resp.analysis_rule.configured_table_arn #=> String
|
649
651
|
# resp.analysis_rule.policy.v1.list.join_columns #=> Array
|
650
652
|
# resp.analysis_rule.policy.v1.list.join_columns[0] #=> String
|
653
|
+
# resp.analysis_rule.policy.v1.list.allowed_join_operators #=> Array
|
654
|
+
# resp.analysis_rule.policy.v1.list.allowed_join_operators[0] #=> String, one of "OR", "AND"
|
651
655
|
# resp.analysis_rule.policy.v1.list.list_columns #=> Array
|
652
656
|
# resp.analysis_rule.policy.v1.list.list_columns[0] #=> String
|
653
657
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns #=> Array
|
@@ -657,6 +661,8 @@ module Aws::CleanRooms
|
|
657
661
|
# resp.analysis_rule.policy.v1.aggregation.join_columns #=> Array
|
658
662
|
# resp.analysis_rule.policy.v1.aggregation.join_columns[0] #=> String
|
659
663
|
# resp.analysis_rule.policy.v1.aggregation.join_required #=> String, one of "QUERY_RUNNER"
|
664
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_join_operators #=> Array
|
665
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_join_operators[0] #=> String, one of "OR", "AND"
|
660
666
|
# resp.analysis_rule.policy.v1.aggregation.dimension_columns #=> Array
|
661
667
|
# resp.analysis_rule.policy.v1.aggregation.dimension_columns[0] #=> String
|
662
668
|
# resp.analysis_rule.policy.v1.aggregation.scalar_functions #=> Array
|
@@ -1067,6 +1073,8 @@ module Aws::CleanRooms
|
|
1067
1073
|
# resp.analysis_rule.configured_table_arn #=> String
|
1068
1074
|
# resp.analysis_rule.policy.v1.list.join_columns #=> Array
|
1069
1075
|
# resp.analysis_rule.policy.v1.list.join_columns[0] #=> String
|
1076
|
+
# resp.analysis_rule.policy.v1.list.allowed_join_operators #=> Array
|
1077
|
+
# resp.analysis_rule.policy.v1.list.allowed_join_operators[0] #=> String, one of "OR", "AND"
|
1070
1078
|
# resp.analysis_rule.policy.v1.list.list_columns #=> Array
|
1071
1079
|
# resp.analysis_rule.policy.v1.list.list_columns[0] #=> String
|
1072
1080
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns #=> Array
|
@@ -1076,6 +1084,8 @@ module Aws::CleanRooms
|
|
1076
1084
|
# resp.analysis_rule.policy.v1.aggregation.join_columns #=> Array
|
1077
1085
|
# resp.analysis_rule.policy.v1.aggregation.join_columns[0] #=> String
|
1078
1086
|
# resp.analysis_rule.policy.v1.aggregation.join_required #=> String, one of "QUERY_RUNNER"
|
1087
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_join_operators #=> Array
|
1088
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_join_operators[0] #=> String, one of "OR", "AND"
|
1079
1089
|
# resp.analysis_rule.policy.v1.aggregation.dimension_columns #=> Array
|
1080
1090
|
# resp.analysis_rule.policy.v1.aggregation.dimension_columns[0] #=> String
|
1081
1091
|
# resp.analysis_rule.policy.v1.aggregation.scalar_functions #=> Array
|
@@ -1309,6 +1319,8 @@ module Aws::CleanRooms
|
|
1309
1319
|
# resp.analysis_rule.update_time #=> Time
|
1310
1320
|
# resp.analysis_rule.policy.v1.list.join_columns #=> Array
|
1311
1321
|
# resp.analysis_rule.policy.v1.list.join_columns[0] #=> String
|
1322
|
+
# resp.analysis_rule.policy.v1.list.allowed_join_operators #=> Array
|
1323
|
+
# resp.analysis_rule.policy.v1.list.allowed_join_operators[0] #=> String, one of "OR", "AND"
|
1312
1324
|
# resp.analysis_rule.policy.v1.list.list_columns #=> Array
|
1313
1325
|
# resp.analysis_rule.policy.v1.list.list_columns[0] #=> String
|
1314
1326
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns #=> Array
|
@@ -1318,6 +1330,8 @@ module Aws::CleanRooms
|
|
1318
1330
|
# resp.analysis_rule.policy.v1.aggregation.join_columns #=> Array
|
1319
1331
|
# resp.analysis_rule.policy.v1.aggregation.join_columns[0] #=> String
|
1320
1332
|
# resp.analysis_rule.policy.v1.aggregation.join_required #=> String, one of "QUERY_RUNNER"
|
1333
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_join_operators #=> Array
|
1334
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_join_operators[0] #=> String, one of "OR", "AND"
|
1321
1335
|
# resp.analysis_rule.policy.v1.aggregation.dimension_columns #=> Array
|
1322
1336
|
# resp.analysis_rule.policy.v1.aggregation.dimension_columns[0] #=> String
|
1323
1337
|
# resp.analysis_rule.policy.v1.aggregation.scalar_functions #=> Array
|
@@ -1727,7 +1741,7 @@ module Aws::CleanRooms
|
|
1727
1741
|
req.send_request(options)
|
1728
1742
|
end
|
1729
1743
|
|
1730
|
-
# Creates a protected query that is started by
|
1744
|
+
# Creates a protected query that is started by Clean Rooms .
|
1731
1745
|
#
|
1732
1746
|
# @option params [required, String] :type
|
1733
1747
|
# The type of the protected query to be started.
|
@@ -1752,7 +1766,7 @@ module Aws::CleanRooms
|
|
1752
1766
|
# type: "SQL", # required, accepts SQL
|
1753
1767
|
# membership_identifier: "MembershipIdentifier", # required
|
1754
1768
|
# sql_parameters: { # required
|
1755
|
-
# query_string: "ProtectedQuerySQLParametersQueryStringString",
|
1769
|
+
# query_string: "ProtectedQuerySQLParametersQueryStringString",
|
1756
1770
|
# },
|
1757
1771
|
# result_configuration: { # required
|
1758
1772
|
# output_configuration: { # required
|
@@ -1975,6 +1989,7 @@ module Aws::CleanRooms
|
|
1975
1989
|
# v1: {
|
1976
1990
|
# list: {
|
1977
1991
|
# join_columns: ["AnalysisRuleColumnName"], # required
|
1992
|
+
# allowed_join_operators: ["OR"], # accepts OR, AND
|
1978
1993
|
# list_columns: ["AnalysisRuleColumnName"], # required
|
1979
1994
|
# },
|
1980
1995
|
# aggregation: {
|
@@ -1986,6 +2001,7 @@ module Aws::CleanRooms
|
|
1986
2001
|
# ],
|
1987
2002
|
# join_columns: ["AnalysisRuleColumnName"], # required
|
1988
2003
|
# join_required: "QUERY_RUNNER", # accepts QUERY_RUNNER
|
2004
|
+
# allowed_join_operators: ["OR"], # accepts OR, AND
|
1989
2005
|
# dimension_columns: ["AnalysisRuleColumnName"], # required
|
1990
2006
|
# scalar_functions: ["TRUNC"], # required, accepts TRUNC, ABS, CEILING, FLOOR, LN, LOG, ROUND, SQRT, CAST, LOWER, RTRIM, UPPER, COALESCE
|
1991
2007
|
# output_constraints: [ # required
|
@@ -2006,6 +2022,8 @@ module Aws::CleanRooms
|
|
2006
2022
|
# resp.analysis_rule.configured_table_arn #=> String
|
2007
2023
|
# resp.analysis_rule.policy.v1.list.join_columns #=> Array
|
2008
2024
|
# resp.analysis_rule.policy.v1.list.join_columns[0] #=> String
|
2025
|
+
# resp.analysis_rule.policy.v1.list.allowed_join_operators #=> Array
|
2026
|
+
# resp.analysis_rule.policy.v1.list.allowed_join_operators[0] #=> String, one of "OR", "AND"
|
2009
2027
|
# resp.analysis_rule.policy.v1.list.list_columns #=> Array
|
2010
2028
|
# resp.analysis_rule.policy.v1.list.list_columns[0] #=> String
|
2011
2029
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns #=> Array
|
@@ -2015,6 +2033,8 @@ module Aws::CleanRooms
|
|
2015
2033
|
# resp.analysis_rule.policy.v1.aggregation.join_columns #=> Array
|
2016
2034
|
# resp.analysis_rule.policy.v1.aggregation.join_columns[0] #=> String
|
2017
2035
|
# resp.analysis_rule.policy.v1.aggregation.join_required #=> String, one of "QUERY_RUNNER"
|
2036
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_join_operators #=> Array
|
2037
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_join_operators[0] #=> String, one of "OR", "AND"
|
2018
2038
|
# resp.analysis_rule.policy.v1.aggregation.dimension_columns #=> Array
|
2019
2039
|
# resp.analysis_rule.policy.v1.aggregation.dimension_columns[0] #=> String
|
2020
2040
|
# resp.analysis_rule.policy.v1.aggregation.scalar_functions #=> Array
|
@@ -2196,7 +2216,7 @@ module Aws::CleanRooms
|
|
2196
2216
|
params: params,
|
2197
2217
|
config: config)
|
2198
2218
|
context[:gem_name] = 'aws-sdk-cleanrooms'
|
2199
|
-
context[:gem_version] = '1.
|
2219
|
+
context[:gem_version] = '1.6.0'
|
2200
2220
|
Seahorse::Client::Request.new(handlers, context)
|
2201
2221
|
end
|
2202
2222
|
|
@@ -113,9 +113,12 @@ module Aws::CleanRooms
|
|
113
113
|
GetSchemaAnalysisRuleOutput = Shapes::StructureShape.new(name: 'GetSchemaAnalysisRuleOutput')
|
114
114
|
GetSchemaInput = Shapes::StructureShape.new(name: 'GetSchemaInput')
|
115
115
|
GetSchemaOutput = Shapes::StructureShape.new(name: 'GetSchemaOutput')
|
116
|
-
|
116
|
+
GlueDatabaseName = Shapes::StringShape.new(name: 'GlueDatabaseName')
|
117
|
+
GlueTableName = Shapes::StringShape.new(name: 'GlueTableName')
|
117
118
|
GlueTableReference = Shapes::StructureShape.new(name: 'GlueTableReference')
|
118
119
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
120
|
+
JoinOperator = Shapes::StringShape.new(name: 'JoinOperator')
|
121
|
+
JoinOperatorsList = Shapes::ListShape.new(name: 'JoinOperatorsList')
|
119
122
|
JoinRequiredOption = Shapes::StringShape.new(name: 'JoinRequiredOption')
|
120
123
|
KeyPrefix = Shapes::StringShape.new(name: 'KeyPrefix')
|
121
124
|
ListCollaborationsInput = Shapes::StructureShape.new(name: 'ListCollaborationsInput')
|
@@ -246,6 +249,7 @@ module Aws::CleanRooms
|
|
246
249
|
AnalysisRuleAggregation.add_member(:aggregate_columns, Shapes::ShapeRef.new(shape: AnalysisRuleAggregationAggregateColumnsList, required: true, location_name: "aggregateColumns"))
|
247
250
|
AnalysisRuleAggregation.add_member(:join_columns, Shapes::ShapeRef.new(shape: AnalysisRuleColumnList, required: true, location_name: "joinColumns"))
|
248
251
|
AnalysisRuleAggregation.add_member(:join_required, Shapes::ShapeRef.new(shape: JoinRequiredOption, location_name: "joinRequired"))
|
252
|
+
AnalysisRuleAggregation.add_member(:allowed_join_operators, Shapes::ShapeRef.new(shape: JoinOperatorsList, location_name: "allowedJoinOperators"))
|
249
253
|
AnalysisRuleAggregation.add_member(:dimension_columns, Shapes::ShapeRef.new(shape: AnalysisRuleColumnList, required: true, location_name: "dimensionColumns"))
|
250
254
|
AnalysisRuleAggregation.add_member(:scalar_functions, Shapes::ShapeRef.new(shape: ScalarFunctionsList, required: true, location_name: "scalarFunctions"))
|
251
255
|
AnalysisRuleAggregation.add_member(:output_constraints, Shapes::ShapeRef.new(shape: AggregationConstraints, required: true, location_name: "outputConstraints"))
|
@@ -256,6 +260,7 @@ module Aws::CleanRooms
|
|
256
260
|
AnalysisRuleColumnList.member = Shapes::ShapeRef.new(shape: AnalysisRuleColumnName)
|
257
261
|
|
258
262
|
AnalysisRuleList.add_member(:join_columns, Shapes::ShapeRef.new(shape: AnalysisRuleListJoinColumnsList, required: true, location_name: "joinColumns"))
|
263
|
+
AnalysisRuleList.add_member(:allowed_join_operators, Shapes::ShapeRef.new(shape: JoinOperatorsList, location_name: "allowedJoinOperators"))
|
259
264
|
AnalysisRuleList.add_member(:list_columns, Shapes::ShapeRef.new(shape: AnalysisRuleColumnList, required: true, location_name: "listColumns"))
|
260
265
|
AnalysisRuleList.struct_class = Types::AnalysisRuleList
|
261
266
|
|
@@ -549,13 +554,15 @@ module Aws::CleanRooms
|
|
549
554
|
GetSchemaOutput.add_member(:schema, Shapes::ShapeRef.new(shape: Schema, required: true, location_name: "schema"))
|
550
555
|
GetSchemaOutput.struct_class = Types::GetSchemaOutput
|
551
556
|
|
552
|
-
GlueTableReference.add_member(:table_name, Shapes::ShapeRef.new(shape:
|
553
|
-
GlueTableReference.add_member(:database_name, Shapes::ShapeRef.new(shape:
|
557
|
+
GlueTableReference.add_member(:table_name, Shapes::ShapeRef.new(shape: GlueTableName, required: true, location_name: "tableName"))
|
558
|
+
GlueTableReference.add_member(:database_name, Shapes::ShapeRef.new(shape: GlueDatabaseName, required: true, location_name: "databaseName"))
|
554
559
|
GlueTableReference.struct_class = Types::GlueTableReference
|
555
560
|
|
556
561
|
InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
557
562
|
InternalServerException.struct_class = Types::InternalServerException
|
558
563
|
|
564
|
+
JoinOperatorsList.member = Shapes::ShapeRef.new(shape: JoinOperator)
|
565
|
+
|
559
566
|
ListCollaborationsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
560
567
|
ListCollaborationsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
561
568
|
ListCollaborationsInput.add_member(:member_status, Shapes::ShapeRef.new(shape: FilterableMemberStatus, location: "querystring", location_name: "memberStatus"))
|
@@ -718,7 +725,7 @@ module Aws::CleanRooms
|
|
718
725
|
ProtectedQueryS3OutputConfiguration.add_member(:key_prefix, Shapes::ShapeRef.new(shape: KeyPrefix, location_name: "keyPrefix"))
|
719
726
|
ProtectedQueryS3OutputConfiguration.struct_class = Types::ProtectedQueryS3OutputConfiguration
|
720
727
|
|
721
|
-
ProtectedQuerySQLParameters.add_member(:query_string, Shapes::ShapeRef.new(shape: ProtectedQuerySQLParametersQueryStringString,
|
728
|
+
ProtectedQuerySQLParameters.add_member(:query_string, Shapes::ShapeRef.new(shape: ProtectedQuerySQLParametersQueryStringString, location_name: "queryString"))
|
722
729
|
ProtectedQuerySQLParameters.struct_class = Types::ProtectedQuerySQLParameters
|
723
730
|
|
724
731
|
ProtectedQueryStatistics.add_member(:total_duration_in_millis, Shapes::ShapeRef.new(shape: Long, location_name: "totalDurationInMillis"))
|
@@ -121,7 +121,7 @@ module Aws::CleanRooms
|
|
121
121
|
include Aws::Structure
|
122
122
|
end
|
123
123
|
|
124
|
-
# Enables query structure and specified queries that
|
124
|
+
# Enables query structure and specified queries that produce aggregate
|
125
125
|
# statistics.
|
126
126
|
#
|
127
127
|
# @!attribute [rw] aggregate_columns
|
@@ -136,9 +136,14 @@ module Aws::CleanRooms
|
|
136
136
|
#
|
137
137
|
# @!attribute [rw] join_required
|
138
138
|
# Control that requires member who runs query to do a join with their
|
139
|
-
# configured table and/or other configured table in query
|
139
|
+
# configured table and/or other configured table in query.
|
140
140
|
# @return [String]
|
141
141
|
#
|
142
|
+
# @!attribute [rw] allowed_join_operators
|
143
|
+
# Which logical operators (if any) are to be used in an INNER JOIN
|
144
|
+
# match condition. Default is `AND`.
|
145
|
+
# @return [Array<String>]
|
146
|
+
#
|
142
147
|
# @!attribute [rw] dimension_columns
|
143
148
|
# The columns that query runners are allowed to select, group by, or
|
144
149
|
# filter by.
|
@@ -161,6 +166,7 @@ module Aws::CleanRooms
|
|
161
166
|
:aggregate_columns,
|
162
167
|
:join_columns,
|
163
168
|
:join_required,
|
169
|
+
:allowed_join_operators,
|
164
170
|
:dimension_columns,
|
165
171
|
:scalar_functions,
|
166
172
|
:output_constraints)
|
@@ -172,7 +178,12 @@ module Aws::CleanRooms
|
|
172
178
|
#
|
173
179
|
# @!attribute [rw] join_columns
|
174
180
|
# Columns that can be used to join a configured table with the table
|
175
|
-
# of the member who can query and
|
181
|
+
# of the member who can query and other members' configured tables.
|
182
|
+
# @return [Array<String>]
|
183
|
+
#
|
184
|
+
# @!attribute [rw] allowed_join_operators
|
185
|
+
# Which logical operators (if any) are to be used in an INNER JOIN
|
186
|
+
# match condition. Default is `AND`.
|
176
187
|
# @return [Array<String>]
|
177
188
|
#
|
178
189
|
# @!attribute [rw] list_columns
|
@@ -183,6 +194,7 @@ module Aws::CleanRooms
|
|
183
194
|
#
|
184
195
|
class AnalysisRuleList < Struct.new(
|
185
196
|
:join_columns,
|
197
|
+
:allowed_join_operators,
|
186
198
|
:list_columns)
|
187
199
|
SENSITIVE = []
|
188
200
|
include Aws::Structure
|
@@ -324,7 +336,7 @@ module Aws::CleanRooms
|
|
324
336
|
#
|
325
337
|
# @!attribute [rw] creator_account_id
|
326
338
|
# The identifier used to reference members of the collaboration.
|
327
|
-
# Currently only supports
|
339
|
+
# Currently only supports Amazon Web Services account ID.
|
328
340
|
# @return [String]
|
329
341
|
#
|
330
342
|
# @!attribute [rw] creator_display_name
|
@@ -397,7 +409,7 @@ module Aws::CleanRooms
|
|
397
409
|
#
|
398
410
|
# @!attribute [rw] creator_account_id
|
399
411
|
# The identifier used to reference members of the collaboration.
|
400
|
-
# Currently only supports
|
412
|
+
# Currently only supports Amazon Web Services account ID.
|
401
413
|
# @return [String]
|
402
414
|
#
|
403
415
|
# @!attribute [rw] creator_display_name
|
@@ -441,8 +453,8 @@ module Aws::CleanRooms
|
|
441
453
|
include Aws::Structure
|
442
454
|
end
|
443
455
|
|
444
|
-
# A column within a schema relation, derived from the underlying
|
445
|
-
#
|
456
|
+
# A column within a schema relation, derived from the underlying Glue
|
457
|
+
# table.
|
446
458
|
#
|
447
459
|
# @!attribute [rw] name
|
448
460
|
# The name of the column.
|
@@ -480,7 +492,7 @@ module Aws::CleanRooms
|
|
480
492
|
# @return [String]
|
481
493
|
#
|
482
494
|
# @!attribute [rw] table_reference
|
483
|
-
# The
|
495
|
+
# The Glue table that this configured table represents.
|
484
496
|
# @return [Types::TableReference]
|
485
497
|
#
|
486
498
|
# @!attribute [rw] create_time
|
@@ -503,8 +515,8 @@ module Aws::CleanRooms
|
|
503
515
|
# @return [String]
|
504
516
|
#
|
505
517
|
# @!attribute [rw] allowed_columns
|
506
|
-
# The columns within the underlying
|
507
|
-
#
|
518
|
+
# The columns within the underlying Glue table that can be utilized
|
519
|
+
# within collaborations.
|
508
520
|
# @return [Array<String>]
|
509
521
|
#
|
510
522
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfiguredTable AWS API Documentation
|
@@ -989,7 +1001,7 @@ module Aws::CleanRooms
|
|
989
1001
|
# @return [String]
|
990
1002
|
#
|
991
1003
|
# @!attribute [rw] table_reference
|
992
|
-
# A reference to the
|
1004
|
+
# A reference to the Glue table being configured.
|
993
1005
|
# @return [Types::TableReference]
|
994
1006
|
#
|
995
1007
|
# @!attribute [rw] allowed_columns
|
@@ -1458,14 +1470,14 @@ module Aws::CleanRooms
|
|
1458
1470
|
include Aws::Structure
|
1459
1471
|
end
|
1460
1472
|
|
1461
|
-
# A reference to a table within an
|
1473
|
+
# A reference to a table within an Glue data catalog.
|
1462
1474
|
#
|
1463
1475
|
# @!attribute [rw] table_name
|
1464
|
-
# The name of the
|
1476
|
+
# The name of the Glue table.
|
1465
1477
|
# @return [String]
|
1466
1478
|
#
|
1467
1479
|
# @!attribute [rw] database_name
|
1468
|
-
# The name of the database the
|
1480
|
+
# The name of the database the Glue table belongs to.
|
1469
1481
|
# @return [String]
|
1470
1482
|
#
|
1471
1483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GlueTableReference AWS API Documentation
|
@@ -1818,7 +1830,7 @@ module Aws::CleanRooms
|
|
1818
1830
|
#
|
1819
1831
|
# @!attribute [rw] account_id
|
1820
1832
|
# The identifier used to reference members of the collaboration.
|
1821
|
-
# Currently only supports
|
1833
|
+
# Currently only supports Amazon Web Services account ID.
|
1822
1834
|
# @return [String]
|
1823
1835
|
#
|
1824
1836
|
# @!attribute [rw] member_abilities
|
@@ -1843,7 +1855,7 @@ module Aws::CleanRooms
|
|
1843
1855
|
#
|
1844
1856
|
# @!attribute [rw] account_id
|
1845
1857
|
# The identifier used to reference members of the collaboration.
|
1846
|
-
# Currently only supports
|
1858
|
+
# Currently only supports Amazon Web Services account ID.
|
1847
1859
|
# @return [String]
|
1848
1860
|
#
|
1849
1861
|
# @!attribute [rw] status
|
@@ -1910,7 +1922,7 @@ module Aws::CleanRooms
|
|
1910
1922
|
#
|
1911
1923
|
# @!attribute [rw] collaboration_creator_account_id
|
1912
1924
|
# The identifier used to reference members of the collaboration.
|
1913
|
-
# Currently only supports
|
1925
|
+
# Currently only supports Amazon Web Services account ID.
|
1914
1926
|
# @return [String]
|
1915
1927
|
#
|
1916
1928
|
# @!attribute [rw] collaboration_creator_display_name
|
@@ -1981,8 +1993,9 @@ module Aws::CleanRooms
|
|
1981
1993
|
# @return [String]
|
1982
1994
|
#
|
1983
1995
|
# @!attribute [rw] collaboration_creator_account_id
|
1984
|
-
# The identifier of the
|
1985
|
-
# Currently only supports
|
1996
|
+
# The identifier of the Amazon Web Services principal that created the
|
1997
|
+
# collaboration. Currently only supports Amazon Web Services account
|
1998
|
+
# ID.
|
1986
1999
|
# @return [String]
|
1987
2000
|
#
|
1988
2001
|
# @!attribute [rw] collaboration_creator_display_name
|
@@ -2028,7 +2041,7 @@ module Aws::CleanRooms
|
|
2028
2041
|
include Aws::Structure
|
2029
2042
|
end
|
2030
2043
|
|
2031
|
-
# The parameters for an
|
2044
|
+
# The parameters for an Clean Rooms protected query.
|
2032
2045
|
#
|
2033
2046
|
# @!attribute [rw] id
|
2034
2047
|
# The identifier for a protected query instance.
|
@@ -2329,7 +2342,8 @@ module Aws::CleanRooms
|
|
2329
2342
|
# @return [String]
|
2330
2343
|
#
|
2331
2344
|
# @!attribute [rw] creator_account_id
|
2332
|
-
# The unique account ID for the
|
2345
|
+
# The unique account ID for the Amazon Web Services account that owns
|
2346
|
+
# the schema.
|
2333
2347
|
# @return [String]
|
2334
2348
|
#
|
2335
2349
|
# @!attribute [rw] name
|
@@ -2392,7 +2406,8 @@ module Aws::CleanRooms
|
|
2392
2406
|
# @return [String]
|
2393
2407
|
#
|
2394
2408
|
# @!attribute [rw] creator_account_id
|
2395
|
-
# The unique account ID for the
|
2409
|
+
# The unique account ID for the Amazon Web Services account that owns
|
2410
|
+
# the schema.
|
2396
2411
|
# @return [String]
|
2397
2412
|
#
|
2398
2413
|
# @!attribute [rw] create_time
|
@@ -2501,15 +2516,15 @@ module Aws::CleanRooms
|
|
2501
2516
|
end
|
2502
2517
|
|
2503
2518
|
# A pointer to the dataset that underlies this table. Currently, this
|
2504
|
-
# can only be an
|
2519
|
+
# can only be an Glue table.
|
2505
2520
|
#
|
2506
2521
|
# @note TableReference is a union - when making an API calls you must set exactly one of the members.
|
2507
2522
|
#
|
2508
2523
|
# @note TableReference is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TableReference corresponding to the set member.
|
2509
2524
|
#
|
2510
2525
|
# @!attribute [rw] glue
|
2511
|
-
# If present, a reference to the
|
2512
|
-
#
|
2526
|
+
# If present, a reference to the Glue table referred to by this table
|
2527
|
+
# reference.
|
2513
2528
|
# @return [Types::GlueTableReference]
|
2514
2529
|
#
|
2515
2530
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/TableReference AWS API Documentation
|
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.6.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-06-
|
11
|
+
date: 2023-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|