aws-sdk-cleanrooms 1.5.0 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e3278bc8aef7df019cd1f2253b4b4165465a7e8527f961b210d373d2af3851b9
4
- data.tar.gz: 6567061ee280b1aaa73e14ae6534d348a1306e0a477ca794a844a51068dd9d56
3
+ metadata.gz: 8c33dbad7c4bf1c5093418ac2065f85ef5c1d069cd04581756707e71f7e98a6b
4
+ data.tar.gz: 0f83a90022a4b2689674313533be81ea2caca0210fa556e60c61e3d62952fcad
5
5
  SHA512:
6
- metadata.gz: df987b6481de4856418f0c796f7308cf444e598bc40be0654d367c272d7a4ec0a7e08c87c7f7a38b68e211a64c0578adc6000ce861355bdb9efb9cf21bce8125
7
- data.tar.gz: fe77ad72335fb135123a97afee4375e039089e40489d5859b6f1973eedfaf973cb05897de054af0c9a394a73e7c251eeebd85bfc1363460747d14b8a291f2d62
6
+ metadata.gz: 8e7102da82769e3b9b5f9a7a056688675abf3cf3d460ca153ebb59ccb03bc01786be0d1f508041ab56d67e7e9746bbed0c25820a648e4cab821f623c753171ee
7
+ data.tar.gz: 49289111300724ea4d72e2b924652a37403bdc4d3cacb5faf88d7bbb6b9319ace04aa2e5a3ae05cb8d00a5c6a50389cd5f535beb9b996a9b018b93e1c6a1cc10
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2023-07-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.6.0 (2023-06-29)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.5.0 (2023-06-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.5.0
1
+ 1.7.0
@@ -28,6 +28,7 @@ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
30
  require 'aws-sdk-core/plugins/checksum_algorithm.rb'
31
+ require 'aws-sdk-core/plugins/request_compression.rb'
31
32
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
33
  require 'aws-sdk-core/plugins/recursion_detection.rb'
33
34
  require 'aws-sdk-core/plugins/sign.rb'
@@ -77,6 +78,7 @@ module Aws::CleanRooms
77
78
  add_plugin(Aws::Plugins::TransferEncoding)
78
79
  add_plugin(Aws::Plugins::HttpChecksum)
79
80
  add_plugin(Aws::Plugins::ChecksumAlgorithm)
81
+ add_plugin(Aws::Plugins::RequestCompression)
80
82
  add_plugin(Aws::Plugins::DefaultsMode)
81
83
  add_plugin(Aws::Plugins::RecursionDetection)
82
84
  add_plugin(Aws::Plugins::Sign)
@@ -190,6 +192,10 @@ module Aws::CleanRooms
190
192
  # Set to true to disable SDK automatically adding host prefix
191
193
  # to default service endpoint when available.
192
194
  #
195
+ # @option options [Boolean] :disable_request_compression (false)
196
+ # When set to 'true' the request body will not be compressed
197
+ # for supported operations.
198
+ #
193
199
  # @option options [String] :endpoint
194
200
  # The client endpoint is normally constructed from the `:region`
195
201
  # option. You should only configure an `:endpoint` when connecting
@@ -230,6 +236,11 @@ module Aws::CleanRooms
230
236
  # Used when loading credentials from the shared credentials file
231
237
  # at HOME/.aws/credentials. When not specified, 'default' is used.
232
238
  #
239
+ # @option options [Integer] :request_min_compression_size_bytes (10240)
240
+ # The minimum size in bytes that triggers compression for request
241
+ # bodies. The value must be non-negative integer value between 0
242
+ # and 10485780 bytes inclusive.
243
+ #
233
244
  # @option options [Proc] :retry_backoff
234
245
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
235
246
  # This option is only used in the `legacy` retry mode.
@@ -528,7 +539,7 @@ module Aws::CleanRooms
528
539
  # A description for the configured table.
529
540
  #
530
541
  # @option params [required, Types::TableReference] :table_reference
531
- # A reference to the AWS Glue table being configured.
542
+ # A reference to the Glue table being configured.
532
543
  #
533
544
  # @option params [required, Array<String>] :allowed_columns
534
545
  # The columns of the underlying table that can be used by collaborations
@@ -555,8 +566,8 @@ module Aws::CleanRooms
555
566
  # description: "TableDescription",
556
567
  # table_reference: { # required
557
568
  # glue: {
558
- # table_name: "GlueResourceName", # required
559
- # database_name: "GlueResourceName", # required
569
+ # table_name: "GlueTableName", # required
570
+ # database_name: "GlueDatabaseName", # required
560
571
  # },
561
572
  # },
562
573
  # allowed_columns: ["ColumnName"], # required
@@ -617,6 +628,7 @@ module Aws::CleanRooms
617
628
  # v1: {
618
629
  # list: {
619
630
  # join_columns: ["AnalysisRuleColumnName"], # required
631
+ # allowed_join_operators: ["OR"], # accepts OR, AND
620
632
  # list_columns: ["AnalysisRuleColumnName"], # required
621
633
  # },
622
634
  # aggregation: {
@@ -628,6 +640,7 @@ module Aws::CleanRooms
628
640
  # ],
629
641
  # join_columns: ["AnalysisRuleColumnName"], # required
630
642
  # join_required: "QUERY_RUNNER", # accepts QUERY_RUNNER
643
+ # allowed_join_operators: ["OR"], # accepts OR, AND
631
644
  # dimension_columns: ["AnalysisRuleColumnName"], # required
632
645
  # scalar_functions: ["TRUNC"], # required, accepts TRUNC, ABS, CEILING, FLOOR, LN, LOG, ROUND, SQRT, CAST, LOWER, RTRIM, UPPER, COALESCE
633
646
  # output_constraints: [ # required
@@ -648,6 +661,8 @@ module Aws::CleanRooms
648
661
  # resp.analysis_rule.configured_table_arn #=> String
649
662
  # resp.analysis_rule.policy.v1.list.join_columns #=> Array
650
663
  # resp.analysis_rule.policy.v1.list.join_columns[0] #=> String
664
+ # resp.analysis_rule.policy.v1.list.allowed_join_operators #=> Array
665
+ # resp.analysis_rule.policy.v1.list.allowed_join_operators[0] #=> String, one of "OR", "AND"
651
666
  # resp.analysis_rule.policy.v1.list.list_columns #=> Array
652
667
  # resp.analysis_rule.policy.v1.list.list_columns[0] #=> String
653
668
  # resp.analysis_rule.policy.v1.aggregation.aggregate_columns #=> Array
@@ -657,6 +672,8 @@ module Aws::CleanRooms
657
672
  # resp.analysis_rule.policy.v1.aggregation.join_columns #=> Array
658
673
  # resp.analysis_rule.policy.v1.aggregation.join_columns[0] #=> String
659
674
  # resp.analysis_rule.policy.v1.aggregation.join_required #=> String, one of "QUERY_RUNNER"
675
+ # resp.analysis_rule.policy.v1.aggregation.allowed_join_operators #=> Array
676
+ # resp.analysis_rule.policy.v1.aggregation.allowed_join_operators[0] #=> String, one of "OR", "AND"
660
677
  # resp.analysis_rule.policy.v1.aggregation.dimension_columns #=> Array
661
678
  # resp.analysis_rule.policy.v1.aggregation.dimension_columns[0] #=> String
662
679
  # resp.analysis_rule.policy.v1.aggregation.scalar_functions #=> Array
@@ -1067,6 +1084,8 @@ module Aws::CleanRooms
1067
1084
  # resp.analysis_rule.configured_table_arn #=> String
1068
1085
  # resp.analysis_rule.policy.v1.list.join_columns #=> Array
1069
1086
  # resp.analysis_rule.policy.v1.list.join_columns[0] #=> String
1087
+ # resp.analysis_rule.policy.v1.list.allowed_join_operators #=> Array
1088
+ # resp.analysis_rule.policy.v1.list.allowed_join_operators[0] #=> String, one of "OR", "AND"
1070
1089
  # resp.analysis_rule.policy.v1.list.list_columns #=> Array
1071
1090
  # resp.analysis_rule.policy.v1.list.list_columns[0] #=> String
1072
1091
  # resp.analysis_rule.policy.v1.aggregation.aggregate_columns #=> Array
@@ -1076,6 +1095,8 @@ module Aws::CleanRooms
1076
1095
  # resp.analysis_rule.policy.v1.aggregation.join_columns #=> Array
1077
1096
  # resp.analysis_rule.policy.v1.aggregation.join_columns[0] #=> String
1078
1097
  # resp.analysis_rule.policy.v1.aggregation.join_required #=> String, one of "QUERY_RUNNER"
1098
+ # resp.analysis_rule.policy.v1.aggregation.allowed_join_operators #=> Array
1099
+ # resp.analysis_rule.policy.v1.aggregation.allowed_join_operators[0] #=> String, one of "OR", "AND"
1079
1100
  # resp.analysis_rule.policy.v1.aggregation.dimension_columns #=> Array
1080
1101
  # resp.analysis_rule.policy.v1.aggregation.dimension_columns[0] #=> String
1081
1102
  # resp.analysis_rule.policy.v1.aggregation.scalar_functions #=> Array
@@ -1309,6 +1330,8 @@ module Aws::CleanRooms
1309
1330
  # resp.analysis_rule.update_time #=> Time
1310
1331
  # resp.analysis_rule.policy.v1.list.join_columns #=> Array
1311
1332
  # resp.analysis_rule.policy.v1.list.join_columns[0] #=> String
1333
+ # resp.analysis_rule.policy.v1.list.allowed_join_operators #=> Array
1334
+ # resp.analysis_rule.policy.v1.list.allowed_join_operators[0] #=> String, one of "OR", "AND"
1312
1335
  # resp.analysis_rule.policy.v1.list.list_columns #=> Array
1313
1336
  # resp.analysis_rule.policy.v1.list.list_columns[0] #=> String
1314
1337
  # resp.analysis_rule.policy.v1.aggregation.aggregate_columns #=> Array
@@ -1318,6 +1341,8 @@ module Aws::CleanRooms
1318
1341
  # resp.analysis_rule.policy.v1.aggregation.join_columns #=> Array
1319
1342
  # resp.analysis_rule.policy.v1.aggregation.join_columns[0] #=> String
1320
1343
  # resp.analysis_rule.policy.v1.aggregation.join_required #=> String, one of "QUERY_RUNNER"
1344
+ # resp.analysis_rule.policy.v1.aggregation.allowed_join_operators #=> Array
1345
+ # resp.analysis_rule.policy.v1.aggregation.allowed_join_operators[0] #=> String, one of "OR", "AND"
1321
1346
  # resp.analysis_rule.policy.v1.aggregation.dimension_columns #=> Array
1322
1347
  # resp.analysis_rule.policy.v1.aggregation.dimension_columns[0] #=> String
1323
1348
  # resp.analysis_rule.policy.v1.aggregation.scalar_functions #=> Array
@@ -1727,7 +1752,7 @@ module Aws::CleanRooms
1727
1752
  req.send_request(options)
1728
1753
  end
1729
1754
 
1730
- # Creates a protected query that is started by AWS Clean Rooms.
1755
+ # Creates a protected query that is started by Clean Rooms .
1731
1756
  #
1732
1757
  # @option params [required, String] :type
1733
1758
  # The type of the protected query to be started.
@@ -1752,7 +1777,7 @@ module Aws::CleanRooms
1752
1777
  # type: "SQL", # required, accepts SQL
1753
1778
  # membership_identifier: "MembershipIdentifier", # required
1754
1779
  # sql_parameters: { # required
1755
- # query_string: "ProtectedQuerySQLParametersQueryStringString", # required
1780
+ # query_string: "ProtectedQuerySQLParametersQueryStringString",
1756
1781
  # },
1757
1782
  # result_configuration: { # required
1758
1783
  # output_configuration: { # required
@@ -1975,6 +2000,7 @@ module Aws::CleanRooms
1975
2000
  # v1: {
1976
2001
  # list: {
1977
2002
  # join_columns: ["AnalysisRuleColumnName"], # required
2003
+ # allowed_join_operators: ["OR"], # accepts OR, AND
1978
2004
  # list_columns: ["AnalysisRuleColumnName"], # required
1979
2005
  # },
1980
2006
  # aggregation: {
@@ -1986,6 +2012,7 @@ module Aws::CleanRooms
1986
2012
  # ],
1987
2013
  # join_columns: ["AnalysisRuleColumnName"], # required
1988
2014
  # join_required: "QUERY_RUNNER", # accepts QUERY_RUNNER
2015
+ # allowed_join_operators: ["OR"], # accepts OR, AND
1989
2016
  # dimension_columns: ["AnalysisRuleColumnName"], # required
1990
2017
  # scalar_functions: ["TRUNC"], # required, accepts TRUNC, ABS, CEILING, FLOOR, LN, LOG, ROUND, SQRT, CAST, LOWER, RTRIM, UPPER, COALESCE
1991
2018
  # output_constraints: [ # required
@@ -2006,6 +2033,8 @@ module Aws::CleanRooms
2006
2033
  # resp.analysis_rule.configured_table_arn #=> String
2007
2034
  # resp.analysis_rule.policy.v1.list.join_columns #=> Array
2008
2035
  # resp.analysis_rule.policy.v1.list.join_columns[0] #=> String
2036
+ # resp.analysis_rule.policy.v1.list.allowed_join_operators #=> Array
2037
+ # resp.analysis_rule.policy.v1.list.allowed_join_operators[0] #=> String, one of "OR", "AND"
2009
2038
  # resp.analysis_rule.policy.v1.list.list_columns #=> Array
2010
2039
  # resp.analysis_rule.policy.v1.list.list_columns[0] #=> String
2011
2040
  # resp.analysis_rule.policy.v1.aggregation.aggregate_columns #=> Array
@@ -2015,6 +2044,8 @@ module Aws::CleanRooms
2015
2044
  # resp.analysis_rule.policy.v1.aggregation.join_columns #=> Array
2016
2045
  # resp.analysis_rule.policy.v1.aggregation.join_columns[0] #=> String
2017
2046
  # resp.analysis_rule.policy.v1.aggregation.join_required #=> String, one of "QUERY_RUNNER"
2047
+ # resp.analysis_rule.policy.v1.aggregation.allowed_join_operators #=> Array
2048
+ # resp.analysis_rule.policy.v1.aggregation.allowed_join_operators[0] #=> String, one of "OR", "AND"
2018
2049
  # resp.analysis_rule.policy.v1.aggregation.dimension_columns #=> Array
2019
2050
  # resp.analysis_rule.policy.v1.aggregation.dimension_columns[0] #=> String
2020
2051
  # resp.analysis_rule.policy.v1.aggregation.scalar_functions #=> Array
@@ -2196,7 +2227,7 @@ module Aws::CleanRooms
2196
2227
  params: params,
2197
2228
  config: config)
