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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanrooms/client.rb +5 -1
- data/lib/aws-sdk-cleanrooms/client_api.rb +1 -0
- data/lib/aws-sdk-cleanrooms/types.rb +6 -1
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- 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: 94357344c5b28a4b3eacf5de5f207e71c948b30b6bd871919f55078a28d9c60f
|
4
|
+
data.tar.gz: 290b56d507bc911bb622559132d99022c36e4bcee5cfc14bc1f1a1670e5b34e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a37c665ce7c98943b189e47d1cd0c43d4c6ab9c2e9ba18a07d998abd6a3d11cf542a9aafc2e1d83bee97b3c535dbb1b1b167b9e397b3da6ba2c5ced9835af7b
|
7
|
+
data.tar.gz: c7d0392f6ecba1c4176dcfcf49fd3f4ccb3d293dfa4fd47262f253610426baae6aaa3a5b1cc8a8aad1aea779d6429a5ed27c913768399c44cfa8c4a2eaa24ab1
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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.
|
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
|
data/lib/aws-sdk-cleanrooms.rb
CHANGED
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.
|
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-
|
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
|