aws-sdk-cleanrooms 1.47.0 → 1.48.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3ba7640ab57631d0ef4792b28f27c478225b44aaeb79e1ab1428b39cb503076c
4
- data.tar.gz: 25f3a2db39fd55f8993de37eaa14694e2492a9870af4262e72c3b1e8cea15ce8
3
+ metadata.gz: 4304fd5d82fa8e5aeeaa97be3af752adf765d6eb1ee0ce1c86fc86ee005ade59
4
+ data.tar.gz: 1ead29a0764d2636fbeb09d22f5bc3be78d32c6776ce603d0df690f9b565580c
5
5
  SHA512:
6
- metadata.gz: d2cf1b724bcb5e69320f06eaf7b24919277b76819abf27e62378927b57181c038ab9bd3b28a49ef89f2bf4a45f00ea432d3f796c2c5ca1cfc5a8253bf07a32f6
7
- data.tar.gz: 214b35fc11eabffe5e0f0cda7b294e834ef42739ed84d93d7d5a69b92528866b907994d35e92a689df7849cafade55478912bc8a59ae3c07198d9d8ed6bd53d1
6
+ metadata.gz: 8170ec38242909b0e327e615cc24bbe5fbd3611e760a2de87b83e0b3e4070bfd69f3ea44005628dec30660dfd3a0f2faa7edb79f5bb50d9a61bc29b90725317e
7
+ data.tar.gz: 0f18ac14a1dfea8b374a60d795b989e7f30f315c270d45def40633345e43c83a60a106af3bd6a6d610202de873886c7eb0300c5b0d2856c3685a6618ab2ee694
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.48.0 (2025-07-29)
5
+ ------------------
6
+
7
+ * Feature - This feature provides the ability to update the table reference and allowed columns on an existing configured table.
8
+
4
9
  1.47.0 (2025-07-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.48.0
@@ -782,8 +782,7 @@ module Aws::CleanRooms
782
782
  # The format of the analysis template.
783
783
  #
784
784
  # @option params [required, Types::AnalysisSource] :source
785
- # The information in the analysis template. Currently supports `text`,
786
- # the query text for the analysis template.
785
+ # The information in the analysis template.
787
786
  #
788
787
  # @option params [Hash<String,String>] :tags
789
788
  # An optional label that you can assign to a resource when you create
@@ -945,6 +944,11 @@ module Aws::CleanRooms
945
944
  # @option params [String] :analytics_engine
946
945
  # The analytics engine.
947
946
  #
947
+ # <note markdown="1"> After July 16, 2025, the `CLEAN_ROOMS_SQL` parameter will no longer be
948
+ # available.
949
+ #
950
+ # </note>
951
+ #
948
952
  # @return [Types::CreateCollaborationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
949
953
  #
950
954
  # * {Types::CreateCollaborationOutput#collaboration #collaboration} => Types::Collaboration
@@ -1794,11 +1798,10 @@ module Aws::CleanRooms
1794
1798
  req.send_request(options)
1795
1799
  end
1796
1800
 
1797
- # Creates a privacy budget template for a specified membership. Each
1798
- # membership can have only one privacy budget template, but it can be
1799
- # deleted and recreated. If you need to change the privacy budget
1800
- # template for a membership, use the UpdatePrivacyBudgetTemplate
1801
- # operation.
1801
+ # Creates a privacy budget template for a specified collaboration. Each
1802
+ # collaboration can have only one privacy budget template. If you need
1803
+ # to change the privacy budget template, use the
1804
+ # UpdatePrivacyBudgetTemplate operation.
1802
1805
  #
1803
1806
  # @option params [required, String] :membership_identifier
1804
1807
  # A unique identifier for one of your memberships for a collaboration.
@@ -2168,7 +2171,7 @@ module Aws::CleanRooms
2168
2171
  req.send_request(options)
2169
2172
  end
2170
2173
 
2171
- # Deletes a privacy budget template for a specified membership.
2174
+ # Deletes a privacy budget template for a specified collaboration.
2172
2175
  #
2173
2176
  # @option params [required, String] :membership_identifier
2174
2177
  # A unique identifier for one of your memberships for a collaboration.
@@ -4786,6 +4789,11 @@ module Aws::CleanRooms
4786
4789
  # @option params [String] :analytics_engine
4787
4790
  # The analytics engine.
4788
4791
  #
4792
+ # <note markdown="1"> After July 16, 2025, the `CLEAN_ROOMS_SQL` parameter will no longer be
4793
+ # available.
4794
+ #
4795
+ # </note>
4796
+ #
4789
4797
  # @return [Types::UpdateCollaborationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4790
4798
  #
4791
4799
  # * {Types::UpdateCollaborationOutput#collaboration #collaboration} => Types::Collaboration
@@ -4895,6 +4903,13 @@ module Aws::CleanRooms
4895
4903
  # @option params [String] :description
4896
4904
  # A new description for the configured table.
4897
4905
  #
4906
+ # @option params [Types::TableReference] :table_reference
4907
+ # A pointer to the dataset that underlies this table.
4908
+ #
4909
+ # @option params [Array<String>] :allowed_columns
4910
+ # The columns of the underlying table that can be used by collaborations
4911
+ # or analysis rules.
4912
+ #
4898
4913
  # @option params [String] :analysis_method
4899
4914
  # The analysis method for the configured table.
4900
4915
  #
@@ -4918,6 +4933,34 @@ module Aws::CleanRooms
4918
4933
  # configured_table_identifier: "ConfiguredTableIdentifier", # required
4919
4934
  # name: "DisplayName",
4920
4935
  # description: "TableDescription",
4936
+ # table_reference: {
4937
+ # glue: {
4938
+ # table_name: "GlueTableName", # required
4939
+ # database_name: "GlueDatabaseName", # required
4940
+ # },
4941
+ # snowflake: {
4942
+ # secret_arn: "SecretsManagerArn", # required
4943
+ # account_identifier: "SnowflakeAccountIdentifier", # required
4944
+ # database_name: "SnowflakeDatabaseName", # required
4945
+ # table_name: "SnowflakeTableName", # required
4946
+ # schema_name: "SnowflakeSchemaName", # required
4947
+ # table_schema: { # required
4948
+ # v1: [
4949
+ # {
4950
+ # column_name: "ColumnName", # required
4951
+ # column_type: "ColumnTypeString", # required
4952
+ # },
4953
+ # ],
4954
+ # },
4955
+ # },
4956
+ # athena: {
4957
+ # work_group: "AthenaWorkGroup", # required
4958
+ # output_location: "AthenaOutputLocation",
4959
+ # database_name: "AthenaDatabaseName", # required
4960
+ # table_name: "AthenaTableName", # required
4961
+ # },
4962
+ # },
4963
+ # allowed_columns: ["ColumnName"],
4921
4964
  # analysis_method: "DIRECT_QUERY", # accepts DIRECT_QUERY, DIRECT_JOB, MULTIPLE
4922
4965
  # selected_analysis_methods: ["DIRECT_QUERY"], # accepts DIRECT_QUERY, DIRECT_JOB
4923
4966
  # })
@@ -5428,7 +5471,7 @@ module Aws::CleanRooms
5428
5471
  req.send_request(options)
5429
5472
  end
5430
5473
 
5431
- # Updates the privacy budget template for the specified membership.
5474
+ # Updates the privacy budget template for the specified collaboration.
5432
5475
  #
5433
5476
  # @option params [required, String] :membership_identifier
5434
5477
  # A unique identifier for one of your memberships for a collaboration.
@@ -5632,7 +5675,7 @@ module Aws::CleanRooms
5632
5675
  tracer: tracer
5633
5676
  )
