aws-sdk-quicksight 1.70.0 → 1.71.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +231 -11
- data/lib/aws-sdk-quicksight/client_api.rb +148 -0
- data/lib/aws-sdk-quicksight/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-quicksight/endpoint_provider.rb +75 -75
- data/lib/aws-sdk-quicksight/endpoints.rb +42 -0
- data/lib/aws-sdk-quicksight/errors.rb +21 -0
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-quicksight/types.rb +712 -27
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: efbce68e20d0e37e985294519197bb10c824f2d778d37479c82d4ec714f2a59a
|
4
|
+
data.tar.gz: 7bd31fbecf022cd1d9cb524f7cbc70a7ed27b36867aa60a17e4707383e26ae76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ab2c8228f8303ad0966e735789a043abb45d8a4326bc4fe338f5807bb15e85af6aa29387d2ac14aa5e59bda55375108ef60f4304f769225d9225bb10c76b1d1
|
7
|
+
data.tar.gz: b5f1dbee7e2ad2b75bfc8134dbf5dbe3fffe2c50a10a94484eb9b27d6f92dd23c1d9f710a4e31753e2574d1e10f5bf961885f7ddf21914d5f96b654c6f82a161
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.71.0 (2022-11-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds the following: 1) Asset management for centralized assets governance 2) QuickSight Q now supports public embedding 3) New Termination protection flag to mitigate accidental deletes 4) Athena data sources now accept a custom IAM role 5) QuickSight supports connectivity to Databricks
|
8
|
+
|
4
9
|
1.70.0 (2022-10-25)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.71.0
|
@@ -1309,13 +1309,14 @@ module Aws::QuickSight
|
|
1309
1309
|
# aws_account_id: "AwsAccountId", # required
|
1310
1310
|
# data_source_id: "ResourceId", # required
|
1311
1311
|
# name: "ResourceName", # required
|
1312
|
-
# 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
|
1312
|
+
# 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
|
1313
1313
|
# data_source_parameters: {
|
1314
1314
|
# amazon_elasticsearch_parameters: {
|
1315
1315
|
# domain: "Domain", # required
|
1316
1316
|
# },
|
1317
1317
|
# athena_parameters: {
|
1318
1318
|
# work_group: "WorkGroup",
|
1319
|
+
# role_arn: "RoleArn",
|
1319
1320
|
# },
|
1320
1321
|
# aurora_parameters: {
|
1321
1322
|
# host: "Host", # required
|
@@ -1407,6 +1408,11 @@ module Aws::QuickSight
|
|
1407
1408
|
# host: "Host", # required
|
1408
1409
|
# port: 1, # required
|
1409
1410
|
# },
|
1411
|
+
# databricks_parameters: {
|
1412
|
+
# host: "Host", # required
|
1413
|
+
# port: 1, # required
|
1414
|
+
# sql_endpoint_path: "SqlEndpointPath", # required
|
1415
|
+
# },
|
1410
1416
|
# },
|
1411
1417
|
# credentials: {
|
1412
1418
|
# credential_pair: {
|
@@ -1419,6 +1425,7 @@ module Aws::QuickSight
|
|
1419
1425
|
# },
|
1420
1426
|
# athena_parameters: {
|
1421
1427
|
# work_group: "WorkGroup",
|
1428
|
+
# role_arn: "RoleArn",
|
1422
1429
|
# },
|
1423
1430
|
# aurora_parameters: {
|
1424
1431
|
# host: "Host", # required
|
@@ -1510,6 +1517,11 @@ module Aws::QuickSight
|
|
1510
1517
|
# host: "Host", # required
|
1511
1518
|
# port: 1, # required
|
1512
1519
|
# },
|
1520
|
+
# databricks_parameters: {
|
1521
|
+
# host: "Host", # required
|
1522
|
+
# port: 1, # required
|
1523
|
+
# sql_endpoint_path: "SqlEndpointPath", # required
|
1524
|
+
# },
|
1513
1525
|
# },
|
1514
1526
|
# ],
|
1515
1527
|
# },
|
@@ -2378,6 +2390,43 @@ module Aws::QuickSight
|
|
2378
2390
|
req.send_request(options)
|
2379
2391
|
end
|
2380
2392
|
|
2393
|
+
# Use the `DeleteAccountSubscription` operation to delete an Amazon
|
2394
|
+
# QuickSight account. This operation will result in an error message if
|
2395
|
+
# you have configured your account termination protection settings to
|
2396
|
+
# `True`. To change this setting and delete your account, call the
|
2397
|
+
# `UpdateAccountSettings` API and set the value of the
|
2398
|
+
# `TerminationProtectionEnabled` parameter to `False`, then make another
|
2399
|
+
# call to the `DeleteAccountSubscription` API.
|
2400
|
+
#
|
2401
|
+
# @option params [required, String] :aws_account_id
|
2402
|
+
# The Amazon Web Services account ID of the account that you want to
|
2403
|
+
# delete.
|
2404
|
+
#
|
2405
|
+
# @return [Types::DeleteAccountSubscriptionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2406
|
+
#
|
2407
|
+
# * {Types::DeleteAccountSubscriptionResponse#request_id #request_id} => String
|
2408
|
+
# * {Types::DeleteAccountSubscriptionResponse#status #status} => Integer
|
2409
|
+
#
|
2410
|
+
# @example Request syntax with placeholder values
|
2411
|
+
#
|
2412
|
+
# resp = client.delete_account_subscription({
|
2413
|
+
# aws_account_id: "AwsAccountId", # required
|
2414
|
+
# })
|
2415
|
+
#
|
2416
|
+
# @example Response structure
|
2417
|
+
#
|
2418
|
+
# resp.request_id #=> String
|
2419
|
+
# resp.status #=> Integer
|
2420
|
+
#
|
2421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteAccountSubscription AWS API Documentation
|
2422
|
+
#
|
2423
|
+
# @overload delete_account_subscription(params = {})
|
2424
|
+
# @param [Hash] params ({})
|
2425
|
+
def delete_account_subscription(params = {}, options = {})
|
2426
|
+
req = build_request(:delete_account_subscription, params)
|
2427
|
+
req.send_request(options)
|
2428
|
+
end
|
2429
|
+
|
2381
2430
|
# Deletes an analysis from Amazon QuickSight. You can optionally include
|
2382
2431
|
# a recovery window during which you can restore the analysis. If you
|
2383
2432
|
# don't specify a recovery window value, the operation defaults to 30
|
@@ -3230,6 +3279,7 @@ module Aws::QuickSight
|
|
3230
3279
|
# resp.account_settings.default_namespace #=> String
|
3231
3280
|
# resp.account_settings.notification_email #=> String
|
3232
3281
|
# resp.account_settings.public_sharing_enabled #=> Boolean
|
3282
|
+
# resp.account_settings.termination_protection_enabled #=> Boolean
|
3233
3283
|
# resp.request_id #=> String
|
3234
3284
|
# resp.status #=> Integer
|
3235
3285
|
#
|
@@ -3243,7 +3293,7 @@ module Aws::QuickSight
|
|
3243
3293
|
end
|
3244
3294
|
|
3245
3295
|
# Use the DescribeAccountSubscription operation to receive a description
|
3246
|
-
# of
|
3296
|
+
# of an Amazon QuickSight account's subscription. A successful API call
|
3247
3297
|
# returns an `AccountInfo` object that includes an account's name,
|
3248
3298
|
# subscription status, authentication type, edition, and notification
|
3249
3299
|
# email address.
|
@@ -3699,12 +3749,13 @@ module Aws::QuickSight
|
|
3699
3749
|
# resp.data_source.arn #=> String
|
3700
3750
|
# resp.data_source.data_source_id #=> String
|
3701
3751
|
# resp.data_source.name #=> String
|
3702
|
-
# 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"
|
3752
|
+
# 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"
|
3703
3753
|
# resp.data_source.status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
|
3704
3754
|
# resp.data_source.created_time #=> Time
|
3705
3755
|
# resp.data_source.last_updated_time #=> Time
|
3706
3756
|
# resp.data_source.data_source_parameters.amazon_elasticsearch_parameters.domain #=> String
|
3707
3757
|
# resp.data_source.data_source_parameters.athena_parameters.work_group #=> String
|
3758
|
+
# resp.data_source.data_source_parameters.athena_parameters.role_arn #=> String
|
3708
3759
|
# resp.data_source.data_source_parameters.aurora_parameters.host #=> String
|
3709
3760
|
# resp.data_source.data_source_parameters.aurora_parameters.port #=> Integer
|
3710
3761
|
# resp.data_source.data_source_parameters.aurora_parameters.database #=> String
|
@@ -3753,9 +3804,13 @@ module Aws::QuickSight
|
|
3753
3804
|
# resp.data_source.data_source_parameters.amazon_open_search_parameters.domain #=> String
|
3754
3805
|
# resp.data_source.data_source_parameters.exasol_parameters.host #=> String
|
3755
3806
|
# resp.data_source.data_source_parameters.exasol_parameters.port #=> Integer
|
3807
|
+
# resp.data_source.data_source_parameters.databricks_parameters.host #=> String
|
3808
|
+
# resp.data_source.data_source_parameters.databricks_parameters.port #=> Integer
|
3809
|
+
# resp.data_source.data_source_parameters.databricks_parameters.sql_endpoint_path #=> String
|
3756
3810
|
# resp.data_source.alternate_data_source_parameters #=> Array
|
3757
3811
|
# resp.data_source.alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
|
3758
3812
|
# resp.data_source.alternate_data_source_parameters[0].athena_parameters.work_group #=> String
|
3813
|
+
# resp.data_source.alternate_data_source_parameters[0].athena_parameters.role_arn #=> String
|
3759
3814
|
# resp.data_source.alternate_data_source_parameters[0].aurora_parameters.host #=> String
|
3760
3815
|
# resp.data_source.alternate_data_source_parameters[0].aurora_parameters.port #=> Integer
|
3761
3816
|
# resp.data_source.alternate_data_source_parameters[0].aurora_parameters.database #=> String
|
@@ -3804,6 +3859,9 @@ module Aws::QuickSight
|
|
3804
3859
|
# resp.data_source.alternate_data_source_parameters[0].amazon_open_search_parameters.domain #=> String
|
3805
3860
|
# resp.data_source.alternate_data_source_parameters[0].exasol_parameters.host #=> String
|
3806
3861
|
# resp.data_source.alternate_data_source_parameters[0].exasol_parameters.port #=> Integer
|
3862
|
+
# resp.data_source.alternate_data_source_parameters[0].databricks_parameters.host #=> String
|
3863
|
+
# resp.data_source.alternate_data_source_parameters[0].databricks_parameters.port #=> Integer
|
3864
|
+
# resp.data_source.alternate_data_source_parameters[0].databricks_parameters.sql_endpoint_path #=> String
|
3807
3865
|
# resp.data_source.vpc_connection_properties.vpc_connection_arn #=> String
|
3808
3866
|
# resp.data_source.ssl_properties.disable_ssl #=> Boolean
|
3809
3867
|
# 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"
|
@@ -4757,6 +4815,7 @@ module Aws::QuickSight
|
|
4757
4815
|
# * {Types::GenerateEmbedUrlForAnonymousUserResponse#embed_url #embed_url} => String
|
4758
4816
|
# * {Types::GenerateEmbedUrlForAnonymousUserResponse#status #status} => Integer
|
4759
4817
|
# * {Types::GenerateEmbedUrlForAnonymousUserResponse#request_id #request_id} => String
|
4818
|
+
# * {Types::GenerateEmbedUrlForAnonymousUserResponse#anonymous_user_arn #anonymous_user_arn} => String
|
4760
4819
|
#
|
4761
4820
|
# @example Request syntax with placeholder values
|
4762
4821
|
#
|
@@ -4782,6 +4841,9 @@ module Aws::QuickSight
|
|
4782
4841
|
# visual_id: "RestrictiveResourceId", # required
|
4783
4842
|
# },
|
4784
4843
|
# },
|
4844
|
+
# q_search_bar: {
|
4845
|
+
# initial_topic_id: "RestrictiveResourceId", # required
|
4846
|
+
# },
|
4785
4847
|
# },
|
4786
4848
|
# allowed_domains: ["String"],
|
4787
4849
|
# })
|
@@ -4791,6 +4853,7 @@ module Aws::QuickSight
|
|
4791
4853
|
# resp.embed_url #=> String
|
4792
4854
|
# resp.status #=> Integer
|
4793
4855
|
# resp.request_id #=> String
|
4856
|
+
# resp.anonymous_user_arn #=> String
|
4794
4857
|
#
|
4795
4858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GenerateEmbedUrlForAnonymousUser AWS API Documentation
|
4796
4859
|
#
|
@@ -5398,12 +5461,13 @@ module Aws::QuickSight
|
|
5398
5461
|
# resp.data_sources[0].arn #=> String
|
5399
5462
|
# resp.data_sources[0].data_source_id #=> String
|
5400
5463
|
# resp.data_sources[0].name #=> String
|
5401
|
-
# 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"
|
5464
|
+
# 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"
|
5402
5465
|
# resp.data_sources[0].status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
|
5403
5466
|
# resp.data_sources[0].created_time #=> Time
|
5404
5467
|
# resp.data_sources[0].last_updated_time #=> Time
|
5405
5468
|
# resp.data_sources[0].data_source_parameters.amazon_elasticsearch_parameters.domain #=> String
|
5406
5469
|
# resp.data_sources[0].data_source_parameters.athena_parameters.work_group #=> String
|
5470
|
+
# resp.data_sources[0].data_source_parameters.athena_parameters.role_arn #=> String
|
5407
5471
|
# resp.data_sources[0].data_source_parameters.aurora_parameters.host #=> String
|
5408
5472
|
# resp.data_sources[0].data_source_parameters.aurora_parameters.port #=> Integer
|
5409
5473
|
# resp.data_sources[0].data_source_parameters.aurora_parameters.database #=> String
|
@@ -5452,9 +5516,13 @@ module Aws::QuickSight
|
|
5452
5516
|
# resp.data_sources[0].data_source_parameters.amazon_open_search_parameters.domain #=> String
|
5453
5517
|
# resp.data_sources[0].data_source_parameters.exasol_parameters.host #=> String
|
5454
5518
|
# resp.data_sources[0].data_source_parameters.exasol_parameters.port #=> Integer
|
5519
|
+
# resp.data_sources[0].data_source_parameters.databricks_parameters.host #=> String
|
5520
|
+
# resp.data_sources[0].data_source_parameters.databricks_parameters.port #=> Integer
|
5521
|
+
# resp.data_sources[0].data_source_parameters.databricks_parameters.sql_endpoint_path #=> String
|
5455
5522
|
# resp.data_sources[0].alternate_data_source_parameters #=> Array
|
5456
5523
|
# resp.data_sources[0].alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
|
5457
5524
|
# resp.data_sources[0].alternate_data_source_parameters[0].athena_parameters.work_group #=> String
|
5525
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].athena_parameters.role_arn #=> String
|
5458
5526
|
# resp.data_sources[0].alternate_data_source_parameters[0].aurora_parameters.host #=> String
|
5459
5527
|
# resp.data_sources[0].alternate_data_source_parameters[0].aurora_parameters.port #=> Integer
|
5460
5528
|
# resp.data_sources[0].alternate_data_source_parameters[0].aurora_parameters.database #=> String
|
@@ -5503,6 +5571,9 @@ module Aws::QuickSight
|
|
5503
5571
|
# resp.data_sources[0].alternate_data_source_parameters[0].amazon_open_search_parameters.domain #=> String
|
5504
5572
|
# resp.data_sources[0].alternate_data_source_parameters[0].exasol_parameters.host #=> String
|
5505
5573
|
# resp.data_sources[0].alternate_data_source_parameters[0].exasol_parameters.port #=> Integer
|
5574
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].databricks_parameters.host #=> String
|
5575
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].databricks_parameters.port #=> Integer
|
5576
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].databricks_parameters.sql_endpoint_path #=> String
|
5506
5577
|
# resp.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
|
5507
5578
|
# resp.data_sources[0].ssl_properties.disable_ssl #=> Boolean
|
5508
5579
|
# 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"
|
@@ -6686,8 +6757,8 @@ module Aws::QuickSight
|
|
6686
6757
|
# aws_account_id: "AwsAccountId", # required
|
6687
6758
|
# filters: [ # required
|
6688
6759
|
# {
|
6689
|
-
# operator: "StringEquals", # accepts StringEquals
|
6690
|
-
# name: "QUICKSIGHT_USER", # accepts QUICKSIGHT_USER
|
6760
|
+
# operator: "StringEquals", # accepts StringEquals, StringLike
|
6761
|
+
# name: "QUICKSIGHT_USER", # accepts QUICKSIGHT_USER, QUICKSIGHT_VIEWER_OR_OWNER, DIRECT_QUICKSIGHT_VIEWER_OR_OWNER, QUICKSIGHT_OWNER, DIRECT_QUICKSIGHT_OWNER, DIRECT_QUICKSIGHT_SOLE_OWNER, ANALYSIS_NAME
|
6691
6762
|
# value: "String",
|
6692
6763
|
# },
|
6693
6764
|
# ],
|
@@ -6756,8 +6827,8 @@ module Aws::QuickSight
|
|
6756
6827
|
# aws_account_id: "AwsAccountId", # required
|
6757
6828
|
# filters: [ # required
|
6758
6829
|
# {
|
6759
|
-
# operator: "StringEquals", # required, accepts StringEquals
|
6760
|
-
# name: "QUICKSIGHT_USER", # accepts QUICKSIGHT_USER
|
6830
|
+
# operator: "StringEquals", # required, accepts StringEquals, StringLike
|
6831
|
+
# name: "QUICKSIGHT_USER", # accepts QUICKSIGHT_USER, QUICKSIGHT_VIEWER_OR_OWNER, DIRECT_QUICKSIGHT_VIEWER_OR_OWNER, QUICKSIGHT_OWNER, DIRECT_QUICKSIGHT_OWNER, DIRECT_QUICKSIGHT_SOLE_OWNER, DASHBOARD_NAME
|
6761
6832
|
# value: "String",
|
6762
6833
|
# },
|
6763
6834
|
# ],
|
@@ -6788,6 +6859,135 @@ module Aws::QuickSight
|
|
6788
6859
|
req.send_request(options)
|
6789
6860
|
end
|
6790
6861
|
|
6862
|
+
# Use the `SearchDataSets` operation to search for datasets that belong
|
6863
|
+
# to an account.
|
6864
|
+
#
|
6865
|
+
# @option params [required, String] :aws_account_id
|
6866
|
+
# The Amazon Web Services account ID.
|
6867
|
+
#
|
6868
|
+
# @option params [required, Array<Types::DataSetSearchFilter>] :filters
|
6869
|
+
# The filters to apply to the search.
|
6870
|
+
#
|
6871
|
+
# @option params [String] :next_token
|
6872
|
+
# A pagination token that can be used in a subsequent request.
|
6873
|
+
#
|
6874
|
+
# @option params [Integer] :max_results
|
6875
|
+
# The maximum number of results to be returned per request.
|
6876
|
+
#
|
6877
|
+
# @return [Types::SearchDataSetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6878
|
+
#
|
6879
|
+
# * {Types::SearchDataSetsResponse#data_set_summaries #data_set_summaries} => Array<Types::DataSetSummary>
|
6880
|
+
# * {Types::SearchDataSetsResponse#next_token #next_token} => String
|
6881
|
+
# * {Types::SearchDataSetsResponse#status #status} => Integer
|
6882
|
+
# * {Types::SearchDataSetsResponse#request_id #request_id} => String
|
6883
|
+
#
|
6884
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6885
|
+
#
|
6886
|
+
# @example Request syntax with placeholder values
|
6887
|
+
#
|
6888
|
+
# resp = client.search_data_sets({
|
6889
|
+
# aws_account_id: "AwsAccountId", # required
|
6890
|
+
# filters: [ # required
|
6891
|
+
# {
|
6892
|
+
# operator: "StringEquals", # required, accepts StringEquals, StringLike
|
6893
|
+
# name: "QUICKSIGHT_VIEWER_OR_OWNER", # required, accepts QUICKSIGHT_VIEWER_OR_OWNER, QUICKSIGHT_OWNER, DIRECT_QUICKSIGHT_VIEWER_OR_OWNER, DIRECT_QUICKSIGHT_OWNER, DIRECT_QUICKSIGHT_SOLE_OWNER, DATASET_NAME
|
6894
|
+
# value: "String", # required
|
6895
|
+
# },
|
6896
|
+
# ],
|
6897
|
+
# next_token: "String",
|
6898
|
+
# max_results: 1,
|
6899
|
+
# })
|
6900
|
+
#
|
6901
|
+
# @example Response structure
|
6902
|
+
#
|
6903
|
+
# resp.data_set_summaries #=> Array
|
6904
|
+
# resp.data_set_summaries[0].arn #=> String
|
6905
|
+
# resp.data_set_summaries[0].data_set_id #=> String
|
6906
|
+
# resp.data_set_summaries[0].name #=> String
|
6907
|
+
# resp.data_set_summaries[0].created_time #=> Time
|
6908
|
+
# resp.data_set_summaries[0].last_updated_time #=> Time
|
6909
|
+
# resp.data_set_summaries[0].import_mode #=> String, one of "SPICE", "DIRECT_QUERY"
|
6910
|
+
# resp.data_set_summaries[0].row_level_permission_data_set.namespace #=> String
|
6911
|
+
# resp.data_set_summaries[0].row_level_permission_data_set.arn #=> String
|
6912
|
+
# resp.data_set_summaries[0].row_level_permission_data_set.permission_policy #=> String, one of "GRANT_ACCESS", "DENY_ACCESS"
|
6913
|
+
# resp.data_set_summaries[0].row_level_permission_data_set.format_version #=> String, one of "VERSION_1", "VERSION_2"
|
6914
|
+
# resp.data_set_summaries[0].row_level_permission_data_set.status #=> String, one of "ENABLED", "DISABLED"
|
6915
|
+
# resp.data_set_summaries[0].row_level_permission_tag_configuration_applied #=> Boolean
|
6916
|
+
# resp.data_set_summaries[0].column_level_permission_rules_applied #=> Boolean
|
6917
|
+
# resp.next_token #=> String
|
6918
|
+
# resp.status #=> Integer
|
6919
|
+
# resp.request_id #=> String
|
6920
|
+
#
|
6921
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchDataSets AWS API Documentation
|
6922
|
+
#
|
6923
|
+
# @overload search_data_sets(params = {})
|
6924
|
+
# @param [Hash] params ({})
|
6925
|
+
def search_data_sets(params = {}, options = {})
|
6926
|
+
req = build_request(:search_data_sets, params)
|
6927
|
+
req.send_request(options)
|
6928
|
+
end
|
6929
|
+
|
6930
|
+
# Use the `SearchDataSources` operation to search for data sources that
|
6931
|
+
# belong to an account.
|
6932
|
+
#
|
6933
|
+
# @option params [required, String] :aws_account_id
|
6934
|
+
# The Amazon Web Services account ID.
|
6935
|
+
#
|
6936
|
+
# @option params [required, Array<Types::DataSourceSearchFilter>] :filters
|
6937
|
+
# The filters to apply to the search.
|
6938
|
+
#
|
6939
|
+
# @option params [String] :next_token
|
6940
|
+
# A pagination token that can be used in a subsequent request.
|
6941
|
+
#
|
6942
|
+
# @option params [Integer] :max_results
|
6943
|
+
# The maximum number of results to be returned per request.
|
6944
|
+
#
|
6945
|
+
# @return [Types::SearchDataSourcesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6946
|
+
#
|
6947
|
+
# * {Types::SearchDataSourcesResponse#data_source_summaries #data_source_summaries} => Array<Types::DataSourceSummary>
|
6948
|
+
# * {Types::SearchDataSourcesResponse#next_token #next_token} => String
|
6949
|
+
# * {Types::SearchDataSourcesResponse#status #status} => Integer
|
6950
|
+
# * {Types::SearchDataSourcesResponse#request_id #request_id} => String
|
6951
|
+
#
|
6952
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6953
|
+
#
|
6954
|
+
# @example Request syntax with placeholder values
|
6955
|
+
#
|
6956
|
+
# resp = client.search_data_sources({
|
6957
|
+
# aws_account_id: "AwsAccountId", # required
|
6958
|
+
# filters: [ # required
|
6959
|
+
# {
|
6960
|
+
# operator: "StringEquals", # required, accepts StringEquals, StringLike
|
6961
|
+
# name: "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER", # required, accepts DIRECT_QUICKSIGHT_VIEWER_OR_OWNER, DIRECT_QUICKSIGHT_OWNER, DIRECT_QUICKSIGHT_SOLE_OWNER, DATASOURCE_NAME
|
6962
|
+
# value: "String", # required
|
6963
|
+
# },
|
6964
|
+
# ],
|
6965
|
+
# next_token: "String",
|
6966
|
+
# max_results: 1,
|
6967
|
+
# })
|
6968
|
+
#
|
6969
|
+
# @example Response structure
|
6970
|
+
#
|
6971
|
+
# resp.data_source_summaries #=> Array
|
6972
|
+
# resp.data_source_summaries[0].arn #=> String
|
6973
|
+
# resp.data_source_summaries[0].data_source_id #=> String
|
6974
|
+
# resp.data_source_summaries[0].name #=> String
|
6975
|
+
# 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"
|
6976
|
+
# resp.data_source_summaries[0].created_time #=> Time
|
6977
|
+
# resp.data_source_summaries[0].last_updated_time #=> Time
|
6978
|
+
# resp.next_token #=> String
|
6979
|
+
# resp.status #=> Integer
|
6980
|
+
# resp.request_id #=> String
|
6981
|
+
#
|
6982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchDataSources AWS API Documentation
|
6983
|
+
#
|
6984
|
+
# @overload search_data_sources(params = {})
|
6985
|
+
# @param [Hash] params ({})
|
6986
|
+
def search_data_sources(params = {}, options = {})
|
6987
|
+
req = build_request(:search_data_sources, params)
|
6988
|
+
req.send_request(options)
|
6989
|
+
end
|
6990
|
+
|
6791
6991
|
# Searches the subfolders in a folder.
|
6792
6992
|
#
|
6793
6993
|
# @option params [required, String] :aws_account_id
|
@@ -6819,8 +7019,8 @@ module Aws::QuickSight
|
|
6819
7019
|
# aws_account_id: "AwsAccountId", # required
|
6820
7020
|
# filters: [ # required
|
6821
7021
|
# {
|
6822
|
-
# operator: "StringEquals", # accepts StringEquals
|
6823
|
-
# name: "PARENT_FOLDER_ARN", # accepts PARENT_FOLDER_ARN
|
7022
|
+
# operator: "StringEquals", # accepts StringEquals, StringLike
|
7023
|
+
# name: "PARENT_FOLDER_ARN", # accepts PARENT_FOLDER_ARN, DIRECT_QUICKSIGHT_OWNER, DIRECT_QUICKSIGHT_SOLE_OWNER, DIRECT_QUICKSIGHT_VIEWER_OR_OWNER, QUICKSIGHT_OWNER, QUICKSIGHT_VIEWER_OR_OWNER, FOLDER_NAME
|
6824
7024
|
# value: "String",
|
6825
7025
|
# },
|
6826
7026
|
# ],
|
@@ -7094,6 +7294,13 @@ module Aws::QuickSight
|
|
7094
7294
|
# notifications to regarding your Amazon Web Services account or Amazon
|
7095
7295
|
# QuickSight subscription.
|
7096
7296
|
#
|
7297
|
+
# @option params [Boolean] :termination_protection_enabled
|
7298
|
+
# A boolean value that determines whether or not an Amazon QuickSight
|
7299
|
+
# account can be deleted. A `True` value doesn't allow the account to
|
7300
|
+
# be deleted and results in an error message if a user tries to make a
|
7301
|
+
# `DeleteAccountSubscription` request. A `False` value will allow the
|
7302
|
+
# account to be deleted.
|
7303
|
+
#
|
7097
7304
|
# @return [Types::UpdateAccountSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7098
7305
|
#
|
7099
7306
|
# * {Types::UpdateAccountSettingsResponse#request_id #request_id} => String
|
@@ -7105,6 +7312,7 @@ module Aws::QuickSight
|
|
7105
7312
|
# aws_account_id: "AwsAccountId", # required
|
7106
7313
|
# default_namespace: "Namespace", # required
|
7107
7314
|
# notification_email: "String",
|
7315
|
+
# termination_protection_enabled: false,
|
7108
7316
|
# })
|
7109
7317
|
#
|
7110
7318
|
# @example Response structure
|
@@ -7911,6 +8119,7 @@ module Aws::QuickSight
|
|
7911
8119
|
# },
|
7912
8120
|
# athena_parameters: {
|
7913
8121
|
# work_group: "WorkGroup",
|
8122
|
+
# role_arn: "RoleArn",
|
7914
8123
|
# },
|
7915
8124
|
# aurora_parameters: {
|
7916
8125
|
# host: "Host", # required
|
@@ -8002,6 +8211,11 @@ module Aws::QuickSight
|
|
8002
8211
|
# host: "Host", # required
|
8003
8212
|
# port: 1, # required
|
8004
8213
|
# },
|
8214
|
+
# databricks_parameters: {
|
8215
|
+
# host: "Host", # required
|
8216
|
+
# port: 1, # required
|
8217
|
+
# sql_endpoint_path: "SqlEndpointPath", # required
|
8218
|
+
# },
|
8005
8219
|
# },
|
8006
8220
|
# credentials: {
|
8007
8221
|
# credential_pair: {
|
@@ -8014,6 +8228,7 @@ module Aws::QuickSight
|
|
8014
8228
|
# },
|
8015
8229
|
# athena_parameters: {
|
8016
8230
|
# work_group: "WorkGroup",
|
8231
|
+
# role_arn: "RoleArn",
|
8017
8232
|
# },
|
8018
8233
|
# aurora_parameters: {
|
8019
8234
|
# host: "Host", # required
|
@@ -8105,6 +8320,11 @@ module Aws::QuickSight
|
|
8105
8320
|
# host: "Host", # required
|
8106
8321
|
# port: 1, # required
|
8107
8322
|
# },
|
8323
|
+
# databricks_parameters: {
|
8324
|
+
# host: "Host", # required
|
8325
|
+
# port: 1, # required
|
8326
|
+
# sql_endpoint_path: "SqlEndpointPath", # required
|
8327
|
+
# },
|
8108
8328
|
# },
|
8109
8329
|
# ],
|
8110
8330
|
# },
|
@@ -9126,7 +9346,7 @@ module Aws::QuickSight
|
|
9126
9346
|
params: params,
|
9127
9347
|
config: config)
|
9128
9348
|
context[:gem_name] = 'aws-sdk-quicksight'
|
9129
|
-
context[:gem_version] = '1.
|
9349
|
+
context[:gem_version] = '1.71.0'
|
9130
9350
|
Seahorse::Client::Request.new(handlers, context)
|
9131
9351
|
end
|
9132
9352
|
|