aws-sdk-quicksight 1.95.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 +6 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +611 -36
- data/lib/aws-sdk-quicksight/client_api.rb +344 -12
- 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 +908 -56
- 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
|
@@ -1311,7 +1335,7 @@ module Aws::QuickSight
|
|
1311
1335
|
# aws_account_id: "AwsAccountId", # required
|
1312
1336
|
# data_source_id: "ResourceId", # required
|
1313
1337
|
# name: "ResourceName", # required
|
1314
|
-
# 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
|
1315
1339
|
# data_source_parameters: {
|
1316
1340
|
# amazon_elasticsearch_parameters: {
|
1317
1341
|
# domain: "Domain", # required
|
@@ -1433,6 +1457,10 @@ module Aws::QuickSight
|
|
1433
1457
|
# port: 1, # required
|
1434
1458
|
# catalog: "Catalog", # required
|
1435
1459
|
# },
|
1460
|
+
# big_query_parameters: {
|
1461
|
+
# project_id: "ProjectId", # required
|
1462
|
+
# data_set_region: "DataSetRegion",
|
1463
|
+
# },
|
1436
1464
|
# },
|
1437
1465
|
# credentials: {
|
1438
1466
|
# credential_pair: {
|
@@ -1560,6 +1588,10 @@ module Aws::QuickSight
|
|
1560
1588
|
# port: 1, # required
|
1561
1589
|
# catalog: "Catalog", # required
|
1562
1590
|
# },
|
1591
|
+
# big_query_parameters: {
|
1592
|
+
# project_id: "ProjectId", # required
|
1593
|
+
# data_set_region: "DataSetRegion",
|
1594
|
+
# },
|
1563
1595
|
# },
|
1564
1596
|
# ],
|
1565
1597
|
# },
|
@@ -2106,6 +2138,52 @@ module Aws::QuickSight
|
|
2106
2138
|
req.send_request(options)
|
2107
2139
|
end
|
2108
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
|
+
|
2109
2187
|
# Creates a template either from a `TemplateDefinition` or from an
|
2110
2188
|
# existing Amazon QuickSight analysis or template. You can use the
|
2111
2189
|
# resulting template to create additional dashboards, templates, or
|
@@ -3446,6 +3524,91 @@ module Aws::QuickSight
|
|
3446
3524
|
req.send_request(options)
|
3447
3525
|
end
|
3448
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
|
+
|
3449
3612
|
# Deletes a template.
|
3450
3613
|
#
|
3451
3614
|
# @option params [required, String] :aws_account_id
|
@@ -4082,8 +4245,6 @@ module Aws::QuickSight
|
|
4082
4245
|
# resp.analysis.sheets #=> Array
|
4083
4246
|
# resp.analysis.sheets[0].sheet_id #=> String
|
4084
4247
|
# resp.analysis.sheets[0].name #=> String
|
4085
|
-
# resp.analysis.options.timezone #=> String
|
4086
|
-
# resp.analysis.options.week_start #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
|
4087
4248
|
# resp.status #=> Integer
|
4088
4249
|
# resp.request_id #=> String
|
4089
4250
|
#
|
@@ -4224,6 +4385,10 @@ module Aws::QuickSight
|
|
4224
4385
|
# * {Types::DescribeAssetBundleExportJobResponse#cloud_formation_override_property_configuration #cloud_formation_override_property_configuration} => Types::AssetBundleCloudFormationOverridePropertyConfiguration
|
4225
4386
|
# * {Types::DescribeAssetBundleExportJobResponse#request_id #request_id} => String
|
4226
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>
|
4227
4392
|
#
|
4228
4393
|
# @example Request syntax with placeholder values
|
4229
4394
|
#
|
@@ -4279,6 +4444,12 @@ module Aws::QuickSight
|
|
4279
4444
|
# resp.cloud_formation_override_property_configuration.dashboards[0].properties[0] #=> String, one of "Name"
|
4280
4445
|
# resp.request_id #=> String
|
4281
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
|
4282
4453
|
#
|
4283
4454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAssetBundleExportJob AWS API Documentation
|
4284
4455
|
#
|
@@ -4317,6 +4488,9 @@ module Aws::QuickSight
|
|
4317
4488
|
# * {Types::DescribeAssetBundleImportJobResponse#failure_action #failure_action} => String
|
4318
4489
|
# * {Types::DescribeAssetBundleImportJobResponse#request_id #request_id} => String
|
4319
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
|
4320
4494
|
#
|
4321
4495
|
# @example Request syntax with placeholder values
|
4322
4496
|
#
|
@@ -4427,6 +4601,8 @@ module Aws::QuickSight
|
|
4427
4601
|
# resp.override_parameters.data_sources[0].data_source_parameters.trino_parameters.host #=> String
|
4428
4602
|
# resp.override_parameters.data_sources[0].data_source_parameters.trino_parameters.port #=> Integer
|
4429
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
|
4430
4606
|
# resp.override_parameters.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
|
4431
4607
|
# resp.override_parameters.data_sources[0].ssl_properties.disable_ssl #=> Boolean
|
4432
4608
|
# resp.override_parameters.data_sources[0].credentials.credential_pair.username #=> String
|
@@ -4447,6 +4623,82 @@ module Aws::QuickSight
|
|
4447
4623
|
# resp.failure_action #=> String, one of "DO_NOTHING", "ROLLBACK"
|
4448
4624
|
# resp.request_id #=> String
|
4449
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
|
4450
4702
|
#
|
4451
4703
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAssetBundleImportJob AWS API Documentation
|
4452
4704
|
#
|
@@ -4510,8 +4762,6 @@ module Aws::QuickSight
|
|
4510
4762
|
# resp.dashboard.version.sheets #=> Array
|
4511
4763
|
# resp.dashboard.version.sheets[0].sheet_id #=> String
|
4512
4764
|
# resp.dashboard.version.sheets[0].name #=> String
|
4513
|
-
# resp.dashboard.version.options.timezone #=> String
|
4514
|
-
# resp.dashboard.version.options.week_start #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
|
4515
4765
|
# resp.dashboard.created_time #=> Time
|
4516
4766
|
# resp.dashboard.last_published_time #=> Time
|
4517
4767
|
# resp.dashboard.last_updated_time #=> Time
|
@@ -5080,7 +5330,7 @@ module Aws::QuickSight
|
|
5080
5330
|
# resp.data_source.arn #=> String
|
5081
5331
|
# resp.data_source.data_source_id #=> String
|
5082
5332
|
# resp.data_source.name #=> String
|
5083
|
-
# 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"
|
5084
5334
|
# resp.data_source.status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
|
5085
5335
|
# resp.data_source.created_time #=> Time
|
5086
5336
|
# resp.data_source.last_updated_time #=> Time
|
@@ -5151,6 +5401,8 @@ module Aws::QuickSight
|
|
5151
5401
|
# resp.data_source.data_source_parameters.trino_parameters.host #=> String
|
5152
5402
|
# resp.data_source.data_source_parameters.trino_parameters.port #=> Integer
|
5153
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
|
5154
5406
|
# resp.data_source.alternate_data_source_parameters #=> Array
|
5155
5407
|
# resp.data_source.alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
|
5156
5408
|
# resp.data_source.alternate_data_source_parameters[0].athena_parameters.work_group #=> String
|
@@ -5219,6 +5471,8 @@ module Aws::QuickSight
|
|
5219
5471
|
# resp.data_source.alternate_data_source_parameters[0].trino_parameters.host #=> String
|
5220
5472
|
# resp.data_source.alternate_data_source_parameters[0].trino_parameters.port #=> Integer
|
5221
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
|
5222
5476
|
# resp.data_source.vpc_connection_properties.vpc_connection_arn #=> String
|
5223
5477
|
# resp.data_source.ssl_properties.disable_ssl #=> Boolean
|
5224
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"
|
@@ -5772,6 +6026,49 @@ module Aws::QuickSight
|
|
5772
6026
|
req.send_request(options)
|
5773
6027
|
end
|
5774
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
|
+
|
5775
6072
|
# Describes a template's metadata.
|
5776
6073
|
#
|
5777
6074
|
# @option params [required, String] :aws_account_id
|
@@ -5836,8 +6133,6 @@ module Aws::QuickSight
|
|
5836
6133
|
# resp.template.version.sheets #=> Array
|
5837
6134
|
# resp.template.version.sheets[0].sheet_id #=> String
|
5838
6135
|
# resp.template.version.sheets[0].name #=> String
|
5839
|
-
# resp.template.version.options.timezone #=> String
|
5840
|
-
# resp.template.version.options.week_start #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
|
5841
6136
|
# resp.template.template_id #=> String
|
5842
6137
|
# resp.template.last_updated_time #=> Time
|
5843
6138
|
# resp.template.created_time #=> Time
|
@@ -7209,6 +7504,8 @@ module Aws::QuickSight
|
|
7209
7504
|
# resp.asset_bundle_export_job_summary_list[0].asset_bundle_export_job_id #=> String
|
7210
7505
|
# resp.asset_bundle_export_job_summary_list[0].include_all_dependencies #=> Boolean
|
7211
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
|
7212
7509
|
# resp.next_token #=> String
|
7213
7510
|
# resp.request_id #=> String
|
7214
7511
|
# resp.status #=> Integer
|
@@ -7485,7 +7782,7 @@ module Aws::QuickSight
|
|
7485
7782
|
# resp.data_sources[0].arn #=> String
|
7486
7783
|
# resp.data_sources[0].data_source_id #=> String
|
7487
7784
|
# resp.data_sources[0].name #=> String
|
7488
|
-
# 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"
|
7489
7786
|
# resp.data_sources[0].status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
|
7490
7787
|
# resp.data_sources[0].created_time #=> Time
|
7491
7788
|
# resp.data_sources[0].last_updated_time #=> Time
|
@@ -7556,6 +7853,8 @@ module Aws::QuickSight
|
|
7556
7853
|
# resp.data_sources[0].data_source_parameters.trino_parameters.host #=> String
|
7557
7854
|
# resp.data_sources[0].data_source_parameters.trino_parameters.port #=> Integer
|
7558
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
|
7559
7858
|
# resp.data_sources[0].alternate_data_source_parameters #=> Array
|
7560
7859
|
# resp.data_sources[0].alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
|
7561
7860
|
# resp.data_sources[0].alternate_data_source_parameters[0].athena_parameters.work_group #=> String
|
@@ -7624,6 +7923,8 @@ module Aws::QuickSight
|
|
7624
7923
|
# resp.data_sources[0].alternate_data_source_parameters[0].trino_parameters.host #=> String
|
7625
7924
|
# resp.data_sources[0].alternate_data_source_parameters[0].trino_parameters.port #=> Integer
|
7626
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
|
7627
7928
|
# resp.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
|
7628
7929
|
# resp.data_sources[0].ssl_properties.disable_ssl #=> Boolean
|
7629
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"
|
@@ -8140,6 +8441,62 @@ module Aws::QuickSight
|
|
8140
8441
|
req.send_request(options)
|
8141
8442
|
end
|
8142
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
|
+
|
8143
8500
|
# Lists the tags assigned to a resource.
|
8144
8501
|
#
|
8145
8502
|
# @option params [required, String] :resource_arn
|
@@ -9321,7 +9678,7 @@ module Aws::QuickSight
|
|
9321
9678
|
# resp.data_source_summaries[0].arn #=> String
|
9322
9679
|
# resp.data_source_summaries[0].data_source_id #=> String
|
9323
9680
|
# resp.data_source_summaries[0].name #=> String
|
9324
|
-
# 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"
|
9325
9682
|
# resp.data_source_summaries[0].created_time #=> Time
|
9326
9683
|
# resp.data_source_summaries[0].last_updated_time #=> Time
|
9327
9684
|
# resp.next_token #=> String
|
@@ -9530,6 +9887,24 @@ module Aws::QuickSight
|
|
9530
9887
|
# `StartAssetBundleExportJobRequest` API call is set to
|
9531
9888
|
# `CLOUDFORMATION_JSON`.
|
9532
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
|
+
#
|
9533
9908
|
# @return [Types::StartAssetBundleExportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9534
9909
|
#
|
9535
9910
|
# * {Types::StartAssetBundleExportJobResponse#arn #arn} => String
|
@@ -9551,47 +9926,52 @@ module Aws::QuickSight
|
|
9551
9926
|
# },
|
9552
9927
|
# vpc_connections: [
|
9553
9928
|
# {
|
9554
|
-
# arn: "Arn",
|
9929
|
+
# arn: "Arn", # required
|
9555
9930
|
# properties: ["Name"], # required, accepts Name, DnsResolvers, RoleArn
|
9556
9931
|
# },
|
9557
9932
|
# ],
|
9558
9933
|
# refresh_schedules: [
|
9559
9934
|
# {
|
9560
|
-
# arn: "Arn",
|
9935
|
+
# arn: "Arn", # required
|
9561
9936
|
# properties: ["StartAfterDateTime"], # required, accepts StartAfterDateTime
|
9562
9937
|
# },
|
9563
9938
|
# ],
|
9564
9939
|
# data_sources: [
|
9565
9940
|
# {
|
9566
|
-
# arn: "Arn",
|
9941
|
+
# arn: "Arn", # required
|
9567
9942
|
# properties: ["Name"], # required, accepts Name, DisableSsl, SecretArn, Username, Password, Domain, WorkGroup, Host, Port, Database, DataSetName, Catalog, InstanceId, ClusterId, ManifestFileLocation, Warehouse, RoleArn
|
9568
9943
|
# },
|
9569
9944
|
# ],
|
9570
9945
|
# data_sets: [
|
9571
9946
|
# {
|
9572
|
-
# arn: "Arn",
|
9947
|
+
# arn: "Arn", # required
|
9573
9948
|
# properties: ["Name"], # required, accepts Name
|
9574
9949
|
# },
|
9575
9950
|
# ],
|
9576
9951
|
# themes: [
|
9577
9952
|
# {
|
9578
|
-
# arn: "Arn",
|
9953
|
+
# arn: "Arn", # required
|
9579
9954
|
# properties: ["Name"], # required, accepts Name
|
9580
9955
|
# },
|
9581
9956
|
# ],
|
9582
9957
|
# analyses: [
|
9583
9958
|
# {
|
9584
|
-
# arn: "Arn",
|
9959
|
+
# arn: "Arn", # required
|
9585
9960
|
# properties: ["Name"], # required, accepts Name
|
9586
9961
|
# },
|
9587
9962
|
# ],
|
9588
9963
|
# dashboards: [
|
9589
9964
|
# {
|
9590
|
-
# arn: "Arn",
|
9965
|
+
# arn: "Arn", # required
|
9591
9966
|
# properties: ["Name"], # required, accepts Name
|
9592
9967
|
# },
|
9593
9968
|
# ],
|
9594
9969
|
# },
|
9970
|
+
# include_permissions: false,
|
9971
|
+
# include_tags: false,
|
9972
|
+
# validation_strategy: {
|
9973
|
+
# strict_mode_for_all_resources: false,
|
9974
|
+
# },
|
9595
9975
|
# })
|
9596
9976
|
#
|
9597
9977
|
# @example Response structure
|
@@ -9637,8 +10017,8 @@ module Aws::QuickSight
|
|
9637
10017
|
# you want to import. The file must be in `QUICKSIGHT_JSON` format.
|
9638
10018
|
#
|
9639
10019
|
# @option params [Types::AssetBundleImportJobOverrideParameters] :override_parameters
|
9640
|
-
# Optional overrides
|
9641
|
-
# import.
|
10020
|
+
# Optional overrides that are applied to the resource configuration
|
10021
|
+
# before import.
|
9642
10022
|
#
|
9643
10023
|
# @option params [String] :failure_action
|
9644
10024
|
# The failure action for the import job.
|
@@ -9650,6 +10030,19 @@ module Aws::QuickSight
|
|
9650
10030
|
# roll back any asset changes caused by the failed job, possibly keeping
|
9651
10031
|
# the Amazon QuickSight account in an inconsistent state.
|
9652
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
|
+
#
|
9653
10046
|
# @return [Types::StartAssetBundleImportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9654
10047
|
#
|
9655
10048
|
# * {Types::StartAssetBundleImportJobResponse#arn #arn} => String
|
@@ -9812,6 +10205,10 @@ module Aws::QuickSight
|
|
9812
10205
|
# port: 1, # required
|
9813
10206
|
# catalog: "Catalog", # required
|
9814
10207
|
# },
|
10208
|
+
# big_query_parameters: {
|
10209
|
+
# project_id: "ProjectId", # required
|
10210
|
+
# data_set_region: "DataSetRegion",
|
10211
|
+
# },
|
9815
10212
|
# },
|
9816
10213
|
# vpc_connection_properties: {
|
9817
10214
|
# vpc_connection_arn: "Arn", # required
|
@@ -9854,6 +10251,130 @@ module Aws::QuickSight
|
|
9854
10251
|
# ],
|
9855
10252
|
# },
|
9856
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
|
+
# },
|
9857
10378
|
# })
|
9858
10379
|
#
|
9859
10380
|
# @example Response structure
|
@@ -11101,6 +11622,10 @@ module Aws::QuickSight
|
|
11101
11622
|
# port: 1, # required
|
11102
11623
|
# catalog: "Catalog", # required
|
11103
11624
|
# },
|
11625
|
+
# big_query_parameters: {
|
11626
|
+
# project_id: "ProjectId", # required
|
11627
|
+
# data_set_region: "DataSetRegion",
|
11628
|
+
# },
|
11104
11629
|
# },
|
11105
11630
|
# credentials: {
|
11106
11631
|
# credential_pair: {
|
@@ -11228,6 +11753,10 @@ module Aws::QuickSight
|
|
11228
11753
|
# port: 1, # required
|
11229
11754
|
# catalog: "Catalog", # required
|
11230
11755
|
# },
|
11756
|
+
# big_query_parameters: {
|
11757
|
+
# project_id: "ProjectId", # required
|
11758
|
+
# data_set_region: "DataSetRegion",
|
11759
|
+
# },
|
11231
11760
|
# },
|
11232
11761
|
# ],
|
11233
11762
|
# },
|
@@ -11702,6 +12231,52 @@ module Aws::QuickSight
|
|
11702
12231
|
req.send_request(options)
|
11703
12232
|
end
|
11704
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
|
+
|
11705
12280
|
# Updates a template from an existing Amazon QuickSight analysis or
|
11706
12281
|
# another template.
|
11707
12282
|
#
|
@@ -12750,7 +13325,7 @@ module Aws::QuickSight
|
|
12750
13325
|
params: params,
|
12751
13326
|
config: config)
|
12752
13327
|
context[:gem_name] = 'aws-sdk-quicksight'
|
12753
|
-
context[:gem_version] = '1.
|
13328
|
+
context[:gem_version] = '1.96.0'
|
12754
13329
|
Seahorse::Client::Request.new(handlers, context)
|
12755
13330
|
end
|
12756
13331
|
|