aws-sdk-quicksight 1.139.0 → 1.141.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 +49 -1
- data/lib/aws-sdk-quicksight/client_api.rb +17 -0
- data/lib/aws-sdk-quicksight/types.rb +50 -3
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +18 -2
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +13 -0
- 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: dae4bd584351e8ee8cc7d8ad9ee66c78a2f3c7c955df23da807702c9453cf6ef
|
4
|
+
data.tar.gz: 13e9fd7004961e43e69a3fa83e051049799ed0011d1fe92745cf92fd2931c5f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7676cf694aefbe1215cd71845398780f366d4053d2a569ff7a5864b251a1e7db5b9f43a41386d22d48c02dc966a84a1f93ef2f809b3dafddcd512a316a35e3bf
|
7
|
+
data.tar.gz: 74afaf3ba641ae47b05ce5809e19990d47abe8e2613294553f6610ea719073b24a663649a6e73cdf4e7f7a69b4b669c2cb40e48595f6f811970225602ced3fb8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.141.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.140.0 (2024-12-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for PerformanceConfiguration attribute to Dataset entity. Allow PerformanceConfiguration specification in CreateDataset and UpdateDataset APIs.
|
13
|
+
|
4
14
|
1.139.0 (2024-12-03)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.141.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.
|
@@ -2252,6 +2275,10 @@ module Aws::QuickSight
|
|
2252
2275
|
# When you create the dataset, Amazon QuickSight adds the dataset to
|
2253
2276
|
# these folders.
|
2254
2277
|
#
|
2278
|
+
# @option params [Types::PerformanceConfiguration] :performance_configuration
|
2279
|
+
# The configuration for the performance optimization of the dataset that
|
2280
|
+
# contains a `UniqueKey` configuration.
|
2281
|
+
#
|
2255
2282
|
# @return [Types::CreateDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2256
2283
|
#
|
2257
2284
|
# * {Types::CreateDataSetResponse#arn #arn} => String
|
@@ -2485,6 +2512,13 @@ module Aws::QuickSight
|
|
2485
2512
|
# },
|
2486
2513
|
# ],
|
2487
2514
|
# folder_arns: ["Arn"],
|
2515
|
+
# performance_configuration: {
|
2516
|
+
# unique_keys: [
|
2517
|
+
# {
|
2518
|
+
# column_names: ["ColumnName"], # required
|
2519
|
+
# },
|
2520
|
+
# ],
|
2521
|
+
# },
|
2488
2522
|
# })
|
2489
2523
|
#
|
2490
2524
|
# @example Response structure
|
@@ -7124,6 +7158,9 @@ module Aws::QuickSight
|
|
7124
7158
|
# resp.data_set.dataset_parameters[0].date_time_dataset_parameter.time_granularity #=> String, one of "YEAR", "QUARTER", "MONTH", "WEEK", "DAY", "HOUR", "MINUTE", "SECOND", "MILLISECOND"
|
7125
7159
|
# resp.data_set.dataset_parameters[0].date_time_dataset_parameter.default_values.static_values #=> Array
|
7126
7160
|
# resp.data_set.dataset_parameters[0].date_time_dataset_parameter.default_values.static_values[0] #=> Time
|
7161
|
+
# resp.data_set.performance_configuration.unique_keys #=> Array
|
7162
|
+
# resp.data_set.performance_configuration.unique_keys[0].column_names #=> Array
|
7163
|
+
# resp.data_set.performance_configuration.unique_keys[0].column_names[0] #=> String
|
7127
7164
|
# resp.request_id #=> String
|
7128
7165
|
# resp.status #=> Integer
|
7129
7166
|
#
|
@@ -14935,6 +14972,10 @@ module Aws::QuickSight
|
|
14935
14972
|
# @option params [Array<Types::DatasetParameter>] :dataset_parameters
|
14936
14973
|
# The parameter declarations of the dataset.
|
14937
14974
|
#
|
14975
|
+
# @option params [Types::PerformanceConfiguration] :performance_configuration
|
14976
|
+
# The configuration for the performance optimization of the dataset that
|
14977
|
+
# contains a `UniqueKey` configuration.
|
14978
|
+
#
|
14938
14979
|
# @return [Types::UpdateDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14939
14980
|
#
|
14940
14981
|
# * {Types::UpdateDataSetResponse#arn #arn} => String
|
@@ -15155,6 +15196,13 @@ module Aws::QuickSight
|
|
15155
15196
|
# },
|
15156
15197
|
# },
|
15157
15198
|
# ],
|
15199
|
+
# performance_configuration: {
|
15200
|
+
# unique_keys: [
|
15201
|
+
# {
|
15202
|
+
# column_names: ["ColumnName"], # required
|
15203
|
+
# },
|
15204
|
+
# ],
|
15205
|
+
# },
|
15158
15206
|
# })
|
15159
15207
|
#
|
15160
15208
|
# @example Response structure
|
@@ -17490,7 +17538,7 @@ module Aws::QuickSight
|
|
17490
17538
|
tracer: tracer
|
17491
17539
|
)
|
17492
17540
|
context[:gem_name] = 'aws-sdk-quicksight'
|
17493
|
-
context[:gem_version] = '1.
|
17541
|
+
context[:gem_version] = '1.141.0'
|
17494
17542
|
Seahorse::Client::Request.new(handlers, context)
|
17495
17543
|
end
|
17496
17544
|
|
@@ -1356,6 +1356,7 @@ module Aws::QuickSight
|
|
1356
1356
|
PercentageDisplayFormatConfiguration = Shapes::StructureShape.new(name: 'PercentageDisplayFormatConfiguration')
|
1357
1357
|
PercentileAggregation = Shapes::StructureShape.new(name: 'PercentileAggregation')
|
1358
1358
|
PercentileValue = Shapes::FloatShape.new(name: 'PercentileValue')
|
1359
|
+
PerformanceConfiguration = Shapes::StructureShape.new(name: 'PerformanceConfiguration')
|
1359
1360
|
PeriodOverPeriodComputation = Shapes::StructureShape.new(name: 'PeriodOverPeriodComputation')
|
1360
1361
|
PeriodToDateComputation = Shapes::StructureShape.new(name: 'PeriodToDateComputation')
|
1361
1362
|
PeriodsBackward = Shapes::IntegerShape.new(name: 'PeriodsBackward')
|
@@ -1955,6 +1956,9 @@ module Aws::QuickSight
|
|
1955
1956
|
UnaggregatedFieldList = Shapes::ListShape.new(name: 'UnaggregatedFieldList')
|
1956
1957
|
UndefinedSpecifiedValueType = Shapes::StringShape.new(name: 'UndefinedSpecifiedValueType')
|
1957
1958
|
UnicodeIcon = Shapes::StringShape.new(name: 'UnicodeIcon')
|
1959
|
+
UniqueKey = Shapes::StructureShape.new(name: 'UniqueKey')
|
1960
|
+
UniqueKeyColumnNameList = Shapes::ListShape.new(name: 'UniqueKeyColumnNameList')
|
1961
|
+
UniqueKeyList = Shapes::ListShape.new(name: 'UniqueKeyList')
|
1958
1962
|
UniqueValuesComputation = Shapes::StructureShape.new(name: 'UniqueValuesComputation')
|
1959
1963
|
UnlimitedPixelLength = Shapes::StringShape.new(name: 'UnlimitedPixelLength')
|
1960
1964
|
UnsupportedPricingPlanException = Shapes::StructureShape.new(name: 'UnsupportedPricingPlanException')
|
@@ -3423,6 +3427,7 @@ module Aws::QuickSight
|
|
3423
3427
|
CreateDataSetRequest.add_member(:data_set_usage_configuration, Shapes::ShapeRef.new(shape: DataSetUsageConfiguration, location_name: "DataSetUsageConfiguration"))
|
3424
3428
|
CreateDataSetRequest.add_member(:dataset_parameters, Shapes::ShapeRef.new(shape: DatasetParameterList, location_name: "DatasetParameters"))
|
3425
3429
|
CreateDataSetRequest.add_member(:folder_arns, Shapes::ShapeRef.new(shape: FolderArnList, location_name: "FolderArns"))
|
3430
|
+
CreateDataSetRequest.add_member(:performance_configuration, Shapes::ShapeRef.new(shape: PerformanceConfiguration, location_name: "PerformanceConfiguration"))
|
3426
3431
|
CreateDataSetRequest.struct_class = Types::CreateDataSetRequest
|
3427
3432
|
|
3428
3433
|
CreateDataSetResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
@@ -3982,6 +3987,7 @@ module Aws::QuickSight
|
|
3982
3987
|
DataSet.add_member(:column_level_permission_rules, Shapes::ShapeRef.new(shape: ColumnLevelPermissionRuleList, location_name: "ColumnLevelPermissionRules"))
|
3983
3988
|
DataSet.add_member(:data_set_usage_configuration, Shapes::ShapeRef.new(shape: DataSetUsageConfiguration, location_name: "DataSetUsageConfiguration"))
|
3984
3989
|
DataSet.add_member(:dataset_parameters, Shapes::ShapeRef.new(shape: DatasetParameterList, location_name: "DatasetParameters"))
|
3990
|
+
DataSet.add_member(:performance_configuration, Shapes::ShapeRef.new(shape: PerformanceConfiguration, location_name: "PerformanceConfiguration"))
|
3985
3991
|
DataSet.struct_class = Types::DataSet
|
3986
3992
|
|
3987
3993
|
DataSetArnsList.member = Shapes::ShapeRef.new(shape: Arn)
|
@@ -7334,6 +7340,9 @@ module Aws::QuickSight
|
|
7334
7340
|
PercentileAggregation.add_member(:percentile_value, Shapes::ShapeRef.new(shape: PercentileValue, location_name: "PercentileValue"))
|
7335
7341
|
PercentileAggregation.struct_class = Types::PercentileAggregation
|
7336
7342
|
|
7343
|
+
PerformanceConfiguration.add_member(:unique_keys, Shapes::ShapeRef.new(shape: UniqueKeyList, location_name: "UniqueKeys"))
|
7344
|
+
PerformanceConfiguration.struct_class = Types::PerformanceConfiguration
|
7345
|
+
|
7337
7346
|
PeriodOverPeriodComputation.add_member(:computation_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "ComputationId"))
|
7338
7347
|
PeriodOverPeriodComputation.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
7339
7348
|
PeriodOverPeriodComputation.add_member(:time, Shapes::ShapeRef.new(shape: DimensionField, location_name: "Time"))
|
@@ -9371,6 +9380,13 @@ module Aws::QuickSight
|
|
9371
9380
|
|
9372
9381
|
UnaggregatedFieldList.member = Shapes::ShapeRef.new(shape: UnaggregatedField)
|
9373
9382
|
|
9383
|
+
UniqueKey.add_member(:column_names, Shapes::ShapeRef.new(shape: UniqueKeyColumnNameList, required: true, location_name: "ColumnNames"))
|
9384
|
+
UniqueKey.struct_class = Types::UniqueKey
|
9385
|
+
|
9386
|
+
UniqueKeyColumnNameList.member = Shapes::ShapeRef.new(shape: ColumnName)
|
9387
|
+
|
9388
|
+
UniqueKeyList.member = Shapes::ShapeRef.new(shape: UniqueKey)
|
9389
|
+
|
9374
9390
|
UniqueValuesComputation.add_member(:computation_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "ComputationId"))
|
9375
9391
|
UniqueValuesComputation.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
9376
9392
|
UniqueValuesComputation.add_member(:category, Shapes::ShapeRef.new(shape: DimensionField, location_name: "Category"))
|
@@ -9586,6 +9602,7 @@ module Aws::QuickSight
|
|
9586
9602
|
UpdateDataSetRequest.add_member(:column_level_permission_rules, Shapes::ShapeRef.new(shape: ColumnLevelPermissionRuleList, location_name: "ColumnLevelPermissionRules"))
|
9587
9603
|
UpdateDataSetRequest.add_member(:data_set_usage_configuration, Shapes::ShapeRef.new(shape: DataSetUsageConfiguration, location_name: "DataSetUsageConfiguration"))
|
9588
9604
|
UpdateDataSetRequest.add_member(:dataset_parameters, Shapes::ShapeRef.new(shape: DatasetParameterList, location_name: "DatasetParameters"))
|
9605
|
+
UpdateDataSetRequest.add_member(:performance_configuration, Shapes::ShapeRef.new(shape: PerformanceConfiguration, location_name: "PerformanceConfiguration"))
|
9589
9606
|
UpdateDataSetRequest.struct_class = Types::UpdateDataSetRequest
|
9590
9607
|
|
9591
9608
|
UpdateDataSetResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
@@ -6079,6 +6079,11 @@ module Aws::QuickSight
|
|
6079
6079
|
# these folders.
|
6080
6080
|
# @return [Array<String>]
|
6081
6081
|
#
|
6082
|
+
# @!attribute [rw] performance_configuration
|
6083
|
+
# The configuration for the performance optimization of the dataset
|
6084
|
+
# that contains a `UniqueKey` configuration.
|
6085
|
+
# @return [Types::PerformanceConfiguration]
|
6086
|
+
#
|
6082
6087
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateDataSetRequest AWS API Documentation
|
6083
6088
|
#
|
6084
6089
|
class CreateDataSetRequest < Struct.new(
|
@@ -6097,7 +6102,8 @@ module Aws::QuickSight
|
|
6097
6102
|
:tags,
|
6098
6103
|
:data_set_usage_configuration,
|
6099
6104
|
:dataset_parameters,
|
6100
|
-
:folder_arns
|
6105
|
+
:folder_arns,
|
6106
|
+
:performance_configuration)
|
6101
6107
|
SENSITIVE = []
|
6102
6108
|
include Aws::Structure
|
6103
6109
|
end
|
@@ -8953,6 +8959,10 @@ module Aws::QuickSight
|
|
8953
8959
|
# The parameters that are declared in a dataset.
|
8954
8960
|
# @return [Array<Types::DatasetParameter>]
|
8955
8961
|
#
|
8962
|
+
# @!attribute [rw] performance_configuration
|
8963
|
+
# The performance optimization configuration of a dataset.
|
8964
|
+
# @return [Types::PerformanceConfiguration]
|
8965
|
+
#
|
8956
8966
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSet AWS API Documentation
|
8957
8967
|
#
|
8958
8968
|
class DataSet < Struct.new(
|
@@ -8972,7 +8982,8 @@ module Aws::QuickSight
|
|
8972
8982
|
:row_level_permission_tag_configuration,
|
8973
8983
|
:column_level_permission_rules,
|
8974
8984
|
:data_set_usage_configuration,
|
8975
|
-
:dataset_parameters
|
8985
|
+
:dataset_parameters,
|
8986
|
+
:performance_configuration)
|
8976
8987
|
SENSITIVE = []
|
8977
8988
|
include Aws::Structure
|
8978
8989
|
end
|
@@ -25202,6 +25213,21 @@ module Aws::QuickSight
|
|
25202
25213
|
include Aws::Structure
|
25203
25214
|
end
|
25204
25215
|
|
25216
|
+
# The configuration for the performance optimization of the dataset that
|
25217
|
+
# contains a `UniqueKey` configuration.
|
25218
|
+
#
|
25219
|
+
# @!attribute [rw] unique_keys
|
25220
|
+
# A `UniqueKey` configuration.
|
25221
|
+
# @return [Array<Types::UniqueKey>]
|
25222
|
+
#
|
25223
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PerformanceConfiguration AWS API Documentation
|
25224
|
+
#
|
25225
|
+
class PerformanceConfiguration < Struct.new(
|
25226
|
+
:unique_keys)
|
25227
|
+
SENSITIVE = []
|
25228
|
+
include Aws::Structure
|
25229
|
+
end
|
25230
|
+
|
25205
25231
|
# The period over period computation configuration.
|
25206
25232
|
#
|
25207
25233
|
# @!attribute [rw] computation_id
|
@@ -35117,6 +35143,21 @@ module Aws::QuickSight
|
|
35117
35143
|
include Aws::Structure
|
35118
35144
|
end
|
35119
35145
|
|
35146
|
+
# A `UniqueKey` configuration that references a dataset column.
|
35147
|
+
#
|
35148
|
+
# @!attribute [rw] column_names
|
35149
|
+
# The name of the column that is referenced in the `UniqueKey`
|
35150
|
+
# configuration.
|
35151
|
+
# @return [Array<String>]
|
35152
|
+
#
|
35153
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UniqueKey AWS API Documentation
|
35154
|
+
#
|
35155
|
+
class UniqueKey < Struct.new(
|
35156
|
+
:column_names)
|
35157
|
+
SENSITIVE = []
|
35158
|
+
include Aws::Structure
|
35159
|
+
end
|
35160
|
+
|
35120
35161
|
# The unique values computation configuration.
|
35121
35162
|
#
|
35122
35163
|
# @!attribute [rw] computation_id
|
@@ -36191,6 +36232,11 @@ module Aws::QuickSight
|
|
36191
36232
|
# The parameter declarations of the dataset.
|
36192
36233
|
# @return [Array<Types::DatasetParameter>]
|
36193
36234
|
#
|
36235
|
+
# @!attribute [rw] performance_configuration
|
36236
|
+
# The configuration for the performance optimization of the dataset
|
36237
|
+
# that contains a `UniqueKey` configuration.
|
36238
|
+
# @return [Types::PerformanceConfiguration]
|
36239
|
+
#
|
36194
36240
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDataSetRequest AWS API Documentation
|
36195
36241
|
#
|
36196
36242
|
class UpdateDataSetRequest < Struct.new(
|
@@ -36206,7 +36252,8 @@ module Aws::QuickSight
|
|
36206
36252
|
:row_level_permission_tag_configuration,
|
36207
36253
|
:column_level_permission_rules,
|
36208
36254
|
:data_set_usage_configuration,
|
36209
|
-
:dataset_parameters
|
36255
|
+
:dataset_parameters,
|
36256
|
+
:performance_configuration)
|
36210
36257
|
SENSITIVE = []
|
36211
36258
|
include Aws::Structure
|
36212
36259
|
end
|
data/lib/aws-sdk-quicksight.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -73938,7 +73940,14 @@ module Aws
|
|
73938
73940
|
}?
|
73939
73941
|
},
|
73940
73942
|
],
|
73941
|
-
?folder_arns: Array[::String]
|
73943
|
+
?folder_arns: Array[::String],
|
73944
|
+
?performance_configuration: {
|
73945
|
+
unique_keys: Array[
|
73946
|
+
{
|
73947
|
+
column_names: Array[::String]
|
73948
|
+
},
|
73949
|
+
]?
|
73950
|
+
}
|
73942
73951
|
) -> _CreateDataSetResponseSuccess
|
73943
73952
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataSetResponseSuccess
|
73944
73953
|
|
@@ -187047,7 +187056,14 @@ module Aws
|
|
187047
187056
|
}?
|
187048
187057
|
}?
|
187049
187058
|
},
|
187050
|
-
]
|
187059
|
+
],
|
187060
|
+
?performance_configuration: {
|
187061
|
+
unique_keys: Array[
|
187062
|
+
{
|
187063
|
+
column_names: Array[::String]
|
187064
|
+
},
|
187065
|
+
]?
|
187066
|
+
}
|
187051
187067
|
) -> _UpdateDataSetResponseSuccess
|
187052
187068
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataSetResponseSuccess
|
187053
187069
|
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -1521,6 +1521,7 @@ module Aws::QuickSight
|
|
1521
1521
|
attr_accessor data_set_usage_configuration: Types::DataSetUsageConfiguration
|
1522
1522
|
attr_accessor dataset_parameters: ::Array[Types::DatasetParameter]
|
1523
1523
|
attr_accessor folder_arns: ::Array[::String]
|
1524
|
+
attr_accessor performance_configuration: Types::PerformanceConfiguration
|
1524
1525
|
SENSITIVE: []
|
1525
1526
|
end
|
1526
1527
|
|
@@ -2222,6 +2223,7 @@ module Aws::QuickSight
|
|
2222
2223
|
attr_accessor column_level_permission_rules: ::Array[Types::ColumnLevelPermissionRule]
|
2223
2224
|
attr_accessor data_set_usage_configuration: Types::DataSetUsageConfiguration
|
2224
2225
|
attr_accessor dataset_parameters: ::Array[Types::DatasetParameter]
|
2226
|
+
attr_accessor performance_configuration: Types::PerformanceConfiguration
|
2225
2227
|
SENSITIVE: []
|
2226
2228
|
end
|
2227
2229
|
|
@@ -6549,6 +6551,11 @@ module Aws::QuickSight
|
|
6549
6551
|
SENSITIVE: []
|
6550
6552
|
end
|
6551
6553
|
|
6554
|
+
class PerformanceConfiguration
|
6555
|
+
attr_accessor unique_keys: ::Array[Types::UniqueKey]
|
6556
|
+
SENSITIVE: []
|
6557
|
+
end
|
6558
|
+
|
6552
6559
|
class PeriodOverPeriodComputation
|
6553
6560
|
attr_accessor computation_id: ::String
|
6554
6561
|
attr_accessor name: ::String
|
@@ -9052,6 +9059,11 @@ module Aws::QuickSight
|
|
9052
9059
|
SENSITIVE: []
|
9053
9060
|
end
|
9054
9061
|
|
9062
|
+
class UniqueKey
|
9063
|
+
attr_accessor column_names: ::Array[::String]
|
9064
|
+
SENSITIVE: []
|
9065
|
+
end
|
9066
|
+
|
9055
9067
|
class UniqueValuesComputation
|
9056
9068
|
attr_accessor computation_id: ::String
|
9057
9069
|
attr_accessor name: ::String
|
@@ -9340,6 +9352,7 @@ module Aws::QuickSight
|
|
9340
9352
|
attr_accessor column_level_permission_rules: ::Array[Types::ColumnLevelPermissionRule]
|
9341
9353
|
attr_accessor data_set_usage_configuration: Types::DataSetUsageConfiguration
|
9342
9354
|
attr_accessor dataset_parameters: ::Array[Types::DatasetParameter]
|
9355
|
+
attr_accessor performance_configuration: Types::PerformanceConfiguration
|
9343
9356
|
SENSITIVE: []
|
9344
9357
|
end
|
9345
9358
|
|
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.141.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:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|