aws-sdk-quicksight 1.87.0 → 1.88.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 +26 -15
- data/lib/aws-sdk-quicksight/client_api.rb +25 -1
- data/lib/aws-sdk-quicksight/types.rb +97 -14
- 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: 37a2fe78d4d339c100019b9779d2a58bd8a147ebfc20208fa82f477c65896d6a
|
|
4
|
+
data.tar.gz: 4aceaaa951ea392cdbad08457358d9452d9d2315582ece7e3aeb152dc845a1d5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2df07bea28a4715bc69171fbd3e006eb99c626cfda232f8a671a42675aece809c7b5604f51738b7b9c4f0f5152c1bf00fe0c80c4849dc590cdae3464f99c9544
|
|
7
|
+
data.tar.gz: 750efb906131c423d78d1212f67cbfcd5962b0e23dc25779a745da8e05cd66bb327b4836be0cd853e5ceb209c5959653ed9a549615860a3964d447cc97eeba7f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.88.0 (2023-08-11)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* 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
|
|
8
|
+
|
|
4
9
|
1.87.0 (2023-07-24)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.88.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",
|
|
@@ -2474,7 +2474,7 @@ module Aws::QuickSight
|
|
|
2474
2474
|
# column_description: "LimitedString",
|
|
2475
2475
|
# column_synonyms: ["LimitedString"],
|
|
2476
2476
|
# column_data_role: "DIMENSION", # accepts DIMENSION, MEASURE
|
|
2477
|
-
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE
|
|
2477
|
+
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE, MEDIAN, STDEV, STDEVP, VAR, VARP
|
|
2478
2478
|
# is_included_in_topic: false,
|
|
2479
2479
|
# disable_indexing: false,
|
|
2480
2480
|
# comparative_order: {
|
|
@@ -2523,6 +2523,7 @@ module Aws::QuickSight
|
|
|
2523
2523
|
# synonyms: ["String"],
|
|
2524
2524
|
# },
|
|
2525
2525
|
# ],
|
|
2526
|
+
# non_additive: false,
|
|
2526
2527
|
# },
|
|
2527
2528
|
# ],
|
|
2528
2529
|
# calculated_fields: [
|
|
@@ -2555,7 +2556,7 @@ module Aws::QuickSight
|
|
|
2555
2556
|
# currency_symbol: "LimitedString",
|
|
2556
2557
|
# },
|
|
2557
2558
|
# },
|
|
2558
|
-
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE
|
|
2559
|
+
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE, MEDIAN, STDEV, STDEVP, VAR, VARP
|
|
2559
2560
|
# comparative_order: {
|
|
2560
2561
|
# use_ordering: "GREATER_IS_BETTER", # accepts GREATER_IS_BETTER, LESSER_IS_BETTER, SPECIFIED
|
|
2561
2562
|
# specifed_order: ["String"],
|
|
@@ -2581,6 +2582,7 @@ module Aws::QuickSight
|
|
|
2581
2582
|
# synonyms: ["String"],
|
|
2582
2583
|
# },
|
|
2583
2584
|
# ],
|
|
2585
|
+
# non_additive: false,
|
|
2584
2586
|
# },
|
|
2585
2587
|
# ],
|
|
2586
2588
|
# named_entities: [
|
|
@@ -3951,6 +3953,7 @@ module Aws::QuickSight
|
|
|
3951
3953
|
# resp.account_info.notification_email #=> String
|
|
3952
3954
|
# resp.account_info.authentication_type #=> String
|
|
3953
3955
|
# resp.account_info.account_subscription_status #=> String
|
|
3956
|
+
# resp.account_info.iam_identity_center_instance_arn #=> String
|
|
3954
3957
|
# resp.status #=> Integer
|
|
3955
3958
|
# resp.request_id #=> String
|
|
3956
3959
|
#
|
|
@@ -6100,7 +6103,7 @@ module Aws::QuickSight
|
|
|
6100
6103
|
# resp.topic.data_sets[0].columns[0].column_synonyms #=> Array
|
|
6101
6104
|
# resp.topic.data_sets[0].columns[0].column_synonyms[0] #=> String
|
|
6102
6105
|
# 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"
|
|
6106
|
+
# resp.topic.data_sets[0].columns[0].aggregation #=> String, one of "SUM", "MAX", "MIN", "COUNT", "DISTINCT_COUNT", "AVERAGE", "MEDIAN", "STDEV", "STDEVP", "VAR", "VARP"
|
|
6104
6107
|
# resp.topic.data_sets[0].columns[0].is_included_in_topic #=> Boolean
|
|
6105
6108
|
# resp.topic.data_sets[0].columns[0].disable_indexing #=> Boolean
|
|
6106
6109
|
# resp.topic.data_sets[0].columns[0].comparative_order.use_ordering #=> String, one of "GREATER_IS_BETTER", "LESSER_IS_BETTER", "SPECIFIED"
|
|
@@ -6141,6 +6144,7 @@ module Aws::QuickSight
|
|
|
6141
6144
|
# resp.topic.data_sets[0].columns[0].cell_value_synonyms[0].cell_value #=> String
|
|
6142
6145
|
# resp.topic.data_sets[0].columns[0].cell_value_synonyms[0].synonyms #=> Array
|
|
6143
6146
|
# resp.topic.data_sets[0].columns[0].cell_value_synonyms[0].synonyms[0] #=> String
|
|
6147
|
+
# resp.topic.data_sets[0].columns[0].non_additive #=> Boolean
|
|
6144
6148
|
# resp.topic.data_sets[0].calculated_fields #=> Array
|
|
6145
6149
|
# resp.topic.data_sets[0].calculated_fields[0].calculated_field_name #=> String
|
|
6146
6150
|
# resp.topic.data_sets[0].calculated_fields[0].calculated_field_description #=> String
|
|
@@ -6165,7 +6169,7 @@ module Aws::QuickSight
|
|
|
6165
6169
|
# resp.topic.data_sets[0].calculated_fields[0].default_formatting.display_format_options.negative_format.prefix #=> String
|
|
6166
6170
|
# resp.topic.data_sets[0].calculated_fields[0].default_formatting.display_format_options.negative_format.suffix #=> String
|
|
6167
6171
|
# 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"
|
|
6172
|
+
# 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
6173
|
# resp.topic.data_sets[0].calculated_fields[0].comparative_order.use_ordering #=> String, one of "GREATER_IS_BETTER", "LESSER_IS_BETTER", "SPECIFIED"
|
|
6170
6174
|
# resp.topic.data_sets[0].calculated_fields[0].comparative_order.specifed_order #=> Array
|
|
6171
6175
|
# resp.topic.data_sets[0].calculated_fields[0].comparative_order.specifed_order[0] #=> String
|
|
@@ -6189,6 +6193,7 @@ module Aws::QuickSight
|
|
|
6189
6193
|
# resp.topic.data_sets[0].calculated_fields[0].cell_value_synonyms[0].cell_value #=> String
|
|
6190
6194
|
# resp.topic.data_sets[0].calculated_fields[0].cell_value_synonyms[0].synonyms #=> Array
|
|
6191
6195
|
# resp.topic.data_sets[0].calculated_fields[0].cell_value_synonyms[0].synonyms[0] #=> String
|
|
6196
|
+
# resp.topic.data_sets[0].calculated_fields[0].non_additive #=> Boolean
|
|
6192
6197
|
# resp.topic.data_sets[0].named_entities #=> Array
|
|
6193
6198
|
# resp.topic.data_sets[0].named_entities[0].entity_name #=> String
|
|
6194
6199
|
# resp.topic.data_sets[0].named_entities[0].entity_description #=> String
|
|
@@ -6394,7 +6399,7 @@ module Aws::QuickSight
|
|
|
6394
6399
|
# resp.user.user_name #=> String
|
|
6395
6400
|
# resp.user.email #=> String
|
|
6396
6401
|
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
|
6397
|
-
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT"
|
|
6402
|
+
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
|
6398
6403
|
# resp.user.active #=> Boolean
|
|
6399
6404
|
# resp.user.principal_id #=> String
|
|
6400
6405
|
# resp.user.custom_permissions_name #=> String
|
|
@@ -8523,7 +8528,7 @@ module Aws::QuickSight
|
|
|
8523
8528
|
# resp.user_list[0].user_name #=> String
|
|
8524
8529
|
# resp.user_list[0].email #=> String
|
|
8525
8530
|
# 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"
|
|
8531
|
+
# resp.user_list[0].identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
|
8527
8532
|
# resp.user_list[0].active #=> Boolean
|
|
8528
8533
|
# resp.user_list[0].principal_id #=> String
|
|
8529
8534
|
# resp.user_list[0].custom_permissions_name #=> String
|
|
@@ -8796,7 +8801,7 @@ module Aws::QuickSight
|
|
|
8796
8801
|
# @example Request syntax with placeholder values
|
|
8797
8802
|
#
|
|
8798
8803
|
# resp = client.register_user({
|
|
8799
|
-
# identity_type: "IAM", # required, accepts IAM, QUICKSIGHT
|
|
8804
|
+
# identity_type: "IAM", # required, accepts IAM, QUICKSIGHT, IAM_IDENTITY_CENTER
|
|
8800
8805
|
# email: "String", # required
|
|
8801
8806
|
# user_role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, RESTRICTED_AUTHOR, RESTRICTED_READER
|
|
8802
8807
|
# iam_arn: "String",
|
|
@@ -8816,7 +8821,7 @@ module Aws::QuickSight
|
|
|
8816
8821
|
# resp.user.user_name #=> String
|
|
8817
8822
|
# resp.user.email #=> String
|
|
8818
8823
|
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
|
8819
|
-
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT"
|
|
8824
|
+
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
|
8820
8825
|
# resp.user.active #=> Boolean
|
|
8821
8826
|
# resp.user.principal_id #=> String
|
|
8822
8827
|
# resp.user.custom_permissions_name #=> String
|
|
@@ -9657,7 +9662,11 @@ module Aws::QuickSight
|
|
|
9657
9662
|
end
|
|
9658
9663
|
|
|
9659
9664
|
# Starts an asynchronous job that generates a dashboard snapshot. You
|
|
9660
|
-
# can request
|
|
9665
|
+
# can request one of the following format configurations per API call.
|
|
9666
|
+
#
|
|
9667
|
+
# * 1 paginated PDF
|
|
9668
|
+
#
|
|
9669
|
+
# * 5 CSVs
|
|
9661
9670
|
#
|
|
9662
9671
|
# Poll job descriptions with a `DescribeDashboardSnapshotJob` API call.
|
|
9663
9672
|
# Once the job succeeds, use the `DescribeDashboardSnapshotJobResult`
|
|
@@ -11974,7 +11983,7 @@ module Aws::QuickSight
|
|
|
11974
11983
|
# column_description: "LimitedString",
|
|
11975
11984
|
# column_synonyms: ["LimitedString"],
|
|
11976
11985
|
# column_data_role: "DIMENSION", # accepts DIMENSION, MEASURE
|
|
11977
|
-
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE
|
|
11986
|
+
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE, MEDIAN, STDEV, STDEVP, VAR, VARP
|
|
11978
11987
|
# is_included_in_topic: false,
|
|
11979
11988
|
# disable_indexing: false,
|
|
11980
11989
|
# comparative_order: {
|
|
@@ -12023,6 +12032,7 @@ module Aws::QuickSight
|
|
|
12023
12032
|
# synonyms: ["String"],
|
|
12024
12033
|
# },
|
|
12025
12034
|
# ],
|
|
12035
|
+
# non_additive: false,
|
|
12026
12036
|
# },
|
|
12027
12037
|
# ],
|
|
12028
12038
|
# calculated_fields: [
|
|
@@ -12055,7 +12065,7 @@ module Aws::QuickSight
|
|
|
12055
12065
|
# currency_symbol: "LimitedString",
|
|
12056
12066
|
# },
|
|
12057
12067
|
# },
|
|
12058
|
-
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE
|
|
12068
|
+
# aggregation: "SUM", # accepts SUM, MAX, MIN, COUNT, DISTINCT_COUNT, AVERAGE, MEDIAN, STDEV, STDEVP, VAR, VARP
|
|
12059
12069
|
# comparative_order: {
|
|
12060
12070
|
# use_ordering: "GREATER_IS_BETTER", # accepts GREATER_IS_BETTER, LESSER_IS_BETTER, SPECIFIED
|
|
12061
12071
|
# specifed_order: ["String"],
|
|
@@ -12081,6 +12091,7 @@ module Aws::QuickSight
|
|
|
12081
12091
|
# synonyms: ["String"],
|
|
12082
12092
|
# },
|
|
12083
12093
|
# ],
|
|
12094
|
+
# non_additive: false,
|
|
12084
12095
|
# },
|
|
12085
12096
|
# ],
|
|
12086
12097
|
# named_entities: [
|
|
@@ -12375,7 +12386,7 @@ module Aws::QuickSight
|
|
|
12375
12386
|
# resp.user.user_name #=> String
|
|
12376
12387
|
# resp.user.email #=> String
|
|
12377
12388
|
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
|
12378
|
-
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT"
|
|
12389
|
+
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
|
12379
12390
|
# resp.user.active #=> Boolean
|
|
12380
12391
|
# resp.user.principal_id #=> String
|
|
12381
12392
|
# resp.user.custom_permissions_name #=> String
|
|
@@ -12473,7 +12484,7 @@ module Aws::QuickSight
|
|
|
12473
12484
|
params: params,
|
|
12474
12485
|
config: config)
|
|
12475
12486
|
context[:gem_name] = 'aws-sdk-quicksight'
|
|
12476
|
-
context[:gem_version] = '1.
|
|
12487
|
+
context[:gem_version] = '1.88.0'
|
|
12477
12488
|
Seahorse::Client::Request.new(handlers, context)
|
|
12478
12489
|
end
|
|
12479
12490
|
|
|
@@ -16,6 +16,7 @@ module Aws::QuickSight
|
|
|
16
16
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
|
17
17
|
AccountCustomization = Shapes::StructureShape.new(name: 'AccountCustomization')
|
|
18
18
|
AccountInfo = Shapes::StructureShape.new(name: 'AccountInfo')
|
|
19
|
+
AccountName = Shapes::StringShape.new(name: 'AccountName')
|
|
19
20
|
AccountSettings = Shapes::StructureShape.new(name: 'AccountSettings')
|
|
20
21
|
ActionList = Shapes::ListShape.new(name: 'ActionList')
|
|
21
22
|
ActiveIAMPolicyAssignment = Shapes::StructureShape.new(name: 'ActiveIAMPolicyAssignment')
|
|
@@ -1097,6 +1098,9 @@ module Aws::QuickSight
|
|
|
1097
1098
|
PivotTableMetricPlacement = Shapes::StringShape.new(name: 'PivotTableMetricPlacement')
|
|
1098
1099
|
PivotTableOptions = Shapes::StructureShape.new(name: 'PivotTableOptions')
|
|
1099
1100
|
PivotTablePaginatedReportOptions = Shapes::StructureShape.new(name: 'PivotTablePaginatedReportOptions')
|
|
1101
|
+
PivotTableRowsLabelOptions = Shapes::StructureShape.new(name: 'PivotTableRowsLabelOptions')
|
|
1102
|
+
PivotTableRowsLabelText = Shapes::StringShape.new(name: 'PivotTableRowsLabelText')
|
|
1103
|
+
PivotTableRowsLayout = Shapes::StringShape.new(name: 'PivotTableRowsLayout')
|
|
1100
1104
|
PivotTableSortBy = Shapes::StructureShape.new(name: 'PivotTableSortBy')
|
|
1101
1105
|
PivotTableSortConfiguration = Shapes::StructureShape.new(name: 'PivotTableSortConfiguration')
|
|
1102
1106
|
PivotTableSubtotalLevel = Shapes::StringShape.new(name: 'PivotTableSubtotalLevel')
|
|
@@ -1388,6 +1392,7 @@ module Aws::QuickSight
|
|
|
1388
1392
|
StringParameterDeclaration = Shapes::StructureShape.new(name: 'StringParameterDeclaration')
|
|
1389
1393
|
StringParameterList = Shapes::ListShape.new(name: 'StringParameterList')
|
|
1390
1394
|
StringValueWhenUnsetConfiguration = Shapes::StructureShape.new(name: 'StringValueWhenUnsetConfiguration')
|
|
1395
|
+
StyledCellType = Shapes::StringShape.new(name: 'StyledCellType')
|
|
1391
1396
|
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
|
1392
1397
|
SubnetIdList = Shapes::ListShape.new(name: 'SubnetIdList')
|
|
1393
1398
|
SubtotalOptions = Shapes::StructureShape.new(name: 'SubtotalOptions')
|
|
@@ -1425,6 +1430,8 @@ module Aws::QuickSight
|
|
|
1425
1430
|
TableRowConditionalFormatting = Shapes::StructureShape.new(name: 'TableRowConditionalFormatting')
|
|
1426
1431
|
TableSideBorderOptions = Shapes::StructureShape.new(name: 'TableSideBorderOptions')
|
|
1427
1432
|
TableSortConfiguration = Shapes::StructureShape.new(name: 'TableSortConfiguration')
|
|
1433
|
+
TableStyleTarget = Shapes::StructureShape.new(name: 'TableStyleTarget')
|
|
1434
|
+
TableStyleTargetList = Shapes::ListShape.new(name: 'TableStyleTargetList')
|
|
1428
1435
|
TableTotalsPlacement = Shapes::StringShape.new(name: 'TableTotalsPlacement')
|
|
1429
1436
|
TableTotalsScrollStatus = Shapes::StringShape.new(name: 'TableTotalsScrollStatus')
|
|
1430
1437
|
TableUnaggregatedFieldWells = Shapes::StructureShape.new(name: 'TableUnaggregatedFieldWells')
|
|
@@ -1692,6 +1699,7 @@ module Aws::QuickSight
|
|
|
1692
1699
|
AccountInfo.add_member(:notification_email, Shapes::ShapeRef.new(shape: String, location_name: "NotificationEmail"))
|
|
1693
1700
|
AccountInfo.add_member(:authentication_type, Shapes::ShapeRef.new(shape: String, location_name: "AuthenticationType"))
|
|
1694
1701
|
AccountInfo.add_member(:account_subscription_status, Shapes::ShapeRef.new(shape: String, location_name: "AccountSubscriptionStatus"))
|
|
1702
|
+
AccountInfo.add_member(:iam_identity_center_instance_arn, Shapes::ShapeRef.new(shape: String, location_name: "IAMIdentityCenterInstanceArn"))
|
|
1695
1703
|
AccountInfo.struct_class = Types::AccountInfo
|
|
1696
1704
|
|
|
1697
1705
|
AccountSettings.add_member(:account_name, Shapes::ShapeRef.new(shape: String, location_name: "AccountName"))
|
|
@@ -2509,7 +2517,7 @@ module Aws::QuickSight
|
|
|
2509
2517
|
CreateAccountSubscriptionRequest.add_member(:edition, Shapes::ShapeRef.new(shape: Edition, required: true, location_name: "Edition"))
|
|
2510
2518
|
CreateAccountSubscriptionRequest.add_member(:authentication_method, Shapes::ShapeRef.new(shape: AuthenticationMethodOption, required: true, location_name: "AuthenticationMethod"))
|
|
2511
2519
|
CreateAccountSubscriptionRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
|
2512
|
-
CreateAccountSubscriptionRequest.add_member(:account_name, Shapes::ShapeRef.new(shape:
|
|
2520
|
+
CreateAccountSubscriptionRequest.add_member(:account_name, Shapes::ShapeRef.new(shape: AccountName, required: true, location_name: "AccountName"))
|
|
2513
2521
|
CreateAccountSubscriptionRequest.add_member(:notification_email, Shapes::ShapeRef.new(shape: String, required: true, location_name: "NotificationEmail"))
|
|
2514
2522
|
CreateAccountSubscriptionRequest.add_member(:active_directory_name, Shapes::ShapeRef.new(shape: String, location_name: "ActiveDirectoryName"))
|
|
2515
2523
|
CreateAccountSubscriptionRequest.add_member(:realm, Shapes::ShapeRef.new(shape: String, location_name: "Realm"))
|
|
@@ -5904,12 +5912,19 @@ module Aws::QuickSight
|
|
|
5904
5912
|
PivotTableOptions.add_member(:row_field_names_style, Shapes::ShapeRef.new(shape: TableCellStyle, location_name: "RowFieldNamesStyle"))
|
|
5905
5913
|
PivotTableOptions.add_member(:row_alternate_color_options, Shapes::ShapeRef.new(shape: RowAlternateColorOptions, location_name: "RowAlternateColorOptions"))
|
|
5906
5914
|
PivotTableOptions.add_member(:collapsed_row_dimensions_visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "CollapsedRowDimensionsVisibility"))
|
|
5915
|
+
PivotTableOptions.add_member(:rows_layout, Shapes::ShapeRef.new(shape: PivotTableRowsLayout, location_name: "RowsLayout"))
|
|
5916
|
+
PivotTableOptions.add_member(:rows_label_options, Shapes::ShapeRef.new(shape: PivotTableRowsLabelOptions, location_name: "RowsLabelOptions"))
|
|
5917
|
+
PivotTableOptions.add_member(:default_cell_width, Shapes::ShapeRef.new(shape: PixelLength, location_name: "DefaultCellWidth"))
|
|
5907
5918
|
PivotTableOptions.struct_class = Types::PivotTableOptions
|
|
5908
5919
|
|
|
5909
5920
|
PivotTablePaginatedReportOptions.add_member(:vertical_overflow_visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "VerticalOverflowVisibility"))
|
|
5910
5921
|
PivotTablePaginatedReportOptions.add_member(:overflow_column_header_visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "OverflowColumnHeaderVisibility"))
|
|
5911
5922
|
PivotTablePaginatedReportOptions.struct_class = Types::PivotTablePaginatedReportOptions
|
|
5912
5923
|
|
|
5924
|
+
PivotTableRowsLabelOptions.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
|
5925
|
+
PivotTableRowsLabelOptions.add_member(:custom_label, Shapes::ShapeRef.new(shape: PivotTableRowsLabelText, location_name: "CustomLabel"))
|
|
5926
|
+
PivotTableRowsLabelOptions.struct_class = Types::PivotTableRowsLabelOptions
|
|
5927
|
+
|
|
5913
5928
|
PivotTableSortBy.add_member(:field, Shapes::ShapeRef.new(shape: FieldSort, location_name: "Field"))
|
|
5914
5929
|
PivotTableSortBy.add_member(:column, Shapes::ShapeRef.new(shape: ColumnSort, location_name: "Column"))
|
|
5915
5930
|
PivotTableSortBy.add_member(:data_path, Shapes::ShapeRef.new(shape: DataPathSort, location_name: "DataPath"))
|
|
@@ -6229,6 +6244,7 @@ module Aws::QuickSight
|
|
|
6229
6244
|
|
|
6230
6245
|
RowAlternateColorOptions.add_member(:status, Shapes::ShapeRef.new(shape: WidgetStatus, location_name: "Status"))
|
|
6231
6246
|
RowAlternateColorOptions.add_member(:row_alternate_colors, Shapes::ShapeRef.new(shape: RowAlternateColorList, location_name: "RowAlternateColors"))
|
|
6247
|
+
RowAlternateColorOptions.add_member(:use_primary_background_color, Shapes::ShapeRef.new(shape: WidgetStatus, location_name: "UsePrimaryBackgroundColor"))
|
|
6232
6248
|
RowAlternateColorOptions.struct_class = Types::RowAlternateColorOptions
|
|
6233
6249
|
|
|
6234
6250
|
RowInfo.add_member(:rows_ingested, Shapes::ShapeRef.new(shape: Long, location_name: "RowsIngested", metadata: {"box"=>true}))
|
|
@@ -6797,6 +6813,7 @@ module Aws::QuickSight
|
|
|
6797
6813
|
SubtotalOptions.add_member(:total_cell_style, Shapes::ShapeRef.new(shape: TableCellStyle, location_name: "TotalCellStyle"))
|
|
6798
6814
|
SubtotalOptions.add_member(:value_cell_style, Shapes::ShapeRef.new(shape: TableCellStyle, location_name: "ValueCellStyle"))
|
|
6799
6815
|
SubtotalOptions.add_member(:metric_header_cell_style, Shapes::ShapeRef.new(shape: TableCellStyle, location_name: "MetricHeaderCellStyle"))
|
|
6816
|
+
SubtotalOptions.add_member(:style_targets, Shapes::ShapeRef.new(shape: TableStyleTargetList, location_name: "StyleTargets"))
|
|
6800
6817
|
SubtotalOptions.struct_class = Types::SubtotalOptions
|
|
6801
6818
|
|
|
6802
6819
|
Synonyms.member = Shapes::ShapeRef.new(shape: LimitedString)
|
|
@@ -6915,6 +6932,11 @@ module Aws::QuickSight
|
|
|
6915
6932
|
TableSortConfiguration.add_member(:pagination_configuration, Shapes::ShapeRef.new(shape: PaginationConfiguration, location_name: "PaginationConfiguration"))
|
|
6916
6933
|
TableSortConfiguration.struct_class = Types::TableSortConfiguration
|
|
6917
6934
|
|
|
6935
|
+
TableStyleTarget.add_member(:cell_type, Shapes::ShapeRef.new(shape: StyledCellType, required: true, location_name: "CellType"))
|
|
6936
|
+
TableStyleTarget.struct_class = Types::TableStyleTarget
|
|
6937
|
+
|
|
6938
|
+
TableStyleTargetList.member = Shapes::ShapeRef.new(shape: TableStyleTarget)
|
|
6939
|
+
|
|
6918
6940
|
TableUnaggregatedFieldWells.add_member(:values, Shapes::ShapeRef.new(shape: UnaggregatedFieldList, location_name: "Values"))
|
|
6919
6941
|
TableUnaggregatedFieldWells.struct_class = Types::TableUnaggregatedFieldWells
|
|
6920
6942
|
|
|
@@ -7205,6 +7227,7 @@ module Aws::QuickSight
|
|
|
7205
7227
|
TopicCalculatedField.add_member(:not_allowed_aggregations, Shapes::ShapeRef.new(shape: AuthorSpecifiedAggregations, location_name: "NotAllowedAggregations"))
|
|
7206
7228
|
TopicCalculatedField.add_member(:never_aggregate_in_filter, Shapes::ShapeRef.new(shape: Boolean, location_name: "NeverAggregateInFilter"))
|
|
7207
7229
|
TopicCalculatedField.add_member(:cell_value_synonyms, Shapes::ShapeRef.new(shape: CellValueSynonyms, location_name: "CellValueSynonyms"))
|
|
7230
|
+
TopicCalculatedField.add_member(:non_additive, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "NonAdditive"))
|
|
7208
7231
|
TopicCalculatedField.struct_class = Types::TopicCalculatedField
|
|
7209
7232
|
|
|
7210
7233
|
TopicCalculatedFields.member = Shapes::ShapeRef.new(shape: TopicCalculatedField)
|
|
@@ -7236,6 +7259,7 @@ module Aws::QuickSight
|
|
|
7236
7259
|
TopicColumn.add_member(:default_formatting, Shapes::ShapeRef.new(shape: DefaultFormatting, location_name: "DefaultFormatting"))
|
|
7237
7260
|
TopicColumn.add_member(:never_aggregate_in_filter, Shapes::ShapeRef.new(shape: Boolean, location_name: "NeverAggregateInFilter"))
|
|
7238
7261
|
TopicColumn.add_member(:cell_value_synonyms, Shapes::ShapeRef.new(shape: CellValueSynonyms, location_name: "CellValueSynonyms"))
|
|
7262
|
+
TopicColumn.add_member(:non_additive, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "NonAdditive"))
|
|
7239
7263
|
TopicColumn.struct_class = Types::TopicColumn
|
|
7240
7264
|
|
|
7241
7265
|
TopicColumns.member = Shapes::ShapeRef.new(shape: TopicColumn)
|
|
@@ -91,6 +91,10 @@ module Aws::QuickSight
|
|
|
91
91
|
# The status of your account subscription.
|
|
92
92
|
# @return [String]
|
|
93
93
|
#
|
|
94
|
+
# @!attribute [rw] iam_identity_center_instance_arn
|
|
95
|
+
# The Amazon Resource Name (ARN) for the IAM Identity Center instance.
|
|
96
|
+
# @return [String]
|
|
97
|
+
#
|
|
94
98
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AccountInfo AWS API Documentation
|
|
95
99
|
#
|
|
96
100
|
class AccountInfo < Struct.new(
|
|
@@ -98,7 +102,8 @@ module Aws::QuickSight
|
|
|
98
102
|
:edition,
|
|
99
103
|
:notification_email,
|
|
100
104
|
:authentication_type,
|
|
101
|
-
:account_subscription_status
|
|
105
|
+
:account_subscription_status,
|
|
106
|
+
:iam_identity_center_instance_arn)
|
|
102
107
|
SENSITIVE = []
|
|
103
108
|
include Aws::Structure
|
|
104
109
|
end
|
|
@@ -20667,6 +20672,28 @@ module Aws::QuickSight
|
|
|
20667
20672
|
# is `VISIBLE`.
|
|
20668
20673
|
# @return [String]
|
|
20669
20674
|
#
|
|
20675
|
+
# @!attribute [rw] rows_layout
|
|
20676
|
+
# The layout for the row dimension headers of a pivot table. Choose
|
|
20677
|
+
# one of the following options.
|
|
20678
|
+
#
|
|
20679
|
+
# * `TABULAR`: (Default) Each row field is displayed in a separate
|
|
20680
|
+
# column.
|
|
20681
|
+
#
|
|
20682
|
+
# * `HIERARCHY`: All row fields are displayed in a single column.
|
|
20683
|
+
# Indentation is used to differentiate row headers of different
|
|
20684
|
+
# fields.
|
|
20685
|
+
# @return [String]
|
|
20686
|
+
#
|
|
20687
|
+
# @!attribute [rw] rows_label_options
|
|
20688
|
+
# The options for the label that is located above the row headers.
|
|
20689
|
+
# This option is only applicable when `RowsLayout` is set to
|
|
20690
|
+
# `HIERARCHY`.
|
|
20691
|
+
# @return [Types::PivotTableRowsLabelOptions]
|
|
20692
|
+
#
|
|
20693
|
+
# @!attribute [rw] default_cell_width
|
|
20694
|
+
# The default cell width of the pivot table.
|
|
20695
|
+
# @return [String]
|
|
20696
|
+
#
|
|
20670
20697
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PivotTableOptions AWS API Documentation
|
|
20671
20698
|
#
|
|
20672
20699
|
class PivotTableOptions < Struct.new(
|
|
@@ -20679,7 +20706,10 @@ module Aws::QuickSight
|
|
|
20679
20706
|
:cell_style,
|
|
20680
20707
|
:row_field_names_style,
|
|
20681
20708
|
:row_alternate_color_options,
|
|
20682
|
-
:collapsed_row_dimensions_visibility
|
|
20709
|
+
:collapsed_row_dimensions_visibility,
|
|
20710
|
+
:rows_layout,
|
|
20711
|
+
:rows_label_options,
|
|
20712
|
+
:default_cell_width)
|
|
20683
20713
|
SENSITIVE = []
|
|
20684
20714
|
include Aws::Structure
|
|
20685
20715
|
end
|
|
@@ -20703,6 +20733,26 @@ module Aws::QuickSight
|
|
|
20703
20733
|
include Aws::Structure
|
|
20704
20734
|
end
|
|
20705
20735
|
|
|
20736
|
+
# The options for the label thta is located above the row headers. This
|
|
20737
|
+
# option is only applicable when `RowsLayout` is set to `HIERARCHY`.
|
|
20738
|
+
#
|
|
20739
|
+
# @!attribute [rw] visibility
|
|
20740
|
+
# The visibility of the rows label.
|
|
20741
|
+
# @return [String]
|
|
20742
|
+
#
|
|
20743
|
+
# @!attribute [rw] custom_label
|
|
20744
|
+
# The custom label string for the rows label.
|
|
20745
|
+
# @return [String]
|
|
20746
|
+
#
|
|
20747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PivotTableRowsLabelOptions AWS API Documentation
|
|
20748
|
+
#
|
|
20749
|
+
class PivotTableRowsLabelOptions < Struct.new(
|
|
20750
|
+
:visibility,
|
|
20751
|
+
:custom_label)
|
|
20752
|
+
SENSITIVE = []
|
|
20753
|
+
include Aws::Structure
|
|
20754
|
+
end
|
|
20755
|
+
|
|
20706
20756
|
# The sort by field for the field sort options.
|
|
20707
20757
|
#
|
|
20708
20758
|
# @!attribute [rw] field
|
|
@@ -22434,11 +22484,16 @@ module Aws::QuickSight
|
|
|
22434
22484
|
# Determines the list of row alternate colors.
|
|
22435
22485
|
# @return [Array<String>]
|
|
22436
22486
|
#
|
|
22487
|
+
# @!attribute [rw] use_primary_background_color
|
|
22488
|
+
# The primary background color options for alternate rows.
|
|
22489
|
+
# @return [String]
|
|
22490
|
+
#
|
|
22437
22491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RowAlternateColorOptions AWS API Documentation
|
|
22438
22492
|
#
|
|
22439
22493
|
class RowAlternateColorOptions < Struct.new(
|
|
22440
22494
|
:status,
|
|
22441
|
-
:row_alternate_colors
|
|
22495
|
+
:row_alternate_colors,
|
|
22496
|
+
:use_primary_background_color)
|
|
22442
22497
|
SENSITIVE = []
|
|
22443
22498
|
include Aws::Structure
|
|
22444
22499
|
end
|
|
@@ -24347,7 +24402,7 @@ module Aws::QuickSight
|
|
|
24347
24402
|
#
|
|
24348
24403
|
# @!attribute [rw] format_type
|
|
24349
24404
|
# The format of the snapshot file to be generated. You can choose
|
|
24350
|
-
# between `CSV`
|
|
24405
|
+
# between `CSV` or `PDF`.
|
|
24351
24406
|
# @return [String]
|
|
24352
24407
|
#
|
|
24353
24408
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SnapshotFile AWS API Documentation
|
|
@@ -24380,7 +24435,7 @@ module Aws::QuickSight
|
|
|
24380
24435
|
#
|
|
24381
24436
|
# @!attribute [rw] sheet_id
|
|
24382
24437
|
# The sheet ID of the dashboard to generate the snapshot artifact
|
|
24383
|
-
# from. This value is required for CSV
|
|
24438
|
+
# from. This value is required for CSV and PDF format types.
|
|
24384
24439
|
# @return [String]
|
|
24385
24440
|
#
|
|
24386
24441
|
# @!attribute [rw] selection_scope
|
|
@@ -24396,10 +24451,10 @@ module Aws::QuickSight
|
|
|
24396
24451
|
# @return [String]
|
|
24397
24452
|
#
|
|
24398
24453
|
# @!attribute [rw] visual_ids
|
|
24399
|
-
# A
|
|
24400
|
-
#
|
|
24401
|
-
# required if you are generating a CSV.
|
|
24402
|
-
#
|
|
24454
|
+
# A list of visual IDs that are located in the selected sheet. This
|
|
24455
|
+
# structure supports tables and pivot tables. This structure is
|
|
24456
|
+
# required if you are generating a CSV. You can add a maximum of 1
|
|
24457
|
+
# visual ID to this structure.
|
|
24403
24458
|
# @return [Array<String>]
|
|
24404
24459
|
#
|
|
24405
24460
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SnapshotFileSheetSelection AWS API Documentation
|
|
@@ -25125,6 +25180,10 @@ module Aws::QuickSight
|
|
|
25125
25180
|
# The cell styling options for the subtotals of header cells.
|
|
25126
25181
|
# @return [Types::TableCellStyle]
|
|
25127
25182
|
#
|
|
25183
|
+
# @!attribute [rw] style_targets
|
|
25184
|
+
# The style targets options for subtotals.
|
|
25185
|
+
# @return [Array<Types::TableStyleTarget>]
|
|
25186
|
+
#
|
|
25128
25187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SubtotalOptions AWS API Documentation
|
|
25129
25188
|
#
|
|
25130
25189
|
class SubtotalOptions < Struct.new(
|
|
@@ -25134,7 +25193,8 @@ module Aws::QuickSight
|
|
|
25134
25193
|
:field_level_options,
|
|
25135
25194
|
:total_cell_style,
|
|
25136
25195
|
:value_cell_style,
|
|
25137
|
-
:metric_header_cell_style
|
|
25196
|
+
:metric_header_cell_style,
|
|
25197
|
+
:style_targets)
|
|
25138
25198
|
SENSITIVE = []
|
|
25139
25199
|
include Aws::Structure
|
|
25140
25200
|
end
|
|
@@ -25674,6 +25734,20 @@ module Aws::QuickSight
|
|
|
25674
25734
|
include Aws::Structure
|
|
25675
25735
|
end
|
|
25676
25736
|
|
|
25737
|
+
# The table style target.
|
|
25738
|
+
#
|
|
25739
|
+
# @!attribute [rw] cell_type
|
|
25740
|
+
# The cell type of the table style target.
|
|
25741
|
+
# @return [String]
|
|
25742
|
+
#
|
|
25743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TableStyleTarget AWS API Documentation
|
|
25744
|
+
#
|
|
25745
|
+
class TableStyleTarget < Struct.new(
|
|
25746
|
+
:cell_type)
|
|
25747
|
+
SENSITIVE = []
|
|
25748
|
+
include Aws::Structure
|
|
25749
|
+
end
|
|
25750
|
+
|
|
25677
25751
|
# The unaggregated field well for the table.
|
|
25678
25752
|
#
|
|
25679
25753
|
# @!attribute [rw] values
|
|
@@ -27082,6 +27156,10 @@ module Aws::QuickSight
|
|
|
27082
27156
|
# The other names or aliases for the calculated field cell value.
|
|
27083
27157
|
# @return [Array<Types::CellValueSynonym>]
|
|
27084
27158
|
#
|
|
27159
|
+
# @!attribute [rw] non_additive
|
|
27160
|
+
# The non additive for the table style target.
|
|
27161
|
+
# @return [Boolean]
|
|
27162
|
+
#
|
|
27085
27163
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicCalculatedField AWS API Documentation
|
|
27086
27164
|
#
|
|
27087
27165
|
class TopicCalculatedField < Struct.new(
|
|
@@ -27100,7 +27178,8 @@ module Aws::QuickSight
|
|
|
27100
27178
|
:allowed_aggregations,
|
|
27101
27179
|
:not_allowed_aggregations,
|
|
27102
27180
|
:never_aggregate_in_filter,
|
|
27103
|
-
:cell_value_synonyms
|
|
27181
|
+
:cell_value_synonyms,
|
|
27182
|
+
:non_additive)
|
|
27104
27183
|
SENSITIVE = [:expression]
|
|
27105
27184
|
include Aws::Structure
|
|
27106
27185
|
end
|
|
@@ -27189,8 +27268,7 @@ module Aws::QuickSight
|
|
|
27189
27268
|
#
|
|
27190
27269
|
# @!attribute [rw] aggregation
|
|
27191
27270
|
# The type of aggregation that is performed on the column data when
|
|
27192
|
-
# it's queried.
|
|
27193
|
-
# `MIN`, `COUNT`, `DISTINCT_COUNT`, and `AVERAGE`.
|
|
27271
|
+
# it's queried.
|
|
27194
27272
|
# @return [String]
|
|
27195
27273
|
#
|
|
27196
27274
|
# @!attribute [rw] is_included_in_topic
|
|
@@ -27244,6 +27322,10 @@ module Aws::QuickSight
|
|
|
27244
27322
|
# The other names or aliases for the column cell value.
|
|
27245
27323
|
# @return [Array<Types::CellValueSynonym>]
|
|
27246
27324
|
#
|
|
27325
|
+
# @!attribute [rw] non_additive
|
|
27326
|
+
# The non additive value for the column.
|
|
27327
|
+
# @return [Boolean]
|
|
27328
|
+
#
|
|
27247
27329
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicColumn AWS API Documentation
|
|
27248
27330
|
#
|
|
27249
27331
|
class TopicColumn < Struct.new(
|
|
@@ -27262,7 +27344,8 @@ module Aws::QuickSight
|
|
|
27262
27344
|
:not_allowed_aggregations,
|
|
27263
27345
|
:default_formatting,
|
|
27264
27346
|
:never_aggregate_in_filter,
|
|
27265
|
-
:cell_value_synonyms
|
|
27347
|
+
:cell_value_synonyms,
|
|
27348
|
+
:non_additive)
|
|
27266
27349
|
SENSITIVE = []
|
|
27267
27350
|
include Aws::Structure
|
|
27268
27351
|
end
|
data/lib/aws-sdk-quicksight.rb
CHANGED
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.88.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: 2023-
|
|
11
|
+
date: 2023-08-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|