aws-sdk-quicksight 1.107.0 → 1.108.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +91 -11
- data/lib/aws-sdk-quicksight/client_api.rb +76 -0
- data/lib/aws-sdk-quicksight/types.rb +375 -23
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +8396 -31
- data/sig/types.rbs +85 -1
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -233,7 +233,7 @@ module Aws::QuickSight
|
|
233
233
|
|
234
234
|
class AssetBundleExportJobDataSourceOverrideProperties
|
235
235
|
attr_accessor arn: ::String
|
236
|
-
attr_accessor properties: ::Array[("Name" | "DisableSsl" | "SecretArn" | "Username" | "Password" | "Domain" | "WorkGroup" | "Host" | "Port" | "Database" | "DataSetName" | "Catalog" | "InstanceId" | "ClusterId" | "ManifestFileLocation" | "Warehouse" | "RoleArn")]
|
236
|
+
attr_accessor properties: ::Array[("Name" | "DisableSsl" | "SecretArn" | "Username" | "Password" | "Domain" | "WorkGroup" | "Host" | "Port" | "Database" | "DataSetName" | "Catalog" | "InstanceId" | "ClusterId" | "ManifestFileLocation" | "Warehouse" | "RoleArn" | "ProductType")]
|
237
237
|
SENSITIVE: []
|
238
238
|
end
|
239
239
|
|
@@ -477,6 +477,12 @@ module Aws::QuickSight
|
|
477
477
|
SENSITIVE: []
|
478
478
|
end
|
479
479
|
|
480
|
+
class AssetBundleImportJobWarning
|
481
|
+
attr_accessor arn: ::String
|
482
|
+
attr_accessor message: ::String
|
483
|
+
SENSITIVE: []
|
484
|
+
end
|
485
|
+
|
480
486
|
class AssetBundleImportSource
|
481
487
|
attr_accessor body: ::String
|
482
488
|
attr_accessor s3_uri: ::String
|
@@ -839,6 +845,7 @@ module Aws::QuickSight
|
|
839
845
|
attr_accessor filter_id: ::String
|
840
846
|
attr_accessor column: Types::ColumnIdentifier
|
841
847
|
attr_accessor configuration: Types::CategoryFilterConfiguration
|
848
|
+
attr_accessor default_filter_control_configuration: Types::DefaultFilterControlConfiguration
|
842
849
|
SENSITIVE: []
|
843
850
|
end
|
844
851
|
|
@@ -2198,6 +2205,43 @@ module Aws::QuickSight
|
|
2198
2205
|
SENSITIVE: [:custom_value]
|
2199
2206
|
end
|
2200
2207
|
|
2208
|
+
class DefaultDateTimePickerControlOptions
|
2209
|
+
attr_accessor type: ("SINGLE_VALUED" | "DATE_RANGE")
|
2210
|
+
attr_accessor display_options: Types::DateTimePickerControlDisplayOptions
|
2211
|
+
SENSITIVE: []
|
2212
|
+
end
|
2213
|
+
|
2214
|
+
class DefaultFilterControlConfiguration
|
2215
|
+
attr_accessor title: ::String
|
2216
|
+
attr_accessor control_options: Types::DefaultFilterControlOptions
|
2217
|
+
SENSITIVE: []
|
2218
|
+
end
|
2219
|
+
|
2220
|
+
class DefaultFilterControlOptions
|
2221
|
+
attr_accessor default_date_time_picker_options: Types::DefaultDateTimePickerControlOptions
|
2222
|
+
attr_accessor default_list_options: Types::DefaultFilterListControlOptions
|
2223
|
+
attr_accessor default_dropdown_options: Types::DefaultFilterDropDownControlOptions
|
2224
|
+
attr_accessor default_text_field_options: Types::DefaultTextFieldControlOptions
|
2225
|
+
attr_accessor default_text_area_options: Types::DefaultTextAreaControlOptions
|
2226
|
+
attr_accessor default_slider_options: Types::DefaultSliderControlOptions
|
2227
|
+
attr_accessor default_relative_date_time_options: Types::DefaultRelativeDateTimeControlOptions
|
2228
|
+
SENSITIVE: []
|
2229
|
+
end
|
2230
|
+
|
2231
|
+
class DefaultFilterDropDownControlOptions
|
2232
|
+
attr_accessor display_options: Types::DropDownControlDisplayOptions
|
2233
|
+
attr_accessor type: ("MULTI_SELECT" | "SINGLE_SELECT")
|
2234
|
+
attr_accessor selectable_values: Types::FilterSelectableValues
|
2235
|
+
SENSITIVE: []
|
2236
|
+
end
|
2237
|
+
|
2238
|
+
class DefaultFilterListControlOptions
|
2239
|
+
attr_accessor display_options: Types::ListControlDisplayOptions
|
2240
|
+
attr_accessor type: ("MULTI_SELECT" | "SINGLE_SELECT")
|
2241
|
+
attr_accessor selectable_values: Types::FilterSelectableValues
|
2242
|
+
SENSITIVE: []
|
2243
|
+
end
|
2244
|
+
|
2201
2245
|
class DefaultFormatting
|
2202
2246
|
attr_accessor display_format: ("AUTO" | "PERCENT" | "CURRENCY" | "NUMBER" | "DATE" | "STRING")
|
2203
2247
|
attr_accessor display_format_options: Types::DisplayFormatOptions
|
@@ -2232,11 +2276,36 @@ module Aws::QuickSight
|
|
2232
2276
|
SENSITIVE: []
|
2233
2277
|
end
|
2234
2278
|
|
2279
|
+
class DefaultRelativeDateTimeControlOptions
|
2280
|
+
attr_accessor display_options: Types::RelativeDateTimeControlDisplayOptions
|
2281
|
+
SENSITIVE: []
|
2282
|
+
end
|
2283
|
+
|
2235
2284
|
class DefaultSectionBasedLayoutConfiguration
|
2236
2285
|
attr_accessor canvas_size_options: Types::SectionBasedLayoutCanvasSizeOptions
|
2237
2286
|
SENSITIVE: []
|
2238
2287
|
end
|
2239
2288
|
|
2289
|
+
class DefaultSliderControlOptions
|
2290
|
+
attr_accessor display_options: Types::SliderControlDisplayOptions
|
2291
|
+
attr_accessor type: ("SINGLE_POINT" | "RANGE")
|
2292
|
+
attr_accessor maximum_value: ::Float
|
2293
|
+
attr_accessor minimum_value: ::Float
|
2294
|
+
attr_accessor step_size: ::Float
|
2295
|
+
SENSITIVE: []
|
2296
|
+
end
|
2297
|
+
|
2298
|
+
class DefaultTextAreaControlOptions
|
2299
|
+
attr_accessor delimiter: ::String
|
2300
|
+
attr_accessor display_options: Types::TextAreaControlDisplayOptions
|
2301
|
+
SENSITIVE: []
|
2302
|
+
end
|
2303
|
+
|
2304
|
+
class DefaultTextFieldControlOptions
|
2305
|
+
attr_accessor display_options: Types::TextFieldControlDisplayOptions
|
2306
|
+
SENSITIVE: []
|
2307
|
+
end
|
2308
|
+
|
2240
2309
|
class DeleteAccountCustomizationRequest
|
2241
2310
|
attr_accessor aws_account_id: ::String
|
2242
2311
|
attr_accessor namespace: ::String
|
@@ -2737,6 +2806,7 @@ module Aws::QuickSight
|
|
2737
2806
|
attr_accessor override_permissions: Types::AssetBundleImportJobOverridePermissions
|
2738
2807
|
attr_accessor override_tags: Types::AssetBundleImportJobOverrideTags
|
2739
2808
|
attr_accessor override_validation_strategy: Types::AssetBundleImportJobOverrideValidationStrategy
|
2809
|
+
attr_accessor warnings: ::Array[Types::AssetBundleImportJobWarning]
|
2740
2810
|
SENSITIVE: []
|
2741
2811
|
end
|
2742
2812
|
|
@@ -3506,6 +3576,14 @@ module Aws::QuickSight
|
|
3506
3576
|
attr_accessor text_area: Types::FilterTextAreaControl
|
3507
3577
|
attr_accessor slider: Types::FilterSliderControl
|
3508
3578
|
attr_accessor relative_date_time: Types::FilterRelativeDateTimeControl
|
3579
|
+
attr_accessor cross_sheet: Types::FilterCrossSheetControl
|
3580
|
+
SENSITIVE: []
|
3581
|
+
end
|
3582
|
+
|
3583
|
+
class FilterCrossSheetControl
|
3584
|
+
attr_accessor filter_control_id: ::String
|
3585
|
+
attr_accessor source_filter_id: ::String
|
3586
|
+
attr_accessor cascading_control_configuration: Types::CascadingControlConfiguration
|
3509
3587
|
SENSITIVE: []
|
3510
3588
|
end
|
3511
3589
|
|
@@ -5285,6 +5363,7 @@ module Aws::QuickSight
|
|
5285
5363
|
attr_accessor aggregation_function: Types::AggregationFunction
|
5286
5364
|
attr_accessor parameter_name: ::String
|
5287
5365
|
attr_accessor null_option: ("ALL_VALUES" | "NULLS_ONLY" | "NON_NULLS_ONLY")
|
5366
|
+
attr_accessor default_filter_control_configuration: Types::DefaultFilterControlConfiguration
|
5288
5367
|
SENSITIVE: []
|
5289
5368
|
end
|
5290
5369
|
|
@@ -5305,6 +5384,7 @@ module Aws::QuickSight
|
|
5305
5384
|
attr_accessor select_all_options: ("FILTER_ALL_VALUES")
|
5306
5385
|
attr_accessor aggregation_function: Types::AggregationFunction
|
5307
5386
|
attr_accessor null_option: ("ALL_VALUES" | "NULLS_ONLY" | "NON_NULLS_ONLY")
|
5387
|
+
attr_accessor default_filter_control_configuration: Types::DefaultFilterControlConfiguration
|
5308
5388
|
SENSITIVE: []
|
5309
5389
|
end
|
5310
5390
|
|
@@ -6058,6 +6138,7 @@ module Aws::QuickSight
|
|
6058
6138
|
attr_accessor parameter_name: ::String
|
6059
6139
|
attr_accessor null_option: ("ALL_VALUES" | "NULLS_ONLY" | "NON_NULLS_ONLY")
|
6060
6140
|
attr_accessor exclude_period_configuration: Types::ExcludePeriodConfiguration
|
6141
|
+
attr_accessor default_filter_control_configuration: Types::DefaultFilterControlConfiguration
|
6061
6142
|
SENSITIVE: []
|
6062
6143
|
end
|
6063
6144
|
|
@@ -7275,6 +7356,7 @@ module Aws::QuickSight
|
|
7275
7356
|
attr_accessor parameter_name: ::String
|
7276
7357
|
attr_accessor time_granularity: ("YEAR" | "QUARTER" | "MONTH" | "WEEK" | "DAY" | "HOUR" | "MINUTE" | "SECOND" | "MILLISECOND")
|
7277
7358
|
attr_accessor rolling_date: Types::RollingDateConfiguration
|
7359
|
+
attr_accessor default_filter_control_configuration: Types::DefaultFilterControlConfiguration
|
7278
7360
|
SENSITIVE: []
|
7279
7361
|
end
|
7280
7362
|
|
@@ -7296,6 +7378,7 @@ module Aws::QuickSight
|
|
7296
7378
|
attr_accessor null_option: ("ALL_VALUES" | "NULLS_ONLY" | "NON_NULLS_ONLY")
|
7297
7379
|
attr_accessor exclude_period_configuration: Types::ExcludePeriodConfiguration
|
7298
7380
|
attr_accessor time_granularity: ("YEAR" | "QUARTER" | "MONTH" | "WEEK" | "DAY" | "HOUR" | "MINUTE" | "SECOND" | "MILLISECOND")
|
7381
|
+
attr_accessor default_filter_control_configuration: Types::DefaultFilterControlConfiguration
|
7299
7382
|
SENSITIVE: []
|
7300
7383
|
end
|
7301
7384
|
|
@@ -7326,6 +7409,7 @@ module Aws::QuickSight
|
|
7326
7409
|
attr_accessor aggregation_sort_configurations: ::Array[Types::AggregationSortConfiguration]
|
7327
7410
|
attr_accessor time_granularity: ("YEAR" | "QUARTER" | "MONTH" | "WEEK" | "DAY" | "HOUR" | "MINUTE" | "SECOND" | "MILLISECOND")
|
7328
7411
|
attr_accessor parameter_name: ::String
|
7412
|
+
attr_accessor default_filter_control_configuration: Types::DefaultFilterControlConfiguration
|
7329
7413
|
SENSITIVE: []
|
7330
7414
|
end
|
7331
7415
|
|
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.108.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: 2024-04-
|
11
|
+
date: 2024-04-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|