aws-sdk-quicksight 1.30.0 → 1.35.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/lib/aws-sdk-quicksight/client.rb +109 -29
- data/lib/aws-sdk-quicksight/client_api.rb +43 -0
- data/lib/aws-sdk-quicksight/types.rb +262 -31
- 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: 1e0e1508be6131dd8827b37961de8a05702050061d4caf99524668492a0e5c74
|
4
|
+
data.tar.gz: 4f8aa926c5f6bbac12a143f925d637094eda713f0cb6d13fa49827ee45416c43
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1890dbf53f9096696f8218f89b77c86e7f015a0a24bd379646da956e5afa41597305d61a1e229bdf37d1fdf8591e76d8b07da6e820be91c277bdd7139241ffd6
|
7
|
+
data.tar.gz: 921efd37d6ab94c5ba68bf01b08048e53b8bad1bd9176ca43209f22621b86c916a8d105b640446f05a3e5f70c0ccd2e5ba884202b5028b7075fa0f1b4436a950
|
data/lib/aws-sdk-quicksight.rb
CHANGED
@@ -374,7 +374,7 @@ module Aws::QuickSight
|
|
374
374
|
# `CreateAccountCustomization` or `UpdateAccountCustomization` API
|
375
375
|
# operation. To further customize QuickSight by removing QuickSight
|
376
376
|
# sample assets and videos for all new users, see [Customizing
|
377
|
-
# QuickSight][1] in the Amazon QuickSight User Guide
|
377
|
+
# QuickSight][1] in the *Amazon QuickSight User Guide.*
|
378
378
|
#
|
379
379
|
# You can create customizations for your AWS account or, if you specify
|
380
380
|
# a namespace, for a QuickSight namespace instead. Customizations that
|
@@ -382,10 +382,14 @@ module Aws::QuickSight
|
|
382
382
|
# AWS account. To find out which customizations apply, use the
|
383
383
|
# `DescribeAccountCustomization` API operation.
|
384
384
|
#
|
385
|
-
# Before you
|
386
|
-
#
|
387
|
-
# the namespace
|
388
|
-
#
|
385
|
+
# Before you use the `CreateAccountCustomization` API operation to add a
|
386
|
+
# theme as the namespace default, make sure that you first share the
|
387
|
+
# theme with the namespace. If you don't share it with the namespace,
|
388
|
+
# the theme isn't visible to your users even if you make it the default
|
389
|
+
# theme. To check if the theme is shared, view the current permissions
|
390
|
+
# by using the ` DescribeThemePermissions ` API operation. To share the
|
391
|
+
# theme, grant permissions by using the ` UpdateThemePermissions ` API
|
392
|
+
# operation.
|
389
393
|
#
|
390
394
|
#
|
391
395
|
#
|
@@ -402,10 +406,10 @@ module Aws::QuickSight
|
|
402
406
|
# Region. You can add these to an AWS account and a QuickSight
|
403
407
|
# namespace.
|
404
408
|
#
|
405
|
-
# For example, you
|
409
|
+
# For example, you can add a default theme by setting
|
406
410
|
# `AccountCustomization` to the midnight theme: `"AccountCustomization":
|
407
|
-
# \{ "DefaultTheme": "arn:aws:quicksight::aws:theme/MIDNIGHT" \}
|
408
|
-
# you
|
411
|
+
# \{ "DefaultTheme": "arn:aws:quicksight::aws:theme/MIDNIGHT" \}`. Or,
|
412
|
+
# you can add a custom theme by specifying `"AccountCustomization": \{
|
409
413
|
# "DefaultTheme":
|
410
414
|
# "arn:aws:quicksight:us-west-2:111122223333:theme/bdb844d0-0fe9-4d9d-b520-0fe602d93639"
|
411
415
|
# \}`.
|
@@ -787,6 +791,9 @@ module Aws::QuickSight
|
|
787
791
|
# The row-level security configuration for the data that you want to
|
788
792
|
# create.
|
789
793
|
#
|
794
|
+
# @option params [Array<Types::ColumnLevelPermissionRule>] :column_level_permission_rules
|
795
|
+
# A set of one or more definitions of a ` ColumnLevelPermissionRule `.
|
796
|
+
#
|
790
797
|
# @option params [Array<Types::Tag>] :tags
|
791
798
|
# Contains a map of the key-value pairs for the resource tag or tags
|
792
799
|
# assigned to the dataset.
|
@@ -882,6 +889,9 @@ module Aws::QuickSight
|
|
882
889
|
# tags: [ # required
|
883
890
|
# {
|
884
891
|
# column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
|
892
|
+
# column_description: {
|
893
|
+
# text: "ColumnDescriptiveText",
|
894
|
+
# },
|
885
895
|
# },
|
886
896
|
# ],
|
887
897
|
# },
|
@@ -919,6 +929,12 @@ module Aws::QuickSight
|
|
919
929
|
# arn: "Arn", # required
|
920
930
|
# permission_policy: "GRANT_ACCESS", # required, accepts GRANT_ACCESS, DENY_ACCESS
|
921
931
|
# },
|
932
|
+
# column_level_permission_rules: [
|
933
|
+
# {
|
934
|
+
# principals: ["String"],
|
935
|
+
# column_names: ["String"],
|
936
|
+
# },
|
937
|
+
# ],
|
922
938
|
# tags: [
|
923
939
|
# {
|
924
940
|
# key: "TagKey", # required
|
@@ -1001,7 +1017,7 @@ module Aws::QuickSight
|
|
1001
1017
|
# aws_account_id: "AwsAccountId", # required
|
1002
1018
|
# data_source_id: "ResourceId", # required
|
1003
1019
|
# name: "ResourceName", # required
|
1004
|
-
# type: "ADOBE_ANALYTICS", # required, accepts ADOBE_ANALYTICS, AMAZON_ELASTICSEARCH, ATHENA, AURORA, AURORA_POSTGRESQL, AWS_IOT_ANALYTICS, GITHUB, JIRA, MARIADB, MYSQL, POSTGRESQL, PRESTO, REDSHIFT, S3, SALESFORCE, SERVICENOW, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, TWITTER
|
1020
|
+
# type: "ADOBE_ANALYTICS", # required, accepts ADOBE_ANALYTICS, AMAZON_ELASTICSEARCH, ATHENA, AURORA, AURORA_POSTGRESQL, AWS_IOT_ANALYTICS, GITHUB, JIRA, MARIADB, MYSQL, ORACLE, POSTGRESQL, PRESTO, REDSHIFT, S3, SALESFORCE, SERVICENOW, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, TWITTER, TIMESTREAM
|
1005
1021
|
# data_source_parameters: {
|
1006
1022
|
# amazon_elasticsearch_parameters: {
|
1007
1023
|
# domain: "Domain", # required
|
@@ -1035,6 +1051,11 @@ module Aws::QuickSight
|
|
1035
1051
|
# port: 1, # required
|
1036
1052
|
# database: "Database", # required
|
1037
1053
|
# },
|
1054
|
+
# oracle_parameters: {
|
1055
|
+
# host: "Host", # required
|
1056
|
+
# port: 1, # required
|
1057
|
+
# database: "Database", # required
|
1058
|
+
# },
|
1038
1059
|
# postgre_sql_parameters: {
|
1039
1060
|
# host: "Host", # required
|
1040
1061
|
# port: 1, # required
|
@@ -1126,6 +1147,11 @@ module Aws::QuickSight
|
|
1126
1147
|
# port: 1, # required
|
1127
1148
|
# database: "Database", # required
|
1128
1149
|
# },
|
1150
|
+
# oracle_parameters: {
|
1151
|
+
# host: "Host", # required
|
1152
|
+
# port: 1, # required
|
1153
|
+
# database: "Database", # required
|
1154
|
+
# },
|
1129
1155
|
# postgre_sql_parameters: {
|
1130
1156
|
# host: "Host", # required
|
1131
1157
|
# port: 1, # required
|
@@ -1323,16 +1349,18 @@ module Aws::QuickSight
|
|
1323
1349
|
end
|
1324
1350
|
|
1325
1351
|
# Creates an assignment with one specified IAM policy, identified by its
|
1326
|
-
# Amazon Resource Name (ARN). This policy
|
1327
|
-
# groups or users of Amazon QuickSight.
|
1328
|
-
#
|
1352
|
+
# Amazon Resource Name (ARN). This policy assignment is attached to the
|
1353
|
+
# specified groups or users of Amazon QuickSight. Assignment names are
|
1354
|
+
# unique per AWS account. To avoid overwriting rules in other
|
1355
|
+
# namespaces, use assignment names that are unique.
|
1329
1356
|
#
|
1330
1357
|
# @option params [required, String] :aws_account_id
|
1331
1358
|
# The ID of the AWS account where you want to assign an IAM policy to
|
1332
1359
|
# QuickSight users or groups.
|
1333
1360
|
#
|
1334
1361
|
# @option params [required, String] :assignment_name
|
1335
|
-
# The name of the assignment. It must be unique
|
1362
|
+
# The name of the assignment, also called a rule. It must be unique
|
1363
|
+
# within an AWS account.
|
1336
1364
|
#
|
1337
1365
|
# @option params [required, String] :assignment_status
|
1338
1366
|
# The status of the assignment. Possible values are as follows:
|
@@ -1869,7 +1897,7 @@ module Aws::QuickSight
|
|
1869
1897
|
end
|
1870
1898
|
|
1871
1899
|
# Deletes all Amazon QuickSight customizations in this AWS Region for
|
1872
|
-
# the specified AWS
|
1900
|
+
# the specified AWS account and QuickSight namespace.
|
1873
1901
|
#
|
1874
1902
|
# @option params [required, String] :aws_account_id
|
1875
1903
|
# The ID for the AWS account that you want to delete QuickSight
|
@@ -2539,7 +2567,7 @@ module Aws::QuickSight
|
|
2539
2567
|
# * `AWS Account` - The AWS account exists at the top of the hierarchy.
|
2540
2568
|
# It has the potential to use all of the AWS Regions and AWS Services.
|
2541
2569
|
# When you subscribe to QuickSight, you choose one AWS Region to use
|
2542
|
-
# as your home
|
2570
|
+
# as your home Region. That's where your free SPICE capacity is
|
2543
2571
|
# located. You can use QuickSight in any supported AWS Region.
|
2544
2572
|
#
|
2545
2573
|
# * `AWS Region` - In each AWS Region where you sign in to QuickSight at
|
@@ -2549,7 +2577,7 @@ module Aws::QuickSight
|
|
2549
2577
|
# have access to QuickSight in any AWS Region, unless they are
|
2550
2578
|
# constrained to a namespace.
|
2551
2579
|
#
|
2552
|
-
# To run the command in a different AWS Region, you change your
|
2580
|
+
# To run the command in a different AWS Region, you change your Region
|
2553
2581
|
# settings. If you're using the AWS CLI, you can use one of the
|
2554
2582
|
# following options:
|
2555
2583
|
#
|
@@ -2571,7 +2599,7 @@ module Aws::QuickSight
|
|
2571
2599
|
# * `Applied customizations` - Within an AWS Region, a set of QuickSight
|
2572
2600
|
# customizations can apply to an AWS account or to a namespace.
|
2573
2601
|
# Settings that you apply to a namespace override settings that you
|
2574
|
-
# apply to an AWS
|
2602
|
+
# apply to an AWS account. All settings are isolated to a single AWS
|
2575
2603
|
# Region. To apply them in other AWS Regions, run the
|
2576
2604
|
# `CreateAccountCustomization` command in each AWS Region where you
|
2577
2605
|
# want to apply the same customizations.
|
@@ -2634,7 +2662,7 @@ module Aws::QuickSight
|
|
2634
2662
|
end
|
2635
2663
|
|
2636
2664
|
# Describes the settings that were used when your QuickSight
|
2637
|
-
# subscription was first created in this AWS
|
2665
|
+
# subscription was first created in this AWS account.
|
2638
2666
|
#
|
2639
2667
|
# @option params [required, String] :aws_account_id
|
2640
2668
|
# The ID for the AWS account that contains the settings that you want to
|
@@ -2707,6 +2735,9 @@ module Aws::QuickSight
|
|
2707
2735
|
# resp.analysis.theme_arn #=> String
|
2708
2736
|
# resp.analysis.created_time #=> Time
|
2709
2737
|
# resp.analysis.last_updated_time #=> Time
|
2738
|
+
# resp.analysis.sheets #=> Array
|
2739
|
+
# resp.analysis.sheets[0].sheet_id #=> String
|
2740
|
+
# resp.analysis.sheets[0].name #=> String
|
2710
2741
|
# resp.status #=> Integer
|
2711
2742
|
# resp.request_id #=> String
|
2712
2743
|
#
|
@@ -2813,6 +2844,9 @@ module Aws::QuickSight
|
|
2813
2844
|
# resp.dashboard.version.data_set_arns[0] #=> String
|
2814
2845
|
# resp.dashboard.version.description #=> String
|
2815
2846
|
# resp.dashboard.version.theme_arn #=> String
|
2847
|
+
# resp.dashboard.version.sheets #=> Array
|
2848
|
+
# resp.dashboard.version.sheets[0].sheet_id #=> String
|
2849
|
+
# resp.dashboard.version.sheets[0].name #=> String
|
2816
2850
|
# resp.dashboard.created_time #=> Time
|
2817
2851
|
# resp.dashboard.last_published_time #=> Time
|
2818
2852
|
# resp.dashboard.last_updated_time #=> Time
|
@@ -2941,6 +2975,7 @@ module Aws::QuickSight
|
|
2941
2975
|
# resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].tag_column_operation.column_name #=> String
|
2942
2976
|
# resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].tag_column_operation.tags #=> Array
|
2943
2977
|
# resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].tag_column_operation.tags[0].column_geographic_role #=> String, one of "COUNTRY", "STATE", "COUNTY", "CITY", "POSTCODE", "LONGITUDE", "LATITUDE"
|
2978
|
+
# resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].tag_column_operation.tags[0].column_description.text #=> String
|
2944
2979
|
# resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.left_operand #=> String
|
2945
2980
|
# resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.right_operand #=> String
|
2946
2981
|
# resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.type #=> String, one of "INNER", "OUTER", "LEFT", "RIGHT"
|
@@ -2948,6 +2983,7 @@ module Aws::QuickSight
|
|
2948
2983
|
# resp.data_set.logical_table_map["LogicalTableId"].source.physical_table_id #=> String
|
2949
2984
|
# resp.data_set.output_columns #=> Array
|
2950
2985
|
# resp.data_set.output_columns[0].name #=> String
|
2986
|
+
# resp.data_set.output_columns[0].description #=> String
|
2951
2987
|
# resp.data_set.output_columns[0].type #=> String, one of "STRING", "INTEGER", "DECIMAL", "DATETIME"
|
2952
2988
|
# resp.data_set.import_mode #=> String, one of "SPICE", "DIRECT_QUERY"
|
2953
2989
|
# resp.data_set.consumed_spice_capacity_in_bytes #=> Integer
|
@@ -2959,6 +2995,11 @@ module Aws::QuickSight
|
|
2959
2995
|
# resp.data_set.row_level_permission_data_set.namespace #=> String
|
2960
2996
|
# resp.data_set.row_level_permission_data_set.arn #=> String
|
2961
2997
|
# resp.data_set.row_level_permission_data_set.permission_policy #=> String, one of "GRANT_ACCESS", "DENY_ACCESS"
|
2998
|
+
# resp.data_set.column_level_permission_rules #=> Array
|
2999
|
+
# resp.data_set.column_level_permission_rules[0].principals #=> Array
|
3000
|
+
# resp.data_set.column_level_permission_rules[0].principals[0] #=> String
|
3001
|
+
# resp.data_set.column_level_permission_rules[0].column_names #=> Array
|
3002
|
+
# resp.data_set.column_level_permission_rules[0].column_names[0] #=> String
|
2962
3003
|
# resp.request_id #=> String
|
2963
3004
|
# resp.status #=> Integer
|
2964
3005
|
#
|
@@ -3045,7 +3086,7 @@ module Aws::QuickSight
|
|
3045
3086
|
# resp.data_source.arn #=> String
|
3046
3087
|
# resp.data_source.data_source_id #=> String
|
3047
3088
|
# resp.data_source.name #=> String
|
3048
|
-
# resp.data_source.type #=> String, one of "ADOBE_ANALYTICS", "AMAZON_ELASTICSEARCH", "ATHENA", "AURORA", "AURORA_POSTGRESQL", "AWS_IOT_ANALYTICS", "GITHUB", "JIRA", "MARIADB", "MYSQL", "POSTGRESQL", "PRESTO", "REDSHIFT", "S3", "SALESFORCE", "SERVICENOW", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "TWITTER"
|
3089
|
+
# resp.data_source.type #=> String, one of "ADOBE_ANALYTICS", "AMAZON_ELASTICSEARCH", "ATHENA", "AURORA", "AURORA_POSTGRESQL", "AWS_IOT_ANALYTICS", "GITHUB", "JIRA", "MARIADB", "MYSQL", "ORACLE", "POSTGRESQL", "PRESTO", "REDSHIFT", "S3", "SALESFORCE", "SERVICENOW", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "TWITTER", "TIMESTREAM"
|
3049
3090
|
# resp.data_source.status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
|
3050
3091
|
# resp.data_source.created_time #=> Time
|
3051
3092
|
# resp.data_source.last_updated_time #=> Time
|
@@ -3065,6 +3106,9 @@ module Aws::QuickSight
|
|
3065
3106
|
# resp.data_source.data_source_parameters.my_sql_parameters.host #=> String
|
3066
3107
|
# resp.data_source.data_source_parameters.my_sql_parameters.port #=> Integer
|
3067
3108
|
# resp.data_source.data_source_parameters.my_sql_parameters.database #=> String
|
3109
|
+
# resp.data_source.data_source_parameters.oracle_parameters.host #=> String
|
3110
|
+
# resp.data_source.data_source_parameters.oracle_parameters.port #=> Integer
|
3111
|
+
# resp.data_source.data_source_parameters.oracle_parameters.database #=> String
|
3068
3112
|
# resp.data_source.data_source_parameters.postgre_sql_parameters.host #=> String
|
3069
3113
|
# resp.data_source.data_source_parameters.postgre_sql_parameters.port #=> Integer
|
3070
3114
|
# resp.data_source.data_source_parameters.postgre_sql_parameters.database #=> String
|
@@ -3110,6 +3154,9 @@ module Aws::QuickSight
|
|
3110
3154
|
# resp.data_source.alternate_data_source_parameters[0].my_sql_parameters.host #=> String
|
3111
3155
|
# resp.data_source.alternate_data_source_parameters[0].my_sql_parameters.port #=> Integer
|
3112
3156
|
# resp.data_source.alternate_data_source_parameters[0].my_sql_parameters.database #=> String
|
3157
|
+
# resp.data_source.alternate_data_source_parameters[0].oracle_parameters.host #=> String
|
3158
|
+
# resp.data_source.alternate_data_source_parameters[0].oracle_parameters.port #=> Integer
|
3159
|
+
# resp.data_source.alternate_data_source_parameters[0].oracle_parameters.database #=> String
|
3113
3160
|
# resp.data_source.alternate_data_source_parameters[0].postgre_sql_parameters.host #=> String
|
3114
3161
|
# resp.data_source.alternate_data_source_parameters[0].postgre_sql_parameters.port #=> Integer
|
3115
3162
|
# resp.data_source.alternate_data_source_parameters[0].postgre_sql_parameters.database #=> String
|
@@ -3252,7 +3299,7 @@ module Aws::QuickSight
|
|
3252
3299
|
# to describe.
|
3253
3300
|
#
|
3254
3301
|
# @option params [required, String] :assignment_name
|
3255
|
-
# The name of the assignment.
|
3302
|
+
# The name of the assignment, also called a rule.
|
3256
3303
|
#
|
3257
3304
|
# @option params [required, String] :namespace
|
3258
3305
|
# The namespace that contains the assignment.
|
@@ -3448,6 +3495,9 @@ module Aws::QuickSight
|
|
3448
3495
|
# resp.template.version.description #=> String
|
3449
3496
|
# resp.template.version.source_entity_arn #=> String
|
3450
3497
|
# resp.template.version.theme_arn #=> String
|
3498
|
+
# resp.template.version.sheets #=> Array
|
3499
|
+
# resp.template.version.sheets[0].sheet_id #=> String
|
3500
|
+
# resp.template.version.sheets[0].name #=> String
|
3451
3501
|
# resp.template.template_id #=> String
|
3452
3502
|
# resp.template.last_updated_time #=> Time
|
3453
3503
|
# resp.template.created_time #=> Time
|
@@ -4174,6 +4224,7 @@ module Aws::QuickSight
|
|
4174
4224
|
# resp.data_set_summaries[0].row_level_permission_data_set.namespace #=> String
|
4175
4225
|
# resp.data_set_summaries[0].row_level_permission_data_set.arn #=> String
|
4176
4226
|
# resp.data_set_summaries[0].row_level_permission_data_set.permission_policy #=> String, one of "GRANT_ACCESS", "DENY_ACCESS"
|
4227
|
+
# resp.data_set_summaries[0].column_level_permission_rules_applied #=> Boolean
|
4177
4228
|
# resp.next_token #=> String
|
4178
4229
|
# resp.request_id #=> String
|
4179
4230
|
# resp.status #=> Integer
|
@@ -4223,7 +4274,7 @@ module Aws::QuickSight
|
|
4223
4274
|
# resp.data_sources[0].arn #=> String
|
4224
4275
|
# resp.data_sources[0].data_source_id #=> String
|
4225
4276
|
# resp.data_sources[0].name #=> String
|
4226
|
-
# resp.data_sources[0].type #=> String, one of "ADOBE_ANALYTICS", "AMAZON_ELASTICSEARCH", "ATHENA", "AURORA", "AURORA_POSTGRESQL", "AWS_IOT_ANALYTICS", "GITHUB", "JIRA", "MARIADB", "MYSQL", "POSTGRESQL", "PRESTO", "REDSHIFT", "S3", "SALESFORCE", "SERVICENOW", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "TWITTER"
|
4277
|
+
# resp.data_sources[0].type #=> String, one of "ADOBE_ANALYTICS", "AMAZON_ELASTICSEARCH", "ATHENA", "AURORA", "AURORA_POSTGRESQL", "AWS_IOT_ANALYTICS", "GITHUB", "JIRA", "MARIADB", "MYSQL", "ORACLE", "POSTGRESQL", "PRESTO", "REDSHIFT", "S3", "SALESFORCE", "SERVICENOW", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "TWITTER", "TIMESTREAM"
|
4227
4278
|
# resp.data_sources[0].status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
|
4228
4279
|
# resp.data_sources[0].created_time #=> Time
|
4229
4280
|
# resp.data_sources[0].last_updated_time #=> Time
|
@@ -4243,6 +4294,9 @@ module Aws::QuickSight
|
|
4243
4294
|
# resp.data_sources[0].data_source_parameters.my_sql_parameters.host #=> String
|
4244
4295
|
# resp.data_sources[0].data_source_parameters.my_sql_parameters.port #=> Integer
|
4245
4296
|
# resp.data_sources[0].data_source_parameters.my_sql_parameters.database #=> String
|
4297
|
+
# resp.data_sources[0].data_source_parameters.oracle_parameters.host #=> String
|
4298
|
+
# resp.data_sources[0].data_source_parameters.oracle_parameters.port #=> Integer
|
4299
|
+
# resp.data_sources[0].data_source_parameters.oracle_parameters.database #=> String
|
4246
4300
|
# resp.data_sources[0].data_source_parameters.postgre_sql_parameters.host #=> String
|
4247
4301
|
# resp.data_sources[0].data_source_parameters.postgre_sql_parameters.port #=> Integer
|
4248
4302
|
# resp.data_sources[0].data_source_parameters.postgre_sql_parameters.database #=> String
|
@@ -4288,6 +4342,9 @@ module Aws::QuickSight
|
|
4288
4342
|
# resp.data_sources[0].alternate_data_source_parameters[0].my_sql_parameters.host #=> String
|
4289
4343
|
# resp.data_sources[0].alternate_data_source_parameters[0].my_sql_parameters.port #=> Integer
|
4290
4344
|
# resp.data_sources[0].alternate_data_source_parameters[0].my_sql_parameters.database #=> String
|
4345
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].oracle_parameters.host #=> String
|
4346
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].oracle_parameters.port #=> Integer
|
4347
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].oracle_parameters.database #=> String
|
4291
4348
|
# resp.data_sources[0].alternate_data_source_parameters[0].postgre_sql_parameters.host #=> String
|
4292
4349
|
# resp.data_sources[0].alternate_data_source_parameters[0].postgre_sql_parameters.port #=> Integer
|
4293
4350
|
# resp.data_sources[0].alternate_data_source_parameters[0].postgre_sql_parameters.database #=> String
|
@@ -5595,16 +5652,17 @@ module Aws::QuickSight
|
|
5595
5652
|
req.send_request(options)
|
5596
5653
|
end
|
5597
5654
|
|
5598
|
-
# Updates the Amazon QuickSight settings in your AWS
|
5655
|
+
# Updates the Amazon QuickSight settings in your AWS account.
|
5599
5656
|
#
|
5600
5657
|
# @option params [required, String] :aws_account_id
|
5601
5658
|
# The ID for the AWS account that contains the QuickSight settings that
|
5602
5659
|
# you want to list.
|
5603
5660
|
#
|
5604
5661
|
# @option params [required, String] :default_namespace
|
5605
|
-
# The default namespace for this AWS
|
5606
|
-
# `default`.
|
5607
|
-
#
|
5662
|
+
# The default namespace for this AWS account. Currently, the default is
|
5663
|
+
# `default`. AWS Identity and Access Management (IAM) users that
|
5664
|
+
# register for the first time with QuickSight provide an email that
|
5665
|
+
# becomes associated with the default namespace.
|
5608
5666
|
#
|
5609
5667
|
# @option params [String] :notification_email
|
5610
5668
|
# The email address that you want QuickSight to send notifications to
|
@@ -6082,6 +6140,9 @@ module Aws::QuickSight
|
|
6082
6140
|
# @option params [Types::RowLevelPermissionDataSet] :row_level_permission_data_set
|
6083
6141
|
# The row-level security configuration for the data you want to create.
|
6084
6142
|
#
|
6143
|
+
# @option params [Array<Types::ColumnLevelPermissionRule>] :column_level_permission_rules
|
6144
|
+
# A set of one or more definitions of a ` ColumnLevelPermissionRule `.
|
6145
|
+
#
|
6085
6146
|
# @return [Types::UpdateDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6086
6147
|
#
|
6087
6148
|
# * {Types::UpdateDataSetResponse#arn #arn} => String
|
@@ -6173,6 +6234,9 @@ module Aws::QuickSight
|
|
6173
6234
|
# tags: [ # required
|
6174
6235
|
# {
|
6175
6236
|
# column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
|
6237
|
+
# column_description: {
|
6238
|
+
# text: "ColumnDescriptiveText",
|
6239
|
+
# },
|
6176
6240
|
# },
|
6177
6241
|
# ],
|
6178
6242
|
# },
|
@@ -6204,6 +6268,12 @@ module Aws::QuickSight
|
|
6204
6268
|
# arn: "Arn", # required
|
6205
6269
|
# permission_policy: "GRANT_ACCESS", # required, accepts GRANT_ACCESS, DENY_ACCESS
|
6206
6270
|
# },
|
6271
|
+
# column_level_permission_rules: [
|
6272
|
+
# {
|
6273
|
+
# principals: ["String"],
|
6274
|
+
# column_names: ["String"],
|
6275
|
+
# },
|
6276
|
+
# ],
|
6207
6277
|
# })
|
6208
6278
|
#
|
6209
6279
|
# @example Response structure
|
@@ -6360,6 +6430,11 @@ module Aws::QuickSight
|
|
6360
6430
|
# port: 1, # required
|
6361
6431
|
# database: "Database", # required
|
6362
6432
|
# },
|
6433
|
+
# oracle_parameters: {
|
6434
|
+
# host: "Host", # required
|
6435
|
+
# port: 1, # required
|
6436
|
+
# database: "Database", # required
|
6437
|
+
# },
|
6363
6438
|
# postgre_sql_parameters: {
|
6364
6439
|
# host: "Host", # required
|
6365
6440
|
# port: 1, # required
|
@@ -6451,6 +6526,11 @@ module Aws::QuickSight
|
|
6451
6526
|
# port: 1, # required
|
6452
6527
|
# database: "Database", # required
|
6453
6528
|
# },
|
6529
|
+
# oracle_parameters: {
|
6530
|
+
# host: "Host", # required
|
6531
|
+
# port: 1, # required
|
6532
|
+
# database: "Database", # required
|
6533
|
+
# },
|
6454
6534
|
# postgre_sql_parameters: {
|
6455
6535
|
# host: "Host", # required
|
6456
6536
|
# port: 1, # required
|
@@ -6643,14 +6723,14 @@ module Aws::QuickSight
|
|
6643
6723
|
|
6644
6724
|
# Updates an existing IAM policy assignment. This operation updates only
|
6645
6725
|
# the optional parameter or parameters that are specified in the
|
6646
|
-
# request.
|
6726
|
+
# request. This overwrites all of the users included in `Identities`.
|
6647
6727
|
#
|
6648
6728
|
# @option params [required, String] :aws_account_id
|
6649
6729
|
# The ID of the AWS account that contains the IAM policy assignment.
|
6650
6730
|
#
|
6651
6731
|
# @option params [required, String] :assignment_name
|
6652
|
-
# The name of the assignment. This name must be
|
6653
|
-
# account.
|
6732
|
+
# The name of the assignment, also called a rule. This name must be
|
6733
|
+
# unique within an AWS account.
|
6654
6734
|
#
|
6655
6735
|
# @option params [required, String] :namespace
|
6656
6736
|
# The namespace of the assignment.
|
@@ -7287,7 +7367,7 @@ module Aws::QuickSight
|
|
7287
7367
|
params: params,
|
7288
7368
|
config: config)
|
7289
7369
|
context[:gem_name] = 'aws-sdk-quicksight'
|
7290
|
-
context[:gem_version] = '1.
|
7370
|
+
context[:gem_version] = '1.35.0'
|
7291
7371
|
Seahorse::Client::Request.new(handlers, context)
|
7292
7372
|
end
|
7293
7373
|
|
@@ -53,6 +53,8 @@ module Aws::QuickSight
|
|
53
53
|
ClusterId = Shapes::StringShape.new(name: 'ClusterId')
|
54
54
|
ColorList = Shapes::ListShape.new(name: 'ColorList')
|
55
55
|
ColumnDataType = Shapes::StringShape.new(name: 'ColumnDataType')
|
56
|
+
ColumnDescription = Shapes::StructureShape.new(name: 'ColumnDescription')
|
57
|
+
ColumnDescriptiveText = Shapes::StringShape.new(name: 'ColumnDescriptiveText')
|
56
58
|
ColumnGroup = Shapes::StructureShape.new(name: 'ColumnGroup')
|
57
59
|
ColumnGroupColumnSchema = Shapes::StructureShape.new(name: 'ColumnGroupColumnSchema')
|
58
60
|
ColumnGroupColumnSchemaList = Shapes::ListShape.new(name: 'ColumnGroupColumnSchemaList')
|
@@ -61,8 +63,11 @@ module Aws::QuickSight
|
|
61
63
|
ColumnGroupSchema = Shapes::StructureShape.new(name: 'ColumnGroupSchema')
|
62
64
|
ColumnGroupSchemaList = Shapes::ListShape.new(name: 'ColumnGroupSchemaList')
|
63
65
|
ColumnId = Shapes::StringShape.new(name: 'ColumnId')
|
66
|
+
ColumnLevelPermissionRule = Shapes::StructureShape.new(name: 'ColumnLevelPermissionRule')
|
67
|
+
ColumnLevelPermissionRuleList = Shapes::ListShape.new(name: 'ColumnLevelPermissionRuleList')
|
64
68
|
ColumnList = Shapes::ListShape.new(name: 'ColumnList')
|
65
69
|
ColumnName = Shapes::StringShape.new(name: 'ColumnName')
|
70
|
+
ColumnNameList = Shapes::ListShape.new(name: 'ColumnNameList')
|
66
71
|
ColumnSchema = Shapes::StructureShape.new(name: 'ColumnSchema')
|
67
72
|
ColumnSchemaList = Shapes::ListShape.new(name: 'ColumnSchemaList')
|
68
73
|
ColumnTag = Shapes::StructureShape.new(name: 'ColumnTag')
|
@@ -341,6 +346,7 @@ module Aws::QuickSight
|
|
341
346
|
NonEmptyString = Shapes::StringShape.new(name: 'NonEmptyString')
|
342
347
|
OnClause = Shapes::StringShape.new(name: 'OnClause')
|
343
348
|
OptionalPort = Shapes::IntegerShape.new(name: 'OptionalPort')
|
349
|
+
OracleParameters = Shapes::StructureShape.new(name: 'OracleParameters')
|
344
350
|
OutputColumn = Shapes::StructureShape.new(name: 'OutputColumn')
|
345
351
|
OutputColumnList = Shapes::ListShape.new(name: 'OutputColumnList')
|
346
352
|
Parameters = Shapes::StructureShape.new(name: 'Parameters')
|
@@ -354,6 +360,7 @@ module Aws::QuickSight
|
|
354
360
|
PreconditionNotMetException = Shapes::StructureShape.new(name: 'PreconditionNotMetException')
|
355
361
|
PrestoParameters = Shapes::StructureShape.new(name: 'PrestoParameters')
|
356
362
|
Principal = Shapes::StringShape.new(name: 'Principal')
|
363
|
+
PrincipalList = Shapes::ListShape.new(name: 'PrincipalList')
|
357
364
|
ProjectOperation = Shapes::StructureShape.new(name: 'ProjectOperation')
|
358
365
|
ProjectedColumnList = Shapes::ListShape.new(name: 'ProjectedColumnList')
|
359
366
|
Query = Shapes::StringShape.new(name: 'Query')
|
@@ -395,7 +402,9 @@ module Aws::QuickSight
|
|
395
402
|
ServiceNowParameters = Shapes::StructureShape.new(name: 'ServiceNowParameters')
|
396
403
|
SessionLifetimeInMinutes = Shapes::IntegerShape.new(name: 'SessionLifetimeInMinutes')
|
397
404
|
SessionLifetimeInMinutesInvalidException = Shapes::StructureShape.new(name: 'SessionLifetimeInMinutesInvalidException')
|
405
|
+
Sheet = Shapes::StructureShape.new(name: 'Sheet')
|
398
406
|
SheetControlsOption = Shapes::StructureShape.new(name: 'SheetControlsOption')
|
407
|
+
SheetList = Shapes::ListShape.new(name: 'SheetList')
|
399
408
|
SheetStyle = Shapes::StructureShape.new(name: 'SheetStyle')
|
400
409
|
SiteBaseUrl = Shapes::StringShape.new(name: 'SiteBaseUrl')
|
401
410
|
SnowflakeParameters = Shapes::StructureShape.new(name: 'SnowflakeParameters')
|
@@ -553,6 +562,7 @@ module Aws::QuickSight
|
|
553
562
|
Analysis.add_member(:theme_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ThemeArn"))
|
554
563
|
Analysis.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
|
555
564
|
Analysis.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedTime"))
|
565
|
+
Analysis.add_member(:sheets, Shapes::ShapeRef.new(shape: SheetList, location_name: "Sheets"))
|
556
566
|
Analysis.struct_class = Types::Analysis
|
557
567
|
|
558
568
|
AnalysisError.add_member(:type, Shapes::ShapeRef.new(shape: AnalysisErrorType, location_name: "Type"))
|
@@ -629,6 +639,9 @@ module Aws::QuickSight
|
|
629
639
|
|
630
640
|
ColorList.member = Shapes::ShapeRef.new(shape: HexColor)
|
631
641
|
|
642
|
+
ColumnDescription.add_member(:text, Shapes::ShapeRef.new(shape: ColumnDescriptiveText, location_name: "Text"))
|
643
|
+
ColumnDescription.struct_class = Types::ColumnDescription
|
644
|
+
|
632
645
|
ColumnGroup.add_member(:geo_spatial_column_group, Shapes::ShapeRef.new(shape: GeoSpatialColumnGroup, location_name: "GeoSpatialColumnGroup"))
|
633
646
|
ColumnGroup.struct_class = Types::ColumnGroup
|
634
647
|
|
@@ -645,8 +658,16 @@ module Aws::QuickSight
|
|
645
658
|
|
646
659
|
ColumnGroupSchemaList.member = Shapes::ShapeRef.new(shape: ColumnGroupSchema)
|
647
660
|
|
661
|
+
ColumnLevelPermissionRule.add_member(:principals, Shapes::ShapeRef.new(shape: PrincipalList, location_name: "Principals"))
|
662
|
+
ColumnLevelPermissionRule.add_member(:column_names, Shapes::ShapeRef.new(shape: ColumnNameList, location_name: "ColumnNames"))
|
663
|
+
ColumnLevelPermissionRule.struct_class = Types::ColumnLevelPermissionRule
|
664
|
+
|
665
|
+
ColumnLevelPermissionRuleList.member = Shapes::ShapeRef.new(shape: ColumnLevelPermissionRule)
|
666
|
+
|
648
667
|
ColumnList.member = Shapes::ShapeRef.new(shape: ColumnName)
|
649
668
|
|
669
|
+
ColumnNameList.member = Shapes::ShapeRef.new(shape: String)
|
670
|
+
|
650
671
|
ColumnSchema.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
651
672
|
ColumnSchema.add_member(:data_type, Shapes::ShapeRef.new(shape: String, location_name: "DataType"))
|
652
673
|
ColumnSchema.add_member(:geographic_role, Shapes::ShapeRef.new(shape: String, location_name: "GeographicRole"))
|
@@ -655,6 +676,7 @@ module Aws::QuickSight
|
|
655
676
|
ColumnSchemaList.member = Shapes::ShapeRef.new(shape: ColumnSchema)
|
656
677
|
|
657
678
|
ColumnTag.add_member(:column_geographic_role, Shapes::ShapeRef.new(shape: GeoSpatialDataRole, location_name: "ColumnGeographicRole"))
|
679
|
+
ColumnTag.add_member(:column_description, Shapes::ShapeRef.new(shape: ColumnDescription, location_name: "ColumnDescription"))
|
658
680
|
ColumnTag.struct_class = Types::ColumnTag
|
659
681
|
|
660
682
|
ColumnTagList.member = Shapes::ShapeRef.new(shape: ColumnTag)
|
@@ -730,6 +752,7 @@ module Aws::QuickSight
|
|
730
752
|
CreateDataSetRequest.add_member(:column_groups, Shapes::ShapeRef.new(shape: ColumnGroupList, location_name: "ColumnGroups"))
|
731
753
|
CreateDataSetRequest.add_member(:permissions, Shapes::ShapeRef.new(shape: ResourcePermissionList, location_name: "Permissions"))
|
732
754
|
CreateDataSetRequest.add_member(:row_level_permission_data_set, Shapes::ShapeRef.new(shape: RowLevelPermissionDataSet, location_name: "RowLevelPermissionDataSet"))
|
755
|
+
CreateDataSetRequest.add_member(:column_level_permission_rules, Shapes::ShapeRef.new(shape: ColumnLevelPermissionRuleList, location_name: "ColumnLevelPermissionRules"))
|
733
756
|
CreateDataSetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
734
757
|
CreateDataSetRequest.struct_class = Types::CreateDataSetRequest
|
735
758
|
|
@@ -948,6 +971,7 @@ module Aws::QuickSight
|
|
948
971
|
DashboardVersion.add_member(:data_set_arns, Shapes::ShapeRef.new(shape: DataSetArnsList, location_name: "DataSetArns"))
|
949
972
|
DashboardVersion.add_member(:description, Shapes::ShapeRef.new(shape: VersionDescription, location_name: "Description"))
|
950
973
|
DashboardVersion.add_member(:theme_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ThemeArn"))
|
974
|
+
DashboardVersion.add_member(:sheets, Shapes::ShapeRef.new(shape: SheetList, location_name: "Sheets"))
|
951
975
|
DashboardVersion.struct_class = Types::DashboardVersion
|
952
976
|
|
953
977
|
DashboardVersionSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
@@ -977,6 +1001,7 @@ module Aws::QuickSight
|
|
977
1001
|
DataSet.add_member(:consumed_spice_capacity_in_bytes, Shapes::ShapeRef.new(shape: Long, location_name: "ConsumedSpiceCapacityInBytes"))
|
978
1002
|
DataSet.add_member(:column_groups, Shapes::ShapeRef.new(shape: ColumnGroupList, location_name: "ColumnGroups"))
|
979
1003
|
DataSet.add_member(:row_level_permission_data_set, Shapes::ShapeRef.new(shape: RowLevelPermissionDataSet, location_name: "RowLevelPermissionDataSet"))
|
1004
|
+
DataSet.add_member(:column_level_permission_rules, Shapes::ShapeRef.new(shape: ColumnLevelPermissionRuleList, location_name: "ColumnLevelPermissionRules"))
|
980
1005
|
DataSet.struct_class = Types::DataSet
|
981
1006
|
|
982
1007
|
DataSetArnsList.member = Shapes::ShapeRef.new(shape: Arn)
|
@@ -1004,6 +1029,7 @@ module Aws::QuickSight
|
|
1004
1029
|
DataSetSummary.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedTime"))
|
1005
1030
|
DataSetSummary.add_member(:import_mode, Shapes::ShapeRef.new(shape: DataSetImportMode, location_name: "ImportMode"))
|
1006
1031
|
DataSetSummary.add_member(:row_level_permission_data_set, Shapes::ShapeRef.new(shape: RowLevelPermissionDataSet, location_name: "RowLevelPermissionDataSet"))
|
1032
|
+
DataSetSummary.add_member(:column_level_permission_rules_applied, Shapes::ShapeRef.new(shape: Boolean, location_name: "ColumnLevelPermissionRulesApplied"))
|
1007
1033
|
DataSetSummary.struct_class = Types::DataSetSummary
|
1008
1034
|
|
1009
1035
|
DataSetSummaryList.member = Shapes::ShapeRef.new(shape: DataSetSummary)
|
@@ -1040,6 +1066,7 @@ module Aws::QuickSight
|
|
1040
1066
|
DataSourceParameters.add_member(:jira_parameters, Shapes::ShapeRef.new(shape: JiraParameters, location_name: "JiraParameters"))
|
1041
1067
|
DataSourceParameters.add_member(:maria_db_parameters, Shapes::ShapeRef.new(shape: MariaDbParameters, location_name: "MariaDbParameters"))
|
1042
1068
|
DataSourceParameters.add_member(:my_sql_parameters, Shapes::ShapeRef.new(shape: MySqlParameters, location_name: "MySqlParameters"))
|
1069
|
+
DataSourceParameters.add_member(:oracle_parameters, Shapes::ShapeRef.new(shape: OracleParameters, location_name: "OracleParameters"))
|
1043
1070
|
DataSourceParameters.add_member(:postgre_sql_parameters, Shapes::ShapeRef.new(shape: PostgreSqlParameters, location_name: "PostgreSqlParameters"))
|
1044
1071
|
DataSourceParameters.add_member(:presto_parameters, Shapes::ShapeRef.new(shape: PrestoParameters, location_name: "PrestoParameters"))
|
1045
1072
|
DataSourceParameters.add_member(:rds_parameters, Shapes::ShapeRef.new(shape: RdsParameters, location_name: "RdsParameters"))
|
@@ -1854,7 +1881,13 @@ module Aws::QuickSight
|
|
1854
1881
|
|
1855
1882
|
Namespaces.member = Shapes::ShapeRef.new(shape: NamespaceInfoV2)
|
1856
1883
|
|
1884
|
+
OracleParameters.add_member(:host, Shapes::ShapeRef.new(shape: Host, required: true, location_name: "Host"))
|
1885
|
+
OracleParameters.add_member(:port, Shapes::ShapeRef.new(shape: Port, required: true, location_name: "Port"))
|
1886
|
+
OracleParameters.add_member(:database, Shapes::ShapeRef.new(shape: Database, required: true, location_name: "Database"))
|
1887
|
+
OracleParameters.struct_class = Types::OracleParameters
|
1888
|
+
|
1857
1889
|
OutputColumn.add_member(:name, Shapes::ShapeRef.new(shape: ColumnName, location_name: "Name"))
|
1890
|
+
OutputColumn.add_member(:description, Shapes::ShapeRef.new(shape: ColumnDescriptiveText, location_name: "Description"))
|
1858
1891
|
OutputColumn.add_member(:type, Shapes::ShapeRef.new(shape: ColumnDataType, location_name: "Type"))
|
1859
1892
|
OutputColumn.struct_class = Types::OutputColumn
|
1860
1893
|
|
@@ -1888,6 +1921,8 @@ module Aws::QuickSight
|
|
1888
1921
|
PrestoParameters.add_member(:catalog, Shapes::ShapeRef.new(shape: Catalog, required: true, location_name: "Catalog"))
|
1889
1922
|
PrestoParameters.struct_class = Types::PrestoParameters
|
1890
1923
|
|
1924
|
+
PrincipalList.member = Shapes::ShapeRef.new(shape: String)
|
1925
|
+
|
1891
1926
|
ProjectOperation.add_member(:projected_columns, Shapes::ShapeRef.new(shape: ProjectedColumnList, required: true, location_name: "ProjectedColumns"))
|
1892
1927
|
ProjectOperation.struct_class = Types::ProjectOperation
|
1893
1928
|
|
@@ -2017,9 +2052,15 @@ module Aws::QuickSight
|
|
2017
2052
|
SessionLifetimeInMinutesInvalidException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
2018
2053
|
SessionLifetimeInMinutesInvalidException.struct_class = Types::SessionLifetimeInMinutesInvalidException
|
2019
2054
|
|
2055
|
+
Sheet.add_member(:sheet_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, location_name: "SheetId"))
|
2056
|
+
Sheet.add_member(:name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "Name"))
|
2057
|
+
Sheet.struct_class = Types::Sheet
|
2058
|
+
|
2020
2059
|
SheetControlsOption.add_member(:visibility_state, Shapes::ShapeRef.new(shape: DashboardUIState, location_name: "VisibilityState"))
|
2021
2060
|
SheetControlsOption.struct_class = Types::SheetControlsOption
|
2022
2061
|
|
2062
|
+
SheetList.member = Shapes::ShapeRef.new(shape: Sheet)
|
2063
|
+
|
2023
2064
|
SheetStyle.add_member(:tile, Shapes::ShapeRef.new(shape: TileStyle, location_name: "Tile"))
|
2024
2065
|
SheetStyle.add_member(:tile_layout, Shapes::ShapeRef.new(shape: TileLayoutStyle, location_name: "TileLayout"))
|
2025
2066
|
SheetStyle.struct_class = Types::SheetStyle
|
@@ -2119,6 +2160,7 @@ module Aws::QuickSight
|
|
2119
2160
|
TemplateVersion.add_member(:description, Shapes::ShapeRef.new(shape: VersionDescription, location_name: "Description"))
|
2120
2161
|
TemplateVersion.add_member(:source_entity_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SourceEntityArn"))
|
2121
2162
|
TemplateVersion.add_member(:theme_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ThemeArn"))
|
2163
|
+
TemplateVersion.add_member(:sheets, Shapes::ShapeRef.new(shape: SheetList, location_name: "Sheets"))
|
2122
2164
|
TemplateVersion.struct_class = Types::TemplateVersion
|
2123
2165
|
|
2124
2166
|
TemplateVersionSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
@@ -2360,6 +2402,7 @@ module Aws::QuickSight
|
|
2360
2402
|
UpdateDataSetRequest.add_member(:import_mode, Shapes::ShapeRef.new(shape: DataSetImportMode, required: true, location_name: "ImportMode"))
|
2361
2403
|
UpdateDataSetRequest.add_member(:column_groups, Shapes::ShapeRef.new(shape: ColumnGroupList, location_name: "ColumnGroups"))
|
2362
2404
|
UpdateDataSetRequest.add_member(:row_level_permission_data_set, Shapes::ShapeRef.new(shape: RowLevelPermissionDataSet, location_name: "RowLevelPermissionDataSet"))
|
2405
|
+
UpdateDataSetRequest.add_member(:column_level_permission_rules, Shapes::ShapeRef.new(shape: ColumnLevelPermissionRuleList, location_name: "ColumnLevelPermissionRules"))
|
2363
2406
|
UpdateDataSetRequest.struct_class = Types::UpdateDataSetRequest
|
2364
2407
|
|
2365
2408
|
UpdateDataSetResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
@@ -186,6 +186,11 @@ module Aws::QuickSight
|
|
186
186
|
# The time that the analysis was last updated.
|
187
187
|
# @return [Time]
|
188
188
|
#
|
189
|
+
# @!attribute [rw] sheets
|
190
|
+
# A list of the associated sheets with the unique identifier and name
|
191
|
+
# of each sheet.
|
192
|
+
# @return [Array<Types::Sheet>]
|
193
|
+
#
|
189
194
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Analysis AWS API Documentation
|
190
195
|
#
|
191
196
|
class Analysis < Struct.new(
|
@@ -197,7 +202,8 @@ module Aws::QuickSight
|
|
197
202
|
:data_set_arns,
|
198
203
|
:theme_arn,
|
199
204
|
:created_time,
|
200
|
-
:last_updated_time
|
205
|
+
:last_updated_time,
|
206
|
+
:sheets)
|
201
207
|
SENSITIVE = []
|
202
208
|
include Aws::Structure
|
203
209
|
end
|
@@ -618,6 +624,27 @@ module Aws::QuickSight
|
|
618
624
|
include Aws::Structure
|
619
625
|
end
|
620
626
|
|
627
|
+
# Metadata that contains a description for a column.
|
628
|
+
#
|
629
|
+
# @note When making an API call, you may pass ColumnDescription
|
630
|
+
# data as a hash:
|
631
|
+
#
|
632
|
+
# {
|
633
|
+
# text: "ColumnDescriptiveText",
|
634
|
+
# }
|
635
|
+
#
|
636
|
+
# @!attribute [rw] text
|
637
|
+
# The text of a description for a column.
|
638
|
+
# @return [String]
|
639
|
+
#
|
640
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ColumnDescription AWS API Documentation
|
641
|
+
#
|
642
|
+
class ColumnDescription < Struct.new(
|
643
|
+
:text)
|
644
|
+
SENSITIVE = []
|
645
|
+
include Aws::Structure
|
646
|
+
end
|
647
|
+
|
621
648
|
# Groupings of columns that work together in certain Amazon QuickSight
|
622
649
|
# features. This is a variant type structure. For this structure to be
|
623
650
|
# valid, only one of the attributes can be non-null.
|
@@ -679,6 +706,38 @@ module Aws::QuickSight
|
|
679
706
|
include Aws::Structure
|
680
707
|
end
|
681
708
|
|
709
|
+
# A rule defined to grant access on one or more restricted columns. Each
|
710
|
+
# dataset can have multiple rules. To create a restricted column, you
|
711
|
+
# add it to one or more rules. Each rule must contain at least one
|
712
|
+
# column and at least one user or group. To be able to see a restricted
|
713
|
+
# column, a user or group needs to be added to a rule for that column.
|
714
|
+
#
|
715
|
+
# @note When making an API call, you may pass ColumnLevelPermissionRule
|
716
|
+
# data as a hash:
|
717
|
+
#
|
718
|
+
# {
|
719
|
+
# principals: ["String"],
|
720
|
+
# column_names: ["String"],
|
721
|
+
# }
|
722
|
+
#
|
723
|
+
# @!attribute [rw] principals
|
724
|
+
# An array of Amazon Resource Names (ARNs) for QuickSight users or
|
725
|
+
# groups.
|
726
|
+
# @return [Array<String>]
|
727
|
+
#
|
728
|
+
# @!attribute [rw] column_names
|
729
|
+
# An array of column names.
|
730
|
+
# @return [Array<String>]
|
731
|
+
#
|
732
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ColumnLevelPermissionRule AWS API Documentation
|
733
|
+
#
|
734
|
+
class ColumnLevelPermissionRule < Struct.new(
|
735
|
+
:principals,
|
736
|
+
:column_names)
|
737
|
+
SENSITIVE = []
|
738
|
+
include Aws::Structure
|
739
|
+
end
|
740
|
+
|
682
741
|
# The column schema.
|
683
742
|
#
|
684
743
|
# @!attribute [rw] name
|
@@ -712,16 +771,24 @@ module Aws::QuickSight
|
|
712
771
|
#
|
713
772
|
# {
|
714
773
|
# column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
|
774
|
+
# column_description: {
|
775
|
+
# text: "ColumnDescriptiveText",
|
776
|
+
# },
|
715
777
|
# }
|
716
778
|
#
|
717
779
|
# @!attribute [rw] column_geographic_role
|
718
780
|
# A geospatial role for a column.
|
719
781
|
# @return [String]
|
720
782
|
#
|
783
|
+
# @!attribute [rw] column_description
|
784
|
+
# A description for a column.
|
785
|
+
# @return [Types::ColumnDescription]
|
786
|
+
#
|
721
787
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ColumnTag AWS API Documentation
|
722
788
|
#
|
723
789
|
class ColumnTag < Struct.new(
|
724
|
-
:column_geographic_role
|
790
|
+
:column_geographic_role,
|
791
|
+
:column_description)
|
725
792
|
SENSITIVE = []
|
726
793
|
include Aws::Structure
|
727
794
|
end
|
@@ -793,10 +860,10 @@ module Aws::QuickSight
|
|
793
860
|
# Region. You can add these to an AWS account and a QuickSight
|
794
861
|
# namespace.
|
795
862
|
#
|
796
|
-
# For example, you
|
863
|
+
# For example, you can add a default theme by setting
|
797
864
|
# `AccountCustomization` to the midnight theme:
|
798
865
|
# `"AccountCustomization": \{ "DefaultTheme":
|
799
|
-
# "arn:aws:quicksight::aws:theme/MIDNIGHT" \}
|
866
|
+
# "arn:aws:quicksight::aws:theme/MIDNIGHT" \}`. Or, you can add a
|
800
867
|
# custom theme by specifying `"AccountCustomization": \{
|
801
868
|
# "DefaultTheme":
|
802
869
|
# "arn:aws:quicksight:us-west-2:111122223333:theme/bdb844d0-0fe9-4d9d-b520-0fe602d93639"
|
@@ -1325,6 +1392,9 @@ module Aws::QuickSight
|
|
1325
1392
|
# tags: [ # required
|
1326
1393
|
# {
|
1327
1394
|
# column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
|
1395
|
+
# column_description: {
|
1396
|
+
# text: "ColumnDescriptiveText",
|
1397
|
+
# },
|
1328
1398
|
# },
|
1329
1399
|
# ],
|
1330
1400
|
# },
|
@@ -1362,6 +1432,12 @@ module Aws::QuickSight
|
|
1362
1432
|
# arn: "Arn", # required
|
1363
1433
|
# permission_policy: "GRANT_ACCESS", # required, accepts GRANT_ACCESS, DENY_ACCESS
|
1364
1434
|
# },
|
1435
|
+
# column_level_permission_rules: [
|
1436
|
+
# {
|
1437
|
+
# principals: ["String"],
|
1438
|
+
# column_names: ["String"],
|
1439
|
+
# },
|
1440
|
+
# ],
|
1365
1441
|
# tags: [
|
1366
1442
|
# {
|
1367
1443
|
# key: "TagKey", # required
|
@@ -1411,6 +1487,10 @@ module Aws::QuickSight
|
|
1411
1487
|
# create.
|
1412
1488
|
# @return [Types::RowLevelPermissionDataSet]
|
1413
1489
|
#
|
1490
|
+
# @!attribute [rw] column_level_permission_rules
|
1491
|
+
# A set of one or more definitions of a ` ColumnLevelPermissionRule `.
|
1492
|
+
# @return [Array<Types::ColumnLevelPermissionRule>]
|
1493
|
+
#
|
1414
1494
|
# @!attribute [rw] tags
|
1415
1495
|
# Contains a map of the key-value pairs for the resource tag or tags
|
1416
1496
|
# assigned to the dataset.
|
@@ -1428,6 +1508,7 @@ module Aws::QuickSight
|
|
1428
1508
|
:column_groups,
|
1429
1509
|
:permissions,
|
1430
1510
|
:row_level_permission_data_set,
|
1511
|
+
:column_level_permission_rules,
|
1431
1512
|
:tags)
|
1432
1513
|
SENSITIVE = []
|
1433
1514
|
include Aws::Structure
|
@@ -1480,7 +1561,7 @@ module Aws::QuickSight
|
|
1480
1561
|
# aws_account_id: "AwsAccountId", # required
|
1481
1562
|
# data_source_id: "ResourceId", # required
|
1482
1563
|
# name: "ResourceName", # required
|
1483
|
-
# type: "ADOBE_ANALYTICS", # required, accepts ADOBE_ANALYTICS, AMAZON_ELASTICSEARCH, ATHENA, AURORA, AURORA_POSTGRESQL, AWS_IOT_ANALYTICS, GITHUB, JIRA, MARIADB, MYSQL, POSTGRESQL, PRESTO, REDSHIFT, S3, SALESFORCE, SERVICENOW, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, TWITTER
|
1564
|
+
# type: "ADOBE_ANALYTICS", # required, accepts ADOBE_ANALYTICS, AMAZON_ELASTICSEARCH, ATHENA, AURORA, AURORA_POSTGRESQL, AWS_IOT_ANALYTICS, GITHUB, JIRA, MARIADB, MYSQL, ORACLE, POSTGRESQL, PRESTO, REDSHIFT, S3, SALESFORCE, SERVICENOW, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, TWITTER, TIMESTREAM
|
1484
1565
|
# data_source_parameters: {
|
1485
1566
|
# amazon_elasticsearch_parameters: {
|
1486
1567
|
# domain: "Domain", # required
|
@@ -1514,6 +1595,11 @@ module Aws::QuickSight
|
|
1514
1595
|
# port: 1, # required
|
1515
1596
|
# database: "Database", # required
|
1516
1597
|
# },
|
1598
|
+
# oracle_parameters: {
|
1599
|
+
# host: "Host", # required
|
1600
|
+
# port: 1, # required
|
1601
|
+
# database: "Database", # required
|
1602
|
+
# },
|
1517
1603
|
# postgre_sql_parameters: {
|
1518
1604
|
# host: "Host", # required
|
1519
1605
|
# port: 1, # required
|
@@ -1605,6 +1691,11 @@ module Aws::QuickSight
|
|
1605
1691
|
# port: 1, # required
|
1606
1692
|
# database: "Database", # required
|
1607
1693
|
# },
|
1694
|
+
# oracle_parameters: {
|
1695
|
+
# host: "Host", # required
|
1696
|
+
# port: 1, # required
|
1697
|
+
# database: "Database", # required
|
1698
|
+
# },
|
1608
1699
|
# postgre_sql_parameters: {
|
1609
1700
|
# host: "Host", # required
|
1610
1701
|
# port: 1, # required
|
@@ -1929,7 +2020,8 @@ module Aws::QuickSight
|
|
1929
2020
|
# @return [String]
|
1930
2021
|
#
|
1931
2022
|
# @!attribute [rw] assignment_name
|
1932
|
-
# The name of the assignment. It must be unique
|
2023
|
+
# The name of the assignment, also called a rule. It must be unique
|
2024
|
+
# within an AWS account.
|
1933
2025
|
# @return [String]
|
1934
2026
|
#
|
1935
2027
|
# @!attribute [rw] assignment_status
|
@@ -2642,6 +2734,11 @@ module Aws::QuickSight
|
|
2642
2734
|
# port: 1, # required
|
2643
2735
|
# database: "Database", # required
|
2644
2736
|
# },
|
2737
|
+
# oracle_parameters: {
|
2738
|
+
# host: "Host", # required
|
2739
|
+
# port: 1, # required
|
2740
|
+
# database: "Database", # required
|
2741
|
+
# },
|
2645
2742
|
# postgre_sql_parameters: {
|
2646
2743
|
# host: "Host", # required
|
2647
2744
|
# port: 1, # required
|
@@ -2712,7 +2809,7 @@ module Aws::QuickSight
|
|
2712
2809
|
# data source parameters when you copy a data source by using a create
|
2713
2810
|
# or update request. The API operation compares the
|
2714
2811
|
# `DataSourceParameters` structure that's in the request with the
|
2715
|
-
# structures in the `AlternateDataSourceParameters`
|
2812
|
+
# structures in the `AlternateDataSourceParameters` allow list. If the
|
2716
2813
|
# structures are an exact match, the request is allowed to use the new
|
2717
2814
|
# data source with the existing credentials. If the
|
2718
2815
|
# `AlternateDataSourceParameters` list is null, the
|
@@ -3057,6 +3154,11 @@ module Aws::QuickSight
|
|
3057
3154
|
# The ARN of the theme associated with a version of the dashboard.
|
3058
3155
|
# @return [String]
|
3059
3156
|
#
|
3157
|
+
# @!attribute [rw] sheets
|
3158
|
+
# A list of the associated sheets with the unique identifier and name
|
3159
|
+
# of each sheet.
|
3160
|
+
# @return [Array<Types::Sheet>]
|
3161
|
+
#
|
3060
3162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardVersion AWS API Documentation
|
3061
3163
|
#
|
3062
3164
|
class DashboardVersion < Struct.new(
|
@@ -3068,7 +3170,8 @@ module Aws::QuickSight
|
|
3068
3170
|
:source_entity_arn,
|
3069
3171
|
:data_set_arns,
|
3070
3172
|
:description,
|
3071
|
-
:theme_arn
|
3173
|
+
:theme_arn,
|
3174
|
+
:sheets)
|
3072
3175
|
SENSITIVE = []
|
3073
3176
|
include Aws::Structure
|
3074
3177
|
end
|
@@ -3113,7 +3216,7 @@ module Aws::QuickSight
|
|
3113
3216
|
end
|
3114
3217
|
|
3115
3218
|
# The theme colors that are used for data colors in charts. The colors
|
3116
|
-
# description is a
|
3219
|
+
# description is a hexadecimal color code that consists of six
|
3117
3220
|
# alphanumerical characters, prefixed with `#`, for example #37BFF5.
|
3118
3221
|
#
|
3119
3222
|
# @note When making an API call, you may pass DataColorPalette
|
@@ -3204,6 +3307,10 @@ module Aws::QuickSight
|
|
3204
3307
|
# The row-level security configuration for the dataset.
|
3205
3308
|
# @return [Types::RowLevelPermissionDataSet]
|
3206
3309
|
#
|
3310
|
+
# @!attribute [rw] column_level_permission_rules
|
3311
|
+
# A set of one or more definitions of a ` ColumnLevelPermissionRule `.
|
3312
|
+
# @return [Array<Types::ColumnLevelPermissionRule>]
|
3313
|
+
#
|
3207
3314
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSet AWS API Documentation
|
3208
3315
|
#
|
3209
3316
|
class DataSet < Struct.new(
|
@@ -3218,7 +3325,8 @@ module Aws::QuickSight
|
|
3218
3325
|
:import_mode,
|
3219
3326
|
:consumed_spice_capacity_in_bytes,
|
3220
3327
|
:column_groups,
|
3221
|
-
:row_level_permission_data_set
|
3328
|
+
:row_level_permission_data_set,
|
3329
|
+
:column_level_permission_rules)
|
3222
3330
|
SENSITIVE = []
|
3223
3331
|
include Aws::Structure
|
3224
3332
|
end
|
@@ -3318,6 +3426,10 @@ module Aws::QuickSight
|
|
3318
3426
|
# The row-level security configuration for the dataset.
|
3319
3427
|
# @return [Types::RowLevelPermissionDataSet]
|
3320
3428
|
#
|
3429
|
+
# @!attribute [rw] column_level_permission_rules_applied
|
3430
|
+
# Indicates if the dataset has column level permission configured.
|
3431
|
+
# @return [Boolean]
|
3432
|
+
#
|
3321
3433
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSetSummary AWS API Documentation
|
3322
3434
|
#
|
3323
3435
|
class DataSetSummary < Struct.new(
|
@@ -3327,7 +3439,8 @@ module Aws::QuickSight
|
|
3327
3439
|
:created_time,
|
3328
3440
|
:last_updated_time,
|
3329
3441
|
:import_mode,
|
3330
|
-
:row_level_permission_data_set
|
3442
|
+
:row_level_permission_data_set,
|
3443
|
+
:column_level_permission_rules_applied)
|
3331
3444
|
SENSITIVE = []
|
3332
3445
|
include Aws::Structure
|
3333
3446
|
end
|
@@ -3376,10 +3489,10 @@ module Aws::QuickSight
|
|
3376
3489
|
# applied in tandem with the data source parameters when you copy a
|
3377
3490
|
# data source by using a create or update request. The API operation
|
3378
3491
|
# compares the `DataSourceParameters` structure that's in the request
|
3379
|
-
# with the structures in the `AlternateDataSourceParameters`
|
3380
|
-
#
|
3381
|
-
#
|
3382
|
-
#
|
3492
|
+
# with the structures in the `AlternateDataSourceParameters` allow
|
3493
|
+
# list. If the structures are an exact match, the request is allowed
|
3494
|
+
# to use the credentials from this existing data source. If the
|
3495
|
+
# `AlternateDataSourceParameters` list is null, the `Credentials`
|
3383
3496
|
# originally used with this `DataSourceParameters` are automatically
|
3384
3497
|
# allowed.
|
3385
3498
|
# @return [Array<Types::DataSourceParameters>]
|
@@ -3463,6 +3576,11 @@ module Aws::QuickSight
|
|
3463
3576
|
# port: 1, # required
|
3464
3577
|
# database: "Database", # required
|
3465
3578
|
# },
|
3579
|
+
# oracle_parameters: {
|
3580
|
+
# host: "Host", # required
|
3581
|
+
# port: 1, # required
|
3582
|
+
# database: "Database", # required
|
3583
|
+
# },
|
3466
3584
|
# postgre_sql_parameters: {
|
3467
3585
|
# host: "Host", # required
|
3468
3586
|
# port: 1, # required
|
@@ -3600,6 +3718,11 @@ module Aws::QuickSight
|
|
3600
3718
|
# port: 1, # required
|
3601
3719
|
# database: "Database", # required
|
3602
3720
|
# },
|
3721
|
+
# oracle_parameters: {
|
3722
|
+
# host: "Host", # required
|
3723
|
+
# port: 1, # required
|
3724
|
+
# database: "Database", # required
|
3725
|
+
# },
|
3603
3726
|
# postgre_sql_parameters: {
|
3604
3727
|
# host: "Host", # required
|
3605
3728
|
# port: 1, # required
|
@@ -3686,6 +3809,10 @@ module Aws::QuickSight
|
|
3686
3809
|
# MySQL parameters.
|
3687
3810
|
# @return [Types::MySqlParameters]
|
3688
3811
|
#
|
3812
|
+
# @!attribute [rw] oracle_parameters
|
3813
|
+
# Oracle parameters.
|
3814
|
+
# @return [Types::OracleParameters]
|
3815
|
+
#
|
3689
3816
|
# @!attribute [rw] postgre_sql_parameters
|
3690
3817
|
# PostgreSQL parameters.
|
3691
3818
|
# @return [Types::PostgreSqlParameters]
|
@@ -3741,6 +3868,7 @@ module Aws::QuickSight
|
|
3741
3868
|
:jira_parameters,
|
3742
3869
|
:maria_db_parameters,
|
3743
3870
|
:my_sql_parameters,
|
3871
|
+
:oracle_parameters,
|
3744
3872
|
:postgre_sql_parameters,
|
3745
3873
|
:presto_parameters,
|
3746
3874
|
:rds_parameters,
|
@@ -4755,7 +4883,7 @@ module Aws::QuickSight
|
|
4755
4883
|
# The QuickSight settings for this AWS account. This information
|
4756
4884
|
# includes the edition of Amazon QuickSight that you subscribed to
|
4757
4885
|
# (Standard or Enterprise) and the notification email for the
|
4758
|
-
# QuickSight subscription.
|
4886
|
+
# QuickSight subscription. In the QuickSight console, the QuickSight
|
4759
4887
|
# subscription is sometimes referred to as a QuickSight "account"
|
4760
4888
|
# even though it's technically not an account by itself. Instead,
|
4761
4889
|
# it's a subscription to the QuickSight service for your AWS account.
|
@@ -5296,7 +5424,7 @@ module Aws::QuickSight
|
|
5296
5424
|
# @return [String]
|
5297
5425
|
#
|
5298
5426
|
# @!attribute [rw] assignment_name
|
5299
|
-
# The name of the assignment.
|
5427
|
+
# The name of the assignment, also called a rule.
|
5300
5428
|
# @return [String]
|
5301
5429
|
#
|
5302
5430
|
# @!attribute [rw] namespace
|
@@ -7917,6 +8045,9 @@ module Aws::QuickSight
|
|
7917
8045
|
# tags: [ # required
|
7918
8046
|
# {
|
7919
8047
|
# column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
|
8048
|
+
# column_description: {
|
8049
|
+
# text: "ColumnDescriptiveText",
|
8050
|
+
# },
|
7920
8051
|
# },
|
7921
8052
|
# ],
|
7922
8053
|
# },
|
@@ -8162,12 +8293,47 @@ module Aws::QuickSight
|
|
8162
8293
|
include Aws::Structure
|
8163
8294
|
end
|
8164
8295
|
|
8296
|
+
# @note When making an API call, you may pass OracleParameters
|
8297
|
+
# data as a hash:
|
8298
|
+
#
|
8299
|
+
# {
|
8300
|
+
# host: "Host", # required
|
8301
|
+
# port: 1, # required
|
8302
|
+
# database: "Database", # required
|
8303
|
+
# }
|
8304
|
+
#
|
8305
|
+
# @!attribute [rw] host
|
8306
|
+
# An Oracle host.
|
8307
|
+
# @return [String]
|
8308
|
+
#
|
8309
|
+
# @!attribute [rw] port
|
8310
|
+
# Port.
|
8311
|
+
# @return [Integer]
|
8312
|
+
#
|
8313
|
+
# @!attribute [rw] database
|
8314
|
+
# Database.
|
8315
|
+
# @return [String]
|
8316
|
+
#
|
8317
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/OracleParameters AWS API Documentation
|
8318
|
+
#
|
8319
|
+
class OracleParameters < Struct.new(
|
8320
|
+
:host,
|
8321
|
+
:port,
|
8322
|
+
:database)
|
8323
|
+
SENSITIVE = []
|
8324
|
+
include Aws::Structure
|
8325
|
+
end
|
8326
|
+
|
8165
8327
|
# Output column.
|
8166
8328
|
#
|
8167
8329
|
# @!attribute [rw] name
|
8168
8330
|
# A display name for the dataset.
|
8169
8331
|
# @return [String]
|
8170
8332
|
#
|
8333
|
+
# @!attribute [rw] description
|
8334
|
+
# A description for a column.
|
8335
|
+
# @return [String]
|
8336
|
+
#
|
8171
8337
|
# @!attribute [rw] type
|
8172
8338
|
# Type.
|
8173
8339
|
# @return [String]
|
@@ -8176,6 +8342,7 @@ module Aws::QuickSight
|
|
8176
8342
|
#
|
8177
8343
|
class OutputColumn < Struct.new(
|
8178
8344
|
:name,
|
8345
|
+
:description,
|
8179
8346
|
:type)
|
8180
8347
|
SENSITIVE = []
|
8181
8348
|
include Aws::Structure
|
@@ -8820,8 +8987,12 @@ module Aws::QuickSight
|
|
8820
8987
|
# The Amazon Resource Name (ARN) of the principal. This can be one of
|
8821
8988
|
# the following:
|
8822
8989
|
#
|
8823
|
-
# * The ARN of an Amazon QuickSight user
|
8824
|
-
# is
|
8990
|
+
# * The ARN of an Amazon QuickSight user or group associated with a
|
8991
|
+
# data source or dataset. (This is common.)
|
8992
|
+
#
|
8993
|
+
# * The ARN of an Amazon QuickSight user, group, or namespace
|
8994
|
+
# associated with an analysis, dashboard, template, or theme. (This
|
8995
|
+
# is common.)
|
8825
8996
|
#
|
8826
8997
|
# * The ARN of an AWS account root: This is an IAM ARN rather than a
|
8827
8998
|
# QuickSight ARN. Use this option only to share resources
|
@@ -8829,8 +9000,7 @@ module Aws::QuickSight
|
|
8829
9000
|
# @return [String]
|
8830
9001
|
#
|
8831
9002
|
# @!attribute [rw] actions
|
8832
|
-
# The IAM action to grant or revoke permissions on
|
8833
|
-
# `"quicksight:DescribeDashboard"`.
|
9003
|
+
# The IAM action to grant or revoke permissions on.
|
8834
9004
|
# @return [Array<String>]
|
8835
9005
|
#
|
8836
9006
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ResourcePermission AWS API Documentation
|
@@ -9228,6 +9398,31 @@ module Aws::QuickSight
|
|
9228
9398
|
include Aws::Structure
|
9229
9399
|
end
|
9230
9400
|
|
9401
|
+
# A *sheet*, which is an object that contains a set of visuals that are
|
9402
|
+
# viewed together on one page in the Amazon QuickSight console. Every
|
9403
|
+
# analysis and dashboard contains at least one sheet. Each sheet
|
9404
|
+
# contains at least one visualization widget, for example a chart, pivot
|
9405
|
+
# table, or narrative insight. Sheets can be associated with other
|
9406
|
+
# components, such as controls, filters, and so on.
|
9407
|
+
#
|
9408
|
+
# @!attribute [rw] sheet_id
|
9409
|
+
# The unique identifier associated with a sheet.
|
9410
|
+
# @return [String]
|
9411
|
+
#
|
9412
|
+
# @!attribute [rw] name
|
9413
|
+
# The name of a sheet. This name is displayed on the sheet's tab in
|
9414
|
+
# the QuickSight console.
|
9415
|
+
# @return [String]
|
9416
|
+
#
|
9417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Sheet AWS API Documentation
|
9418
|
+
#
|
9419
|
+
class Sheet < Struct.new(
|
9420
|
+
:sheet_id,
|
9421
|
+
:name)
|
9422
|
+
SENSITIVE = []
|
9423
|
+
include Aws::Structure
|
9424
|
+
end
|
9425
|
+
|
9231
9426
|
# Sheet controls option.
|
9232
9427
|
#
|
9233
9428
|
# @note When making an API call, you may pass SheetControlsOption
|
@@ -9467,6 +9662,9 @@ module Aws::QuickSight
|
|
9467
9662
|
# tags: [ # required
|
9468
9663
|
# {
|
9469
9664
|
# column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
|
9665
|
+
# column_description: {
|
9666
|
+
# text: "ColumnDescriptiveText",
|
9667
|
+
# },
|
9470
9668
|
# },
|
9471
9669
|
# ],
|
9472
9670
|
# }
|
@@ -9804,6 +10002,11 @@ module Aws::QuickSight
|
|
9804
10002
|
# The ARN of the theme associated with this version of the template.
|
9805
10003
|
# @return [String]
|
9806
10004
|
#
|
10005
|
+
# @!attribute [rw] sheets
|
10006
|
+
# A list of the associated sheets with the unique identifier and name
|
10007
|
+
# of each sheet.
|
10008
|
+
# @return [Array<Types::Sheet>]
|
10009
|
+
#
|
9807
10010
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TemplateVersion AWS API Documentation
|
9808
10011
|
#
|
9809
10012
|
class TemplateVersion < Struct.new(
|
@@ -9814,7 +10017,8 @@ module Aws::QuickSight
|
|
9814
10017
|
:data_set_configurations,
|
9815
10018
|
:description,
|
9816
10019
|
:source_entity_arn,
|
9817
|
-
:theme_arn
|
10020
|
+
:theme_arn,
|
10021
|
+
:sheets)
|
9818
10022
|
SENSITIVE = []
|
9819
10023
|
include Aws::Structure
|
9820
10024
|
end
|
@@ -10279,6 +10483,9 @@ module Aws::QuickSight
|
|
10279
10483
|
# tags: [ # required
|
10280
10484
|
# {
|
10281
10485
|
# column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
|
10486
|
+
# column_description: {
|
10487
|
+
# text: "ColumnDescriptiveText",
|
10488
|
+
# },
|
10282
10489
|
# },
|
10283
10490
|
# ],
|
10284
10491
|
# },
|
@@ -10351,7 +10558,7 @@ module Aws::QuickSight
|
|
10351
10558
|
end
|
10352
10559
|
|
10353
10560
|
# The theme colors that apply to UI and to charts, excluding data
|
10354
|
-
# colors. The colors description is a
|
10561
|
+
# colors. The colors description is a hexadecimal color code that
|
10355
10562
|
# consists of six alphanumerical characters, prefixed with `#`, for
|
10356
10563
|
# example #37BFF5. For more information, see [Using Themes in Amazon
|
10357
10564
|
# QuickSight][1] in the *Amazon QuickSight User Guide.*
|
@@ -10640,10 +10847,10 @@ module Aws::QuickSight
|
|
10640
10847
|
# @return [String]
|
10641
10848
|
#
|
10642
10849
|
# @!attribute [rw] default_namespace
|
10643
|
-
# The default namespace for this AWS
|
10644
|
-
# is `default`.
|
10645
|
-
# QuickSight provide an email that
|
10646
|
-
# namespace.
|
10850
|
+
# The default namespace for this AWS account. Currently, the default
|
10851
|
+
# is `default`. AWS Identity and Access Management (IAM) users that
|
10852
|
+
# register for the first time with QuickSight provide an email that
|
10853
|
+
# becomes associated with the default namespace.
|
10647
10854
|
# @return [String]
|
10648
10855
|
#
|
10649
10856
|
# @!attribute [rw] notification_email
|
@@ -11362,6 +11569,9 @@ module Aws::QuickSight
|
|
11362
11569
|
# tags: [ # required
|
11363
11570
|
# {
|
11364
11571
|
# column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
|
11572
|
+
# column_description: {
|
11573
|
+
# text: "ColumnDescriptiveText",
|
11574
|
+
# },
|
11365
11575
|
# },
|
11366
11576
|
# ],
|
11367
11577
|
# },
|
@@ -11393,6 +11603,12 @@ module Aws::QuickSight
|
|
11393
11603
|
# arn: "Arn", # required
|
11394
11604
|
# permission_policy: "GRANT_ACCESS", # required, accepts GRANT_ACCESS, DENY_ACCESS
|
11395
11605
|
# },
|
11606
|
+
# column_level_permission_rules: [
|
11607
|
+
# {
|
11608
|
+
# principals: ["String"],
|
11609
|
+
# column_names: ["String"],
|
11610
|
+
# },
|
11611
|
+
# ],
|
11396
11612
|
# }
|
11397
11613
|
#
|
11398
11614
|
# @!attribute [rw] aws_account_id
|
@@ -11432,6 +11648,10 @@ module Aws::QuickSight
|
|
11432
11648
|
# create.
|
11433
11649
|
# @return [Types::RowLevelPermissionDataSet]
|
11434
11650
|
#
|
11651
|
+
# @!attribute [rw] column_level_permission_rules
|
11652
|
+
# A set of one or more definitions of a ` ColumnLevelPermissionRule `.
|
11653
|
+
# @return [Array<Types::ColumnLevelPermissionRule>]
|
11654
|
+
#
|
11435
11655
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDataSetRequest AWS API Documentation
|
11436
11656
|
#
|
11437
11657
|
class UpdateDataSetRequest < Struct.new(
|
@@ -11442,7 +11662,8 @@ module Aws::QuickSight
|
|
11442
11662
|
:logical_table_map,
|
11443
11663
|
:import_mode,
|
11444
11664
|
:column_groups,
|
11445
|
-
:row_level_permission_data_set
|
11665
|
+
:row_level_permission_data_set,
|
11666
|
+
:column_level_permission_rules)
|
11446
11667
|
SENSITIVE = []
|
11447
11668
|
include Aws::Structure
|
11448
11669
|
end
|
@@ -11605,6 +11826,11 @@ module Aws::QuickSight
|
|
11605
11826
|
# port: 1, # required
|
11606
11827
|
# database: "Database", # required
|
11607
11828
|
# },
|
11829
|
+
# oracle_parameters: {
|
11830
|
+
# host: "Host", # required
|
11831
|
+
# port: 1, # required
|
11832
|
+
# database: "Database", # required
|
11833
|
+
# },
|
11608
11834
|
# postgre_sql_parameters: {
|
11609
11835
|
# host: "Host", # required
|
11610
11836
|
# port: 1, # required
|
@@ -11696,6 +11922,11 @@ module Aws::QuickSight
|
|
11696
11922
|
# port: 1, # required
|
11697
11923
|
# database: "Database", # required
|
11698
11924
|
# },
|
11925
|
+
# oracle_parameters: {
|
11926
|
+
# host: "Host", # required
|
11927
|
+
# port: 1, # required
|
11928
|
+
# database: "Database", # required
|
11929
|
+
# },
|
11699
11930
|
# postgre_sql_parameters: {
|
11700
11931
|
# host: "Host", # required
|
11701
11932
|
# port: 1, # required
|
@@ -11922,8 +12153,8 @@ module Aws::QuickSight
|
|
11922
12153
|
# @return [String]
|
11923
12154
|
#
|
11924
12155
|
# @!attribute [rw] assignment_name
|
11925
|
-
# The name of the assignment. This name must be
|
11926
|
-
# account.
|
12156
|
+
# The name of the assignment, also called a rule. This name must be
|
12157
|
+
# unique within an AWS account.
|
11927
12158
|
# @return [String]
|
11928
12159
|
#
|
11929
12160
|
# @!attribute [rw] namespace
|
@@ -11967,7 +12198,7 @@ module Aws::QuickSight
|
|
11967
12198
|
end
|
11968
12199
|
|
11969
12200
|
# @!attribute [rw] assignment_name
|
11970
|
-
# The name of the assignment.
|
12201
|
+
# The name of the assignment or rule.
|
11971
12202
|
# @return [String]
|
11972
12203
|
#
|
11973
12204
|
# @!attribute [rw] assignment_id
|
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.35.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: 2020-
|
11
|
+
date: 2020-11-11 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.109.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.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|