aws-sdk-quicksight 1.87.0 → 1.89.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 +81 -25
- data/lib/aws-sdk-quicksight/client_api.rb +94 -14
- data/lib/aws-sdk-quicksight/types.rb +212 -33
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0ddb791a35e0daa8712eda76d0135c059711eeab3a4de92fb44f3d3f01c3052
|
4
|
+
data.tar.gz: 0ad1a2950431774434063a0c59e4de35c629ea386cdd1d4255690903b8182709
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e8811b7291440e719cff3aab839dc67902a4eec55c0eea65cc1703b15472441d1c2a2f69dcf6030e673808fc7fb5a068ef89e2bc65614536bca813793eefbd0
|
7
|
+
data.tar.gz: be394f875a5968ee8dd26165126b4ac2c0c172301dc59d28668468b6a905ff37719873b179b97fc74bffd2d351681fe83ac77c7bb852710ebb725082afb441d0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.89.0 (2023-08-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Excel support in Snapshot Export APIs. Removed Required trait for some insight Computations. Namespace-shared Folders support. Global Filters support. Table pin Column support.
|
8
|
+
|
9
|
+
1.88.0 (2023-08-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - New Authentication method for Account subscription - IAM Identity Center. Hierarchy layout support, default column width support and related style properties for pivot table visuals. Non-additive topic field aggregations for Topic API
|
13
|
+
|
4
14
|
1.87.0 (2023-07-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.89.0
|
@@ -686,9 +686,9 @@ module Aws::QuickSight
|
|
686
686
|
#
|
687
687
|
# resp = client.create_account_subscription({
|
688
688
|
# edition: "STANDARD", # required, accepts STANDARD, ENTERPRISE, ENTERPRISE_AND_Q
|
689
|
-
# authentication_method: "IAM_AND_QUICKSIGHT", # required, accepts IAM_AND_QUICKSIGHT, IAM_ONLY, ACTIVE_DIRECTORY
|
689
|
+
# authentication_method: "IAM_AND_QUICKSIGHT", # required, accepts IAM_AND_QUICKSIGHT, IAM_ONLY, ACTIVE_DIRECTORY, IAM_IDENTITY_CENTER
|
690
690
|
# aws_account_id: "AwsAccountId", # required
|
691
|
-
# account_name: "
|
691
|
+
# account_name: "AccountName", # required
|
692
692
|
# notification_email: "String", # required
|
693
693
|
# active_directory_name: "String",
|
694
694
|
# realm: "String",
|
@@ -1568,6 +1568,10 @@ module Aws::QuickSight
|
|
1568
1568
|
# @option params [Array<Types::Tag>] :tags
|
1569
1569
|
# Tags for the folder.
|
1570
1570
|
#
|
1571
|
+
# @option params [String] :sharing_model
|
1572
|
+
# An optional parameter that determines the sharing scope of the folder.
|
1573
|
+
# The default value for this parameter is `ACCOUNT`.
|
1574
|
+
#
|
1571
1575
|
# @return [Types::CreateFolderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1572
1576
|
#
|
1573
1577
|
# * {Types::CreateFolderResponse#status #status} => Integer
|
@@ -1595,6 +1599,7 @@ module Aws::QuickSight
|
|
1595
1599
|
# value: "TagValue", # required
|
1596
1600
|
# },
|
1597
1601
|
# ],
|
1602
|
+
# sharing_model: "ACCOUNT", # accepts ACCOUNT, NAMESPACE
|
1598
1603
|
# })
|
1599
1604
|
#
|
1600
1605
|
# @example Response structure
|
@@ -1623,11 +1628,10 @@ module Aws::QuickSight
|
|
1623
1628
|
# The ID of the folder.
|
1624
1629
|
#
|
1625
1630
|
# @option params [required, String] :member_id
|
1626
|
-
# The ID of the asset
|
1631
|
+
# The ID of the asset that you want to add to the folder.
|
1627
1632
|
#
|
1628
1633
|
# @option params [required, String] :member_type
|
1629
|
-
# The type of the
|
1630
|
-
# `DATASET`.
|
1634
|
+
# The member type of the asset that you want to add to a folder.
|
1631
1635
|
#
|
1632
1636
|
# @return [Types::CreateFolderMembershipResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1633
1637
|
#
|
@@ -2474,7 +2478,7 @@ module Aws::QuickSight
|
|
2474
2478
|
# column_description: "LimitedString",
|
2475
2479
|
# column_synonyms: ["LimitedString"],
|
2476
2480
|
# column_data_role: "DIMENSION", # accepts DIMENSION, MEASURE
|
2477
|
-
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE
|
2481
|
+
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE, MEDIAN, STDEV, STDEVP, VAR, VARP
|
2478
2482
|
# is_included_in_topic: false,
|
2479
2483
|
# disable_indexing: false,
|
2480
2484
|
# comparative_order: {
|
@@ -2523,6 +2527,7 @@ module Aws::QuickSight
|
|
2523
2527
|
# synonyms: ["String"],
|
2524
2528
|
# },
|
2525
2529
|
# ],
|
2530
|
+
# non_additive: false,
|
2526
2531
|
# },
|
2527
2532
|
# ],
|
2528
2533
|
# calculated_fields: [
|
@@ -2555,7 +2560,7 @@ module Aws::QuickSight
|
|
2555
2560
|
# currency_symbol: "LimitedString",
|
2556
2561
|
# },
|
2557
2562
|
# },
|
2558
|
-
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE
|
2563
|
+
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE, MEDIAN, STDEV, STDEVP, VAR, VARP
|
2559
2564
|
# comparative_order: {
|
2560
2565
|
# use_ordering: "GREATER_IS_BETTER", # accepts GREATER_IS_BETTER, LESSER_IS_BETTER, SPECIFIED
|
2561
2566
|
# specifed_order: ["String"],
|
@@ -2581,6 +2586,7 @@ module Aws::QuickSight
|
|
2581
2586
|
# synonyms: ["String"],
|
2582
2587
|
# },
|
2583
2588
|
# ],
|
2589
|
+
# non_additive: false,
|
2584
2590
|
# },
|
2585
2591
|
# ],
|
2586
2592
|
# named_entities: [
|
@@ -3128,12 +3134,10 @@ module Aws::QuickSight
|
|
3128
3134
|
# The Folder ID.
|
3129
3135
|
#
|
3130
3136
|
# @option params [required, String] :member_id
|
3131
|
-
# The ID of the asset
|
3132
|
-
# want to delete.
|
3137
|
+
# The ID of the asset that you want to delete.
|
3133
3138
|
#
|
3134
3139
|
# @option params [required, String] :member_type
|
3135
|
-
# The type of the
|
3136
|
-
# `DATASET`
|
3140
|
+
# The member type of the asset that you want to delete from a folder.
|
3137
3141
|
#
|
3138
3142
|
# @return [Types::DeleteFolderMembershipResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3139
3143
|
#
|
@@ -3951,6 +3955,7 @@ module Aws::QuickSight
|
|
3951
3955
|
# resp.account_info.notification_email #=> String
|
3952
3956
|
# resp.account_info.authentication_type #=> String
|
3953
3957
|
# resp.account_info.account_subscription_status #=> String
|
3958
|
+
# resp.account_info.iam_identity_center_instance_arn #=> String
|
3954
3959
|
# resp.status #=> Integer
|
3955
3960
|
# resp.request_id #=> String
|
3956
3961
|
#
|
@@ -4594,7 +4599,7 @@ module Aws::QuickSight
|
|
4594
4599
|
# resp.snapshot_configuration.file_groups[0].files[0].sheet_selections[0].selection_scope #=> String, one of "ALL_VISUALS", "SELECTED_VISUALS"
|
4595
4600
|
# resp.snapshot_configuration.file_groups[0].files[0].sheet_selections[0].visual_ids #=> Array
|
4596
4601
|
# resp.snapshot_configuration.file_groups[0].files[0].sheet_selections[0].visual_ids[0] #=> String
|
4597
|
-
# resp.snapshot_configuration.file_groups[0].files[0].format_type #=> String, one of "CSV", "PDF"
|
4602
|
+
# resp.snapshot_configuration.file_groups[0].files[0].format_type #=> String, one of "CSV", "PDF", "EXCEL"
|
4598
4603
|
# resp.snapshot_configuration.destination_configuration.s3_destinations #=> Array
|
4599
4604
|
# resp.snapshot_configuration.destination_configuration.s3_destinations[0].bucket_configuration.bucket_name #=> String
|
4600
4605
|
# resp.snapshot_configuration.destination_configuration.s3_destinations[0].bucket_configuration.bucket_prefix #=> String
|
@@ -4685,7 +4690,7 @@ module Aws::QuickSight
|
|
4685
4690
|
# resp.result.anonymous_users[0].file_groups[0].files[0].sheet_selections[0].selection_scope #=> String, one of "ALL_VISUALS", "SELECTED_VISUALS"
|
4686
4691
|
# resp.result.anonymous_users[0].file_groups[0].files[0].sheet_selections[0].visual_ids #=> Array
|
4687
4692
|
# resp.result.anonymous_users[0].file_groups[0].files[0].sheet_selections[0].visual_ids[0] #=> String
|
4688
|
-
# resp.result.anonymous_users[0].file_groups[0].files[0].format_type #=> String, one of "CSV", "PDF"
|
4693
|
+
# resp.result.anonymous_users[0].file_groups[0].files[0].format_type #=> String, one of "CSV", "PDF", "EXCEL"
|
4689
4694
|
# resp.result.anonymous_users[0].file_groups[0].s3_results #=> Array
|
4690
4695
|
# resp.result.anonymous_users[0].file_groups[0].s3_results[0].s3_destination_configuration.bucket_configuration.bucket_name #=> String
|
4691
4696
|
# resp.result.anonymous_users[0].file_groups[0].s3_results[0].s3_destination_configuration.bucket_configuration.bucket_prefix #=> String
|
@@ -5191,6 +5196,7 @@ module Aws::QuickSight
|
|
5191
5196
|
# resp.folder.folder_path[0] #=> String
|
5192
5197
|
# resp.folder.created_time #=> Time
|
5193
5198
|
# resp.folder.last_updated_time #=> Time
|
5199
|
+
# resp.folder.sharing_model #=> String, one of "ACCOUNT", "NAMESPACE"
|
5194
5200
|
# resp.request_id #=> String
|
5195
5201
|
#
|
5196
5202
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeFolder AWS API Documentation
|
@@ -5210,6 +5216,15 @@ module Aws::QuickSight
|
|
5210
5216
|
# @option params [required, String] :folder_id
|
5211
5217
|
# The ID of the folder.
|
5212
5218
|
#
|
5219
|
+
# @option params [String] :namespace
|
5220
|
+
# The namespace of the folder whose permissions you want described.
|
5221
|
+
#
|
5222
|
+
# @option params [Integer] :max_results
|
5223
|
+
# The maximum number of results to be returned per request.
|
5224
|
+
#
|
5225
|
+
# @option params [String] :next_token
|
5226
|
+
# A pagination token for the next set of results.
|
5227
|
+
#
|
5213
5228
|
# @return [Types::DescribeFolderPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5214
5229
|
#
|
5215
5230
|
# * {Types::DescribeFolderPermissionsResponse#status #status} => Integer
|
@@ -5217,12 +5232,18 @@ module Aws::QuickSight
|
|
5217
5232
|
# * {Types::DescribeFolderPermissionsResponse#arn #arn} => String
|
5218
5233
|
# * {Types::DescribeFolderPermissionsResponse#permissions #permissions} => Array<Types::ResourcePermission>
|
5219
5234
|
# * {Types::DescribeFolderPermissionsResponse#request_id #request_id} => String
|
5235
|
+
# * {Types::DescribeFolderPermissionsResponse#next_token #next_token} => String
|
5236
|
+
#
|
5237
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5220
5238
|
#
|
5221
5239
|
# @example Request syntax with placeholder values
|
5222
5240
|
#
|
5223
5241
|
# resp = client.describe_folder_permissions({
|
5224
5242
|
# aws_account_id: "AwsAccountId", # required
|
5225
5243
|
# folder_id: "RestrictiveResourceId", # required
|
5244
|
+
# namespace: "Namespace",
|
5245
|
+
# max_results: 1,
|
5246
|
+
# next_token: "String",
|
5226
5247
|
# })
|
5227
5248
|
#
|
5228
5249
|
# @example Response structure
|
@@ -5235,6 +5256,7 @@ module Aws::QuickSight
|
|
5235
5256
|
# resp.permissions[0].actions #=> Array
|
5236
5257
|
# resp.permissions[0].actions[0] #=> String
|
5237
5258
|
# resp.request_id #=> String
|
5259
|
+
# resp.next_token #=> String
|
5238
5260
|
#
|
5239
5261
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeFolderPermissions AWS API Documentation
|
5240
5262
|
#
|
@@ -5255,6 +5277,15 @@ module Aws::QuickSight
|
|
5255
5277
|
# @option params [required, String] :folder_id
|
5256
5278
|
# The ID of the folder.
|
5257
5279
|
#
|
5280
|
+
# @option params [String] :namespace
|
5281
|
+
# The namespace of the folder whose permissions you want described.
|
5282
|
+
#
|
5283
|
+
# @option params [Integer] :max_results
|
5284
|
+
# The maximum number of results to be returned per request.
|
5285
|
+
#
|
5286
|
+
# @option params [String] :next_token
|
5287
|
+
# A pagination token for the next set of results.
|
5288
|
+
#
|
5258
5289
|
# @return [Types::DescribeFolderResolvedPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5259
5290
|
#
|
5260
5291
|
# * {Types::DescribeFolderResolvedPermissionsResponse#status #status} => Integer
|
@@ -5262,12 +5293,18 @@ module Aws::QuickSight
|
|
5262
5293
|
# * {Types::DescribeFolderResolvedPermissionsResponse#arn #arn} => String
|
5263
5294
|
# * {Types::DescribeFolderResolvedPermissionsResponse#permissions #permissions} => Array<Types::ResourcePermission>
|
5264
5295
|
# * {Types::DescribeFolderResolvedPermissionsResponse#request_id #request_id} => String
|
5296
|
+
# * {Types::DescribeFolderResolvedPermissionsResponse#next_token #next_token} => String
|
5297
|
+
#
|
5298
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5265
5299
|
#
|
5266
5300
|
# @example Request syntax with placeholder values
|
5267
5301
|
#
|
5268
5302
|
# resp = client.describe_folder_resolved_permissions({
|
5269
5303
|
# aws_account_id: "AwsAccountId", # required
|
5270
5304
|
# folder_id: "RestrictiveResourceId", # required
|
5305
|
+
# namespace: "Namespace",
|
5306
|
+
# max_results: 1,
|
5307
|
+
# next_token: "String",
|
5271
5308
|
# })
|
5272
5309
|
#
|
5273
5310
|
# @example Response structure
|
@@ -5280,6 +5317,7 @@ module Aws::QuickSight
|
|
5280
5317
|
# resp.permissions[0].actions #=> Array
|
5281
5318
|
# resp.permissions[0].actions[0] #=> String
|
5282
5319
|
# resp.request_id #=> String
|
5320
|
+
# resp.next_token #=> String
|
5283
5321
|
#
|
5284
5322
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeFolderResolvedPermissions AWS API Documentation
|
5285
5323
|
#
|
@@ -6100,7 +6138,7 @@ module Aws::QuickSight
|
|
6100
6138
|
# resp.topic.data_sets[0].columns[0].column_synonyms #=> Array
|
6101
6139
|
# resp.topic.data_sets[0].columns[0].column_synonyms[0] #=> String
|
6102
6140
|
# resp.topic.data_sets[0].columns[0].column_data_role #=> String, one of "DIMENSION", "MEASURE"
|
6103
|
-
# resp.topic.data_sets[0].columns[0].aggregation #=> String, one of "SUM", "MAX", "MIN", "COUNT", "DISTINCT_COUNT", "AVERAGE"
|
6141
|
+
# resp.topic.data_sets[0].columns[0].aggregation #=> String, one of "SUM", "MAX", "MIN", "COUNT", "DISTINCT_COUNT", "AVERAGE", "MEDIAN", "STDEV", "STDEVP", "VAR", "VARP"
|
6104
6142
|
# resp.topic.data_sets[0].columns[0].is_included_in_topic #=> Boolean
|
6105
6143
|
# resp.topic.data_sets[0].columns[0].disable_indexing #=> Boolean
|
6106
6144
|
# resp.topic.data_sets[0].columns[0].comparative_order.use_ordering #=> String, one of "GREATER_IS_BETTER", "LESSER_IS_BETTER", "SPECIFIED"
|
@@ -6141,6 +6179,7 @@ module Aws::QuickSight
|
|
6141
6179
|
# resp.topic.data_sets[0].columns[0].cell_value_synonyms[0].cell_value #=> String
|
6142
6180
|
# resp.topic.data_sets[0].columns[0].cell_value_synonyms[0].synonyms #=> Array
|
6143
6181
|
# resp.topic.data_sets[0].columns[0].cell_value_synonyms[0].synonyms[0] #=> String
|
6182
|
+
# resp.topic.data_sets[0].columns[0].non_additive #=> Boolean
|
6144
6183
|
# resp.topic.data_sets[0].calculated_fields #=> Array
|
6145
6184
|
# resp.topic.data_sets[0].calculated_fields[0].calculated_field_name #=> String
|
6146
6185
|
# resp.topic.data_sets[0].calculated_fields[0].calculated_field_description #=> String
|
@@ -6165,7 +6204,7 @@ module Aws::QuickSight
|
|
6165
6204
|
# resp.topic.data_sets[0].calculated_fields[0].default_formatting.display_format_options.negative_format.prefix #=> String
|
6166
6205
|
# resp.topic.data_sets[0].calculated_fields[0].default_formatting.display_format_options.negative_format.suffix #=> String
|
6167
6206
|
# resp.topic.data_sets[0].calculated_fields[0].default_formatting.display_format_options.currency_symbol #=> String
|
6168
|
-
# resp.topic.data_sets[0].calculated_fields[0].aggregation #=> String, one of "SUM", "MAX", "MIN", "COUNT", "DISTINCT_COUNT", "AVERAGE"
|
6207
|
+
# resp.topic.data_sets[0].calculated_fields[0].aggregation #=> String, one of "SUM", "MAX", "MIN", "COUNT", "DISTINCT_COUNT", "AVERAGE", "MEDIAN", "STDEV", "STDEVP", "VAR", "VARP"
|
6169
6208
|
# resp.topic.data_sets[0].calculated_fields[0].comparative_order.use_ordering #=> String, one of "GREATER_IS_BETTER", "LESSER_IS_BETTER", "SPECIFIED"
|
6170
6209
|
# resp.topic.data_sets[0].calculated_fields[0].comparative_order.specifed_order #=> Array
|
6171
6210
|
# resp.topic.data_sets[0].calculated_fields[0].comparative_order.specifed_order[0] #=> String
|
@@ -6189,6 +6228,7 @@ module Aws::QuickSight
|
|
6189
6228
|
# resp.topic.data_sets[0].calculated_fields[0].cell_value_synonyms[0].cell_value #=> String
|
6190
6229
|
# resp.topic.data_sets[0].calculated_fields[0].cell_value_synonyms[0].synonyms #=> Array
|
6191
6230
|
# resp.topic.data_sets[0].calculated_fields[0].cell_value_synonyms[0].synonyms[0] #=> String
|
6231
|
+
# resp.topic.data_sets[0].calculated_fields[0].non_additive #=> Boolean
|
6192
6232
|
# resp.topic.data_sets[0].named_entities #=> Array
|
6193
6233
|
# resp.topic.data_sets[0].named_entities[0].entity_name #=> String
|
6194
6234
|
# resp.topic.data_sets[0].named_entities[0].entity_description #=> String
|
@@ -6394,7 +6434,7 @@ module Aws::QuickSight
|
|
6394
6434
|
# resp.user.user_name #=> String
|
6395
6435
|
# resp.user.email #=> String
|
6396
6436
|
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
6397
|
-
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT"
|
6437
|
+
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
6398
6438
|
# resp.user.active #=> Boolean
|
6399
6439
|
# resp.user.principal_id #=> String
|
6400
6440
|
# resp.user.custom_permissions_name #=> String
|
@@ -7482,6 +7522,8 @@ module Aws::QuickSight
|
|
7482
7522
|
# * {Types::ListFolderMembersResponse#next_token #next_token} => String
|
7483
7523
|
# * {Types::ListFolderMembersResponse#request_id #request_id} => String
|
7484
7524
|
#
|
7525
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7526
|
+
#
|
7485
7527
|
# @example Request syntax with placeholder values
|
7486
7528
|
#
|
7487
7529
|
# resp = client.list_folder_members({
|
@@ -7528,6 +7570,8 @@ module Aws::QuickSight
|
|
7528
7570
|
# * {Types::ListFoldersResponse#next_token #next_token} => String
|
7529
7571
|
# * {Types::ListFoldersResponse#request_id #request_id} => String
|
7530
7572
|
#
|
7573
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7574
|
+
#
|
7531
7575
|
# @example Request syntax with placeholder values
|
7532
7576
|
#
|
7533
7577
|
# resp = client.list_folders({
|
@@ -7546,6 +7590,7 @@ module Aws::QuickSight
|
|
7546
7590
|
# resp.folder_summary_list[0].folder_type #=> String, one of "SHARED"
|
7547
7591
|
# resp.folder_summary_list[0].created_time #=> Time
|
7548
7592
|
# resp.folder_summary_list[0].last_updated_time #=> Time
|
7593
|
+
# resp.folder_summary_list[0].sharing_model #=> String, one of "ACCOUNT", "NAMESPACE"
|
7549
7594
|
# resp.next_token #=> String
|
7550
7595
|
# resp.request_id #=> String
|
7551
7596
|
#
|
@@ -8523,7 +8568,7 @@ module Aws::QuickSight
|
|
8523
8568
|
# resp.user_list[0].user_name #=> String
|
8524
8569
|
# resp.user_list[0].email #=> String
|
8525
8570
|
# resp.user_list[0].role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
8526
|
-
# resp.user_list[0].identity_type #=> String, one of "IAM", "QUICKSIGHT"
|
8571
|
+
# resp.user_list[0].identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
8527
8572
|
# resp.user_list[0].active #=> Boolean
|
8528
8573
|
# resp.user_list[0].principal_id #=> String
|
8529
8574
|
# resp.user_list[0].custom_permissions_name #=> String
|
@@ -8796,7 +8841,7 @@ module Aws::QuickSight
|
|
8796
8841
|
# @example Request syntax with placeholder values
|
8797
8842
|
#
|
8798
8843
|
# resp = client.register_user({
|
8799
|
-
# identity_type: "IAM", # required, accepts IAM, QUICKSIGHT
|
8844
|
+
# identity_type: "IAM", # required, accepts IAM, QUICKSIGHT, IAM_IDENTITY_CENTER
|
8800
8845
|
# email: "String", # required
|
8801
8846
|
# user_role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, RESTRICTED_AUTHOR, RESTRICTED_READER
|
8802
8847
|
# iam_arn: "String",
|
@@ -8816,7 +8861,7 @@ module Aws::QuickSight
|
|
8816
8861
|
# resp.user.user_name #=> String
|
8817
8862
|
# resp.user.email #=> String
|
8818
8863
|
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
8819
|
-
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT"
|
8864
|
+
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
8820
8865
|
# resp.user.active #=> Boolean
|
8821
8866
|
# resp.user.principal_id #=> String
|
8822
8867
|
# resp.user.custom_permissions_name #=> String
|
@@ -9166,6 +9211,8 @@ module Aws::QuickSight
|
|
9166
9211
|
# * {Types::SearchFoldersResponse#next_token #next_token} => String
|
9167
9212
|
# * {Types::SearchFoldersResponse#request_id #request_id} => String
|
9168
9213
|
#
|
9214
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9215
|
+
#
|
9169
9216
|
# @example Request syntax with placeholder values
|
9170
9217
|
#
|
9171
9218
|
# resp = client.search_folders({
|
@@ -9191,6 +9238,7 @@ module Aws::QuickSight
|
|
9191
9238
|
# resp.folder_summary_list[0].folder_type #=> String, one of "SHARED"
|
9192
9239
|
# resp.folder_summary_list[0].created_time #=> Time
|
9193
9240
|
# resp.folder_summary_list[0].last_updated_time #=> Time
|
9241
|
+
# resp.folder_summary_list[0].sharing_model #=> String, one of "ACCOUNT", "NAMESPACE"
|
9194
9242
|
# resp.next_token #=> String
|
9195
9243
|
# resp.request_id #=> String
|
9196
9244
|
#
|
@@ -9657,7 +9705,13 @@ module Aws::QuickSight
|
|
9657
9705
|
end
|
9658
9706
|
|
9659
9707
|
# Starts an asynchronous job that generates a dashboard snapshot. You
|
9660
|
-
# can request
|
9708
|
+
# can request one of the following format configurations per API call.
|
9709
|
+
#
|
9710
|
+
# * 1 paginated PDF
|
9711
|
+
#
|
9712
|
+
# * 1 Excel workbook
|
9713
|
+
#
|
9714
|
+
# * 5 CSVs
|
9661
9715
|
#
|
9662
9716
|
# Poll job descriptions with a `DescribeDashboardSnapshotJob` API call.
|
9663
9717
|
# Once the job succeeds, use the `DescribeDashboardSnapshotJobResult`
|
@@ -9723,7 +9777,7 @@ module Aws::QuickSight
|
|
9723
9777
|
# visual_ids: ["ShortRestrictiveResourceId"],
|
9724
9778
|
# },
|
9725
9779
|
# ],
|
9726
|
-
# format_type: "CSV", # required, accepts CSV, PDF
|
9780
|
+
# format_type: "CSV", # required, accepts CSV, PDF, EXCEL
|
9727
9781
|
# },
|
9728
9782
|
# ],
|
9729
9783
|
# },
|
@@ -11974,7 +12028,7 @@ module Aws::QuickSight
|
|
11974
12028
|
# column_description: "LimitedString",
|
11975
12029
|
# column_synonyms: ["LimitedString"],
|
11976
12030
|
# column_data_role: "DIMENSION", # accepts DIMENSION, MEASURE
|
11977
|
-
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE
|
12031
|
+
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE, MEDIAN, STDEV, STDEVP, VAR, VARP
|
11978
12032
|
# is_included_in_topic: false,
|
11979
12033
|
# disable_indexing: false,
|
11980
12034
|
# comparative_order: {
|
@@ -12023,6 +12077,7 @@ module Aws::QuickSight
|
|
12023
12077
|
# synonyms: ["String"],
|
12024
12078
|
# },
|
12025
12079
|
# ],
|
12080
|
+
# non_additive: false,
|
12026
12081
|
# },
|
12027
12082
|
# ],
|
12028
12083
|
# calculated_fields: [
|
@@ -12055,7 +12110,7 @@ module Aws::QuickSight
|
|
12055
12110
|
# currency_symbol: "LimitedString",
|
12056
12111
|
# },
|
12057
12112
|
# },
|
12058
|
-
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE
|
12113
|
+
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE, MEDIAN, STDEV, STDEVP, VAR, VARP
|
12059
12114
|
# comparative_order: {
|
12060
12115
|
# use_ordering: "GREATER_IS_BETTER", # accepts GREATER_IS_BETTER, LESSER_IS_BETTER, SPECIFIED
|
12061
12116
|
# specifed_order: ["String"],
|
@@ -12081,6 +12136,7 @@ module Aws::QuickSight
|
|
12081
12136
|
# synonyms: ["String"],
|
12082
12137
|
# },
|
12083
12138
|
# ],
|
12139
|
+
# non_additive: false,
|
12084
12140
|
# },
|
12085
12141
|
# ],
|
12086
12142
|
# named_entities: [
|
@@ -12375,7 +12431,7 @@ module Aws::QuickSight
|
|
12375
12431
|
# resp.user.user_name #=> String
|
12376
12432
|
# resp.user.email #=> String
|
12377
12433
|
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
12378
|
-
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT"
|
12434
|
+
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
12379
12435
|
# resp.user.active #=> Boolean
|
12380
12436
|
# resp.user.principal_id #=> String
|
12381
12437
|
# resp.user.custom_permissions_name #=> String
|
@@ -12473,7 +12529,7 @@ module Aws::QuickSight
|
|
12473
12529
|
params: params,
|
12474
12530
|
config: config)
|
12475
12531
|
context[:gem_name] = 'aws-sdk-quicksight'
|
12476
|
-
context[:gem_version] = '1.
|
12532
|
+
context[:gem_version] = '1.89.0'
|
12477
12533
|
Seahorse::Client::Request.new(handlers, context)
|
12478
12534
|
end
|
12479
12535
|
|