aws-sdk-quicksight 1.69.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +250 -13
- data/lib/aws-sdk-quicksight/client_api.rb +148 -0
- data/lib/aws-sdk-quicksight/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-quicksight/endpoint_provider.rb +112 -0
- data/lib/aws-sdk-quicksight/endpoints.rb +1737 -0
- data/lib/aws-sdk-quicksight/errors.rb +21 -0
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +314 -0
- data/lib/aws-sdk-quicksight/types.rb +712 -27
- data/lib/aws-sdk-quicksight.rb +5 -1
- metadata +8 -4
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,16 @@
|
|
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
|
+
|
9
|
+
1.70.0 (2022-10-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.69.0 (2022-10-07)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.71.0
|
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:quicksight)
|
@@ -79,8 +79,9 @@ module Aws::QuickSight
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
84
|
+
add_plugin(Aws::QuickSight::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -287,6 +288,19 @@ module Aws::QuickSight
|
|
287
288
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
288
289
|
# requests are made, and retries are disabled.
|
289
290
|
#
|
291
|
+
# @option options [Aws::TokenProvider] :token_provider
|
292
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
293
|
+
# following classes:
|
294
|
+
#
|
295
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
296
|
+
# tokens.
|
297
|
+
#
|
298
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
299
|
+
# access token generated from `aws login`.
|
300
|
+
#
|
301
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
302
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
303
|
+
#
|
290
304
|
# @option options [Boolean] :use_dualstack_endpoint
|
291
305
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
292
306
|
# will be used if available.
|
@@ -300,6 +314,9 @@ module Aws::QuickSight
|
|
300
314
|
# When `true`, request parameters are validated before
|
301
315
|
# sending the request.
|
302
316
|
#
|
317
|
+
# @option options [Aws::QuickSight::EndpointProvider] :endpoint_provider
|
318
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::QuickSight::EndpointParameters`
|
319
|
+
#
|
303
320
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
304
321
|
# requests through. Formatted like 'http://proxy.com:123'.
|
305
322
|
#
|
@@ -1292,13 +1309,14 @@ module Aws::QuickSight
|
|
1292
1309
|
# aws_account_id: "AwsAccountId", # required
|
1293
1310
|
# data_source_id: "ResourceId", # required
|
1294
1311
|
# name: "ResourceName", # required
|
1295
|
-
# 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
|
1296
1313
|
# data_source_parameters: {
|
1297
1314
|
# amazon_elasticsearch_parameters: {
|
1298
1315
|
# domain: "Domain", # required
|
1299
1316
|
# },
|
1300
1317
|
# athena_parameters: {
|
1301
1318
|
# work_group: "WorkGroup",
|
1319
|
+
# role_arn: "RoleArn",
|
1302
1320
|
# },
|
1303
1321
|
# aurora_parameters: {
|
1304
1322
|
# host: "Host", # required
|
@@ -1390,6 +1408,11 @@ module Aws::QuickSight
|
|
1390
1408
|
# host: "Host", # required
|
1391
1409
|
# port: 1, # required
|
1392
1410
|
# },
|
1411
|
+
# databricks_parameters: {
|
1412
|
+
# host: "Host", # required
|
1413
|
+
# port: 1, # required
|
1414
|
+
# sql_endpoint_path: "SqlEndpointPath", # required
|
1415
|
+
# },
|
1393
1416
|
# },
|
1394
1417
|
# credentials: {
|
1395
1418
|
# credential_pair: {
|
@@ -1402,6 +1425,7 @@ module Aws::QuickSight
|
|
1402
1425
|
# },
|
1403
1426
|
# athena_parameters: {
|
1404
1427
|
# work_group: "WorkGroup",
|
1428
|
+
# role_arn: "RoleArn",
|
1405
1429
|
# },
|
1406
1430
|
# aurora_parameters: {
|
1407
1431
|
# host: "Host", # required
|
@@ -1493,6 +1517,11 @@ module Aws::QuickSight
|
|
1493
1517
|
# host: "Host", # required
|
1494
1518
|
# port: 1, # required
|
1495
1519
|
# },
|
1520
|
+
# databricks_parameters: {
|
1521
|
+
# host: "Host", # required
|
1522
|
+
# port: 1, # required
|
1523
|
+
# sql_endpoint_path: "SqlEndpointPath", # required
|
1524
|
+
# },
|
1496
1525
|
# },
|
1497
1526
|
# ],
|
1498
1527
|
# },
|
@@ -2361,6 +2390,43 @@ module Aws::QuickSight
|
|
2361
2390
|
req.send_request(options)
|
2362
2391
|
end
|
2363
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
|
+
|
2364
2430
|
# Deletes an analysis from Amazon QuickSight. You can optionally include
|
2365
2431
|
# a recovery window during which you can restore the analysis. If you
|
2366
2432
|
# don't specify a recovery window value, the operation defaults to 30
|
@@ -3213,6 +3279,7 @@ module Aws::QuickSight
|
|
3213
3279
|
# resp.account_settings.default_namespace #=> String
|
3214
3280
|
# resp.account_settings.notification_email #=> String
|
3215
3281
|
# resp.account_settings.public_sharing_enabled #=> Boolean
|
3282
|
+
# resp.account_settings.termination_protection_enabled #=> Boolean
|
3216
3283
|
# resp.request_id #=> String
|
3217
3284
|
# resp.status #=> Integer
|
3218
3285
|
#
|
@@ -3226,7 +3293,7 @@ module Aws::QuickSight
|
|
3226
3293
|
end
|
3227
3294
|
|
3228
3295
|
# Use the DescribeAccountSubscription operation to receive a description
|
3229
|
-
# of
|
3296
|
+
# of an Amazon QuickSight account's subscription. A successful API call
|
3230
3297
|
# returns an `AccountInfo` object that includes an account's name,
|
3231
3298
|
# subscription status, authentication type, edition, and notification
|
3232
3299
|
# email address.
|
@@ -3682,12 +3749,13 @@ module Aws::QuickSight
|
|
3682
3749
|
# resp.data_source.arn #=> String
|
3683
3750
|
# resp.data_source.data_source_id #=> String
|
3684
3751
|
# resp.data_source.name #=> String
|
3685
|
-
# 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"
|
3686
3753
|
# resp.data_source.status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
|
3687
3754
|
# resp.data_source.created_time #=> Time
|
3688
3755
|
# resp.data_source.last_updated_time #=> Time
|
3689
3756
|
# resp.data_source.data_source_parameters.amazon_elasticsearch_parameters.domain #=> String
|
3690
3757
|
# resp.data_source.data_source_parameters.athena_parameters.work_group #=> String
|
3758
|
+
# resp.data_source.data_source_parameters.athena_parameters.role_arn #=> String
|
3691
3759
|
# resp.data_source.data_source_parameters.aurora_parameters.host #=> String
|
3692
3760
|
# resp.data_source.data_source_parameters.aurora_parameters.port #=> Integer
|
3693
3761
|
# resp.data_source.data_source_parameters.aurora_parameters.database #=> String
|
@@ -3736,9 +3804,13 @@ module Aws::QuickSight
|
|
3736
3804
|
# resp.data_source.data_source_parameters.amazon_open_search_parameters.domain #=> String
|
3737
3805
|
# resp.data_source.data_source_parameters.exasol_parameters.host #=> String
|
3738
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
|
3739
3810
|
# resp.data_source.alternate_data_source_parameters #=> Array
|
3740
3811
|
# resp.data_source.alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
|
3741
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
|
3742
3814
|
# resp.data_source.alternate_data_source_parameters[0].aurora_parameters.host #=> String
|
3743
3815
|
# resp.data_source.alternate_data_source_parameters[0].aurora_parameters.port #=> Integer
|
3744
3816
|
# resp.data_source.alternate_data_source_parameters[0].aurora_parameters.database #=> String
|
@@ -3787,6 +3859,9 @@ module Aws::QuickSight
|
|
3787
3859
|
# resp.data_source.alternate_data_source_parameters[0].amazon_open_search_parameters.domain #=> String
|
3788
3860
|
# resp.data_source.alternate_data_source_parameters[0].exasol_parameters.host #=> String
|
3789
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
|
3790
3865
|
# resp.data_source.vpc_connection_properties.vpc_connection_arn #=> String
|
3791
3866
|
# resp.data_source.ssl_properties.disable_ssl #=> Boolean
|
3792
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"
|
@@ -4740,6 +4815,7 @@ module Aws::QuickSight
|
|
4740
4815
|
# * {Types::GenerateEmbedUrlForAnonymousUserResponse#embed_url #embed_url} => String
|
4741
4816
|
# * {Types::GenerateEmbedUrlForAnonymousUserResponse#status #status} => Integer
|
4742
4817
|
# * {Types::GenerateEmbedUrlForAnonymousUserResponse#request_id #request_id} => String
|
4818
|
+
# * {Types::GenerateEmbedUrlForAnonymousUserResponse#anonymous_user_arn #anonymous_user_arn} => String
|
4743
4819
|
#
|
4744
4820
|
# @example Request syntax with placeholder values
|
4745
4821
|
#
|
@@ -4765,6 +4841,9 @@ module Aws::QuickSight
|
|
4765
4841
|
# visual_id: "RestrictiveResourceId", # required
|
4766
4842
|
# },
|
4767
4843
|
# },
|
4844
|
+
# q_search_bar: {
|
4845
|
+
# initial_topic_id: "RestrictiveResourceId", # required
|
4846
|
+
# },
|
4768
4847
|
# },
|
4769
4848
|
# allowed_domains: ["String"],
|
4770
4849
|
# })
|
@@ -4774,6 +4853,7 @@ module Aws::QuickSight
|
|
4774
4853
|
# resp.embed_url #=> String
|
4775
4854
|
# resp.status #=> Integer
|
4776
4855
|
# resp.request_id #=> String
|
4856
|
+
# resp.anonymous_user_arn #=> String
|
4777
4857
|
#
|
4778
4858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GenerateEmbedUrlForAnonymousUser AWS API Documentation
|
4779
4859
|
#
|
@@ -5381,12 +5461,13 @@ module Aws::QuickSight
|
|
5381
5461
|
# resp.data_sources[0].arn #=> String
|
5382
5462
|
# resp.data_sources[0].data_source_id #=> String
|
5383
5463
|
# resp.data_sources[0].name #=> String
|
5384
|
-
# 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"
|
5385
5465
|
# resp.data_sources[0].status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
|
5386
5466
|
# resp.data_sources[0].created_time #=> Time
|
5387
5467
|
# resp.data_sources[0].last_updated_time #=> Time
|
5388
5468
|
# resp.data_sources[0].data_source_parameters.amazon_elasticsearch_parameters.domain #=> String
|
5389
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
|
5390
5471
|
# resp.data_sources[0].data_source_parameters.aurora_parameters.host #=> String
|
5391
5472
|
# resp.data_sources[0].data_source_parameters.aurora_parameters.port #=> Integer
|
5392
5473
|
# resp.data_sources[0].data_source_parameters.aurora_parameters.database #=> String
|
@@ -5435,9 +5516,13 @@ module Aws::QuickSight
|
|
5435
5516
|
# resp.data_sources[0].data_source_parameters.amazon_open_search_parameters.domain #=> String
|
5436
5517
|
# resp.data_sources[0].data_source_parameters.exasol_parameters.host #=> String
|
5437
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
|
5438
5522
|
# resp.data_sources[0].alternate_data_source_parameters #=> Array
|
5439
5523
|
# resp.data_sources[0].alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
|
5440
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
|
5441
5526
|
# resp.data_sources[0].alternate_data_source_parameters[0].aurora_parameters.host #=> String
|
5442
5527
|
# resp.data_sources[0].alternate_data_source_parameters[0].aurora_parameters.port #=> Integer
|
5443
5528
|
# resp.data_sources[0].alternate_data_source_parameters[0].aurora_parameters.database #=> String
|
@@ -5486,6 +5571,9 @@ module Aws::QuickSight
|
|
5486
5571
|
# resp.data_sources[0].alternate_data_source_parameters[0].amazon_open_search_parameters.domain #=> String
|
5487
5572
|
# resp.data_sources[0].alternate_data_source_parameters[0].exasol_parameters.host #=> String
|
5488
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
|
5489
5577
|
# resp.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
|
5490
5578
|
# resp.data_sources[0].ssl_properties.disable_ssl #=> Boolean
|
5491
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"
|
@@ -6669,8 +6757,8 @@ module Aws::QuickSight
|
|
6669
6757
|
# aws_account_id: "AwsAccountId", # required
|
6670
6758
|
# filters: [ # required
|
6671
6759
|
# {
|
6672
|
-
# operator: "StringEquals", # accepts StringEquals
|
6673
|
-
# 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
|
6674
6762
|
# value: "String",
|
6675
6763
|
# },
|
6676
6764
|
# ],
|
@@ -6739,8 +6827,8 @@ module Aws::QuickSight
|
|
6739
6827
|
# aws_account_id: "AwsAccountId", # required
|
6740
6828
|
# filters: [ # required
|
6741
6829
|
# {
|
6742
|
-
# operator: "StringEquals", # required, accepts StringEquals
|
6743
|
-
# 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
|
6744
6832
|
# value: "String",
|
6745
6833
|
# },
|
6746
6834
|
# ],
|
@@ -6771,6 +6859,135 @@ module Aws::QuickSight
|
|
6771
6859
|
req.send_request(options)
|
6772
6860
|
end
|
6773
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
|
+
|
6774
6991
|
# Searches the subfolders in a folder.
|
6775
6992
|
#
|
6776
6993
|
# @option params [required, String] :aws_account_id
|
@@ -6802,8 +7019,8 @@ module Aws::QuickSight
|
|
6802
7019
|
# aws_account_id: "AwsAccountId", # required
|
6803
7020
|
# filters: [ # required
|
6804
7021
|
# {
|
6805
|
-
# operator: "StringEquals", # accepts StringEquals
|
6806
|
-
# 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
|
6807
7024
|
# value: "String",
|
6808
7025
|
# },
|
6809
7026
|
# ],
|
@@ -7077,6 +7294,13 @@ module Aws::QuickSight
|
|
7077
7294
|
# notifications to regarding your Amazon Web Services account or Amazon
|
7078
7295
|
# QuickSight subscription.
|
7079
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
|
+
#
|
7080
7304
|
# @return [Types::UpdateAccountSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7081
7305
|
#
|
7082
7306
|
# * {Types::UpdateAccountSettingsResponse#request_id #request_id} => String
|
@@ -7088,6 +7312,7 @@ module Aws::QuickSight
|
|
7088
7312
|
# aws_account_id: "AwsAccountId", # required
|
7089
7313
|
# default_namespace: "Namespace", # required
|
7090
7314
|
# notification_email: "String",
|
7315
|
+
# termination_protection_enabled: false,
|
7091
7316
|
# })
|
7092
7317
|
#
|
7093
7318
|
# @example Response structure
|
@@ -7894,6 +8119,7 @@ module Aws::QuickSight
|
|
7894
8119
|
# },
|
7895
8120
|
# athena_parameters: {
|
7896
8121
|
# work_group: "WorkGroup",
|
8122
|
+
# role_arn: "RoleArn",
|
7897
8123
|
# },
|
7898
8124
|
# aurora_parameters: {
|
7899
8125
|
# host: "Host", # required
|
@@ -7985,6 +8211,11 @@ module Aws::QuickSight
|
|
7985
8211
|
# host: "Host", # required
|
7986
8212
|
# port: 1, # required
|
7987
8213
|
# },
|
8214
|
+
# databricks_parameters: {
|
8215
|
+
# host: "Host", # required
|
8216
|
+
# port: 1, # required
|
8217
|
+
# sql_endpoint_path: "SqlEndpointPath", # required
|
8218
|
+
# },
|
7988
8219
|
# },
|
7989
8220
|
# credentials: {
|
7990
8221
|
# credential_pair: {
|
@@ -7997,6 +8228,7 @@ module Aws::QuickSight
|
|
7997
8228
|
# },
|
7998
8229
|
# athena_parameters: {
|
7999
8230
|
# work_group: "WorkGroup",
|
8231
|
+
# role_arn: "RoleArn",
|
8000
8232
|
# },
|
8001
8233
|
# aurora_parameters: {
|
8002
8234
|
# host: "Host", # required
|
@@ -8088,6 +8320,11 @@ module Aws::QuickSight
|
|
8088
8320
|
# host: "Host", # required
|
8089
8321
|
# port: 1, # required
|
8090
8322
|
# },
|
8323
|
+
# databricks_parameters: {
|
8324
|
+
# host: "Host", # required
|
8325
|
+
# port: 1, # required
|
8326
|
+
# sql_endpoint_path: "SqlEndpointPath", # required
|
8327
|
+
# },
|
8091
8328
|
# },
|
8092
8329
|
# ],
|
8093
8330
|
# },
|
@@ -9109,7 +9346,7 @@ module Aws::QuickSight
|
|
9109
9346
|
params: params,
|
9110
9347
|
config: config)
|
9111
9348
|
context[:gem_name] = 'aws-sdk-quicksight'
|
9112
|
-
context[:gem_version] = '1.
|
9349
|
+
context[:gem_version] = '1.71.0'
|
9113
9350
|
Seahorse::Client::Request.new(handlers, context)
|
9114
9351
|
end
|
9115
9352
|
|