aws-sdk-quicksight 1.138.0 → 1.140.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 +456 -4
- data/lib/aws-sdk-quicksight/client_api.rb +262 -0
- data/lib/aws-sdk-quicksight/types.rb +527 -3
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +164 -4
- data/sig/types.rbs +154 -3
- 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: 11bd5d831970d208f08b35b735c83efba22dac8306612c5d8e179fab0be76d19
|
4
|
+
data.tar.gz: b8254405a2b758048372269445e3b45029165c1894590bca9475f6de047341cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f7067d5d5d3c8d9a15e32642aa3fd6d1efd3f756ef98aec8682910cee24434f3cafc7040931016eb599d0a53a9ec7aa9eb3c6ff50ed802ef281a1aa43950974
|
7
|
+
data.tar.gz: c4b16fbfbcca5e01a17cb3dae2c722ab7c58dc38415cf4f112a24affe059eea012de95a5b0df14668a2a9bd8ae08f83ef9a6590a8fcab3b16f79f6be446cf9b1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.140.0 (2024-12-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add support for PerformanceConfiguration attribute to Dataset entity. Allow PerformanceConfiguration specification in CreateDataset and UpdateDataset APIs.
|
8
|
+
|
9
|
+
1.139.0 (2024-12-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release includes API needed to support for Unstructured Data in Q in QuickSight Q&A (IDC).
|
13
|
+
|
4
14
|
1.138.0 (2024-11-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.140.0
|
@@ -2252,6 +2252,10 @@ module Aws::QuickSight
|
|
2252
2252
|
# When you create the dataset, Amazon QuickSight adds the dataset to
|
2253
2253
|
# these folders.
|
2254
2254
|
#
|
2255
|
+
# @option params [Types::PerformanceConfiguration] :performance_configuration
|
2256
|
+
# The configuration for the performance optimization of the dataset that
|
2257
|
+
# contains a `UniqueKey` configuration.
|
2258
|
+
#
|
2255
2259
|
# @return [Types::CreateDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2256
2260
|
#
|
2257
2261
|
# * {Types::CreateDataSetResponse#arn #arn} => String
|
@@ -2485,6 +2489,13 @@ module Aws::QuickSight
|
|
2485
2489
|
# },
|
2486
2490
|
# ],
|
2487
2491
|
# folder_arns: ["Arn"],
|
2492
|
+
# performance_configuration: {
|
2493
|
+
# unique_keys: [
|
2494
|
+
# {
|
2495
|
+
# column_names: ["ColumnName"], # required
|
2496
|
+
# },
|
2497
|
+
# ],
|
2498
|
+
# },
|
2488
2499
|
# })
|
2489
2500
|
#
|
2490
2501
|
# @example Response structure
|
@@ -4617,6 +4628,46 @@ module Aws::QuickSight
|
|
4617
4628
|
req.send_request(options)
|
4618
4629
|
end
|
4619
4630
|
|
4631
|
+
# Deletes a linked Amazon Q Business application from an Amazon
|
4632
|
+
# QuickSight account
|
4633
|
+
#
|
4634
|
+
# @option params [required, String] :aws_account_id
|
4635
|
+
# The ID of the Amazon QuickSight account that you want to disconnect
|
4636
|
+
# from a Amazon Q Business application.
|
4637
|
+
#
|
4638
|
+
# @option params [String] :namespace
|
4639
|
+
# The Amazon QuickSight namespace that you want to delete a linked
|
4640
|
+
# Amazon Q Business application from. If this field is left blank, the
|
4641
|
+
# Amazon Q Business application is deleted from the default namespace.
|
4642
|
+
# Currently, the default namespace is the only valid value for this
|
4643
|
+
# parameter.
|
4644
|
+
#
|
4645
|
+
# @return [Types::DeleteDefaultQBusinessApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4646
|
+
#
|
4647
|
+
# * {Types::DeleteDefaultQBusinessApplicationResponse#request_id #request_id} => String
|
4648
|
+
# * {Types::DeleteDefaultQBusinessApplicationResponse#status #status} => Integer
|
4649
|
+
#
|
4650
|
+
# @example Request syntax with placeholder values
|
4651
|
+
#
|
4652
|
+
# resp = client.delete_default_q_business_application({
|
4653
|
+
# aws_account_id: "AwsAccountId", # required
|
4654
|
+
# namespace: "Namespace",
|
4655
|
+
# })
|
4656
|
+
#
|
4657
|
+
# @example Response structure
|
4658
|
+
#
|
4659
|
+
# resp.request_id #=> String
|
4660
|
+
# resp.status #=> Integer
|
4661
|
+
#
|
4662
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteDefaultQBusinessApplication AWS API Documentation
|
4663
|
+
#
|
4664
|
+
# @overload delete_default_q_business_application(params = {})
|
4665
|
+
# @param [Hash] params ({})
|
4666
|
+
def delete_default_q_business_application(params = {}, options = {})
|
4667
|
+
req = build_request(:delete_default_q_business_application, params)
|
4668
|
+
req.send_request(options)
|
4669
|
+
end
|
4670
|
+
|
4620
4671
|
# Deletes an empty folder.
|
4621
4672
|
#
|
4622
4673
|
# @option params [required, String] :aws_account_id
|
@@ -4849,7 +4900,7 @@ module Aws::QuickSight
|
|
4849
4900
|
#
|
4850
4901
|
# resp = client.delete_identity_propagation_config({
|
4851
4902
|
# aws_account_id: "AwsAccountId", # required
|
4852
|
-
# service: "REDSHIFT", # required, accepts REDSHIFT
|
4903
|
+
# service: "REDSHIFT", # required, accepts REDSHIFT, QBUSINESS
|
4853
4904
|
# })
|
4854
4905
|
#
|
4855
4906
|
# @example Response structure
|
@@ -7084,6 +7135,9 @@ module Aws::QuickSight
|
|
7084
7135
|
# resp.data_set.dataset_parameters[0].date_time_dataset_parameter.time_granularity #=> String, one of "YEAR", "QUARTER", "MONTH", "WEEK", "DAY", "HOUR", "MINUTE", "SECOND", "MILLISECOND"
|
7085
7136
|
# resp.data_set.dataset_parameters[0].date_time_dataset_parameter.default_values.static_values #=> Array
|
7086
7137
|
# resp.data_set.dataset_parameters[0].date_time_dataset_parameter.default_values.static_values[0] #=> Time
|
7138
|
+
# resp.data_set.performance_configuration.unique_keys #=> Array
|
7139
|
+
# resp.data_set.performance_configuration.unique_keys[0].column_names #=> Array
|
7140
|
+
# resp.data_set.performance_configuration.unique_keys[0].column_names[0] #=> String
|
7087
7141
|
# resp.request_id #=> String
|
7088
7142
|
# resp.status #=> Integer
|
7089
7143
|
#
|
@@ -7438,6 +7492,47 @@ module Aws::QuickSight
|
|
7438
7492
|
req.send_request(options)
|
7439
7493
|
end
|
7440
7494
|
|
7495
|
+
# Describes a Amazon Q Business application that is linked to an Amazon
|
7496
|
+
# QuickSight account.
|
7497
|
+
#
|
7498
|
+
# @option params [required, String] :aws_account_id
|
7499
|
+
# The ID of the Amazon QuickSight account that is linked to the Amazon Q
|
7500
|
+
# Business application that you want described.
|
7501
|
+
#
|
7502
|
+
# @option params [String] :namespace
|
7503
|
+
# The Amazon QuickSight namespace that contains the linked Amazon Q
|
7504
|
+
# Business application. If this field is left blank, the default
|
7505
|
+
# namespace is used. Currently, the default namespace is the only valid
|
7506
|
+
# value for this parameter.
|
7507
|
+
#
|
7508
|
+
# @return [Types::DescribeDefaultQBusinessApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7509
|
+
#
|
7510
|
+
# * {Types::DescribeDefaultQBusinessApplicationResponse#request_id #request_id} => String
|
7511
|
+
# * {Types::DescribeDefaultQBusinessApplicationResponse#status #status} => Integer
|
7512
|
+
# * {Types::DescribeDefaultQBusinessApplicationResponse#application_id #application_id} => String
|
7513
|
+
#
|
7514
|
+
# @example Request syntax with placeholder values
|
7515
|
+
#
|
7516
|
+
# resp = client.describe_default_q_business_application({
|
7517
|
+
# aws_account_id: "AwsAccountId", # required
|
7518
|
+
# namespace: "Namespace",
|
7519
|
+
# })
|
7520
|
+
#
|
7521
|
+
# @example Response structure
|
7522
|
+
#
|
7523
|
+
# resp.request_id #=> String
|
7524
|
+
# resp.status #=> Integer
|
7525
|
+
# resp.application_id #=> String
|
7526
|
+
#
|
7527
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDefaultQBusinessApplication AWS API Documentation
|
7528
|
+
#
|
7529
|
+
# @overload describe_default_q_business_application(params = {})
|
7530
|
+
# @param [Hash] params ({})
|
7531
|
+
def describe_default_q_business_application(params = {}, options = {})
|
7532
|
+
req = build_request(:describe_default_q_business_application, params)
|
7533
|
+
req.send_request(options)
|
7534
|
+
end
|
7535
|
+
|
7441
7536
|
# Describes a folder.
|
7442
7537
|
#
|
7443
7538
|
# @option params [required, String] :aws_account_id
|
@@ -7963,6 +8058,39 @@ module Aws::QuickSight
|
|
7963
8058
|
req.send_request(options)
|
7964
8059
|
end
|
7965
8060
|
|
8061
|
+
# Describes the state of a Amazon QuickSight Q Search configuration.
|
8062
|
+
#
|
8063
|
+
# @option params [required, String] :aws_account_id
|
8064
|
+
# The ID of the Amazon Web Services account that contains the Amazon
|
8065
|
+
# QuickSight Q Search configuration that the user wants described.
|
8066
|
+
#
|
8067
|
+
# @return [Types::DescribeQuickSightQSearchConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8068
|
+
#
|
8069
|
+
# * {Types::DescribeQuickSightQSearchConfigurationResponse#q_search_status #q_search_status} => String
|
8070
|
+
# * {Types::DescribeQuickSightQSearchConfigurationResponse#request_id #request_id} => String
|
8071
|
+
# * {Types::DescribeQuickSightQSearchConfigurationResponse#status #status} => Integer
|
8072
|
+
#
|
8073
|
+
# @example Request syntax with placeholder values
|
8074
|
+
#
|
8075
|
+
# resp = client.describe_quick_sight_q_search_configuration({
|
8076
|
+
# aws_account_id: "AwsAccountId", # required
|
8077
|
+
# })
|
8078
|
+
#
|
8079
|
+
# @example Response structure
|
8080
|
+
#
|
8081
|
+
# resp.q_search_status #=> String, one of "ENABLED", "DISABLED"
|
8082
|
+
# resp.request_id #=> String
|
8083
|
+
# resp.status #=> Integer
|
8084
|
+
#
|
8085
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeQuickSightQSearchConfiguration AWS API Documentation
|
8086
|
+
#
|
8087
|
+
# @overload describe_quick_sight_q_search_configuration(params = {})
|
8088
|
+
# @param [Hash] params ({})
|
8089
|
+
def describe_quick_sight_q_search_configuration(params = {}, options = {})
|
8090
|
+
req = build_request(:describe_quick_sight_q_search_configuration, params)
|
8091
|
+
req.send_request(options)
|
8092
|
+
end
|
8093
|
+
|
7966
8094
|
# Provides a summary of a refresh schedule.
|
7967
8095
|
#
|
7968
8096
|
# @option params [required, String] :aws_account_id
|
@@ -9230,6 +9358,116 @@ module Aws::QuickSight
|
|
9230
9358
|
req.send_request(options)
|
9231
9359
|
end
|
9232
9360
|
|
9361
|
+
# Generates an embed URL that you can use to embed an Amazon QuickSight
|
9362
|
+
# experience in your website. This action can be used for any type of
|
9363
|
+
# user that is registered in an Amazon QuickSight account that uses IAM
|
9364
|
+
# Identity Center for authentication. This API requires
|
9365
|
+
# [identity-enhanced IAM Role sessions][1] for the authenticated user
|
9366
|
+
# that the API call is being made for.
|
9367
|
+
#
|
9368
|
+
# This API uses [trusted identity propagation][2] to ensure that an end
|
9369
|
+
# user is authenticated and receives the embed URL that is specific to
|
9370
|
+
# that user. The IAM Identity Center application that the user has
|
9371
|
+
# logged into needs to have [trusted Identity Propagation enabled for
|
9372
|
+
# Amazon QuickSight][3] with the scope value set to `quicksight:read`.
|
9373
|
+
# Before you use this action, make sure that you have configured the
|
9374
|
+
# relevant Amazon QuickSight resource and permissions.
|
9375
|
+
#
|
9376
|
+
#
|
9377
|
+
#
|
9378
|
+
# [1]: https://docs.aws.amazon.com/singlesignon/latest/userguide/trustedidentitypropagation-overview.html#types-identity-enhanced-iam-role-sessions
|
9379
|
+
# [2]: https://docs.aws.amazon.com/singlesignon/latest/userguide/trustedidentitypropagation.html
|
9380
|
+
# [3]: https://docs.aws.amazon.com/singlesignon/latest/userguide/trustedidentitypropagation-using-customermanagedapps-specify-trusted-apps.html
|
9381
|
+
#
|
9382
|
+
# @option params [required, String] :aws_account_id
|
9383
|
+
# The ID of the Amazon Web Services registered user.
|
9384
|
+
#
|
9385
|
+
# @option params [Integer] :session_lifetime_in_minutes
|
9386
|
+
# The validity of the session in minutes.
|
9387
|
+
#
|
9388
|
+
# @option params [required, Types::RegisteredUserEmbeddingExperienceConfiguration] :experience_configuration
|
9389
|
+
# The type of experience you want to embed. For registered users, you
|
9390
|
+
# can embed Amazon QuickSight dashboards or the Amazon QuickSight
|
9391
|
+
# console.
|
9392
|
+
#
|
9393
|
+
# <note markdown="1"> Exactly one of the experience configurations is required. You can
|
9394
|
+
# choose `Dashboard` or `QuickSightConsole`. You cannot choose more than
|
9395
|
+
# one experience configuration.
|
9396
|
+
#
|
9397
|
+
# </note>
|
9398
|
+
#
|
9399
|
+
# @option params [Array<String>] :allowed_domains
|
9400
|
+
# A list of domains to be allowed to generate the embed URL.
|
9401
|
+
#
|
9402
|
+
# @return [Types::GenerateEmbedUrlForRegisteredUserWithIdentityResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9403
|
+
#
|
9404
|
+
# * {Types::GenerateEmbedUrlForRegisteredUserWithIdentityResponse#embed_url #embed_url} => String
|
9405
|
+
# * {Types::GenerateEmbedUrlForRegisteredUserWithIdentityResponse#status #status} => Integer
|
9406
|
+
# * {Types::GenerateEmbedUrlForRegisteredUserWithIdentityResponse#request_id #request_id} => String
|
9407
|
+
#
|
9408
|
+
# @example Request syntax with placeholder values
|
9409
|
+
#
|
9410
|
+
# resp = client.generate_embed_url_for_registered_user_with_identity({
|
9411
|
+
# aws_account_id: "AwsAccountId", # required
|
9412
|
+
# session_lifetime_in_minutes: 1,
|
9413
|
+
# experience_configuration: { # required
|
9414
|
+
# dashboard: {
|
9415
|
+
# initial_dashboard_id: "ShortRestrictiveResourceId", # required
|
9416
|
+
# feature_configurations: {
|
9417
|
+
# state_persistence: {
|
9418
|
+
# enabled: false, # required
|
9419
|
+
# },
|
9420
|
+
# shared_view: {
|
9421
|
+
# enabled: false, # required
|
9422
|
+
# },
|
9423
|
+
# bookmarks: {
|
9424
|
+
# enabled: false, # required
|
9425
|
+
# },
|
9426
|
+
# },
|
9427
|
+
# },
|
9428
|
+
# quick_sight_console: {
|
9429
|
+
# initial_path: "EntryPath",
|
9430
|
+
# feature_configurations: {
|
9431
|
+
# state_persistence: {
|
9432
|
+
# enabled: false, # required
|
9433
|
+
# },
|
9434
|
+
# shared_view: {
|
9435
|
+
# enabled: false, # required
|
9436
|
+
# },
|
9437
|
+
# },
|
9438
|
+
# },
|
9439
|
+
# q_search_bar: {
|
9440
|
+
# initial_topic_id: "RestrictiveResourceId",
|
9441
|
+
# },
|
9442
|
+
# dashboard_visual: {
|
9443
|
+
# initial_dashboard_visual_id: { # required
|
9444
|
+
# dashboard_id: "ShortRestrictiveResourceId", # required
|
9445
|
+
# sheet_id: "ShortRestrictiveResourceId", # required
|
9446
|
+
# visual_id: "ShortRestrictiveResourceId", # required
|
9447
|
+
# },
|
9448
|
+
# },
|
9449
|
+
# generative_qn_a: {
|
9450
|
+
# initial_topic_id: "RestrictiveResourceId",
|
9451
|
+
# },
|
9452
|
+
# },
|
9453
|
+
# allowed_domains: ["String"],
|
9454
|
+
# })
|
9455
|
+
#
|
9456
|
+
# @example Response structure
|
9457
|
+
#
|
9458
|
+
# resp.embed_url #=> String
|
9459
|
+
# resp.status #=> Integer
|
9460
|
+
# resp.request_id #=> String
|
9461
|
+
#
|
9462
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GenerateEmbedUrlForRegisteredUserWithIdentity AWS API Documentation
|
9463
|
+
#
|
9464
|
+
# @overload generate_embed_url_for_registered_user_with_identity(params = {})
|
9465
|
+
# @param [Hash] params ({})
|
9466
|
+
def generate_embed_url_for_registered_user_with_identity(params = {}, options = {})
|
9467
|
+
req = build_request(:generate_embed_url_for_registered_user_with_identity, params)
|
9468
|
+
req.send_request(options)
|
9469
|
+
end
|
9470
|
+
|
9233
9471
|
# Generates a temporary session URL and authorization code(bearer token)
|
9234
9472
|
# that you can use to embed an Amazon QuickSight read-only dashboard in
|
9235
9473
|
# your website or application. Before you use this command, make sure
|
@@ -10545,7 +10783,7 @@ module Aws::QuickSight
|
|
10545
10783
|
# @example Response structure
|
10546
10784
|
#
|
10547
10785
|
# resp.services #=> Array
|
10548
|
-
# resp.services[0].service #=> String, one of "REDSHIFT"
|
10786
|
+
# resp.services[0].service #=> String, one of "REDSHIFT", "QBUSINESS"
|
10549
10787
|
# resp.services[0].authorized_targets #=> Array
|
10550
10788
|
# resp.services[0].authorized_targets[0] #=> String
|
10551
10789
|
# resp.next_token #=> String
|
@@ -11919,6 +12157,91 @@ module Aws::QuickSight
|
|
11919
12157
|
req.send_request(options)
|
11920
12158
|
end
|
11921
12159
|
|
12160
|
+
# Predicts existing visuals or generates new visuals to answer a given
|
12161
|
+
# query.
|
12162
|
+
#
|
12163
|
+
# @option params [required, String] :aws_account_id
|
12164
|
+
# The ID of the Amazon Web Services account that the user wants to
|
12165
|
+
# execute Predict QA results in.
|
12166
|
+
#
|
12167
|
+
# @option params [required, String] :query_text
|
12168
|
+
# The query text to be used to predict QA results.
|
12169
|
+
#
|
12170
|
+
# @option params [String] :include_quick_sight_q_index
|
12171
|
+
# Indicates whether Q indicies are included or excluded.
|
12172
|
+
#
|
12173
|
+
# @option params [String] :include_generated_answer
|
12174
|
+
# Indicates whether generated answers are included or excluded.
|
12175
|
+
#
|
12176
|
+
# @option params [Integer] :max_topics_to_consider
|
12177
|
+
# The number of maximum topics to be considered to predict QA results.
|
12178
|
+
#
|
12179
|
+
# @return [Types::PredictQAResultsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12180
|
+
#
|
12181
|
+
# * {Types::PredictQAResultsResponse#primary_result #primary_result} => Types::QAResult
|
12182
|
+
# * {Types::PredictQAResultsResponse#additional_results #additional_results} => Array<Types::QAResult>
|
12183
|
+
# * {Types::PredictQAResultsResponse#request_id #request_id} => String
|
12184
|
+
# * {Types::PredictQAResultsResponse#status #status} => Integer
|
12185
|
+
#
|
12186
|
+
# @example Request syntax with placeholder values
|
12187
|
+
#
|
12188
|
+
# resp = client.predict_qa_results({
|
12189
|
+
# aws_account_id: "AwsAccountId", # required
|
12190
|
+
# query_text: "QAQueryText", # required
|
12191
|
+
# include_quick_sight_q_index: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
12192
|
+
# include_generated_answer: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
12193
|
+
# max_topics_to_consider: 1,
|
12194
|
+
# })
|
12195
|
+
#
|
12196
|
+
# @example Response structure
|
12197
|
+
#
|
12198
|
+
# resp.primary_result.result_type #=> String, one of "DASHBOARD_VISUAL", "GENERATED_ANSWER", "NO_ANSWER"
|
12199
|
+
# resp.primary_result.dashboard_visual.dashboard_id #=> String
|
12200
|
+
# resp.primary_result.dashboard_visual.dashboard_name #=> String
|
12201
|
+
# resp.primary_result.dashboard_visual.sheet_id #=> String
|
12202
|
+
# resp.primary_result.dashboard_visual.sheet_name #=> String
|
12203
|
+
# resp.primary_result.dashboard_visual.visual_id #=> String
|
12204
|
+
# resp.primary_result.dashboard_visual.visual_title #=> String
|
12205
|
+
# resp.primary_result.dashboard_visual.visual_subtitle #=> String
|
12206
|
+
# resp.primary_result.dashboard_visual.dashboard_url #=> String
|
12207
|
+
# resp.primary_result.generated_answer.question_text #=> String
|
12208
|
+
# resp.primary_result.generated_answer.answer_status #=> String, one of "ANSWER_GENERATED", "ANSWER_RETRIEVED", "ANSWER_DOWNGRADE"
|
12209
|
+
# resp.primary_result.generated_answer.topic_id #=> String
|
12210
|
+
# resp.primary_result.generated_answer.topic_name #=> String
|
12211
|
+
# resp.primary_result.generated_answer.restatement #=> String
|
12212
|
+
# resp.primary_result.generated_answer.question_id #=> String
|
12213
|
+
# resp.primary_result.generated_answer.answer_id #=> String
|
12214
|
+
# resp.primary_result.generated_answer.question_url #=> String
|
12215
|
+
# resp.additional_results #=> Array
|
12216
|
+
# resp.additional_results[0].result_type #=> String, one of "DASHBOARD_VISUAL", "GENERATED_ANSWER", "NO_ANSWER"
|
12217
|
+
# resp.additional_results[0].dashboard_visual.dashboard_id #=> String
|
12218
|
+
# resp.additional_results[0].dashboard_visual.dashboard_name #=> String
|
12219
|
+
# resp.additional_results[0].dashboard_visual.sheet_id #=> String
|
12220
|
+
# resp.additional_results[0].dashboard_visual.sheet_name #=> String
|
12221
|
+
# resp.additional_results[0].dashboard_visual.visual_id #=> String
|
12222
|
+
# resp.additional_results[0].dashboard_visual.visual_title #=> String
|
12223
|
+
# resp.additional_results[0].dashboard_visual.visual_subtitle #=> String
|
12224
|
+
# resp.additional_results[0].dashboard_visual.dashboard_url #=> String
|
12225
|
+
# resp.additional_results[0].generated_answer.question_text #=> String
|
12226
|
+
# resp.additional_results[0].generated_answer.answer_status #=> String, one of "ANSWER_GENERATED", "ANSWER_RETRIEVED", "ANSWER_DOWNGRADE"
|
12227
|
+
# resp.additional_results[0].generated_answer.topic_id #=> String
|
12228
|
+
# resp.additional_results[0].generated_answer.topic_name #=> String
|
12229
|
+
# resp.additional_results[0].generated_answer.restatement #=> String
|
12230
|
+
# resp.additional_results[0].generated_answer.question_id #=> String
|
12231
|
+
# resp.additional_results[0].generated_answer.answer_id #=> String
|
12232
|
+
# resp.additional_results[0].generated_answer.question_url #=> String
|
12233
|
+
# resp.request_id #=> String
|
12234
|
+
# resp.status #=> Integer
|
12235
|
+
#
|
12236
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PredictQAResults AWS API Documentation
|
12237
|
+
#
|
12238
|
+
# @overload predict_qa_results(params = {})
|
12239
|
+
# @param [Hash] params ({})
|
12240
|
+
def predict_qa_results(params = {}, options = {})
|
12241
|
+
req = build_request(:predict_qa_results, params)
|
12242
|
+
req.send_request(options)
|
12243
|
+
end
|
12244
|
+
|
11922
12245
|
# Creates or updates the dataset refresh properties for the dataset.
|
11923
12246
|
#
|
11924
12247
|
# @option params [required, String] :aws_account_id
|
@@ -13920,6 +14243,43 @@ module Aws::QuickSight
|
|
13920
14243
|
req.send_request(options)
|
13921
14244
|
end
|
13922
14245
|
|
14246
|
+
# Updates an Amazon QuickSight application with a token exchange grant.
|
14247
|
+
# This operation only supports Amazon QuickSight applications that are
|
14248
|
+
# registered with IAM Identity Center.
|
14249
|
+
#
|
14250
|
+
# @option params [required, String] :aws_account_id
|
14251
|
+
# The ID of the Amazon Web Services account to be updated with a token
|
14252
|
+
# exchange grant.
|
14253
|
+
#
|
14254
|
+
# @option params [required, String] :namespace
|
14255
|
+
# The namespace of the Amazon QuickSight application.
|
14256
|
+
#
|
14257
|
+
# @return [Types::UpdateApplicationWithTokenExchangeGrantResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14258
|
+
#
|
14259
|
+
# * {Types::UpdateApplicationWithTokenExchangeGrantResponse#status #status} => Integer
|
14260
|
+
# * {Types::UpdateApplicationWithTokenExchangeGrantResponse#request_id #request_id} => String
|
14261
|
+
#
|
14262
|
+
# @example Request syntax with placeholder values
|
14263
|
+
#
|
14264
|
+
# resp = client.update_application_with_token_exchange_grant({
|
14265
|
+
# aws_account_id: "AwsAccountId", # required
|
14266
|
+
# namespace: "Namespace", # required
|
14267
|
+
# })
|
14268
|
+
#
|
14269
|
+
# @example Response structure
|
14270
|
+
#
|
14271
|
+
# resp.status #=> Integer
|
14272
|
+
# resp.request_id #=> String
|
14273
|
+
#
|
14274
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateApplicationWithTokenExchangeGrant AWS API Documentation
|
14275
|
+
#
|
14276
|
+
# @overload update_application_with_token_exchange_grant(params = {})
|
14277
|
+
# @param [Hash] params ({})
|
14278
|
+
def update_application_with_token_exchange_grant(params = {}, options = {})
|
14279
|
+
req = build_request(:update_application_with_token_exchange_grant, params)
|
14280
|
+
req.send_request(options)
|
14281
|
+
end
|
14282
|
+
|
13923
14283
|
# Updates a brand.
|
13924
14284
|
#
|
13925
14285
|
# @option params [required, String] :aws_account_id
|
@@ -14589,6 +14949,10 @@ module Aws::QuickSight
|
|
14589
14949
|
# @option params [Array<Types::DatasetParameter>] :dataset_parameters
|
14590
14950
|
# The parameter declarations of the dataset.
|
14591
14951
|
#
|
14952
|
+
# @option params [Types::PerformanceConfiguration] :performance_configuration
|
14953
|
+
# The configuration for the performance optimization of the dataset that
|
14954
|
+
# contains a `UniqueKey` configuration.
|
14955
|
+
#
|
14592
14956
|
# @return [Types::UpdateDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14593
14957
|
#
|
14594
14958
|
# * {Types::UpdateDataSetResponse#arn #arn} => String
|
@@ -14809,6 +15173,13 @@ module Aws::QuickSight
|
|
14809
15173
|
# },
|
14810
15174
|
# },
|
14811
15175
|
# ],
|
15176
|
+
# performance_configuration: {
|
15177
|
+
# unique_keys: [
|
15178
|
+
# {
|
15179
|
+
# column_names: ["ColumnName"], # required
|
15180
|
+
# },
|
15181
|
+
# ],
|
15182
|
+
# },
|
14812
15183
|
# })
|
14813
15184
|
#
|
14814
15185
|
# @example Response structure
|
@@ -15325,6 +15696,49 @@ module Aws::QuickSight
|
|
15325
15696
|
req.send_request(options)
|
15326
15697
|
end
|
15327
15698
|
|
15699
|
+
# Updates a Amazon Q Business application that is linked to a Amazon
|
15700
|
+
# QuickSight account.
|
15701
|
+
#
|
15702
|
+
# @option params [required, String] :aws_account_id
|
15703
|
+
# The ID of the Amazon QuickSight account that is connected to the
|
15704
|
+
# Amazon Q Business application that you want to update.
|
15705
|
+
#
|
15706
|
+
# @option params [String] :namespace
|
15707
|
+
# The Amazon QuickSight namespace that contains the linked Amazon Q
|
15708
|
+
# Business application. If this field is left blank, the default
|
15709
|
+
# namespace is used. Currently, the default namespace is the only valid
|
15710
|
+
# value for this parameter.
|
15711
|
+
#
|
15712
|
+
# @option params [required, String] :application_id
|
15713
|
+
# The ID of the Amazon Q Business application that you want to update.
|
15714
|
+
#
|
15715
|
+
# @return [Types::UpdateDefaultQBusinessApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
15716
|
+
#
|
15717
|
+
# * {Types::UpdateDefaultQBusinessApplicationResponse#request_id #request_id} => String
|
15718
|
+
# * {Types::UpdateDefaultQBusinessApplicationResponse#status #status} => Integer
|
15719
|
+
#
|
15720
|
+
# @example Request syntax with placeholder values
|
15721
|
+
#
|
15722
|
+
# resp = client.update_default_q_business_application({
|
15723
|
+
# aws_account_id: "AwsAccountId", # required
|
15724
|
+
# namespace: "Namespace",
|
15725
|
+
# application_id: "LimitedString", # required
|
15726
|
+
# })
|
15727
|
+
#
|
15728
|
+
# @example Response structure
|
15729
|
+
#
|
15730
|
+
# resp.request_id #=> String
|
15731
|
+
# resp.status #=> Integer
|
15732
|
+
#
|
15733
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDefaultQBusinessApplication AWS API Documentation
|
15734
|
+
#
|
15735
|
+
# @overload update_default_q_business_application(params = {})
|
15736
|
+
# @param [Hash] params ({})
|
15737
|
+
def update_default_q_business_application(params = {}, options = {})
|
15738
|
+
req = build_request(:update_default_q_business_application, params)
|
15739
|
+
req.send_request(options)
|
15740
|
+
end
|
15741
|
+
|
15328
15742
|
# Updates the name of a folder.
|
15329
15743
|
#
|
15330
15744
|
# @option params [required, String] :aws_account_id
|
@@ -15587,7 +16001,7 @@ module Aws::QuickSight
|
|
15587
16001
|
#
|
15588
16002
|
# resp = client.update_identity_propagation_config({
|
15589
16003
|
# aws_account_id: "AwsAccountId", # required
|
15590
|
-
# service: "REDSHIFT", # required, accepts REDSHIFT
|
16004
|
+
# service: "REDSHIFT", # required, accepts REDSHIFT, QBUSINESS
|
15591
16005
|
# authorized_targets: ["String"],
|
15592
16006
|
# })
|
15593
16007
|
#
|
@@ -15805,6 +16219,44 @@ module Aws::QuickSight
|
|
15805
16219
|
req.send_request(options)
|
15806
16220
|
end
|
15807
16221
|
|
16222
|
+
# Updates the state of a Amazon QuickSight Q Search configuration.
|
16223
|
+
#
|
16224
|
+
# @option params [required, String] :aws_account_id
|
16225
|
+
# The ID of the Amazon Web Services account that contains the Amazon
|
16226
|
+
# QuickSight Q Search configuration that you want to update.
|
16227
|
+
#
|
16228
|
+
# @option params [required, String] :q_search_status
|
16229
|
+
# The status of the Amazon QuickSight Q Search configuration that the
|
16230
|
+
# user wants to update.
|
16231
|
+
#
|
16232
|
+
# @return [Types::UpdateQuickSightQSearchConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16233
|
+
#
|
16234
|
+
# * {Types::UpdateQuickSightQSearchConfigurationResponse#q_search_status #q_search_status} => String
|
16235
|
+
# * {Types::UpdateQuickSightQSearchConfigurationResponse#request_id #request_id} => String
|
16236
|
+
# * {Types::UpdateQuickSightQSearchConfigurationResponse#status #status} => Integer
|
16237
|
+
#
|
16238
|
+
# @example Request syntax with placeholder values
|
16239
|
+
#
|
16240
|
+
# resp = client.update_quick_sight_q_search_configuration({
|
16241
|
+
# aws_account_id: "AwsAccountId", # required
|
16242
|
+
# q_search_status: "ENABLED", # required, accepts ENABLED, DISABLED
|
16243
|
+
# })
|
16244
|
+
#
|
16245
|
+
# @example Response structure
|
16246
|
+
#
|
16247
|
+
# resp.q_search_status #=> String, one of "ENABLED", "DISABLED"
|
16248
|
+
# resp.request_id #=> String
|
16249
|
+
# resp.status #=> Integer
|
16250
|
+
#
|
16251
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateQuickSightQSearchConfiguration AWS API Documentation
|
16252
|
+
#
|
16253
|
+
# @overload update_quick_sight_q_search_configuration(params = {})
|
16254
|
+
# @param [Hash] params ({})
|
16255
|
+
def update_quick_sight_q_search_configuration(params = {}, options = {})
|
16256
|
+
req = build_request(:update_quick_sight_q_search_configuration, params)
|
16257
|
+
req.send_request(options)
|
16258
|
+
end
|
16259
|
+
|
15808
16260
|
# Updates a refresh schedule for a dataset.
|
15809
16261
|
#
|
15810
16262
|
# @option params [required, String] :data_set_id
|
@@ -17063,7 +17515,7 @@ module Aws::QuickSight
|
|
17063
17515
|
tracer: tracer
|
17064
17516
|
)
|
17065
17517
|
context[:gem_name] = 'aws-sdk-quicksight'
|
17066
|
-
context[:gem_version] = '1.
|
17518
|
+
context[:gem_version] = '1.140.0'
|
17067
17519
|
Seahorse::Client::Request.new(handlers, context)
|
17068
17520
|
end
|
17069
17521
|
|