5634
5677
  context[:gem_name] = 'aws-sdk-cleanrooms'
5635
- context[:gem_version] = '1.47.0'
5678
+ context[:gem_version] = '1.48.0'
5636
5679
  Seahorse::Client::Request.new(handlers, context)
5637
5680
  end
5638
5681
 
@@ -2515,6 +2515,8 @@ module Aws::CleanRooms
2515
2515
  UpdateConfiguredTableInput.add_member(:configured_table_identifier, Shapes::ShapeRef.new(shape: ConfiguredTableIdentifier, required: true, location: "uri", location_name: "configuredTableIdentifier"))
2516
2516
  UpdateConfiguredTableInput.add_member(:name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "name"))
2517
2517
  UpdateConfiguredTableInput.add_member(:description, Shapes::ShapeRef.new(shape: TableDescription, location_name: "description"))
2518
+ UpdateConfiguredTableInput.add_member(:table_reference, Shapes::ShapeRef.new(shape: TableReference, location_name: "tableReference"))
2519
+ UpdateConfiguredTableInput.add_member(:allowed_columns, Shapes::ShapeRef.new(shape: AllowedColumnList, location_name: "allowedColumns"))
2518
2520
  UpdateConfiguredTableInput.add_member(:analysis_method, Shapes::ShapeRef.new(shape: AnalysisMethod, location_name: "analysisMethod"))
