aws-sdk-quicksight 1.94.0 → 1.96.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +624 -30
- data/lib/aws-sdk-quicksight/client_api.rb +357 -9
- data/lib/aws-sdk-quicksight/endpoints.rb +84 -0
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-quicksight/types.rb +959 -41
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +2 -2
@@ -584,12 +584,14 @@ module Aws::QuickSight
|
|
584
584
|
#
|
585
585
|
# @option params [required, String] :authentication_method
|
586
586
|
# The method that you want to use to authenticate your Amazon QuickSight
|
587
|
-
# account.
|
588
|
-
# `IAM_AND_QUICKSIGHT`, `IAM_ONLY`, and `ACTIVE_DIRECTORY`.
|
587
|
+
# account.
|
589
588
|
#
|
590
589
|
# If you choose `ACTIVE_DIRECTORY`, provide an `ActiveDirectoryName` and
|
591
590
|
# an `AdminGroup` associated with your Active Directory.
|
592
591
|
#
|
592
|
+
# If you choose `IAM_IDENTITY_CENTER`, provide an `AdminGroup`
|
593
|
+
# associated with your IAM Identity Center account.
|
594
|
+
#
|
593
595
|
# @option params [required, String] :aws_account_id
|
594
596
|
# The Amazon Web Services account ID of the account that you're using
|
595
597
|
# to create your Amazon QuickSight account.
|
@@ -621,36 +623,54 @@ module Aws::QuickSight
|
|
621
623
|
# QuickSight account.
|
622
624
|
#
|
623
625
|
# @option params [Array<String>] :admin_group
|
624
|
-
# The admin group associated with your Active Directory
|
625
|
-
# required if `ACTIVE_DIRECTORY`
|
626
|
-
#
|
627
|
-
#
|
628
|
-
# with Amazon QuickSight Enterprise Edition][1] in the Amazon QuickSight
|
629
|
-
# User Guide.
|
626
|
+
# The admin group associated with your Active Directory or IAM Identity
|
627
|
+
# Center account. This field is required if `ACTIVE_DIRECTORY` or
|
628
|
+
# `IAM_IDENTITY_CENTER` is the selected authentication method of the new
|
629
|
+
# Amazon QuickSight account.
|
630
630
|
#
|
631
|
+
# For more information about using IAM Identity Center in Amazon
|
632
|
+
# QuickSight, see [Using IAM Identity Center with Amazon QuickSight
|
633
|
+
# Enterprise Edition][1] in the Amazon QuickSight User Guide. For more
|
634
|
+
# information about using Active Directory in Amazon QuickSight, see
|
635
|
+
# [Using Active Directory with Amazon QuickSight Enterprise Edition][2]
|
636
|
+
# in the Amazon QuickSight User Guide.
|
631
637
|
#
|
632
638
|
#
|
633
|
-
#
|
639
|
+
#
|
640
|
+
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html
|
641
|
+
# [2]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
|
634
642
|
#
|
635
643
|
# @option params [Array<String>] :author_group
|
636
|
-
# The author group associated with your Active Directory
|
644
|
+
# The author group associated with your Active Directory or IAM Identity
|
645
|
+
# Center account.
|
646
|
+
#
|
647
|
+
# For more information about using IAM Identity Center in Amazon
|
648
|
+
# QuickSight, see [Using IAM Identity Center with Amazon QuickSight
|
649
|
+
# Enterprise Edition][1] in the Amazon QuickSight User Guide. For more
|
637
650
|
# information about using Active Directory in Amazon QuickSight, see
|
638
|
-
# [Using Active Directory with Amazon QuickSight Enterprise Edition][
|
651
|
+
# [Using Active Directory with Amazon QuickSight Enterprise Edition][2]
|
639
652
|
# in the Amazon QuickSight User Guide.
|
640
653
|
#
|
641
654
|
#
|
642
655
|
#
|
643
|
-
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/
|
656
|
+
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html
|
657
|
+
# [2]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
|
644
658
|
#
|
645
659
|
# @option params [Array<String>] :reader_group
|
646
|
-
# The reader group associated with your Active
|
660
|
+
# The reader group associated with your Active Directory or IAM Identity
|
661
|
+
# Center account.
|
662
|
+
#
|
663
|
+
# For more information about using IAM Identity Center in Amazon
|
664
|
+
# QuickSight, see [Using IAM Identity Center with Amazon QuickSight
|
665
|
+
# Enterprise Edition][1] in the Amazon QuickSight User Guide. For more
|
647
666
|
# information about using Active Directory in Amazon QuickSight, see
|
648
|
-
# [Using Active Directory with Amazon QuickSight Enterprise Edition][
|
649
|
-
# in the
|
667
|
+
# [Using Active Directory with Amazon QuickSight Enterprise Edition][2]
|
668
|
+
# in the Amazon QuickSight User Guide.
|
650
669
|
#
|
651
670
|
#
|
652
671
|
#
|
653
|
-
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/
|
672
|
+
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html
|
673
|
+
# [2]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
|
654
674
|
#
|
655
675
|
# @option params [String] :first_name
|
656
676
|
# The first name of the author of the Amazon QuickSight account to use
|
@@ -909,6 +929,10 @@ module Aws::QuickSight
|
|
909
929
|
# When you create the dashboard, Amazon QuickSight adds the dashboard to
|
910
930
|
# these folders.
|
911
931
|
#
|
932
|
+
# @option params [Types::LinkSharingConfiguration] :link_sharing_configuration
|
933
|
+
# A structure that contains the permissions of a shareable link to the
|
934
|
+
# dashboard.
|
935
|
+
#
|
912
936
|
# @return [Types::CreateDashboardResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
913
937
|
#
|
914
938
|
# * {Types::CreateDashboardResponse#arn #arn} => String
|
@@ -1024,6 +1048,7 @@ module Aws::QuickSight
|
|
1024
1048
|
# {
|
1025
1049
|
# name: "ColumnName", # required
|
1026
1050
|
# type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
|
1051
|
+
# sub_type: "FLOAT", # accepts FLOAT, FIXED
|
1027
1052
|
# },
|
1028
1053
|
# ],
|
1029
1054
|
# },
|
@@ -1035,6 +1060,7 @@ module Aws::QuickSight
|
|
1035
1060
|
# {
|
1036
1061
|
# name: "ColumnName", # required
|
1037
1062
|
# type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
|
1063
|
+
# sub_type: "FLOAT", # accepts FLOAT, FIXED
|
1038
1064
|
# },
|
1039
1065
|
# ],
|
1040
1066
|
# },
|
@@ -1051,6 +1077,7 @@ module Aws::QuickSight
|
|
1051
1077
|
# {
|
1052
1078
|
# name: "ColumnName", # required
|
1053
1079
|
# type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
|
1080
|
+
# sub_type: "FLOAT", # accepts FLOAT, FIXED
|
1054
1081
|
# },
|
1055
1082
|
# ],
|
1056
1083
|
# },
|
@@ -1083,6 +1110,7 @@ module Aws::QuickSight
|
|
1083
1110
|
# cast_column_type_operation: {
|
1084
1111
|
# column_name: "ColumnName", # required
|
1085
1112
|
# new_column_type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME
|
1113
|
+
# sub_type: "FLOAT", # accepts FLOAT, FIXED
|
1086
1114
|
# format: "TypeCastFormat",
|
1087
1115
|
# },
|
1088
1116
|
# tag_column_operation: {
|
@@ -1307,7 +1335,7 @@ module Aws::QuickSight
|
|
1307
1335
|
# aws_account_id: "AwsAccountId", # required
|
1308
1336
|
# data_source_id: "ResourceId", # required
|
1309
1337
|
# name: "ResourceName", # required
|
1310
|
-
# 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, AMAZON_OPENSEARCH, EXASOL, DATABRICKS
|
1338
|
+
# 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, AMAZON_OPENSEARCH, EXASOL, DATABRICKS, STARBURST, TRINO, BIGQUERY
|
1311
1339
|
# data_source_parameters: {
|
1312
1340
|
# amazon_elasticsearch_parameters: {
|
1313
1341
|
# domain: "Domain", # required
|
@@ -1429,6 +1457,10 @@ module Aws::QuickSight
|
|
1429
1457
|
# port: 1, # required
|
1430
1458
|
# catalog: "Catalog", # required
|
1431
1459
|
# },
|
1460
|
+
# big_query_parameters: {
|
1461
|
+
# project_id: "ProjectId", # required
|
1462
|
+
# data_set_region: "DataSetRegion",
|
1463
|
+
# },
|
1432
1464
|
# },
|
1433
1465
|
# credentials: {
|
1434
1466
|
# credential_pair: {
|
@@ -1556,6 +1588,10 @@ module Aws::QuickSight
|
|
1556
1588
|
# port: 1, # required
|
1557
1589
|
# catalog: "Catalog", # required
|
1558
1590
|
# },
|
1591
|
+
# big_query_parameters: {
|
1592
|
+
# project_id: "ProjectId", # required
|
1593
|
+
# data_set_region: "DataSetRegion",
|
1594
|
+
# },
|
1559
1595
|
# },
|
1560
1596
|
# ],
|
1561
1597
|
# },
|
@@ -2102,6 +2138,52 @@ module Aws::QuickSight
|
|
2102
2138
|
req.send_request(options)
|
2103
2139
|
end
|
2104
2140
|
|
2141
|
+
# Use `CreateRoleMembership` to add an existing Amazon QuickSight group
|
2142
|
+
# to an existing role.
|
2143
|
+
#
|
2144
|
+
# @option params [required, String] :member_name
|
2145
|
+
# The name of the group that you want to add to the role.
|
2146
|
+
#
|
2147
|
+
# @option params [required, String] :aws_account_id
|
2148
|
+
# The ID for the Amazon Web Services account that you want to create a
|
2149
|
+
# group in. The Amazon Web Services account ID that you provide must be
|
2150
|
+
# the same Amazon Web Services account that contains your Amazon
|
2151
|
+
# QuickSight account.
|
2152
|
+
#
|
2153
|
+
# @option params [required, String] :namespace
|
2154
|
+
# The namespace that the role belongs to.
|
2155
|
+
#
|
2156
|
+
# @option params [required, String] :role
|
2157
|
+
# The role that you want to add a group to.
|
2158
|
+
#
|
2159
|
+
# @return [Types::CreateRoleMembershipResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2160
|
+
#
|
2161
|
+
# * {Types::CreateRoleMembershipResponse#request_id #request_id} => String
|
2162
|
+
# * {Types::CreateRoleMembershipResponse#status #status} => Integer
|
2163
|
+
#
|
2164
|
+
# @example Request syntax with placeholder values
|
2165
|
+
#
|
2166
|
+
# resp = client.create_role_membership({
|
2167
|
+
# member_name: "GroupName", # required
|
2168
|
+
# aws_account_id: "AwsAccountId", # required
|
2169
|
+
# namespace: "Namespace", # required
|
2170
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
2171
|
+
# })
|
2172
|
+
#
|
2173
|
+
# @example Response structure
|
2174
|
+
#
|
2175
|
+
# resp.request_id #=> String
|
2176
|
+
# resp.status #=> Integer
|
2177
|
+
#
|
2178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateRoleMembership AWS API Documentation
|
2179
|
+
#
|
2180
|
+
# @overload create_role_membership(params = {})
|
2181
|
+
# @param [Hash] params ({})
|
2182
|
+
def create_role_membership(params = {}, options = {})
|
2183
|
+
req = build_request(:create_role_membership, params)
|
2184
|
+
req.send_request(options)
|
2185
|
+
end
|
2186
|
+
|
2105
2187
|
# Creates a template either from a `TemplateDefinition` or from an
|
2106
2188
|
# existing Amazon QuickSight analysis or template. You can use the
|
2107
2189
|
# resulting template to create additional dashboards, templates, or
|
@@ -3442,6 +3524,91 @@ module Aws::QuickSight
|
|
3442
3524
|
req.send_request(options)
|
3443
3525
|
end
|
3444
3526
|
|
3527
|
+
# Removes custom permissions from the role.
|
3528
|
+
#
|
3529
|
+
# @option params [required, String] :role
|
3530
|
+
# The role that you want to remove permissions from.
|
3531
|
+
#
|
3532
|
+
# @option params [required, String] :aws_account_id
|
3533
|
+
# The ID for the Amazon Web Services account that the group is in.
|
3534
|
+
# Currently, you use the ID for the Amazon Web Services account that
|
3535
|
+
# contains your Amazon QuickSight account.
|
3536
|
+
#
|
3537
|
+
# @option params [required, String] :namespace
|
3538
|
+
# The namespace that includes the role.
|
3539
|
+
#
|
3540
|
+
# @return [Types::DeleteRoleCustomPermissionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3541
|
+
#
|
3542
|
+
# * {Types::DeleteRoleCustomPermissionResponse#request_id #request_id} => String
|
3543
|
+
# * {Types::DeleteRoleCustomPermissionResponse#status #status} => Integer
|
3544
|
+
#
|
3545
|
+
# @example Request syntax with placeholder values
|
3546
|
+
#
|
3547
|
+
# resp = client.delete_role_custom_permission({
|
3548
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
3549
|
+
# aws_account_id: "AwsAccountId", # required
|
3550
|
+
# namespace: "Namespace", # required
|
3551
|
+
# })
|
3552
|
+
#
|
3553
|
+
# @example Response structure
|
3554
|
+
#
|
3555
|
+
# resp.request_id #=> String
|
3556
|
+
# resp.status #=> Integer
|
3557
|
+
#
|
3558
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteRoleCustomPermission AWS API Documentation
|
3559
|
+
#
|
3560
|
+
# @overload delete_role_custom_permission(params = {})
|
3561
|
+
# @param [Hash] params ({})
|
3562
|
+
def delete_role_custom_permission(params = {}, options = {})
|
3563
|
+
req = build_request(:delete_role_custom_permission, params)
|
3564
|
+
req.send_request(options)
|
3565
|
+
end
|
3566
|
+
|
3567
|
+
# Removes a group from a role.
|
3568
|
+
#
|
3569
|
+
# @option params [required, String] :member_name
|
3570
|
+
# The name of the group.
|
3571
|
+
#
|
3572
|
+
# @option params [required, String] :role
|
3573
|
+
# The role that you want to remove permissions from.
|
3574
|
+
#
|
3575
|
+
# @option params [required, String] :aws_account_id
|
3576
|
+
# The ID for the Amazon Web Services account that you want to create a
|
3577
|
+
# group in. The Amazon Web Services account ID that you provide must be
|
3578
|
+
# the same Amazon Web Services account that contains your Amazon
|
3579
|
+
# QuickSight account.
|
3580
|
+
#
|
3581
|
+
# @option params [required, String] :namespace
|
3582
|
+
# The namespace that contains the role.
|
3583
|
+
#
|
3584
|
+
# @return [Types::DeleteRoleMembershipResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3585
|
+
#
|
3586
|
+
# * {Types::DeleteRoleMembershipResponse#request_id #request_id} => String
|
3587
|
+
# * {Types::DeleteRoleMembershipResponse#status #status} => Integer
|
3588
|
+
#
|
3589
|
+
# @example Request syntax with placeholder values
|
3590
|
+
#
|
3591
|
+
# resp = client.delete_role_membership({
|
3592
|
+
# member_name: "GroupName", # required
|
3593
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
3594
|
+
# aws_account_id: "AwsAccountId", # required
|
3595
|
+
# namespace: "Namespace", # required
|
3596
|
+
# })
|
3597
|
+
#
|
3598
|
+
# @example Response structure
|
3599
|
+
#
|
3600
|
+
# resp.request_id #=> String
|
3601
|
+
# resp.status #=> Integer
|
3602
|
+
#
|
3603
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteRoleMembership AWS API Documentation
|
3604
|
+
#
|
3605
|
+
# @overload delete_role_membership(params = {})
|
3606
|
+
# @param [Hash] params ({})
|
3607
|
+
def delete_role_membership(params = {}, options = {})
|
3608
|
+
req = build_request(:delete_role_membership, params)
|
3609
|
+
req.send_request(options)
|
3610
|
+
end
|
3611
|
+
|
3445
3612
|
# Deletes a template.
|
3446
3613
|
#
|
3447
3614
|
# @option params [required, String] :aws_account_id
|
@@ -4218,6 +4385,10 @@ module Aws::QuickSight
|
|
4218
4385
|
# * {Types::DescribeAssetBundleExportJobResponse#cloud_formation_override_property_configuration #cloud_formation_override_property_configuration} => Types::AssetBundleCloudFormationOverridePropertyConfiguration
|
4219
4386
|
# * {Types::DescribeAssetBundleExportJobResponse#request_id #request_id} => String
|
4220
4387
|
# * {Types::DescribeAssetBundleExportJobResponse#status #status} => Integer
|
4388
|
+
# * {Types::DescribeAssetBundleExportJobResponse#include_permissions #include_permissions} => Boolean
|
4389
|
+
# * {Types::DescribeAssetBundleExportJobResponse#include_tags #include_tags} => Boolean
|
4390
|
+
# * {Types::DescribeAssetBundleExportJobResponse#validation_strategy #validation_strategy} => Types::AssetBundleExportJobValidationStrategy
|
4391
|
+
# * {Types::DescribeAssetBundleExportJobResponse#warnings #warnings} => Array<Types::AssetBundleExportJobWarning>
|
4221
4392
|
#
|
4222
4393
|
# @example Request syntax with placeholder values
|
4223
4394
|
#
|
@@ -4273,6 +4444,12 @@ module Aws::QuickSight
|
|
4273
4444
|
# resp.cloud_formation_override_property_configuration.dashboards[0].properties[0] #=> String, one of "Name"
|
4274
4445
|
# resp.request_id #=> String
|
4275
4446
|
# resp.status #=> Integer
|
4447
|
+
# resp.include_permissions #=> Boolean
|
4448
|
+
# resp.include_tags #=> Boolean
|
4449
|
+
# resp.validation_strategy.strict_mode_for_all_resources #=> Boolean
|
4450
|
+
# resp.warnings #=> Array
|
4451
|
+
# resp.warnings[0].arn #=> String
|
4452
|
+
# resp.warnings[0].message #=> String
|
4276
4453
|
#
|
4277
4454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAssetBundleExportJob AWS API Documentation
|
4278
4455
|
#
|
@@ -4311,6 +4488,9 @@ module Aws::QuickSight
|
|
4311
4488
|
# * {Types::DescribeAssetBundleImportJobResponse#failure_action #failure_action} => String
|
4312
4489
|
# * {Types::DescribeAssetBundleImportJobResponse#request_id #request_id} => String
|
4313
4490
|
# * {Types::DescribeAssetBundleImportJobResponse#status #status} => Integer
|
4491
|
+
# * {Types::DescribeAssetBundleImportJobResponse#override_permissions #override_permissions} => Types::AssetBundleImportJobOverridePermissions
|
4492
|
+
# * {Types::DescribeAssetBundleImportJobResponse#override_tags #override_tags} => Types::AssetBundleImportJobOverrideTags
|
4493
|
+
# * {Types::DescribeAssetBundleImportJobResponse#override_validation_strategy #override_validation_strategy} => Types::AssetBundleImportJobOverrideValidationStrategy
|
4314
4494
|
#
|
4315
4495
|
# @example Request syntax with placeholder values
|
4316
4496
|
#
|
@@ -4421,6 +4601,8 @@ module Aws::QuickSight
|
|
4421
4601
|
# resp.override_parameters.data_sources[0].data_source_parameters.trino_parameters.host #=> String
|
4422
4602
|
# resp.override_parameters.data_sources[0].data_source_parameters.trino_parameters.port #=> Integer
|
4423
4603
|
# resp.override_parameters.data_sources[0].data_source_parameters.trino_parameters.catalog #=> String
|
4604
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.big_query_parameters.project_id #=> String
|
4605
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.big_query_parameters.data_set_region #=> String
|
4424
4606
|
# resp.override_parameters.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
|
4425
4607
|
# resp.override_parameters.data_sources[0].ssl_properties.disable_ssl #=> Boolean
|
4426
4608
|
# resp.override_parameters.data_sources[0].credentials.credential_pair.username #=> String
|
@@ -4441,6 +4623,82 @@ module Aws::QuickSight
|
|
4441
4623
|
# resp.failure_action #=> String, one of "DO_NOTHING", "ROLLBACK"
|
4442
4624
|
# resp.request_id #=> String
|
4443
4625
|
# resp.status #=> Integer
|
4626
|
+
# resp.override_permissions.data_sources #=> Array
|
4627
|
+
# resp.override_permissions.data_sources[0].data_source_ids #=> Array
|
4628
|
+
# resp.override_permissions.data_sources[0].data_source_ids[0] #=> String
|
4629
|
+
# resp.override_permissions.data_sources[0].permissions.principals #=> Array
|
4630
|
+
# resp.override_permissions.data_sources[0].permissions.principals[0] #=> String
|
4631
|
+
# resp.override_permissions.data_sources[0].permissions.actions #=> Array
|
4632
|
+
# resp.override_permissions.data_sources[0].permissions.actions[0] #=> String
|
4633
|
+
# resp.override_permissions.data_sets #=> Array
|
4634
|
+
# resp.override_permissions.data_sets[0].data_set_ids #=> Array
|
4635
|
+
# resp.override_permissions.data_sets[0].data_set_ids[0] #=> String
|
4636
|
+
# resp.override_permissions.data_sets[0].permissions.principals #=> Array
|
4637
|
+
# resp.override_permissions.data_sets[0].permissions.principals[0] #=> String
|
4638
|
+
# resp.override_permissions.data_sets[0].permissions.actions #=> Array
|
4639
|
+
# resp.override_permissions.data_sets[0].permissions.actions[0] #=> String
|
4640
|
+
# resp.override_permissions.themes #=> Array
|
4641
|
+
# resp.override_permissions.themes[0].theme_ids #=> Array
|
4642
|
+
# resp.override_permissions.themes[0].theme_ids[0] #=> String
|
4643
|
+
# resp.override_permissions.themes[0].permissions.principals #=> Array
|
4644
|
+
# resp.override_permissions.themes[0].permissions.principals[0] #=> String
|
4645
|
+
# resp.override_permissions.themes[0].permissions.actions #=> Array
|
4646
|
+
# resp.override_permissions.themes[0].permissions.actions[0] #=> String
|
4647
|
+
# resp.override_permissions.analyses #=> Array
|
4648
|
+
# resp.override_permissions.analyses[0].analysis_ids #=> Array
|
4649
|
+
# resp.override_permissions.analyses[0].analysis_ids[0] #=> String
|
4650
|
+
# resp.override_permissions.analyses[0].permissions.principals #=> Array
|
4651
|
+
# resp.override_permissions.analyses[0].permissions.principals[0] #=> String
|
4652
|
+
# resp.override_permissions.analyses[0].permissions.actions #=> Array
|
4653
|
+
# resp.override_permissions.analyses[0].permissions.actions[0] #=> String
|
4654
|
+
# resp.override_permissions.dashboards #=> Array
|
4655
|
+
# resp.override_permissions.dashboards[0].dashboard_ids #=> Array
|
4656
|
+
# resp.override_permissions.dashboards[0].dashboard_ids[0] #=> String
|
4657
|
+
# resp.override_permissions.dashboards[0].permissions.principals #=> Array
|
4658
|
+
# resp.override_permissions.dashboards[0].permissions.principals[0] #=> String
|
4659
|
+
# resp.override_permissions.dashboards[0].permissions.actions #=> Array
|
4660
|
+
# resp.override_permissions.dashboards[0].permissions.actions[0] #=> String
|
4661
|
+
# resp.override_permissions.dashboards[0].link_sharing_configuration.permissions.principals #=> Array
|
4662
|
+
# resp.override_permissions.dashboards[0].link_sharing_configuration.permissions.principals[0] #=> String
|
4663
|
+
# resp.override_permissions.dashboards[0].link_sharing_configuration.permissions.actions #=> Array
|
4664
|
+
# resp.override_permissions.dashboards[0].link_sharing_configuration.permissions.actions[0] #=> String
|
4665
|
+
# resp.override_tags.vpc_connections #=> Array
|
4666
|
+
# resp.override_tags.vpc_connections[0].vpc_connection_ids #=> Array
|
4667
|
+
# resp.override_tags.vpc_connections[0].vpc_connection_ids[0] #=> String
|
4668
|
+
# resp.override_tags.vpc_connections[0].tags #=> Array
|
4669
|
+
# resp.override_tags.vpc_connections[0].tags[0].key #=> String
|
4670
|
+
# resp.override_tags.vpc_connections[0].tags[0].value #=> String
|
4671
|
+
# resp.override_tags.data_sources #=> Array
|
4672
|
+
# resp.override_tags.data_sources[0].data_source_ids #=> Array
|
4673
|
+
# resp.override_tags.data_sources[0].data_source_ids[0] #=> String
|
4674
|
+
# resp.override_tags.data_sources[0].tags #=> Array
|
4675
|
+
# resp.override_tags.data_sources[0].tags[0].key #=> String
|
4676
|
+
# resp.override_tags.data_sources[0].tags[0].value #=> String
|
4677
|
+
# resp.override_tags.data_sets #=> Array
|
4678
|
+
# resp.override_tags.data_sets[0].data_set_ids #=> Array
|
4679
|
+
# resp.override_tags.data_sets[0].data_set_ids[0] #=> String
|
4680
|
+
# resp.override_tags.data_sets[0].tags #=> Array
|
4681
|
+
# resp.override_tags.data_sets[0].tags[0].key #=> String
|
4682
|
+
# resp.override_tags.data_sets[0].tags[0].value #=> String
|
4683
|
+
# resp.override_tags.themes #=> Array
|
4684
|
+
# resp.override_tags.themes[0].theme_ids #=> Array
|
4685
|
+
# resp.override_tags.themes[0].theme_ids[0] #=> String
|
4686
|
+
# resp.override_tags.themes[0].tags #=> Array
|
4687
|
+
# resp.override_tags.themes[0].tags[0].key #=> String
|
4688
|
+
# resp.override_tags.themes[0].tags[0].value #=> String
|
4689
|
+
# resp.override_tags.analyses #=> Array
|
4690
|
+
# resp.override_tags.analyses[0].analysis_ids #=> Array
|
4691
|
+
# resp.override_tags.analyses[0].analysis_ids[0] #=> String
|
4692
|
+
# resp.override_tags.analyses[0].tags #=> Array
|
4693
|
+
# resp.override_tags.analyses[0].tags[0].key #=> String
|
4694
|
+
# resp.override_tags.analyses[0].tags[0].value #=> String
|
4695
|
+
# resp.override_tags.dashboards #=> Array
|
4696
|
+
# resp.override_tags.dashboards[0].dashboard_ids #=> Array
|
4697
|
+
# resp.override_tags.dashboards[0].dashboard_ids[0] #=> String
|
4698
|
+
# resp.override_tags.dashboards[0].tags #=> Array
|
4699
|
+
# resp.override_tags.dashboards[0].tags[0].key #=> String
|
4700
|
+
# resp.override_tags.dashboards[0].tags[0].value #=> String
|
4701
|
+
# resp.override_validation_strategy.strict_mode_for_all_resources #=> Boolean
|
4444
4702
|
#
|
4445
4703
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAssetBundleImportJob AWS API Documentation
|
4446
4704
|
#
|
@@ -4830,12 +5088,14 @@ module Aws::QuickSight
|
|
4830
5088
|
# resp.data_set.physical_table_map["PhysicalTableId"].relational_table.input_columns #=> Array
|
4831
5089
|
# resp.data_set.physical_table_map["PhysicalTableId"].relational_table.input_columns[0].name #=> String
|
4832
5090
|
# resp.data_set.physical_table_map["PhysicalTableId"].relational_table.input_columns[0].type #=> String, one of "STRING", "INTEGER", "DECIMAL", "DATETIME", "BIT", "BOOLEAN", "JSON"
|
5091
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].relational_table.input_columns[0].sub_type #=> String, one of "FLOAT", "FIXED"
|
4833
5092
|
# resp.data_set.physical_table_map["PhysicalTableId"].custom_sql.data_source_arn #=> String
|
4834
5093
|
# resp.data_set.physical_table_map["PhysicalTableId"].custom_sql.name #=> String
|
4835
5094
|
# resp.data_set.physical_table_map["PhysicalTableId"].custom_sql.sql_query #=> String
|
4836
5095
|
# resp.data_set.physical_table_map["PhysicalTableId"].custom_sql.columns #=> Array
|
4837
5096
|
# resp.data_set.physical_table_map["PhysicalTableId"].custom_sql.columns[0].name #=> String
|
4838
5097
|
# resp.data_set.physical_table_map["PhysicalTableId"].custom_sql.columns[0].type #=> String, one of "STRING", "INTEGER", "DECIMAL", "DATETIME", "BIT", "BOOLEAN", "JSON"
|
5098
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].custom_sql.columns[0].sub_type #=> String, one of "FLOAT", "FIXED"
|
4839
5099
|
# resp.data_set.physical_table_map["PhysicalTableId"].s3_source.data_source_arn #=> String
|
4840
5100
|
# resp.data_set.physical_table_map["PhysicalTableId"].s3_source.upload_settings.format #=> String, one of "CSV", "TSV", "CLF", "ELF", "XLSX", "JSON"
|
4841
5101
|
# resp.data_set.physical_table_map["PhysicalTableId"].s3_source.upload_settings.start_from_row #=> Integer
|
@@ -4845,6 +5105,7 @@ module Aws::QuickSight
|
|
4845
5105
|
# resp.data_set.physical_table_map["PhysicalTableId"].s3_source.input_columns #=> Array
|
4846
5106
|
# resp.data_set.physical_table_map["PhysicalTableId"].s3_source.input_columns[0].name #=> String
|
4847
5107
|
# resp.data_set.physical_table_map["PhysicalTableId"].s3_source.input_columns[0].type #=> String, one of "STRING", "INTEGER", "DECIMAL", "DATETIME", "BIT", "BOOLEAN", "JSON"
|
5108
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].s3_source.input_columns[0].sub_type #=> String, one of "FLOAT", "FIXED"
|
4848
5109
|
# resp.data_set.logical_table_map #=> Hash
|
4849
5110
|
# resp.data_set.logical_table_map["LogicalTableId"].alias #=> String
|
4850
5111
|
# resp.data_set.logical_table_map["LogicalTableId"].data_transforms #=> Array
|
@@ -4859,6 +5120,7 @@ module Aws::QuickSight
|
|
4859
5120
|
# resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].rename_column_operation.new_column_name #=> String
|
4860
5121
|
# resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].cast_column_type_operation.column_name #=> String
|
4861
5122
|
# resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].cast_column_type_operation.new_column_type #=> String, one of "STRING", "INTEGER", "DECIMAL", "DATETIME"
|
5123
|
+
# resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].cast_column_type_operation.sub_type #=> String, one of "FLOAT", "FIXED"
|
4862
5124
|
# resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].cast_column_type_operation.format #=> String
|
4863
5125
|
# resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].tag_column_operation.column_name #=> String
|
4864
5126
|
# resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].tag_column_operation.tags #=> Array
|
@@ -4889,6 +5151,7 @@ module Aws::QuickSight
|
|
4889
5151
|
# resp.data_set.output_columns[0].name #=> String
|
4890
5152
|
# resp.data_set.output_columns[0].description #=> String
|
4891
5153
|
# resp.data_set.output_columns[0].type #=> String, one of "STRING", "INTEGER", "DECIMAL", "DATETIME"
|
5154
|
+
# resp.data_set.output_columns[0].sub_type #=> String, one of "FLOAT", "FIXED"
|
4892
5155
|
# resp.data_set.import_mode #=> String, one of "SPICE", "DIRECT_QUERY"
|
4893
5156
|
# resp.data_set.consumed_spice_capacity_in_bytes #=> Integer
|
4894
5157
|
# resp.data_set.column_groups #=> Array
|
@@ -5067,7 +5330,7 @@ module Aws::QuickSight
|
|
5067
5330
|
# resp.data_source.arn #=> String
|
5068
5331
|
# resp.data_source.data_source_id #=> String
|
5069
5332
|
# resp.data_source.name #=> String
|
5070
|
-
# 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", "AMAZON_OPENSEARCH", "EXASOL", "DATABRICKS"
|
5333
|
+
# 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", "AMAZON_OPENSEARCH", "EXASOL", "DATABRICKS", "STARBURST", "TRINO", "BIGQUERY"
|
5071
5334
|
# resp.data_source.status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
|
5072
5335
|
# resp.data_source.created_time #=> Time
|
5073
5336
|
# resp.data_source.last_updated_time #=> Time
|
@@ -5138,6 +5401,8 @@ module Aws::QuickSight
|
|
5138
5401
|
# resp.data_source.data_source_parameters.trino_parameters.host #=> String
|
5139
5402
|
# resp.data_source.data_source_parameters.trino_parameters.port #=> Integer
|
5140
5403
|
# resp.data_source.data_source_parameters.trino_parameters.catalog #=> String
|
5404
|
+
# resp.data_source.data_source_parameters.big_query_parameters.project_id #=> String
|
5405
|
+
# resp.data_source.data_source_parameters.big_query_parameters.data_set_region #=> String
|
5141
5406
|
# resp.data_source.alternate_data_source_parameters #=> Array
|
5142
5407
|
# resp.data_source.alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
|
5143
5408
|
# resp.data_source.alternate_data_source_parameters[0].athena_parameters.work_group #=> String
|
@@ -5206,6 +5471,8 @@ module Aws::QuickSight
|
|
5206
5471
|
# resp.data_source.alternate_data_source_parameters[0].trino_parameters.host #=> String
|
5207
5472
|
# resp.data_source.alternate_data_source_parameters[0].trino_parameters.port #=> Integer
|
5208
5473
|
# resp.data_source.alternate_data_source_parameters[0].trino_parameters.catalog #=> String
|
5474
|
+
# resp.data_source.alternate_data_source_parameters[0].big_query_parameters.project_id #=> String
|
5475
|
+
# resp.data_source.alternate_data_source_parameters[0].big_query_parameters.data_set_region #=> String
|
5209
5476
|
# resp.data_source.vpc_connection_properties.vpc_connection_arn #=> String
|
5210
5477
|
# resp.data_source.ssl_properties.disable_ssl #=> Boolean
|
5211
5478
|
# resp.data_source.error_info.type #=> String, one of "ACCESS_DENIED", "COPY_SOURCE_NOT_FOUND", "TIMEOUT", "ENGINE_VERSION_NOT_SUPPORTED", "UNKNOWN_HOST", "GENERIC_SQL_FAILURE", "CONFLICT", "UNKNOWN"
|
@@ -5759,6 +6026,49 @@ module Aws::QuickSight
|
|
5759
6026
|
req.send_request(options)
|
5760
6027
|
end
|
5761
6028
|
|
6029
|
+
# Describes all custom permissions that are mapped to a role.
|
6030
|
+
#
|
6031
|
+
# @option params [required, String] :role
|
6032
|
+
# The name of the role whose permissions you want described.
|
6033
|
+
#
|
6034
|
+
# @option params [required, String] :aws_account_id
|
6035
|
+
# The ID for the Amazon Web Services account that you want to create a
|
6036
|
+
# group in. The Amazon Web Services account ID that you provide must be
|
6037
|
+
# the same Amazon Web Services account that contains your Amazon
|
6038
|
+
# QuickSight account.
|
6039
|
+
#
|
6040
|
+
# @option params [required, String] :namespace
|
6041
|
+
# The namespace that contains the role.
|
6042
|
+
#
|
6043
|
+
# @return [Types::DescribeRoleCustomPermissionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6044
|
+
#
|
6045
|
+
# * {Types::DescribeRoleCustomPermissionResponse#custom_permissions_name #custom_permissions_name} => String
|
6046
|
+
# * {Types::DescribeRoleCustomPermissionResponse#request_id #request_id} => String
|
6047
|
+
# * {Types::DescribeRoleCustomPermissionResponse#status #status} => Integer
|
6048
|
+
#
|
6049
|
+
# @example Request syntax with placeholder values
|
6050
|
+
#
|
6051
|
+
# resp = client.describe_role_custom_permission({
|
6052
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
6053
|
+
# aws_account_id: "AwsAccountId", # required
|
6054
|
+
# namespace: "Namespace", # required
|
6055
|
+
# })
|
6056
|
+
#
|
6057
|
+
# @example Response structure
|
6058
|
+
#
|
6059
|
+
# resp.custom_permissions_name #=> String
|
6060
|
+
# resp.request_id #=> String
|
6061
|
+
# resp.status #=> Integer
|
6062
|
+
#
|
6063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeRoleCustomPermission AWS API Documentation
|
6064
|
+
#
|
6065
|
+
# @overload describe_role_custom_permission(params = {})
|
6066
|
+
# @param [Hash] params ({})
|
6067
|
+
def describe_role_custom_permission(params = {}, options = {})
|
6068
|
+
req = build_request(:describe_role_custom_permission, params)
|
6069
|
+
req.send_request(options)
|
6070
|
+
end
|
6071
|
+
|
5762
6072
|
# Describes a template's metadata.
|
5763
6073
|
#
|
5764
6074
|
# @option params [required, String] :aws_account_id
|
@@ -7194,6 +7504,8 @@ module Aws::QuickSight
|
|
7194
7504
|
# resp.asset_bundle_export_job_summary_list[0].asset_bundle_export_job_id #=> String
|
7195
7505
|
# resp.asset_bundle_export_job_summary_list[0].include_all_dependencies #=> Boolean
|
7196
7506
|
# resp.asset_bundle_export_job_summary_list[0].export_format #=> String, one of "CLOUDFORMATION_JSON", "QUICKSIGHT_JSON"
|
7507
|
+
# resp.asset_bundle_export_job_summary_list[0].include_permissions #=> Boolean
|
7508
|
+
# resp.asset_bundle_export_job_summary_list[0].include_tags #=> Boolean
|
7197
7509
|
# resp.next_token #=> String
|
7198
7510
|
# resp.request_id #=> String
|
7199
7511
|
# resp.status #=> Integer
|
@@ -7470,7 +7782,7 @@ module Aws::QuickSight
|
|
7470
7782
|
# resp.data_sources[0].arn #=> String
|
7471
7783
|
# resp.data_sources[0].data_source_id #=> String
|
7472
7784
|
# resp.data_sources[0].name #=> String
|
7473
|
-
# 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", "AMAZON_OPENSEARCH", "EXASOL", "DATABRICKS"
|
7785
|
+
# 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", "AMAZON_OPENSEARCH", "EXASOL", "DATABRICKS", "STARBURST", "TRINO", "BIGQUERY"
|
7474
7786
|
# resp.data_sources[0].status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
|
7475
7787
|
# resp.data_sources[0].created_time #=> Time
|
7476
7788
|
# resp.data_sources[0].last_updated_time #=> Time
|
@@ -7541,6 +7853,8 @@ module Aws::QuickSight
|
|
7541
7853
|
# resp.data_sources[0].data_source_parameters.trino_parameters.host #=> String
|
7542
7854
|
# resp.data_sources[0].data_source_parameters.trino_parameters.port #=> Integer
|
7543
7855
|
# resp.data_sources[0].data_source_parameters.trino_parameters.catalog #=> String
|
7856
|
+
# resp.data_sources[0].data_source_parameters.big_query_parameters.project_id #=> String
|
7857
|
+
# resp.data_sources[0].data_source_parameters.big_query_parameters.data_set_region #=> String
|
7544
7858
|
# resp.data_sources[0].alternate_data_source_parameters #=> Array
|
7545
7859
|
# resp.data_sources[0].alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
|
7546
7860
|
# resp.data_sources[0].alternate_data_source_parameters[0].athena_parameters.work_group #=> String
|
@@ -7609,6 +7923,8 @@ module Aws::QuickSight
|
|
7609
7923
|
# resp.data_sources[0].alternate_data_source_parameters[0].trino_parameters.host #=> String
|
7610
7924
|
# resp.data_sources[0].alternate_data_source_parameters[0].trino_parameters.port #=> Integer
|
7611
7925
|
# resp.data_sources[0].alternate_data_source_parameters[0].trino_parameters.catalog #=> String
|
7926
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].big_query_parameters.project_id #=> String
|
7927
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].big_query_parameters.data_set_region #=> String
|
7612
7928
|
# resp.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
|
7613
7929
|
# resp.data_sources[0].ssl_properties.disable_ssl #=> Boolean
|
7614
7930
|
# resp.data_sources[0].error_info.type #=> String, one of "ACCESS_DENIED", "COPY_SOURCE_NOT_FOUND", "TIMEOUT", "ENGINE_VERSION_NOT_SUPPORTED", "UNKNOWN_HOST", "GENERIC_SQL_FAILURE", "CONFLICT", "UNKNOWN"
|
@@ -8125,6 +8441,62 @@ module Aws::QuickSight
|
|
8125
8441
|
req.send_request(options)
|
8126
8442
|
end
|
8127
8443
|
|
8444
|
+
# Lists all groups that are associated with a role.
|
8445
|
+
#
|
8446
|
+
# @option params [required, String] :role
|
8447
|
+
# The name of the role.
|
8448
|
+
#
|
8449
|
+
# @option params [String] :next_token
|
8450
|
+
# A pagination token that can be used in a subsequent request.
|
8451
|
+
#
|
8452
|
+
# @option params [Integer] :max_results
|
8453
|
+
# The maximum number of results to return.
|
8454
|
+
#
|
8455
|
+
# @option params [required, String] :aws_account_id
|
8456
|
+
# The ID for the Amazon Web Services account that you want to create a
|
8457
|
+
# group in. The Amazon Web Services account ID that you provide must be
|
8458
|
+
# the same Amazon Web Services account that contains your Amazon
|
8459
|
+
# QuickSight account.
|
8460
|
+
#
|
8461
|
+
# @option params [required, String] :namespace
|
8462
|
+
# The namespace that includes the role.
|
8463
|
+
#
|
8464
|
+
# @return [Types::ListRoleMembershipsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8465
|
+
#
|
8466
|
+
# * {Types::ListRoleMembershipsResponse#members_list #members_list} => Array<String>
|
8467
|
+
# * {Types::ListRoleMembershipsResponse#next_token #next_token} => String
|
8468
|
+
# * {Types::ListRoleMembershipsResponse#request_id #request_id} => String
|
8469
|
+
# * {Types::ListRoleMembershipsResponse#status #status} => Integer
|
8470
|
+
#
|
8471
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8472
|
+
#
|
8473
|
+
# @example Request syntax with placeholder values
|
8474
|
+
#
|
8475
|
+
# resp = client.list_role_memberships({
|
8476
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
8477
|
+
# next_token: "String",
|
8478
|
+
# max_results: 1,
|
8479
|
+
# aws_account_id: "AwsAccountId", # required
|
8480
|
+
# namespace: "Namespace", # required
|
8481
|
+
# })
|
8482
|
+
#
|
8483
|
+
# @example Response structure
|
8484
|
+
#
|
8485
|
+
# resp.members_list #=> Array
|
8486
|
+
# resp.members_list[0] #=> String
|
8487
|
+
# resp.next_token #=> String
|
8488
|
+
# resp.request_id #=> String
|
8489
|
+
# resp.status #=> Integer
|
8490
|
+
#
|
8491
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListRoleMemberships AWS API Documentation
|
8492
|
+
#
|
8493
|
+
# @overload list_role_memberships(params = {})
|
8494
|
+
# @param [Hash] params ({})
|
8495
|
+
def list_role_memberships(params = {}, options = {})
|
8496
|
+
req = build_request(:list_role_memberships, params)
|
8497
|
+
req.send_request(options)
|
8498
|
+
end
|
8499
|
+
|
8128
8500
|
# Lists the tags assigned to a resource.
|
8129
8501
|
#
|
8130
8502
|
# @option params [required, String] :resource_arn
|
@@ -9306,7 +9678,7 @@ module Aws::QuickSight
|
|
9306
9678
|
# resp.data_source_summaries[0].arn #=> String
|
9307
9679
|
# resp.data_source_summaries[0].data_source_id #=> String
|
9308
9680
|
# resp.data_source_summaries[0].name #=> String
|
9309
|
-
# resp.data_source_summaries[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", "AMAZON_OPENSEARCH", "EXASOL", "DATABRICKS"
|
9681
|
+
# resp.data_source_summaries[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", "AMAZON_OPENSEARCH", "EXASOL", "DATABRICKS", "STARBURST", "TRINO", "BIGQUERY"
|
9310
9682
|
# resp.data_source_summaries[0].created_time #=> Time
|
9311
9683
|
# resp.data_source_summaries[0].last_updated_time #=> Time
|
9312
9684
|
# resp.next_token #=> String
|
@@ -9515,6 +9887,24 @@ module Aws::QuickSight
|
|
9515
9887
|
# `StartAssetBundleExportJobRequest` API call is set to
|
9516
9888
|
# `CLOUDFORMATION_JSON`.
|
9517
9889
|
#
|
9890
|
+
# @option params [Boolean] :include_permissions
|
9891
|
+
# A Boolean that determines whether all permissions for each resource
|
9892
|
+
# ARN are exported with the job. If you set `IncludePermissions` to
|
9893
|
+
# `TRUE`, any permissions associated with each resource are exported.
|
9894
|
+
#
|
9895
|
+
# @option params [Boolean] :include_tags
|
9896
|
+
# A Boolean that determines whether all tags for each resource ARN are
|
9897
|
+
# exported with the job. If you set `IncludeTags` to `TRUE`, any tags
|
9898
|
+
# associated with each resource are exported.
|
9899
|
+
#
|
9900
|
+
# @option params [Types::AssetBundleExportJobValidationStrategy] :validation_strategy
|
9901
|
+
# An optional parameter that determines which validation strategy to use
|
9902
|
+
# for the export job. If `StrictModeForAllResources` is set to `TRUE`,
|
9903
|
+
# strict validation for every error is enforced. If it is set to
|
9904
|
+
# `FALSE`, validation is skipped for specific UI errors that are shown
|
9905
|
+
# as warnings. The default value for `StrictModeForAllResources` is
|
9906
|
+
# `FALSE`.
|
9907
|
+
#
|
9518
9908
|
# @return [Types::StartAssetBundleExportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9519
9909
|
#
|
9520
9910
|
# * {Types::StartAssetBundleExportJobResponse#arn #arn} => String
|
@@ -9536,47 +9926,52 @@ module Aws::QuickSight
|
|
9536
9926
|
# },
|
9537
9927
|
# vpc_connections: [
|
9538
9928
|
# {
|
9539
|
-
# arn: "Arn",
|
9929
|
+
# arn: "Arn", # required
|
9540
9930
|
# properties: ["Name"], # required, accepts Name, DnsResolvers, RoleArn
|
9541
9931
|
# },
|
9542
9932
|
# ],
|
9543
9933
|
# refresh_schedules: [
|
9544
9934
|
# {
|
9545
|
-
# arn: "Arn",
|
9935
|
+
# arn: "Arn", # required
|
9546
9936
|
# properties: ["StartAfterDateTime"], # required, accepts StartAfterDateTime
|
9547
9937
|
# },
|
9548
9938
|
# ],
|
9549
9939
|
# data_sources: [
|
9550
9940
|
# {
|
9551
|
-
# arn: "Arn",
|
9941
|
+
# arn: "Arn", # required
|
9552
9942
|
# properties: ["Name"], # required, accepts Name, DisableSsl, SecretArn, Username, Password, Domain, WorkGroup, Host, Port, Database, DataSetName, Catalog, InstanceId, ClusterId, ManifestFileLocation, Warehouse, RoleArn
|
9553
9943
|
# },
|
9554
9944
|
# ],
|
9555
9945
|
# data_sets: [
|
9556
9946
|
# {
|
9557
|
-
# arn: "Arn",
|
9947
|
+
# arn: "Arn", # required
|
9558
9948
|
# properties: ["Name"], # required, accepts Name
|
9559
9949
|
# },
|
9560
9950
|
# ],
|
9561
9951
|
# themes: [
|
9562
9952
|
# {
|
9563
|
-
# arn: "Arn",
|
9953
|
+
# arn: "Arn", # required
|
9564
9954
|
# properties: ["Name"], # required, accepts Name
|
9565
9955
|
# },
|
9566
9956
|
# ],
|
9567
9957
|
# analyses: [
|
9568
9958
|
# {
|
9569
|
-
# arn: "Arn",
|
9959
|
+
# arn: "Arn", # required
|
9570
9960
|
# properties: ["Name"], # required, accepts Name
|
9571
9961
|
# },
|
9572
9962
|
# ],
|
9573
9963
|
# dashboards: [
|
9574
9964
|
# {
|
9575
|
-
# arn: "Arn",
|
9965
|
+
# arn: "Arn", # required
|
9576
9966
|
# properties: ["Name"], # required, accepts Name
|
9577
9967
|
# },
|
9578
9968
|
# ],
|
9579
9969
|
# },
|
9970
|
+
# include_permissions: false,
|
9971
|
+
# include_tags: false,
|
9972
|
+
# validation_strategy: {
|
9973
|
+
# strict_mode_for_all_resources: false,
|
9974
|
+
# },
|
9580
9975
|
# })
|
9581
9976
|
#
|
9582
9977
|
# @example Response structure
|
@@ -9622,8 +10017,8 @@ module Aws::QuickSight
|
|
9622
10017
|
# you want to import. The file must be in `QUICKSIGHT_JSON` format.
|
9623
10018
|
#
|
9624
10019
|
# @option params [Types::AssetBundleImportJobOverrideParameters] :override_parameters
|
9625
|
-
# Optional overrides
|
9626
|
-
# import.
|
10020
|
+
# Optional overrides that are applied to the resource configuration
|
10021
|
+
# before import.
|
9627
10022
|
#
|
9628
10023
|
# @option params [String] :failure_action
|
9629
10024
|
# The failure action for the import job.
|
@@ -9635,6 +10030,19 @@ module Aws::QuickSight
|
|
9635
10030
|
# roll back any asset changes caused by the failed job, possibly keeping
|
9636
10031
|
# the Amazon QuickSight account in an inconsistent state.
|
9637
10032
|
#
|
10033
|
+
# @option params [Types::AssetBundleImportJobOverridePermissions] :override_permissions
|
10034
|
+
# Optional permission overrides that are applied to the resource
|
10035
|
+
# configuration before import.
|
10036
|
+
#
|
10037
|
+
# @option params [Types::AssetBundleImportJobOverrideTags] :override_tags
|
10038
|
+
# Optional tag overrides that are applied to the resource configuration
|
10039
|
+
# before import.
|
10040
|
+
#
|
10041
|
+
# @option params [Types::AssetBundleImportJobOverrideValidationStrategy] :override_validation_strategy
|
10042
|
+
# An optional validation strategy override for all analyses and
|
10043
|
+
# dashboards that is applied to the resource configuration before
|
10044
|
+
# import.
|
10045
|
+
#
|
9638
10046
|
# @return [Types::StartAssetBundleImportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9639
10047
|
#
|
9640
10048
|
# * {Types::StartAssetBundleImportJobResponse#arn #arn} => String
|
@@ -9797,6 +10205,10 @@ module Aws::QuickSight
|
|
9797
10205
|
# port: 1, # required
|
9798
10206
|
# catalog: "Catalog", # required
|
9799
10207
|
# },
|
10208
|
+
# big_query_parameters: {
|
10209
|
+
# project_id: "ProjectId", # required
|
10210
|
+
# data_set_region: "DataSetRegion",
|
10211
|
+
# },
|
9800
10212
|
# },
|
9801
10213
|
# vpc_connection_properties: {
|
9802
10214
|
# vpc_connection_arn: "Arn", # required
|
@@ -9839,6 +10251,130 @@ module Aws::QuickSight
|
|
9839
10251
|
# ],
|
9840
10252
|
# },
|
9841
10253
|
# failure_action: "DO_NOTHING", # accepts DO_NOTHING, ROLLBACK
|
10254
|
+
# override_permissions: {
|
10255
|
+
# data_sources: [
|
10256
|
+
# {
|
10257
|
+
# data_source_ids: ["AssetBundleRestrictiveResourceId"], # required
|
10258
|
+
# permissions: { # required
|
10259
|
+
# principals: ["Principal"], # required
|
10260
|
+
# actions: ["String"], # required
|
10261
|
+
# },
|
10262
|
+
# },
|
10263
|
+
# ],
|
10264
|
+
# data_sets: [
|
10265
|
+
# {
|
10266
|
+
# data_set_ids: ["AssetBundleRestrictiveResourceId"], # required
|
10267
|
+
# permissions: { # required
|
10268
|
+
# principals: ["Principal"], # required
|
10269
|
+
# actions: ["String"], # required
|
10270
|
+
# },
|
10271
|
+
# },
|
10272
|
+
# ],
|
10273
|
+
# themes: [
|
10274
|
+
# {
|
10275
|
+
# theme_ids: ["AssetBundleRestrictiveResourceId"], # required
|
10276
|
+
# permissions: { # required
|
10277
|
+
# principals: ["Principal"], # required
|
10278
|
+
# actions: ["String"], # required
|
10279
|
+
# },
|
10280
|
+
# },
|
10281
|
+
# ],
|
10282
|
+
# analyses: [
|
10283
|
+
# {
|
10284
|
+
# analysis_ids: ["AssetBundleRestrictiveResourceId"], # required
|
10285
|
+
# permissions: { # required
|
10286
|
+
# principals: ["Principal"], # required
|
10287
|
+
# actions: ["String"], # required
|
10288
|
+
# },
|
10289
|
+
# },
|
10290
|
+
# ],
|
10291
|
+
# dashboards: [
|
10292
|
+
# {
|
10293
|
+
# dashboard_ids: ["AssetBundleRestrictiveResourceId"], # required
|
10294
|
+
# permissions: {
|
10295
|
+
# principals: ["Principal"], # required
|
10296
|
+
# actions: ["String"], # required
|
10297
|
+
# },
|
10298
|
+
# link_sharing_configuration: {
|
10299
|
+
# permissions: {
|
10300
|
+
# principals: ["Principal"], # required
|
10301
|
+
# actions: ["String"], # required
|
10302
|
+
# },
|
10303
|
+
# },
|
10304
|
+
# },
|
10305
|
+
# ],
|
10306
|
+
# },
|
10307
|
+
# override_tags: {
|
10308
|
+
# vpc_connections: [
|
10309
|
+
# {
|
10310
|
+
# vpc_connection_ids: ["AssetBundleRestrictiveResourceId"], # required
|
10311
|
+
# tags: [ # required
|
10312
|
+
# {
|
10313
|
+
# key: "TagKey", # required
|
10314
|
+
# value: "TagValue", # required
|
10315
|
+
# },
|
10316
|
+
# ],
|
10317
|
+
# },
|
10318
|
+
# ],
|
10319
|
+
# data_sources: [
|
10320
|
+
# {
|
10321
|
+
# data_source_ids: ["AssetBundleRestrictiveResourceId"], # required
|
10322
|
+
# tags: [ # required
|
10323
|
+
# {
|
10324
|
+
# key: "TagKey", # required
|
10325
|
+
# value: "TagValue", # required
|
10326
|
+
# },
|
10327
|
+
# ],
|
10328
|
+
# },
|
10329
|
+
# ],
|
10330
|
+
# data_sets: [
|
10331
|
+
# {
|
10332
|
+
# data_set_ids: ["AssetBundleRestrictiveResourceId"], # required
|
10333
|
+
# tags: [ # required
|
10334
|
+
# {
|
10335
|
+
# key: "TagKey", # required
|
10336
|
+
# value: "TagValue", # required
|
10337
|
+
# },
|
10338
|
+
# ],
|
10339
|
+
# },
|
10340
|
+
# ],
|
10341
|
+
# themes: [
|
10342
|
+
# {
|
10343
|
+
# theme_ids: ["AssetBundleRestrictiveResourceId"], # required
|
10344
|
+
# tags: [ # required
|
10345
|
+
# {
|
10346
|
+
# key: "TagKey", # required
|
10347
|
+
# value: "TagValue", # required
|
10348
|
+
# },
|
10349
|
+
# ],
|
10350
|
+
# },
|
10351
|
+
# ],
|
10352
|
+
# analyses: [
|
10353
|
+
# {
|
10354
|
+
# analysis_ids: ["AssetBundleRestrictiveResourceId"], # required
|
10355
|
+
# tags: [ # required
|
10356
|
+
# {
|
10357
|
+
# key: "TagKey", # required
|
10358
|
+
# value: "TagValue", # required
|
10359
|
+
# },
|
10360
|
+
# ],
|
10361
|
+
# },
|
10362
|
+
# ],
|
10363
|
+
# dashboards: [
|
10364
|
+
# {
|
10365
|
+
# dashboard_ids: ["AssetBundleRestrictiveResourceId"], # required
|
10366
|
+
# tags: [ # required
|
10367
|
+
# {
|
10368
|
+
# key: "TagKey", # required
|
10369
|
+
# value: "TagValue", # required
|
10370
|
+
# },
|
10371
|
+
# ],
|
10372
|
+
# },
|
10373
|
+
# ],
|
10374
|
+
# },
|
10375
|
+
# override_validation_strategy: {
|
10376
|
+
# strict_mode_for_all_resources: false,
|
10377
|
+
# },
|
9842
10378
|
# })
|
9843
10379
|
#
|
9844
10380
|
# @example Response structure
|
@@ -10647,6 +11183,7 @@ module Aws::QuickSight
|
|
10647
11183
|
# {
|
10648
11184
|
# name: "ColumnName", # required
|
10649
11185
|
# type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
|
11186
|
+
# sub_type: "FLOAT", # accepts FLOAT, FIXED
|
10650
11187
|
# },
|
10651
11188
|
# ],
|
10652
11189
|
# },
|
@@ -10658,6 +11195,7 @@ module Aws::QuickSight
|
|
10658
11195
|
# {
|
10659
11196
|
# name: "ColumnName", # required
|
10660
11197
|
# type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
|
11198
|
+
# sub_type: "FLOAT", # accepts FLOAT, FIXED
|
10661
11199
|
# },
|
10662
11200
|
# ],
|
10663
11201
|
# },
|
@@ -10674,6 +11212,7 @@ module Aws::QuickSight
|
|
10674
11212
|
# {
|
10675
11213
|
# name: "ColumnName", # required
|
10676
11214
|
# type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
|
11215
|
+
# sub_type: "FLOAT", # accepts FLOAT, FIXED
|
10677
11216
|
# },
|
10678
11217
|
# ],
|
10679
11218
|
# },
|
@@ -10706,6 +11245,7 @@ module Aws::QuickSight
|
|
10706
11245
|
# cast_column_type_operation: {
|
10707
11246
|
# column_name: "ColumnName", # required
|
10708
11247
|
# new_column_type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME
|
11248
|
+
# sub_type: "FLOAT", # accepts FLOAT, FIXED
|
10709
11249
|
# format: "TypeCastFormat",
|
10710
11250
|
# },
|
10711
11251
|
# tag_column_operation: {
|
@@ -11082,6 +11622,10 @@ module Aws::QuickSight
|
|
11082
11622
|
# port: 1, # required
|
11083
11623
|
# catalog: "Catalog", # required
|
11084
11624
|
# },
|
11625
|
+
# big_query_parameters: {
|
11626
|
+
# project_id: "ProjectId", # required
|
11627
|
+
# data_set_region: "DataSetRegion",
|
11628
|
+
# },
|
11085
11629
|
# },
|
11086
11630
|
# credentials: {
|
11087
11631
|
# credential_pair: {
|
@@ -11209,6 +11753,10 @@ module Aws::QuickSight
|
|
11209
11753
|
# port: 1, # required
|
11210
11754
|
# catalog: "Catalog", # required
|
11211
11755
|
# },
|
11756
|
+
# big_query_parameters: {
|
11757
|
+
# project_id: "ProjectId", # required
|
11758
|
+
# data_set_region: "DataSetRegion",
|
11759
|
+
# },
|
11212
11760
|
# },
|
11213
11761
|
# ],
|
11214
11762
|
# },
|
@@ -11683,6 +12231,52 @@ module Aws::QuickSight
|
|
11683
12231
|
req.send_request(options)
|
11684
12232
|
end
|
11685
12233
|
|
12234
|
+
# Updates the custom permissions that are associated with a role.
|
12235
|
+
#
|
12236
|
+
# @option params [required, String] :custom_permissions_name
|
12237
|
+
# The name of the custom permission that you want to update the role
|
12238
|
+
# with.
|
12239
|
+
#
|
12240
|
+
# @option params [required, String] :role
|
12241
|
+
# The name of role tht you want to update.
|
12242
|
+
#
|
12243
|
+
# @option params [required, String] :aws_account_id
|
12244
|
+
# The ID for the Amazon Web Services account that you want to create a
|
12245
|
+
# group in. The Amazon Web Services account ID that you provide must be
|
12246
|
+
# the same Amazon Web Services account that contains your Amazon
|
12247
|
+
# QuickSight account.
|
12248
|
+
#
|
12249
|
+
# @option params [required, String] :namespace
|
12250
|
+
# The namespace that contains the role that you want to update.
|
12251
|
+
#
|
12252
|
+
# @return [Types::UpdateRoleCustomPermissionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12253
|
+
#
|
12254
|
+
# * {Types::UpdateRoleCustomPermissionResponse#request_id #request_id} => String
|
12255
|
+
# * {Types::UpdateRoleCustomPermissionResponse#status #status} => Integer
|
12256
|
+
#
|
12257
|
+
# @example Request syntax with placeholder values
|
12258
|
+
#
|
12259
|
+
# resp = client.update_role_custom_permission({
|
12260
|
+
# custom_permissions_name: "RoleName", # required
|
12261
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
12262
|
+
# aws_account_id: "AwsAccountId", # required
|
12263
|
+
# namespace: "Namespace", # required
|
12264
|
+
# })
|
12265
|
+
#
|
12266
|
+
# @example Response structure
|
12267
|
+
#
|
12268
|
+
# resp.request_id #=> String
|
12269
|
+
# resp.status #=> Integer
|
12270
|
+
#
|
12271
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateRoleCustomPermission AWS API Documentation
|
12272
|
+
#
|
12273
|
+
# @overload update_role_custom_permission(params = {})
|
12274
|
+
# @param [Hash] params ({})
|
12275
|
+
def update_role_custom_permission(params = {}, options = {})
|
12276
|
+
req = build_request(:update_role_custom_permission, params)
|
12277
|
+
req.send_request(options)
|
12278
|
+
end
|
12279
|
+
|
11686
12280
|
# Updates a template from an existing Amazon QuickSight analysis or
|
11687
12281
|
# another template.
|
11688
12282
|
#
|
@@ -12731,7 +13325,7 @@ module Aws::QuickSight
|
|
12731
13325
|
params: params,
|
12732
13326
|
config: config)
|
12733
13327
|
context[:gem_name] = 'aws-sdk-quicksight'
|
12734
|
-
context[:gem_version] = '1.
|
13328
|
+
context[:gem_version] = '1.96.0'
|
12735
13329
|
Seahorse::Client::Request.new(handlers, context)
|
12736
13330
|
end
|
12737
13331
|
|