aws-sdk-cleanrooms 1.41.0 → 1.42.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: c9a1809a9fa3c0a2614d659130cae199d13c29cce9c38fffca77935e30b96265
4
- data.tar.gz: 9c4734b2d03fa3bd65237f6f989f3e63ea0a46f5611c66ae61b927e966ce50ae
3
+ metadata.gz: 94357344c5b28a4b3eacf5de5f207e71c948b30b6bd871919f55078a28d9c60f
4
+ data.tar.gz: 290b56d507bc911bb622559132d99022c36e4bcee5cfc14bc1f1a1670e5b34e8
5
5
  SHA512:
6
- metadata.gz: 0e5b71ddbd9c2a08a6786132d0d8b6a0d16b3c071e94ff45bad3a35e2ca1a9d6328960c06ac7015580e9852c3b50c6d58c67e146662b10643e6b5c397159878b
7
- data.tar.gz: b95a251a2f72950c306b09e0596480d27a78447dfeb89689b594615b5f860dd228f7d7cd95e6bc56f4495bfc59f58b926bb73dc4cce5b0a2702ea7cbceed820c
6
+ metadata.gz: 2a37c665ce7c98943b189e47d1cd0c43d4c6ab9c2e9ba18a07d998abd6a3d11cf542a9aafc2e1d83bee97b3c535dbb1b1b167b9e397b3da6ba2c5ced9835af7b
7
+ data.tar.gz: c7d0392f6ecba1c4176dcfcf49fd3f4ccb3d293dfa4fd47262f253610426baae6aaa3a5b1cc8a8aad1aea779d6429a5ed27c913768399c44cfa8c4a2eaa24ab1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2025-04-01)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for updating the analytics engine of a collaboration.
8
+
4
9
  1.41.0 (2025-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.42.0
@@ -4741,6 +4741,9 @@ module Aws::CleanRooms
4741
4741
  # @option params [String] :description
4742
4742
  # A description of the collaboration.
4743
4743
  #
4744
+ # @option params [String] :analytics_engine
4745
+ # The analytics engine.
4746
+ #
4744
4747
  # @return [Types::UpdateCollaborationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4745
4748
  #
4746
4749
  # * {Types::UpdateCollaborationOutput#collaboration #collaboration} => Types::Collaboration
@@ -4751,6 +4754,7 @@ module Aws::CleanRooms
4751
4754
  # collaboration_identifier: "CollaborationIdentifier", # required
4752
4755
  # name: "CollaborationName",
4753
4756
  # description: "CollaborationDescription",
4757
+ # analytics_engine: "SPARK", # accepts SPARK, CLEAN_ROOMS_SQL
4754
4758
  # })
4755
4759
  #
4756
4760
  # @example Response structure
@@ -5577,7 +5581,7 @@ module Aws::CleanRooms
5577
5581
  tracer: tracer
5578
5582
  )
5579
5583
  context[:gem_name] = 'aws-sdk-cleanrooms'
5580
- context[:gem_version] = '1.41.0'
5584
+ context[:gem_version] = '1.42.0'
5581
5585
  Seahorse::Client::Request.new(handlers, context)
5582
5586
  end
5583
5587
 
@@ -2446,6 +2446,7 @@ module Aws::CleanRooms
2446
2446
  UpdateCollaborationInput.add_member(:collaboration_identifier, Shapes::ShapeRef.new(shape: CollaborationIdentifier, required: true, location: "uri", location_name: "collaborationIdentifier"))
2447
2447
  UpdateCollaborationInput.add_member(:name, Shapes::ShapeRef.new(shape: CollaborationName, location_name: "name"))
2448
2448
  UpdateCollaborationInput.add_member(:description, Shapes::ShapeRef.new(shape: CollaborationDescription, location_name: "description"))
2449
+ UpdateCollaborationInput.add_member(:analytics_engine, Shapes::ShapeRef.new(shape: AnalyticsEngine, location_name: "analyticsEngine"))
2449
2450
  UpdateCollaborationInput.struct_class = Types::UpdateCollaborationInput
2450
2451
 
2451
2452
  UpdateCollaborationOutput.add_member(:collaboration, Shapes::ShapeRef.new(shape: Collaboration, required: true, location_name: "collaboration"))
@@ -8503,12 +8503,17 @@ module Aws::CleanRooms
8503
8503
  # A description of the collaboration.
8504
8504
  # @return [String]
8505
8505
  #
8506
+ # @!attribute [rw] analytics_engine
8507
+ # The analytics engine.
8508
+ # @return [String]
8509
+ #
8506
8510
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaborationInput AWS API Documentation
8507
8511
  #
8508
8512
  class UpdateCollaborationInput < Struct.new(
8509
8513
  :collaboration_identifier,
8510
8514
  :name,
8511
- :description)
8515
+ :description,
8516
+ :analytics_engine)
8512
8517
  SENSITIVE = []
8513
8518
  include Aws::Structure
8514
8519
  end
@@ -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.41.0'
58
+ GEM_VERSION = '1.42.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1201,7 +1201,8 @@ module Aws
1201
1201
  def update_collaboration: (
1202
1202
  collaboration_identifier: ::String,
1203
1203
  ?name: ::String,
1204
- ?description: ::String
1204
+ ?description: ::String,
1205
+ ?analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
1205
1206
  ) -> _UpdateCollaborationResponseSuccess
1206
1207
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCollaborationResponseSuccess
1207
1208
 
data/sig/types.rbs CHANGED
@@ -2451,6 +2451,7 @@ module Aws::CleanRooms
2451
2451
  attr_accessor collaboration_identifier: ::String
2452
2452
  attr_accessor name: ::String
2453
2453
  attr_accessor description: ::String
2454
+ attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
2454
2455
  SENSITIVE: []
2455
2456
  end
2456
2457
 
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.41.0
4
+ version: 1.42.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: 2025-03-18 00:00:00.000000000 Z
11
+ date: 2025-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core