2519
2521
  UpdateConfiguredTableInput.add_member(:selected_analysis_methods, Shapes::ShapeRef.new(shape: SelectedAnalysisMethods, location_name: "selectedAnalysisMethods"))
2520
2522
  UpdateConfiguredTableInput.struct_class = Types::UpdateConfiguredTableInput
@@ -3706,6 +3708,7 @@ module Aws::CleanRooms
3706
3708
  o.input = Shapes::ShapeRef.new(shape: UpdateConfiguredTableInput)
3707
3709
  o.output = Shapes::ShapeRef.new(shape: UpdateConfiguredTableOutput)
3708
3710
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3711
+ o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
3709
3712
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3710
3713
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3711
3714
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -1040,6 +1040,11 @@ module Aws::CleanRooms
1040
1040
  #
1041
1041
  # @!attribute [rw] analytics_engine
1042
1042
  # The analytics engine for the collaboration.
1043
+ #
1044
+ # <note markdown="1"> After July 16, 2025, the `CLEAN_ROOMS_SQL` parameter will no longer
1045
+ # be available.
1046
+ #
1047
+ # </note>
1043
1048
  # @return [String]
1044
1049
  #
1045
1050
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/Collaboration AWS API Documentation
@@ -1726,6 +1731,11 @@ module Aws::CleanRooms
1726
1731
  #
1727
1732
  # @!attribute [rw] analytics_engine
1728
1733
  # The analytics engine.
1734
+ #
1735
+ # <note markdown="1"> After July 16, 2025, the `CLEAN_ROOMS_SQL` parameter will no longer
1736
+ # be available.
1737
+ #
1738
+ # </note>
1729
1739
  # @return [String]
1730
1740
  #
1731
1741
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationSummary AWS API Documentation
@@ -2766,8 +2776,7 @@ module Aws::CleanRooms
2766
2776
  # @return [String]
2767
2777
  #
2768
2778
  # @!attribute [rw] source
2769
- # The information in the analysis template. Currently supports `text`,
2770
- # the query text for the analysis template.
2779
+ # The information in the analysis template.
2771
2780
  # @return [Types::AnalysisSource]
2772
2781
  #
2773
2782
  # @!attribute [rw] tags
@@ -2878,6 +2887,11 @@ module Aws::CleanRooms
2878
2887
  #
2879
2888
  # @!attribute [rw] analytics_engine
2880
2889
  # The analytics engine.
2890
+ #
2891
+ # <note markdown="1"> After July 16, 2025, the `CLEAN_ROOMS_SQL` parameter will no longer
2892
+ # be available.
2893
+ #
2894
+ # </note>
2881
2895
  # @return [String]
2882
2896
  #
2883
2897
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationInput AWS API Documentation
@@ -8610,6 +8624,11 @@ module Aws::CleanRooms
8610
8624
  #
