aws-sdk-quicksight 1.101.0 → 1.102.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-quicksight/client.rb +4 -1
- data/lib/aws-sdk-quicksight/client_api.rb +3 -0
- data/lib/aws-sdk-quicksight/types.rb +5 -0
- data/lib/aws-sdk-quicksight.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: 647caf32a8ce2a7932f493d5ecb761ed464afe2ab856230df2f1c2e65165c4aa
|
|
4
|
+
data.tar.gz: feeb1c08bae1ec11815f38cecaf33c511b9efe0a84eb8742813f5f0afdaacc73
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee3e53fb82e426ca07cfaa4de2ae1822abdb2f85194f316a823141f2c29b67306a429308a48661826fd6f7f64487662268f299f8f7c99f35515fd55757bb5607
|
|
7
|
+
data.tar.gz: 504b85638d1057f87511bd42d8d952e1dd9b570201049f3fa95b1f4d96fcd306601b75988e95106185c455e0aeef7805b5068d5afc36184e2c3f6e8c55378155
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.102.0 (2023-12-29)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add LinkEntityArn support for different partitions; Add UnsupportedUserEditionException in UpdateDashboardLinks API; Add support for New Reader Experience Topics
|
|
8
|
+
|
|
4
9
|
1.101.0 (2023-12-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.102.0
|
|
@@ -2561,6 +2561,7 @@ module Aws::QuickSight
|
|
|
2561
2561
|
# topic: { # required
|
|
2562
2562
|
# name: "ResourceName",
|
|
2563
2563
|
# description: "LimitedString",
|
|
2564
|
+
# user_experience_version: "LEGACY", # accepts LEGACY, NEW_READER_EXPERIENCE
|
|
2564
2565
|
# data_sets: [
|
|
2565
2566
|
# {
|
|
2566
2567
|
# dataset_arn: "Arn", # required
|
|
@@ -6561,6 +6562,7 @@ module Aws::QuickSight
|
|
|
6561
6562
|
# resp.topic_id #=> String
|
|
6562
6563
|
# resp.topic.name #=> String
|
|
6563
6564
|
# resp.topic.description #=> String
|
|
6565
|
+
# resp.topic.user_experience_version #=> String, one of "LEGACY", "NEW_READER_EXPERIENCE"
|
|
6564
6566
|
# resp.topic.data_sets #=> Array
|
|
6565
6567
|
# resp.topic.data_sets[0].dataset_arn #=> String
|
|
6566
6568
|
# resp.topic.data_sets[0].dataset_name #=> String
|
|
@@ -12956,6 +12958,7 @@ module Aws::QuickSight
|
|
|
12956
12958
|
# topic: { # required
|
|
12957
12959
|
# name: "ResourceName",
|
|
12958
12960
|
# description: "LimitedString",
|
|
12961
|
+
# user_experience_version: "LEGACY", # accepts LEGACY, NEW_READER_EXPERIENCE
|
|
12959
12962
|
# data_sets: [
|
|
12960
12963
|
# {
|
|
12961
12964
|
# dataset_arn: "Arn", # required
|
|
@@ -13531,7 +13534,7 @@ module Aws::QuickSight
|
|
|
13531
13534
|
params: params,
|
|
13532
13535
|
config: config)
|
|
13533
13536
|
context[:gem_name] = 'aws-sdk-quicksight'
|
|
13534
|
-
context[:gem_version] = '1.
|
|
13537
|
+
context[:gem_version] = '1.102.0'
|
|
13535
13538
|
Seahorse::Client::Request.new(handlers, context)
|
|
13536
13539
|
end
|
|
13537
13540
|
|
|
@@ -1622,6 +1622,7 @@ module Aws::QuickSight
|
|
|
1622
1622
|
TopicSummaries = Shapes::ListShape.new(name: 'TopicSummaries')
|
|
1623
1623
|
TopicSummary = Shapes::StructureShape.new(name: 'TopicSummary')
|
|
1624
1624
|
TopicTimeGranularity = Shapes::StringShape.new(name: 'TopicTimeGranularity')
|
|
1625
|
+
TopicUserExperienceVersion = Shapes::StringShape.new(name: 'TopicUserExperienceVersion')
|
|
1625
1626
|
TotalAggregationComputation = Shapes::StructureShape.new(name: 'TotalAggregationComputation')
|
|
1626
1627
|
TotalAggregationFunction = Shapes::StructureShape.new(name: 'TotalAggregationFunction')
|
|
1627
1628
|
TotalAggregationOption = Shapes::StructureShape.new(name: 'TotalAggregationOption')
|
|
@@ -7681,6 +7682,7 @@ module Aws::QuickSight
|
|
|
7681
7682
|
|
|
7682
7683
|
TopicDetails.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "Name"))
|
|
7683
7684
|
TopicDetails.add_member(:description, Shapes::ShapeRef.new(shape: LimitedString, location_name: "Description"))
|
|
7685
|
+
TopicDetails.add_member(:user_experience_version, Shapes::ShapeRef.new(shape: TopicUserExperienceVersion, location_name: "UserExperienceVersion"))
|
|
7684
7686
|
TopicDetails.add_member(:data_sets, Shapes::ShapeRef.new(shape: Datasets, location_name: "DataSets"))
|
|
7685
7687
|
TopicDetails.struct_class = Types::TopicDetails
|
|
7686
7688
|
|
|
@@ -10878,6 +10880,7 @@ module Aws::QuickSight
|
|
|
10878
10880
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
10879
10881
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
10880
10882
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
10883
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedUserEditionException)
|
|
10881
10884
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
|
10882
10885
|
end)
|
|
10883
10886
|
|
|
@@ -28877,6 +28877,10 @@ module Aws::QuickSight
|
|
|
28877
28877
|
# The description of the topic.
|
|
28878
28878
|
# @return [String]
|
|
28879
28879
|
#
|
|
28880
|
+
# @!attribute [rw] user_experience_version
|
|
28881
|
+
# The user experience version of a topic.
|
|
28882
|
+
# @return [String]
|
|
28883
|
+
#
|
|
28880
28884
|
# @!attribute [rw] data_sets
|
|
28881
28885
|
# The data sets that the topic is associated with.
|
|
28882
28886
|
# @return [Array<Types::DatasetMetadata>]
|
|
@@ -28886,6 +28890,7 @@ module Aws::QuickSight
|
|
|
28886
28890
|
class TopicDetails < Struct.new(
|
|
28887
28891
|
:name,
|
|
28888
28892
|
:description,
|
|
28893
|
+
:user_experience_version,
|
|
28889
28894
|
:data_sets)
|
|
28890
28895
|
SENSITIVE = []
|
|
28891
28896
|
include Aws::Structure
|
data/lib/aws-sdk-quicksight.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-quicksight
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.102.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-12-
|
|
11
|
+
date: 2023-12-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|