aws-sdk-quicksight 1.140.0 → 1.142.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 +38 -15
- data/lib/aws-sdk-quicksight/client_api.rb +6 -1
- data/lib/aws-sdk-quicksight/types.rb +10 -1
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +13222 -8264
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +4 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 789f61af78c812027910adf2f3624ac7716051f84dbfd2b807bbd287e1ec78de
|
4
|
+
data.tar.gz: a92ce099a0f5f4ccc8021e4006249bb350016cdd43baf27a4afdde29bb9ae3ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4da59456b5316d32c52307c8ba13878c651545a2ed1558b89c4622ff8f524da74cc01acef10abb099e7c4f39df9ec19d891cd73be74283b15850aa40cc5a54c
|
7
|
+
data.tar.gz: 4f7bffa31c4572ce3b420fa69c0028b0535361fec73849c6510657a7b36f85636a4c05fb0ed64c00d92a0b6163adb3565a4e6938fa7a0860922971006e4cc91e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.142.0 (2025-01-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added `DigitGroupingStyle` in ThousandsSeparator to allow grouping by `LAKH`( Indian Grouping system ) currency. Support LAKH and `CRORE` currency types in Column Formatting.
|
8
|
+
|
9
|
+
1.141.0 (2025-01-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.140.0 (2024-12-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.142.0
|
@@ -257,11 +257,34 @@ module Aws::QuickSight
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -521,7 +544,7 @@ module Aws::QuickSight
|
|
521
544
|
# fraction_digits: 1,
|
522
545
|
# prefix: "LimitedString",
|
523
546
|
# suffix: "LimitedString",
|
524
|
-
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS
|
547
|
+
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS, LAKHS, CRORES
|
525
548
|
# negative_format: {
|
526
549
|
# prefix: "LimitedString",
|
527
550
|
# suffix: "LimitedString",
|
@@ -556,7 +579,7 @@ module Aws::QuickSight
|
|
556
579
|
# fraction_digits: 1,
|
557
580
|
# prefix: "LimitedString",
|
558
581
|
# suffix: "LimitedString",
|
559
|
-
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS
|
582
|
+
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS, LAKHS, CRORES
|
560
583
|
# negative_format: {
|
561
584
|
# prefix: "LimitedString",
|
562
585
|
# suffix: "LimitedString",
|
@@ -892,7 +915,7 @@ module Aws::QuickSight
|
|
892
915
|
# fraction_digits: 1,
|
893
916
|
# prefix: "LimitedString",
|
894
917
|
# suffix: "LimitedString",
|
895
|
-
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS
|
918
|
+
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS, LAKHS, CRORES
|
896
919
|
# negative_format: {
|
897
920
|
# prefix: "LimitedString",
|
898
921
|
# suffix: "LimitedString",
|
@@ -927,7 +950,7 @@ module Aws::QuickSight
|
|
927
950
|
# fraction_digits: 1,
|
928
951
|
# prefix: "LimitedString",
|
929
952
|
# suffix: "LimitedString",
|
930
|
-
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS
|
953
|
+
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS, LAKHS, CRORES
|
931
954
|
# negative_format: {
|
932
955
|
# prefix: "LimitedString",
|
933
956
|
# suffix: "LimitedString",
|
@@ -3952,7 +3975,7 @@ module Aws::QuickSight
|
|
3952
3975
|
# fraction_digits: 1,
|
3953
3976
|
# prefix: "LimitedString",
|
3954
3977
|
# suffix: "LimitedString",
|
3955
|
-
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS
|
3978
|
+
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS, LAKHS, CRORES
|
3956
3979
|
# negative_format: {
|
3957
3980
|
# prefix: "LimitedString",
|
3958
3981
|
# suffix: "LimitedString",
|
@@ -3992,7 +4015,7 @@ module Aws::QuickSight
|
|
3992
4015
|
# fraction_digits: 1,
|
3993
4016
|
# prefix: "LimitedString",
|
3994
4017
|
# suffix: "LimitedString",
|
3995
|
-
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS
|
4018
|
+
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS, LAKHS, CRORES
|
3996
4019
|
# negative_format: {
|
3997
4020
|
# prefix: "LimitedString",
|
3998
4021
|
# suffix: "LimitedString",
|
@@ -8732,7 +8755,7 @@ module Aws::QuickSight
|
|
8732
8755
|
# resp.topic.data_sets[0].columns[0].default_formatting.display_format_options.fraction_digits #=> Integer
|
8733
8756
|
# resp.topic.data_sets[0].columns[0].default_formatting.display_format_options.prefix #=> String
|
8734
8757
|
# resp.topic.data_sets[0].columns[0].default_formatting.display_format_options.suffix #=> String
|
8735
|
-
# resp.topic.data_sets[0].columns[0].default_formatting.display_format_options.unit_scaler #=> String, one of "NONE", "AUTO", "THOUSANDS", "MILLIONS", "BILLIONS", "TRILLIONS"
|
8758
|
+
# resp.topic.data_sets[0].columns[0].default_formatting.display_format_options.unit_scaler #=> String, one of "NONE", "AUTO", "THOUSANDS", "MILLIONS", "BILLIONS", "TRILLIONS", "LAKHS", "CRORES"
|
8736
8759
|
# resp.topic.data_sets[0].columns[0].default_formatting.display_format_options.negative_format.prefix #=> String
|
8737
8760
|
# resp.topic.data_sets[0].columns[0].default_formatting.display_format_options.negative_format.suffix #=> String
|
8738
8761
|
# resp.topic.data_sets[0].columns[0].default_formatting.display_format_options.currency_symbol #=> String
|
@@ -8762,7 +8785,7 @@ module Aws::QuickSight
|
|
8762
8785
|
# resp.topic.data_sets[0].calculated_fields[0].default_formatting.display_format_options.fraction_digits #=> Integer
|
8763
8786
|
# resp.topic.data_sets[0].calculated_fields[0].default_formatting.display_format_options.prefix #=> String
|
8764
8787
|
# resp.topic.data_sets[0].calculated_fields[0].default_formatting.display_format_options.suffix #=> String
|
8765
|
-
# resp.topic.data_sets[0].calculated_fields[0].default_formatting.display_format_options.unit_scaler #=> String, one of "NONE", "AUTO", "THOUSANDS", "MILLIONS", "BILLIONS", "TRILLIONS"
|
8788
|
+
# resp.topic.data_sets[0].calculated_fields[0].default_formatting.display_format_options.unit_scaler #=> String, one of "NONE", "AUTO", "THOUSANDS", "MILLIONS", "BILLIONS", "TRILLIONS", "LAKHS", "CRORES"
|
8766
8789
|
# resp.topic.data_sets[0].calculated_fields[0].default_formatting.display_format_options.negative_format.prefix #=> String
|
8767
8790
|
# resp.topic.data_sets[0].calculated_fields[0].default_formatting.display_format_options.negative_format.suffix #=> String
|
8768
8791
|
# resp.topic.data_sets[0].calculated_fields[0].default_formatting.display_format_options.currency_symbol #=> String
|
@@ -11506,7 +11529,7 @@ module Aws::QuickSight
|
|
11506
11529
|
# resp.answers[0].mir.metrics[0].display_format_options.fraction_digits #=> Integer
|
11507
11530
|
# resp.answers[0].mir.metrics[0].display_format_options.prefix #=> String
|
11508
11531
|
# resp.answers[0].mir.metrics[0].display_format_options.suffix #=> String
|
11509
|
-
# resp.answers[0].mir.metrics[0].display_format_options.unit_scaler #=> String, one of "NONE", "AUTO", "THOUSANDS", "MILLIONS", "BILLIONS", "TRILLIONS"
|
11532
|
+
# resp.answers[0].mir.metrics[0].display_format_options.unit_scaler #=> String, one of "NONE", "AUTO", "THOUSANDS", "MILLIONS", "BILLIONS", "TRILLIONS", "LAKHS", "CRORES"
|
11510
11533
|
# resp.answers[0].mir.metrics[0].display_format_options.negative_format.prefix #=> String
|
11511
11534
|
# resp.answers[0].mir.metrics[0].display_format_options.negative_format.suffix #=> String
|
11512
11535
|
# resp.answers[0].mir.metrics[0].display_format_options.currency_symbol #=> String
|
@@ -11526,7 +11549,7 @@ module Aws::QuickSight
|
|
11526
11549
|
# resp.answers[0].mir.group_by_list[0].display_format_options.fraction_digits #=> Integer
|
11527
11550
|
# resp.answers[0].mir.group_by_list[0].display_format_options.prefix #=> String
|
11528
11551
|
# resp.answers[0].mir.group_by_list[0].display_format_options.suffix #=> String
|
11529
|
-
# resp.answers[0].mir.group_by_list[0].display_format_options.unit_scaler #=> String, one of "NONE", "AUTO", "THOUSANDS", "MILLIONS", "BILLIONS", "TRILLIONS"
|
11552
|
+
# resp.answers[0].mir.group_by_list[0].display_format_options.unit_scaler #=> String, one of "NONE", "AUTO", "THOUSANDS", "MILLIONS", "BILLIONS", "TRILLIONS", "LAKHS", "CRORES"
|
11530
11553
|
# resp.answers[0].mir.group_by_list[0].display_format_options.negative_format.prefix #=> String
|
11531
11554
|
# resp.answers[0].mir.group_by_list[0].display_format_options.negative_format.suffix #=> String
|
11532
11555
|
# resp.answers[0].mir.group_by_list[0].display_format_options.currency_symbol #=> String
|
@@ -11717,7 +11740,7 @@ module Aws::QuickSight
|
|
11717
11740
|
# resp.answers[0].primary_visual.ir.metrics[0].display_format_options.fraction_digits #=> Integer
|
11718
11741
|
# resp.answers[0].primary_visual.ir.metrics[0].display_format_options.prefix #=> String
|
11719
11742
|
# resp.answers[0].primary_visual.ir.metrics[0].display_format_options.suffix #=> String
|
11720
|
-
# resp.answers[0].primary_visual.ir.metrics[0].display_format_options.unit_scaler #=> String, one of "NONE", "AUTO", "THOUSANDS", "MILLIONS", "BILLIONS", "TRILLIONS"
|
11743
|
+
# resp.answers[0].primary_visual.ir.metrics[0].display_format_options.unit_scaler #=> String, one of "NONE", "AUTO", "THOUSANDS", "MILLIONS", "BILLIONS", "TRILLIONS", "LAKHS", "CRORES"
|
11721
11744
|
# resp.answers[0].primary_visual.ir.metrics[0].display_format_options.negative_format.prefix #=> String
|
11722
11745
|
# resp.answers[0].primary_visual.ir.metrics[0].display_format_options.negative_format.suffix #=> String
|
11723
11746
|
# resp.answers[0].primary_visual.ir.metrics[0].display_format_options.currency_symbol #=> String
|
@@ -11737,7 +11760,7 @@ module Aws::QuickSight
|
|
11737
11760
|
# resp.answers[0].primary_visual.ir.group_by_list[0].display_format_options.fraction_digits #=> Integer
|
11738
11761
|
# resp.answers[0].primary_visual.ir.group_by_list[0].display_format_options.prefix #=> String
|
11739
11762
|
# resp.answers[0].primary_visual.ir.group_by_list[0].display_format_options.suffix #=> String
|
11740
|
-
# resp.answers[0].primary_visual.ir.group_by_list[0].display_format_options.unit_scaler #=> String, one of "NONE", "AUTO", "THOUSANDS", "MILLIONS", "BILLIONS", "TRILLIONS"
|
11763
|
+
# resp.answers[0].primary_visual.ir.group_by_list[0].display_format_options.unit_scaler #=> String, one of "NONE", "AUTO", "THOUSANDS", "MILLIONS", "BILLIONS", "TRILLIONS", "LAKHS", "CRORES"
|
11741
11764
|
# resp.answers[0].primary_visual.ir.group_by_list[0].display_format_options.negative_format.prefix #=> String
|
11742
11765
|
# resp.answers[0].primary_visual.ir.group_by_list[0].display_format_options.negative_format.suffix #=> String
|
11743
11766
|
# resp.answers[0].primary_visual.ir.group_by_list[0].display_format_options.currency_symbol #=> String
|
@@ -16982,7 +17005,7 @@ module Aws::QuickSight
|
|
16982
17005
|
# fraction_digits: 1,
|
16983
17006
|
# prefix: "LimitedString",
|
16984
17007
|
# suffix: "LimitedString",
|
16985
|
-
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS
|
17008
|
+
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS, LAKHS, CRORES
|
16986
17009
|
# negative_format: {
|
16987
17010
|
# prefix: "LimitedString",
|
16988
17011
|
# suffix: "LimitedString",
|
@@ -17022,7 +17045,7 @@ module Aws::QuickSight
|
|
17022
17045
|
# fraction_digits: 1,
|
17023
17046
|
# prefix: "LimitedString",
|
17024
17047
|
# suffix: "LimitedString",
|
17025
|
-
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS
|
17048
|
+
# unit_scaler: "NONE", # accepts NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, TRILLIONS, LAKHS, CRORES
|
17026
17049
|
# negative_format: {
|
17027
17050
|
# prefix: "LimitedString",
|
17028
17051
|
# suffix: "LimitedString",
|
@@ -17515,7 +17538,7 @@ module Aws::QuickSight
|
|
17515
17538
|
tracer: tracer
|
17516
17539
|
)
|
17517
17540
|
context[:gem_name] = 'aws-sdk-quicksight'
|
17518
|
-
context[:gem_version] = '1.
|
17541
|
+
context[:gem_version] = '1.142.0'
|
17519
17542
|
Seahorse::Client::Request.new(handlers, context)
|
17520
17543
|
end
|
17521
17544
|
|
@@ -771,6 +771,7 @@ module Aws::QuickSight
|
|
771
771
|
DescribeVPCConnectionResponse = Shapes::StructureShape.new(name: 'DescribeVPCConnectionResponse')
|
772
772
|
Description = Shapes::StringShape.new(name: 'Description')
|
773
773
|
DestinationParameterValueConfiguration = Shapes::StructureShape.new(name: 'DestinationParameterValueConfiguration')
|
774
|
+
DigitGroupingStyle = Shapes::StringShape.new(name: 'DigitGroupingStyle')
|
774
775
|
DimensionField = Shapes::StructureShape.new(name: 'DimensionField')
|
775
776
|
DimensionFieldList = Shapes::ListShape.new(name: 'DimensionFieldList')
|
776
777
|
DisplayFormat = Shapes::StringShape.new(name: 'DisplayFormat')
|
@@ -1800,6 +1801,7 @@ module Aws::QuickSight
|
|
1800
1801
|
TableStyleTargetList = Shapes::ListShape.new(name: 'TableStyleTargetList')
|
1801
1802
|
TableTotalsPlacement = Shapes::StringShape.new(name: 'TableTotalsPlacement')
|
1802
1803
|
TableTotalsScrollStatus = Shapes::StringShape.new(name: 'TableTotalsScrollStatus')
|
1804
|
+
TableUnaggregatedFieldList = Shapes::ListShape.new(name: 'TableUnaggregatedFieldList')
|
1803
1805
|
TableUnaggregatedFieldWells = Shapes::StructureShape.new(name: 'TableUnaggregatedFieldWells')
|
1804
1806
|
TableVisual = Shapes::StructureShape.new(name: 'TableVisual')
|
1805
1807
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
@@ -8735,7 +8737,9 @@ module Aws::QuickSight
|
|
8735
8737
|
|
8736
8738
|
TableStyleTargetList.member = Shapes::ShapeRef.new(shape: TableStyleTarget)
|
8737
8739
|
|
8738
|
-
|
8740
|
+
TableUnaggregatedFieldList.member = Shapes::ShapeRef.new(shape: UnaggregatedField)
|
8741
|
+
|
8742
|
+
TableUnaggregatedFieldWells.add_member(:values, Shapes::ShapeRef.new(shape: TableUnaggregatedFieldList, location_name: "Values"))
|
8739
8743
|
TableUnaggregatedFieldWells.struct_class = Types::TableUnaggregatedFieldWells
|
8740
8744
|
|
8741
8745
|
TableVisual.add_member(:visual_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "VisualId"))
|
@@ -8926,6 +8930,7 @@ module Aws::QuickSight
|
|
8926
8930
|
|
8927
8931
|
ThousandSeparatorOptions.add_member(:symbol, Shapes::ShapeRef.new(shape: NumericSeparatorSymbol, location_name: "Symbol"))
|
8928
8932
|
ThousandSeparatorOptions.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
8933
|
+
ThousandSeparatorOptions.add_member(:grouping_style, Shapes::ShapeRef.new(shape: DigitGroupingStyle, location_name: "GroupingStyle"))
|
8929
8934
|
ThousandSeparatorOptions.struct_class = Types::ThousandSeparatorOptions
|
8930
8935
|
|
8931
8936
|
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -32968,11 +32968,20 @@ module Aws::QuickSight
|
|
32968
32968
|
# Determines the visibility of the thousands separator.
|
32969
32969
|
# @return [String]
|
32970
32970
|
#
|
32971
|
+
# @!attribute [rw] grouping_style
|
32972
|
+
# Determines the way numbers are styled to accommodate different
|
32973
|
+
# readability standards. The `DEFAULT` value uses the standard
|
32974
|
+
# international grouping system and groups numbers by the thousands.
|
32975
|
+
# The `LAKHS` value uses the Indian numbering system and groups
|
32976
|
+
# numbers by lakhs and crores.
|
32977
|
+
# @return [String]
|
32978
|
+
#
|
32971
32979
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ThousandSeparatorOptions AWS API Documentation
|
32972
32980
|
#
|
32973
32981
|
class ThousandSeparatorOptions < Struct.new(
|
32974
32982
|
:symbol,
|
32975
|
-
:visibility
|
32983
|
+
:visibility,
|
32984
|
+
:grouping_style)
|
32976
32985
|
SENSITIVE = []
|
32977
32986
|
include Aws::Structure
|
32978
32987
|
end
|