aws-sdk-quicksight 1.154.0 → 1.155.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: 39c34ddef7db17afea32ecde12b1a3092631514a43d69e2f44054fa3bb8450dc
4
- data.tar.gz: 4b9ad48ae5edd5c09e02afe5e746754e31cf2803a921c90ab0261379d40e244b
3
+ metadata.gz: 05ef2e79d2bd64f57c12750d6a1e875e3b698b318c8a2ae3e4b137407410a1b1
4
+ data.tar.gz: 314d8bdbcaec408c732def44b7e4bb881416aac70fed0db652206129b5b7f3ec
5
5
  SHA512:
6
- metadata.gz: 2c425e98c7c3c45e2cb4c5598e3b4e5217d01f8bf7285cdfd8fdc885a085e30bbca625ac45a5221164464eb403a0238fdbe5c7d2779a13046f96caa1ecf5b6f2
7
- data.tar.gz: b85804d4a8eacaf257b83fbb7767ec41ad6669c03f4855eaee09e4c1b081e4346b5082155032bd0cbfdb23e2b4191ab91e485f46df26635ea0c4998cb0051414
6
+ metadata.gz: 1617a6856d20a71a3eebfff07f169c782780039d5965d5ff35a40947ec08e928ad41e9ca673227367f3c8540eaa3e5bbb257776b0505696ca9584c1a6fd144ef
7
+ data.tar.gz: 1fc2e6d13ed2d54c342a4d0a003895de3db2d01da13ec32090c471bc88de6debe388a82b6306370f59ba6d3dc00bc1a06202467940ed8cbe24e57ae440abb4a6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.155.0 (2025-08-11)
5
+ ------------------
6
+
7
+ * Feature - Add RowAxisDisplayOptions and ColumnAxisDisplayOptions to HeatMapConfiguration, add Actions to PluginVisual, increase limit for CalculatedFields list
8
+
4
9
  1.154.0 (2025-08-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.154.0
1
+ 1.155.0
@@ -17792,7 +17792,7 @@ module Aws::QuickSight
17792
17792
  tracer: tracer
17793
17793
  )
17794
17794
  context[:gem_name] = 'aws-sdk-quicksight'
17795
- context[:gem_version] = '1.154.0'
17795
+ context[:gem_version] = '1.155.0'
17796
17796
  Seahorse::Client::Request.new(handlers, context)
17797
17797
  end
17798
17798
 
@@ -6156,7 +6156,9 @@ module Aws::QuickSight
6156
6156
 
6157
6157
  HeatMapConfiguration.add_member(:field_wells, Shapes::ShapeRef.new(shape: HeatMapFieldWells, location_name: "FieldWells"))
6158
6158
  HeatMapConfiguration.add_member(:sort_configuration, Shapes::ShapeRef.new(shape: HeatMapSortConfiguration, location_name: "SortConfiguration"))
6159
+ HeatMapConfiguration.add_member(:row_axis_display_options, Shapes::ShapeRef.new(shape: AxisDisplayOptions, location_name: "RowAxisDisplayOptions"))
6159
6160
  HeatMapConfiguration.add_member(:row_label_options, Shapes::ShapeRef.new(shape: ChartAxisLabelOptions, location_name: "RowLabelOptions"))
6161
+ HeatMapConfiguration.add_member(:column_axis_display_options, Shapes::ShapeRef.new(shape: AxisDisplayOptions, location_name: "ColumnAxisDisplayOptions"))
6160
6162
  HeatMapConfiguration.add_member(:column_label_options, Shapes::ShapeRef.new(shape: ChartAxisLabelOptions, location_name: "ColumnLabelOptions"))
6161
6163
  HeatMapConfiguration.add_member(:color_scale, Shapes::ShapeRef.new(shape: ColorScale, location_name: "ColorScale"))
6162
6164
  HeatMapConfiguration.add_member(:legend, Shapes::ShapeRef.new(shape: LegendOptions, location_name: "Legend"))
@@ -7623,6 +7625,7 @@ module Aws::QuickSight
7623
7625
  PluginVisual.add_member(:title, Shapes::ShapeRef.new(shape: VisualTitleLabelOptions, location_name: "Title"))
7624
7626
  PluginVisual.add_member(:subtitle, Shapes::ShapeRef.new(shape: VisualSubtitleLabelOptions, location_name: "Subtitle"))
7625
7627
  PluginVisual.add_member(:chart_configuration, Shapes::ShapeRef.new(shape: PluginVisualConfiguration, location_name: "ChartConfiguration"))
7628
+ PluginVisual.add_member(:actions, Shapes::ShapeRef.new(shape: VisualCustomActionList, location_name: "Actions"))
7626
7629
  PluginVisual.add_member(:visual_content_alt_text, Shapes::ShapeRef.new(shape: LongPlainText, location_name: "VisualContentAltText"))
7627
7630
  PluginVisual.struct_class = Types::PluginVisual
7628
7631
 
@@ -19435,10 +19435,18 @@ module Aws::QuickSight
19435
19435
  # The sort configuration of a heat map.
19436
19436
  # @return [Types::HeatMapSortConfiguration]
19437
19437
  #
19438
+ # @!attribute [rw] row_axis_display_options
19439
+ # The options that determine the presentation of the row axis label.
19440
+ # @return [Types::AxisDisplayOptions]
19441
+ #
19438
19442
  # @!attribute [rw] row_label_options
19439
19443
  # The label options of the row that is displayed in a `heat map`.
19440
19444
  # @return [Types::ChartAxisLabelOptions]
19441
19445
  #
19446
+ # @!attribute [rw] column_axis_display_options
19447
+ # The options that determine the presentation of the row axis label.
19448
+ # @return [Types::AxisDisplayOptions]
19449
+ #
19442
19450
  # @!attribute [rw] column_label_options
19443
19451
  # The label options of the column that is displayed in a heat map.
19444
19452
  # @return [Types::ChartAxisLabelOptions]
@@ -19469,7 +19477,9 @@ module Aws::QuickSight
19469
19477
  class HeatMapConfiguration < Struct.new(
19470
19478
  :field_wells,
19471
19479
  :sort_configuration,
19480
+ :row_axis_display_options,
19472
19481
  :row_label_options,
19482
+ :column_axis_display_options,
19473
19483
  :column_label_options,
19474
19484
  :color_scale,
19475
19485
  :legend,
@@ -26452,6 +26462,10 @@ module Aws::QuickSight
26452
26462
  # properties.
26453
26463
  # @return [Types::PluginVisualConfiguration]
26454
26464
  #
26465
+ # @!attribute [rw] actions
26466
+ # The list of custom actions that are configured for a visual.
26467
+ # @return [Array<Types::VisualCustomAction>]
26468
+ #
26455
26469
  # @!attribute [rw] visual_content_alt_text
26456
26470
  # The alt text for the visual.
26457
26471
  # @return [String]
@@ -26464,6 +26478,7 @@ module Aws::QuickSight
26464
26478
  :title,
26465
26479
  :subtitle,
26466
26480
  :chart_configuration,
26481
+ :actions,
26467
26482
  :visual_content_alt_text)
26468
26483
  SENSITIVE = []
26469
26484
  include Aws::Structure
@@ -54,7 +54,7 @@ module Aws::QuickSight
54
54
  autoload :EndpointProvider, 'aws-sdk-quicksight/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-quicksight/endpoints'
56
56
 
57
- GEM_VERSION = '1.154.0'
57
+ GEM_VERSION = '1.155.0'
58
58
 
59
59
  end
60
60