aws-sdk-quicksight 1.153.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +10 -13
- data/lib/aws-sdk-quicksight/client_api.rb +3 -0
- data/lib/aws-sdk-quicksight/types.rb +15 -0
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +1080 -0
- data/sig/types.rbs +3 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05ef2e79d2bd64f57c12750d6a1e875e3b698b318c8a2ae3e4b137407410a1b1
|
4
|
+
data.tar.gz: 314d8bdbcaec408c732def44b7e4bb881416aac70fed0db652206129b5b7f3ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1617a6856d20a71a3eebfff07f169c782780039d5965d5ff35a40947ec08e928ad41e9ca673227367f3c8540eaa3e5bbb257776b0505696ca9584c1a6fd144ef
|
7
|
+
data.tar.gz: 1fc2e6d13ed2d54c342a4d0a003895de3db2d01da13ec32090c471bc88de6debe388a82b6306370f59ba6d3dc00bc1a06202467940ed8cbe24e57ae440abb4a6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
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
|
+
|
9
|
+
1.154.0 (2025-08-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.153.0 (2025-07-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.155.0
|
@@ -95,8 +95,8 @@ module Aws::QuickSight
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials used for authentication. This can be
|
99
|
-
# following classes:
|
98
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
99
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
102
102
|
# credentials.
|
@@ -124,8 +124,7 @@ module Aws::QuickSight
|
|
124
124
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
125
125
|
# from the Cognito Identity service.
|
126
126
|
#
|
127
|
-
# When `:credentials` are not configured directly, the following
|
128
|
-
# locations will be searched for credentials:
|
127
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
129
128
|
#
|
130
129
|
# * `Aws.config[:credentials]`
|
131
130
|
#
|
@@ -139,12 +138,10 @@ module Aws::QuickSight
|
|
139
138
|
#
|
140
139
|
# * `~/.aws/config`
|
141
140
|
#
|
142
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
143
|
-
#
|
144
|
-
#
|
145
|
-
#
|
146
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
-
# to `true`.
|
141
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
142
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
143
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
144
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
148
145
|
#
|
149
146
|
# @option options [required, String] :region
|
150
147
|
# The AWS region to connect to. The configured `:region` is
|
@@ -377,8 +374,8 @@ module Aws::QuickSight
|
|
377
374
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
378
375
|
#
|
379
376
|
# @option options [Aws::TokenProvider] :token_provider
|
380
|
-
# Your Bearer token used for authentication. This can be
|
381
|
-
# following classes:
|
377
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
378
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
382
379
|
#
|
383
380
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
384
381
|
# tokens.
|
@@ -17795,7 +17792,7 @@ module Aws::QuickSight
|
|
17795
17792
|
tracer: tracer
|
17796
17793
|
)
|
17797
17794
|
context[:gem_name] = 'aws-sdk-quicksight'
|
17798
|
-
context[:gem_version] = '1.
|
17795
|
+
context[:gem_version] = '1.155.0'
|
17799
17796
|
Seahorse::Client::Request.new(handlers, context)
|
17800
17797
|
end
|
17801
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
|