8611
8625
  # @!attribute [rw] analytics_engine
8612
8626
  # The analytics engine.
8627
+ #
8628
+ # <note markdown="1"> After July 16, 2025, the `CLEAN_ROOMS_SQL` parameter will no longer
8629
+ # be available.
8630
+ #
8631
+ # </note>
8613
8632
  # @return [String]
8614
8633
  #
8615
8634
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaborationInput AWS API Documentation
@@ -8812,6 +8831,15 @@ module Aws::CleanRooms
8812
8831
  # A new description for the configured table.
8813
8832
  # @return [String]
8814
8833
  #
8834
+ # @!attribute [rw] table_reference
8835
+ # A pointer to the dataset that underlies this table.
8836
+ # @return [Types::TableReference]
8837
+ #
8838
+ # @!attribute [rw] allowed_columns
8839
+ # The columns of the underlying table that can be used by
8840
+ # collaborations or analysis rules.
8841
+ # @return [Array<String>]
8842
+ #
8815
8843
  # @!attribute [rw] analysis_method
8816
8844
  # The analysis method for the configured table.
8817
8845
  #
@@ -8833,6 +8861,8 @@ module Aws::CleanRooms
8833
8861
  :configured_table_identifier,
8834
8862
  :name,
8835
8863
  :description,
8864
+ :table_reference,
8865
+ :allowed_columns,
8836
8866
  :analysis_method,
8837
8867
  :selected_analysis_methods)
8838
8868
  SENSITIVE = []
@@ -55,7 +55,7 @@ module Aws::CleanRooms
55
55
  autoload :EndpointProvider, 'aws-sdk-cleanrooms/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-cleanrooms/endpoints'
57
57
 
58
- GEM_VERSION = '1.47.0'
58
+ GEM_VERSION = '1.48.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1244,6 +1244,34 @@ module Aws
1244
1244
  configured_table_identifier: ::String,
1245
1245
  ?name: ::String,
1246
1246
  ?description: ::String,
1247
+ ?table_reference: {
1248
+ glue: {
1249
+ table_name: ::String,
1250
+ database_name: ::String
1251
+ }?,
1252
+ snowflake: {
1253
+ secret_arn: ::String,
1254
+ account_identifier: ::String,
1255
+ database_name: ::String,
1256
+ table_name: ::String,
1257
+ schema_name: ::String,
1258
+ table_schema: {
1259
+ v1: Array[
1260
+ {
1261
+ column_name: ::String,
1262
+ column_type: ::String
1263
+ },
1264
+ ]?
1265
+ }
1266
+ }?,
1267
+ athena: {
1268
+ work_group: ::String,
1269
+ output_location: ::String?,
1270
+ database_name: ::String,
1271
+ table_name: ::String
1272
+ }?
1273
+ },
1274
+ ?allowed_columns: Array[::String],
1247
1275
  ?analysis_method: ("DIRECT_QUERY" | "DIRECT_JOB" | "MULTIPLE"),
1248
1276
  ?selected_analysis_methods: Array[("DIRECT_QUERY" | "DIRECT_JOB")]
1249
1277
  ) -> _UpdateConfiguredTableResponseSuccess
data/sig/types.rbs CHANGED
@@ -2546,6 +2546,8 @@ module Aws::CleanRooms
2546
2546
  attr_accessor configured_table_identifier: ::String
2547
2547
  attr_accessor name: ::String
2548
2548
  attr_accessor description: ::String
2549
+ attr_accessor table_reference: Types::TableReference
2550
+ attr_accessor allowed_columns: ::Array[::String]
2549
2551
  attr_accessor analysis_method: ("DIRECT_QUERY" | "DIRECT_JOB" | "MULTIPLE")
2550
2552
  attr_accessor selected_analysis_methods: ::Array[("DIRECT_QUERY" | "DIRECT_JOB")]
2551
2553
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cleanrooms
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.47.0
4
+ version: 1.48.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services