2198
2229
  context[:gem_name] = 'aws-sdk-cleanrooms'
2199
- context[:gem_version] = '1.5.0'
2230
+ context[:gem_version] = '1.7.0'
2200
2231
  Seahorse::Client::Request.new(handlers, context)
2201
2232
  end
2202
2233
 
@@ -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
- GlueResourceName = Shapes::StringShape.new(name: 'GlueResourceName')
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: GlueResourceName, required: true, location_name: "tableName"))
553
- GlueTableReference.add_member(:database_name, Shapes::ShapeRef.new(shape: GlueResourceName, required: true, location_name: "databaseName"))
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, required: true, location_name: "queryString"))
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 product aggregate
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 another members' configured tables.
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 AWS account ID.
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 AWS Account ID.
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 AWS
445
- # Glue table.
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 AWS Glue table that this configured table represents.
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 AWS Glue table that can be
507
- # utilized within collaborations.
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 AWS Glue table being configured.
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 AWS Glue data catalog.
1473
+ # A reference to a table within an Glue data catalog.
1462
1474
  #
1463
1475
  # @!attribute [rw] table_name
1464
- # The name of the AWS Glue table.
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 AWS Glue table belongs to.
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 AWS Account ID.
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 AWS Account ID.
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 AWS account ID.
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 AWS principal that created the collaboration.
1985
- # Currently only supports AWS account ID.
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 AWS Clean Rooms protected query.
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 AWS account that owns the schema.
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 AWS account that owns the schema.
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 AWS Glue table.
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 AWS Glue table referred to by this
2512
- # table reference.
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
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-cleanrooms/customizations'
53
53
  # @!group service
54
54
  module Aws::CleanRooms
55
55
 
56
- GEM_VERSION = '1.5.0'
56
+ GEM_VERSION = '1.7.0'
57
57
 
58
58
  end
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.5.0
4
+ version: 1.7.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-28 00:00:00.000000000 Z
11
+ date: 2023-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.176.0
22
+ version: 3.177.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.176.0
32
+ version: 3.177.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement