aws-sdk-quicksight 1.117.0 → 1.118.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 +1338 -1
- data/lib/aws-sdk-quicksight/client_api.rb +327 -0
- data/lib/aws-sdk-quicksight/endpoints.rb +42 -0
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-quicksight/types.rb +907 -1
- data/lib/aws-sdk-quicksight.rb +2 -2
- data/sig/client.rbs +971 -60
- data/sig/types.rbs +248 -0
- metadata +2 -2
@@ -12,6 +12,34 @@ module Aws::QuickSight
|
|
12
12
|
# @api private
|
13
13
|
module Endpoints
|
14
14
|
|
15
|
+
class BatchCreateTopicReviewedAnswer
|
16
|
+
def self.build(context)
|
17
|
+
unless context.config.regional_endpoint
|
18
|
+
endpoint = context.config.endpoint.to_s
|
19
|
+
end
|
20
|
+
Aws::QuickSight::EndpointParameters.new(
|
21
|
+
region: context.config.region,
|
22
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
23
|
+
use_fips: context.config.use_fips_endpoint,
|
24
|
+
endpoint: endpoint,
|
25
|
+
)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
class BatchDeleteTopicReviewedAnswer
|
30
|
+
def self.build(context)
|
31
|
+
unless context.config.regional_endpoint
|
32
|
+
endpoint = context.config.endpoint.to_s
|
33
|
+
end
|
34
|
+
Aws::QuickSight::EndpointParameters.new(
|
35
|
+
region: context.config.region,
|
36
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
37
|
+
use_fips: context.config.use_fips_endpoint,
|
38
|
+
endpoint: endpoint,
|
39
|
+
)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
15
43
|
class CancelIngestion
|
16
44
|
def self.build(context)
|
17
45
|
unless context.config.regional_endpoint
|
@@ -1720,6 +1748,20 @@ module Aws::QuickSight
|
|
1720
1748
|
end
|
1721
1749
|
end
|
1722
1750
|
|
1751
|
+
class ListTopicReviewedAnswers
|
1752
|
+
def self.build(context)
|
1753
|
+
unless context.config.regional_endpoint
|
1754
|
+
endpoint = context.config.endpoint.to_s
|
1755
|
+
end
|
1756
|
+
Aws::QuickSight::EndpointParameters.new(
|
1757
|
+
region: context.config.region,
|
1758
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1759
|
+
use_fips: context.config.use_fips_endpoint,
|
1760
|
+
endpoint: endpoint,
|
1761
|
+
)
|
1762
|
+
end
|
1763
|
+
end
|
1764
|
+
|
1723
1765
|
class ListTopics
|
1724
1766
|
def self.build(context)
|
1725
1767
|
unless context.config.regional_endpoint
|
@@ -58,6 +58,10 @@ module Aws::QuickSight
|
|
58
58
|
|
59
59
|
def parameters_for_operation(context)
|
60
60
|
case context.operation_name
|
61
|
+
when :batch_create_topic_reviewed_answer
|
62
|
+
Aws::QuickSight::Endpoints::BatchCreateTopicReviewedAnswer.build(context)
|
63
|
+
when :batch_delete_topic_reviewed_answer
|
64
|
+
Aws::QuickSight::Endpoints::BatchDeleteTopicReviewedAnswer.build(context)
|
61
65
|
when :cancel_ingestion
|
62
66
|
Aws::QuickSight::Endpoints::CancelIngestion.build(context)
|
63
67
|
when :create_account_customization
|
@@ -302,6 +306,8 @@ module Aws::QuickSight
|
|
302
306
|
Aws::QuickSight::Endpoints::ListThemes.build(context)
|
303
307
|
when :list_topic_refresh_schedules
|
304
308
|
Aws::QuickSight::Endpoints::ListTopicRefreshSchedules.build(context)
|
309
|
+
when :list_topic_reviewed_answers
|
310
|
+
Aws::QuickSight::Endpoints::ListTopicReviewedAnswers.build(context)
|
305
311
|
when :list_topics
|
306
312
|
Aws::QuickSight::Endpoints::ListTopics.build(context)
|
307
313
|
when :list_user_groups
|