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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b6a9fdc0c6150707748ed5dfb8516da1f0aaad6c77346b715822342db58db5f1
4
- data.tar.gz: 511aa20524f19721beab6c17553774b3aa2a6f27235dd93b0c37c370e18bea58
3
+ metadata.gz: 647caf32a8ce2a7932f493d5ecb761ed464afe2ab856230df2f1c2e65165c4aa
4
+ data.tar.gz: feeb1c08bae1ec11815f38cecaf33c511b9efe0a84eb8742813f5f0afdaacc73
5
5
  SHA512:
6
- metadata.gz: 0fef2a9022034eb65ce5bb516788c5cabeebc978d6898c5913d5cd0ac3e507f26d138a2fa4990434659a13cea8c8cfa3f060a58d55626385b48377d698ff43a5
7
- data.tar.gz: 399b58cc7f19cca53c3ae43e518d2757323887f5c92418bba41c86c7d763bf7f6f2b9fee17a12ce4bd2701804cc3bc8db69539cf4b028a4da78cb6bf33c5495b
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.101.0
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.101.0'
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-quicksight/customizations'
52
52
  # @!group service
53
53
  module Aws::QuickSight
54
54
 
55
- GEM_VERSION = '1.101.0'
55
+ GEM_VERSION = '1.102.0'
56
56
 
57
57
  end
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.101.0
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-18 00:00:00.000000000 Z
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