aws-sdk-quicksight 1.17.1 → 1.22.1
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 +5 -5
- data/lib/aws-sdk-quicksight.rb +7 -4
- data/lib/aws-sdk-quicksight/client.rb +94 -18
- data/lib/aws-sdk-quicksight/client_api.rb +4 -0
- data/lib/aws-sdk-quicksight/errors.rb +39 -17
- data/lib/aws-sdk-quicksight/resource.rb +1 -0
- data/lib/aws-sdk-quicksight/types.rb +11 -6
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f9bbed480c0d78bf8be1fcdae02a2dd12057825dbb2cbf5d34770380d32a5f43
|
4
|
+
data.tar.gz: 0ffa088aec25929c8aea481801034ee99d69502e786247610de87d863a9f30f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 518d58540d4799ea6a022d660038d65ac4011f13149d15f52825c495409eba971b7f7a28d6fea2b207756c2e459604d7a87f233e798a25281e849ac067843f67
|
7
|
+
data.tar.gz: 85a21b3d36e7db42f549cd38d5be576aae87a8bc5356c1f6c2434d379b7f71254399c81b9c267afcb2c04043a99e2df2c9624b80f9dbb918898503cfbdbc76c8
|
data/lib/aws-sdk-quicksight.rb
CHANGED
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-quicksight/customizations'
|
|
24
24
|
# methods each accept a hash of request parameters and return a response
|
25
25
|
# structure.
|
26
26
|
#
|
27
|
+
# quick_sight = Aws::QuickSight::Client.new
|
28
|
+
# resp = quick_sight.cancel_ingestion(params)
|
29
|
+
#
|
27
30
|
# See {Client} for more information.
|
28
31
|
#
|
29
32
|
# # Errors
|
30
33
|
#
|
31
|
-
# Errors returned from Amazon QuickSight
|
32
|
-
# extend {Errors::ServiceError}.
|
34
|
+
# Errors returned from Amazon QuickSight are defined in the
|
35
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
36
|
#
|
34
37
|
# begin
|
35
38
|
# # do stuff
|
36
39
|
# rescue Aws::QuickSight::Errors::ServiceError
|
37
|
-
# # rescues all
|
40
|
+
# # rescues all Amazon QuickSight API errors
|
38
41
|
# end
|
39
42
|
#
|
40
43
|
# See {Errors} for more information.
|
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-quicksight/customizations'
|
|
42
45
|
# @service
|
43
46
|
module Aws::QuickSight
|
44
47
|
|
45
|
-
GEM_VERSION = '1.
|
48
|
+
GEM_VERSION = '1.22.1'
|
46
49
|
|
47
50
|
end
|
@@ -24,12 +24,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
24
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
25
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
26
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
27
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
28
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
29
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
30
|
|
30
31
|
Aws::Plugins::GlobalConfiguration.add_identifier(:quicksight)
|
31
32
|
|
32
33
|
module Aws::QuickSight
|
34
|
+
# An API client for QuickSight. To construct a client, you need to configure a `:region` and `:credentials`.
|
35
|
+
#
|
36
|
+
# client = Aws::QuickSight::Client.new(
|
37
|
+
# region: region_name,
|
38
|
+
# credentials: credentials,
|
39
|
+
# # ...
|
40
|
+
# )
|
41
|
+
#
|
42
|
+
# For details on configuring region and credentials see
|
43
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
44
|
+
#
|
45
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
46
|
class Client < Seahorse::Client::Base
|
34
47
|
|
35
48
|
include Aws::ClientStubs
|
@@ -57,6 +70,7 @@ module Aws::QuickSight
|
|
57
70
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
71
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
72
|
add_plugin(Aws::Plugins::TransferEncoding)
|
73
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
74
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
75
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
62
76
|
|
@@ -93,7 +107,7 @@ module Aws::QuickSight
|
|
93
107
|
# @option options [required, String] :region
|
94
108
|
# The AWS region to connect to. The configured `:region` is
|
95
109
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
110
|
+
# a default `:region` is searched for in the following locations:
|
97
111
|
#
|
98
112
|
# * `Aws.config[:region]`
|
99
113
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +122,12 @@ module Aws::QuickSight
|
|
108
122
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
123
|
# the background every 60 secs (default). Defaults to `false`.
|
110
124
|
#
|
125
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
126
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
127
|
+
# until there is sufficent client side capacity to retry the request.
|
128
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
129
|
+
# not retry instead of sleeping.
|
130
|
+
#
|
111
131
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
132
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
133
|
# this client.
|
@@ -132,6 +152,10 @@ module Aws::QuickSight
|
|
132
152
|
# When `true`, an attempt is made to coerce request parameters into
|
133
153
|
# the required types.
|
134
154
|
#
|
155
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
156
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
157
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
158
|
+
#
|
135
159
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
160
|
# Set to true to disable SDK automatically adding host prefix
|
137
161
|
# to default service endpoint when available.
|
@@ -139,7 +163,7 @@ module Aws::QuickSight
|
|
139
163
|
# @option options [String] :endpoint
|
140
164
|
# The client endpoint is normally constructed from the `:region`
|
141
165
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
166
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
167
|
#
|
144
168
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
169
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +178,7 @@ module Aws::QuickSight
|
|
154
178
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
179
|
#
|
156
180
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
181
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
182
|
#
|
159
183
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
184
|
# The log formatter.
|
@@ -166,15 +190,29 @@ module Aws::QuickSight
|
|
166
190
|
# The Logger instance to send log messages to. If this option
|
167
191
|
# is not set, logging will be disabled.
|
168
192
|
#
|
193
|
+
# @option options [Integer] :max_attempts (3)
|
194
|
+
# An integer representing the maximum number attempts that will be made for
|
195
|
+
# a single request, including the initial attempt. For example,
|
196
|
+
# setting this value to 5 will result in a request being retried up to
|
197
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
198
|
+
#
|
169
199
|
# @option options [String] :profile ("default")
|
170
200
|
# Used when loading credentials from the shared credentials file
|
171
201
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
202
|
#
|
203
|
+
# @option options [Proc] :retry_backoff
|
204
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
205
|
+
# This option is only used in the `legacy` retry mode.
|
206
|
+
#
|
173
207
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
208
|
+
# The base delay in seconds used by the default backoff function. This option
|
209
|
+
# is only used in the `legacy` retry mode.
|
175
210
|
#
|
176
211
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
212
|
+
# A delay randomiser function used by the default backoff function.
|
213
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
214
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
215
|
+
# in the `legacy` retry mode.
|
178
216
|
#
|
179
217
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
218
|
#
|
@@ -182,11 +220,30 @@ module Aws::QuickSight
|
|
182
220
|
# The maximum number of times to retry failed requests. Only
|
183
221
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
222
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
223
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
224
|
+
# endpoint discovery, and errors from expired credentials.
|
225
|
+
# This option is only used in the `legacy` retry mode.
|
187
226
|
#
|
188
227
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
228
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
229
|
+
# used by the default backoff function. This option is only used in the
|
230
|
+
# `legacy` retry mode.
|
231
|
+
#
|
232
|
+
# @option options [String] :retry_mode ("legacy")
|
233
|
+
# Specifies which retry algorithm to use. Values are:
|
234
|
+
#
|
235
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
236
|
+
# no retry mode is provided.
|
237
|
+
#
|
238
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
239
|
+
# This includes support for retry quotas, which limit the number of
|
240
|
+
# unsuccessful retries a client can make.
|
241
|
+
#
|
242
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
243
|
+
# functionality of `standard` mode along with automatic client side
|
244
|
+
# throttling. This is a provisional mode that may change behavior
|
245
|
+
# in the future.
|
246
|
+
#
|
190
247
|
#
|
191
248
|
# @option options [String] :secret_access_key
|
192
249
|
#
|
@@ -209,16 +266,15 @@ module Aws::QuickSight
|
|
209
266
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
267
|
#
|
211
268
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
269
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
270
|
# `Timeout::Error`.
|
214
271
|
#
|
215
272
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
273
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
274
|
+
# safely be set per-request on the session.
|
219
275
|
#
|
220
276
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
277
|
+
# seconds a connection is allowed to sit idle before it is
|
222
278
|
# considered stale. Stale connections are closed and removed
|
223
279
|
# from the pool before making a request.
|
224
280
|
#
|
@@ -227,7 +283,7 @@ module Aws::QuickSight
|
|
227
283
|
# request body. This option has no effect unless the request has
|
228
284
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
285
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
286
|
+
# request on the session.
|
231
287
|
#
|
232
288
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
289
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1029,7 +1085,7 @@ module Aws::QuickSight
|
|
1029
1085
|
#
|
1030
1086
|
#
|
1031
1087
|
#
|
1032
|
-
# [1]: https://aws.
|
1088
|
+
# [1]: https://aws.amazon.com/premiumsupport/knowledge-center/iam-ec2-resource-tags/
|
1033
1089
|
#
|
1034
1090
|
# @option params [required, String] :data_set_id
|
1035
1091
|
# The ID of the dataset used in the ingestion.
|
@@ -1689,12 +1745,14 @@ module Aws::QuickSight
|
|
1689
1745
|
# resp.dashboard.name #=> String
|
1690
1746
|
# resp.dashboard.version.created_time #=> Time
|
1691
1747
|
# resp.dashboard.version.errors #=> Array
|
1692
|
-
# resp.dashboard.version.errors[0].type #=> String, one of "DATA_SET_NOT_FOUND", "INTERNAL_FAILURE", "PARAMETER_VALUE_INCOMPATIBLE", "PARAMETER_TYPE_INVALID", "PARAMETER_NOT_FOUND", "COLUMN_TYPE_MISMATCH", "COLUMN_GEOGRAPHIC_ROLE_MISMATCH", "COLUMN_REPLACEMENT_MISSING"
|
1748
|
+
# resp.dashboard.version.errors[0].type #=> String, one of "ACCESS_DENIED", "SOURCE_NOT_FOUND", "DATA_SET_NOT_FOUND", "INTERNAL_FAILURE", "PARAMETER_VALUE_INCOMPATIBLE", "PARAMETER_TYPE_INVALID", "PARAMETER_NOT_FOUND", "COLUMN_TYPE_MISMATCH", "COLUMN_GEOGRAPHIC_ROLE_MISMATCH", "COLUMN_REPLACEMENT_MISSING"
|
1693
1749
|
# resp.dashboard.version.errors[0].message #=> String
|
1694
1750
|
# resp.dashboard.version.version_number #=> Integer
|
1695
1751
|
# resp.dashboard.version.status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED"
|
1696
1752
|
# resp.dashboard.version.arn #=> String
|
1697
1753
|
# resp.dashboard.version.source_entity_arn #=> String
|
1754
|
+
# resp.dashboard.version.data_set_arns #=> Array
|
1755
|
+
# resp.dashboard.version.data_set_arns[0] #=> String
|
1698
1756
|
# resp.dashboard.version.description #=> String
|
1699
1757
|
# resp.dashboard.created_time #=> Time
|
1700
1758
|
# resp.dashboard.last_published_time #=> Time
|
@@ -2224,7 +2282,7 @@ module Aws::QuickSight
|
|
2224
2282
|
# resp.template.name #=> String
|
2225
2283
|
# resp.template.version.created_time #=> Time
|
2226
2284
|
# resp.template.version.errors #=> Array
|
2227
|
-
# resp.template.version.errors[0].type #=> String, one of "DATA_SET_NOT_FOUND", "INTERNAL_FAILURE"
|
2285
|
+
# resp.template.version.errors[0].type #=> String, one of "SOURCE_NOT_FOUND", "DATA_SET_NOT_FOUND", "INTERNAL_FAILURE"
|
2228
2286
|
# resp.template.version.errors[0].message #=> String
|
2229
2287
|
# resp.template.version.version_number #=> Integer
|
2230
2288
|
# resp.template.version.status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED"
|
@@ -2500,6 +2558,8 @@ module Aws::QuickSight
|
|
2500
2558
|
# * {Types::ListDashboardVersionsResponse#status #status} => Integer
|
2501
2559
|
# * {Types::ListDashboardVersionsResponse#request_id #request_id} => String
|
2502
2560
|
#
|
2561
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2562
|
+
#
|
2503
2563
|
# @example Request syntax with placeholder values
|
2504
2564
|
#
|
2505
2565
|
# resp = client.list_dashboard_versions({
|
@@ -2551,6 +2611,8 @@ module Aws::QuickSight
|
|
2551
2611
|
# * {Types::ListDashboardsResponse#status #status} => Integer
|
2552
2612
|
# * {Types::ListDashboardsResponse#request_id #request_id} => String
|
2553
2613
|
#
|
2614
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2615
|
+
#
|
2554
2616
|
# @example Request syntax with placeholder values
|
2555
2617
|
#
|
2556
2618
|
# resp = client.list_dashboards({
|
@@ -2605,6 +2667,8 @@ module Aws::QuickSight
|
|
2605
2667
|
# * {Types::ListDataSetsResponse#request_id #request_id} => String
|
2606
2668
|
# * {Types::ListDataSetsResponse#status #status} => Integer
|
2607
2669
|
#
|
2670
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2671
|
+
#
|
2608
2672
|
# @example Request syntax with placeholder values
|
2609
2673
|
#
|
2610
2674
|
# resp = client.list_data_sets({
|
@@ -2657,6 +2721,8 @@ module Aws::QuickSight
|
|
2657
2721
|
# * {Types::ListDataSourcesResponse#request_id #request_id} => String
|
2658
2722
|
# * {Types::ListDataSourcesResponse#status #status} => Integer
|
2659
2723
|
#
|
2724
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2725
|
+
#
|
2660
2726
|
# @example Request syntax with placeholder values
|
2661
2727
|
#
|
2662
2728
|
# resp = client.list_data_sources({
|
@@ -2972,6 +3038,8 @@ module Aws::QuickSight
|
|
2972
3038
|
# * {Types::ListIngestionsResponse#request_id #request_id} => String
|
2973
3039
|
# * {Types::ListIngestionsResponse#status #status} => Integer
|
2974
3040
|
#
|
3041
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3042
|
+
#
|
2975
3043
|
# @example Request syntax with placeholder values
|
2976
3044
|
#
|
2977
3045
|
# resp = client.list_ingestions({
|
@@ -3069,6 +3137,8 @@ module Aws::QuickSight
|
|
3069
3137
|
# * {Types::ListTemplateAliasesResponse#request_id #request_id} => String
|
3070
3138
|
# * {Types::ListTemplateAliasesResponse#next_token #next_token} => String
|
3071
3139
|
#
|
3140
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3141
|
+
#
|
3072
3142
|
# @example Request syntax with placeholder values
|
3073
3143
|
#
|
3074
3144
|
# resp = client.list_template_aliases({
|
@@ -3121,6 +3191,8 @@ module Aws::QuickSight
|
|
3121
3191
|
# * {Types::ListTemplateVersionsResponse#status #status} => Integer
|
3122
3192
|
# * {Types::ListTemplateVersionsResponse#request_id #request_id} => String
|
3123
3193
|
#
|
3194
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3195
|
+
#
|
3124
3196
|
# @example Request syntax with placeholder values
|
3125
3197
|
#
|
3126
3198
|
# resp = client.list_template_versions({
|
@@ -3171,6 +3243,8 @@ module Aws::QuickSight
|
|
3171
3243
|
# * {Types::ListTemplatesResponse#status #status} => Integer
|
3172
3244
|
# * {Types::ListTemplatesResponse#request_id #request_id} => String
|
3173
3245
|
#
|
3246
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3247
|
+
#
|
3174
3248
|
# @example Request syntax with placeholder values
|
3175
3249
|
#
|
3176
3250
|
# resp = client.list_templates({
|
@@ -3360,7 +3434,7 @@ module Aws::QuickSight
|
|
3360
3434
|
#
|
3361
3435
|
#
|
3362
3436
|
#
|
3363
|
-
# [1]: https://
|
3437
|
+
# [1]: https://awscli.amazonaws.com/v2/documentation/api/latest/reference/sts/assume-role.html
|
3364
3438
|
#
|
3365
3439
|
# @option params [required, String] :aws_account_id
|
3366
3440
|
# The ID for the AWS account that the user is in. Currently, you use the
|
@@ -3441,6 +3515,8 @@ module Aws::QuickSight
|
|
3441
3515
|
# * {Types::SearchDashboardsResponse#status #status} => Integer
|
3442
3516
|
# * {Types::SearchDashboardsResponse#request_id #request_id} => String
|
3443
3517
|
#
|
3518
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3519
|
+
#
|
3444
3520
|
# @example Request syntax with placeholder values
|
3445
3521
|
#
|
3446
3522
|
# resp = client.search_dashboards({
|
@@ -4651,7 +4727,7 @@ module Aws::QuickSight
|
|
4651
4727
|
params: params,
|
4652
4728
|
config: config)
|
4653
4729
|
context[:gem_name] = 'aws-sdk-quicksight'
|
4654
|
-
context[:gem_version] = '1.
|
4730
|
+
context[:gem_version] = '1.22.1'
|
4655
4731
|
Seahorse::Client::Request.new(handlers, context)
|
4656
4732
|
end
|
4657
4733
|
|
@@ -91,6 +91,7 @@ module Aws::QuickSight
|
|
91
91
|
DashboardVersionSummary = Shapes::StructureShape.new(name: 'DashboardVersionSummary')
|
92
92
|
DashboardVersionSummaryList = Shapes::ListShape.new(name: 'DashboardVersionSummaryList')
|
93
93
|
DataSet = Shapes::StructureShape.new(name: 'DataSet')
|
94
|
+
DataSetArnsList = Shapes::ListShape.new(name: 'DataSetArnsList')
|
94
95
|
DataSetConfiguration = Shapes::StructureShape.new(name: 'DataSetConfiguration')
|
95
96
|
DataSetConfigurationList = Shapes::ListShape.new(name: 'DataSetConfigurationList')
|
96
97
|
DataSetImportMode = Shapes::StringShape.new(name: 'DataSetImportMode')
|
@@ -693,6 +694,7 @@ module Aws::QuickSight
|
|
693
694
|
DashboardVersion.add_member(:status, Shapes::ShapeRef.new(shape: ResourceStatus, location_name: "Status"))
|
694
695
|
DashboardVersion.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
695
696
|
DashboardVersion.add_member(:source_entity_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SourceEntityArn"))
|
697
|
+
DashboardVersion.add_member(:data_set_arns, Shapes::ShapeRef.new(shape: DataSetArnsList, location_name: "DataSetArns"))
|
696
698
|
DashboardVersion.add_member(:description, Shapes::ShapeRef.new(shape: VersionDescription, location_name: "Description"))
|
697
699
|
DashboardVersion.struct_class = Types::DashboardVersion
|
698
700
|
|
@@ -720,6 +722,8 @@ module Aws::QuickSight
|
|
720
722
|
DataSet.add_member(:row_level_permission_data_set, Shapes::ShapeRef.new(shape: RowLevelPermissionDataSet, location_name: "RowLevelPermissionDataSet"))
|
721
723
|
DataSet.struct_class = Types::DataSet
|
722
724
|
|
725
|
+
DataSetArnsList.member = Shapes::ShapeRef.new(shape: Arn)
|
726
|
+
|
723
727
|
DataSetConfiguration.add_member(:placeholder, Shapes::ShapeRef.new(shape: String, location_name: "Placeholder"))
|
724
728
|
DataSetConfiguration.add_member(:data_set_schema, Shapes::ShapeRef.new(shape: DataSetSchema, location_name: "DataSetSchema"))
|
725
729
|
DataSetConfiguration.add_member(:column_group_schema_list, Shapes::ShapeRef.new(shape: ColumnGroupSchemaList, location_name: "ColumnGroupSchemaList"))
|
@@ -6,6 +6,45 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::QuickSight
|
9
|
+
|
10
|
+
# When QuickSight returns an error response, the Ruby SDK constructs and raises an error.
|
11
|
+
# These errors all extend Aws::QuickSight::Errors::ServiceError < {Aws::Errors::ServiceError}
|
12
|
+
#
|
13
|
+
# You can rescue all QuickSight errors using ServiceError:
|
14
|
+
#
|
15
|
+
# begin
|
16
|
+
# # do stuff
|
17
|
+
# rescue Aws::QuickSight::Errors::ServiceError
|
18
|
+
# # rescues all QuickSight API errors
|
19
|
+
# end
|
20
|
+
#
|
21
|
+
#
|
22
|
+
# ## Request Context
|
23
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
24
|
+
# information about the request that generated the error.
|
25
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
26
|
+
#
|
27
|
+
# ## Error Classes
|
28
|
+
# * {AccessDeniedException}
|
29
|
+
# * {ConcurrentUpdatingException}
|
30
|
+
# * {ConflictException}
|
31
|
+
# * {DomainNotWhitelistedException}
|
32
|
+
# * {IdentityTypeNotSupportedException}
|
33
|
+
# * {InternalFailureException}
|
34
|
+
# * {InvalidNextTokenException}
|
35
|
+
# * {InvalidParameterValueException}
|
36
|
+
# * {LimitExceededException}
|
37
|
+
# * {PreconditionNotMetException}
|
38
|
+
# * {QuickSightUserNotFoundException}
|
39
|
+
# * {ResourceExistsException}
|
40
|
+
# * {ResourceNotFoundException}
|
41
|
+
# * {ResourceUnavailableException}
|
42
|
+
# * {SessionLifetimeInMinutesInvalidException}
|
43
|
+
# * {ThrottlingException}
|
44
|
+
# * {UnsupportedUserEditionException}
|
45
|
+
#
|
46
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
47
|
+
# if they are not defined above.
|
9
48
|
module Errors
|
10
49
|
|
11
50
|
extend Aws::Errors::DynamicErrors
|
@@ -28,7 +67,6 @@ module Aws::QuickSight
|
|
28
67
|
def request_id
|
29
68
|
@data[:request_id]
|
30
69
|
end
|
31
|
-
|
32
70
|
end
|
33
71
|
|
34
72
|
class ConcurrentUpdatingException < ServiceError
|
@@ -49,7 +87,6 @@ module Aws::QuickSight
|
|
49
87
|
def request_id
|
50
88
|
@data[:request_id]
|
51
89
|
end
|
52
|
-
|
53
90
|
end
|
54
91
|
|
55
92
|
class ConflictException < ServiceError
|
@@ -70,7 +107,6 @@ module Aws::QuickSight
|
|
70
107
|
def request_id
|
71
108
|
@data[:request_id]
|
72
109
|
end
|
73
|
-
|
74
110
|
end
|
75
111
|
|
76
112
|
class DomainNotWhitelistedException < ServiceError
|
@@ -91,7 +127,6 @@ module Aws::QuickSight
|
|
91
127
|
def request_id
|
92
128
|
@data[:request_id]
|
93
129
|
end
|
94
|
-
|
95
130
|
end
|
96
131
|
|
97
132
|
class IdentityTypeNotSupportedException < ServiceError
|
@@ -112,7 +147,6 @@ module Aws::QuickSight
|
|
112
147
|
def request_id
|
113
148
|
@data[:request_id]
|
114
149
|
end
|
115
|
-
|
116
150
|
end
|
117
151
|
|
118
152
|
class InternalFailureException < ServiceError
|
@@ -133,7 +167,6 @@ module Aws::QuickSight
|
|
133
167
|
def request_id
|
134
168
|
@data[:request_id]
|
135
169
|
end
|
136
|
-
|
137
170
|
end
|
138
171
|
|
139
172
|
class InvalidNextTokenException < ServiceError
|
@@ -154,7 +187,6 @@ module Aws::QuickSight
|
|
154
187
|
def request_id
|
155
188
|
@data[:request_id]
|
156
189
|
end
|
157
|
-
|
158
190
|
end
|
159
191
|
|
160
192
|
class InvalidParameterValueException < ServiceError
|
@@ -175,7 +207,6 @@ module Aws::QuickSight
|
|
175
207
|
def request_id
|
176
208
|
@data[:request_id]
|
177
209
|
end
|
178
|
-
|
179
210
|
end
|
180
211
|
|
181
212
|
class LimitExceededException < ServiceError
|
@@ -201,7 +232,6 @@ module Aws::QuickSight
|
|
201
232
|
def request_id
|
202
233
|
@data[:request_id]
|
203
234
|
end
|
204
|
-
|
205
235
|
end
|
206
236
|
|
207
237
|
class PreconditionNotMetException < ServiceError
|
@@ -222,7 +252,6 @@ module Aws::QuickSight
|
|
222
252
|
def request_id
|
223
253
|
@data[:request_id]
|
224
254
|
end
|
225
|
-
|
226
255
|
end
|
227
256
|
|
228
257
|
class QuickSightUserNotFoundException < ServiceError
|
@@ -243,7 +272,6 @@ module Aws::QuickSight
|
|
243
272
|
def request_id
|
244
273
|
@data[:request_id]
|
245
274
|
end
|
246
|
-
|
247
275
|
end
|
248
276
|
|
249
277
|
class ResourceExistsException < ServiceError
|
@@ -269,7 +297,6 @@ module Aws::QuickSight
|
|
269
297
|
def request_id
|
270
298
|
@data[:request_id]
|
271
299
|
end
|
272
|
-
|
273
300
|
end
|
274
301
|
|
275
302
|
class ResourceNotFoundException < ServiceError
|
@@ -295,7 +322,6 @@ module Aws::QuickSight
|
|
295
322
|
def request_id
|
296
323
|
@data[:request_id]
|
297
324
|
end
|
298
|
-
|
299
325
|
end
|
300
326
|
|
301
327
|
class ResourceUnavailableException < ServiceError
|
@@ -321,7 +347,6 @@ module Aws::QuickSight
|
|
321
347
|
def request_id
|
322
348
|
@data[:request_id]
|
323
349
|
end
|
324
|
-
|
325
350
|
end
|
326
351
|
|
327
352
|
class SessionLifetimeInMinutesInvalidException < ServiceError
|
@@ -342,7 +367,6 @@ module Aws::QuickSight
|
|
342
367
|
def request_id
|
343
368
|
@data[:request_id]
|
344
369
|
end
|
345
|
-
|
346
370
|
end
|
347
371
|
|
348
372
|
class ThrottlingException < ServiceError
|
@@ -363,7 +387,6 @@ module Aws::QuickSight
|
|
363
387
|
def request_id
|
364
388
|
@data[:request_id]
|
365
389
|
end
|
366
|
-
|
367
390
|
end
|
368
391
|
|
369
392
|
class UnsupportedUserEditionException < ServiceError
|
@@ -384,7 +407,6 @@ module Aws::QuickSight
|
|
384
407
|
def request_id
|
385
408
|
@data[:request_id]
|
386
409
|
end
|
387
|
-
|
388
410
|
end
|
389
411
|
|
390
412
|
end
|
@@ -1680,7 +1680,7 @@ module Aws::QuickSight
|
|
1680
1680
|
# @return [String]
|
1681
1681
|
#
|
1682
1682
|
# @!attribute [rw] name
|
1683
|
-
# A display name for the
|
1683
|
+
# A display name for the dashboard.
|
1684
1684
|
# @return [String]
|
1685
1685
|
#
|
1686
1686
|
# @!attribute [rw] version
|
@@ -1932,6 +1932,11 @@ module Aws::QuickSight
|
|
1932
1932
|
# Source entity ARN.
|
1933
1933
|
# @return [String]
|
1934
1934
|
#
|
1935
|
+
# @!attribute [rw] data_set_arns
|
1936
|
+
# The Amazon Resource Numbers (ARNs) for the datasets that are
|
1937
|
+
# associated with a version of the dashboard.
|
1938
|
+
# @return [Array<String>]
|
1939
|
+
#
|
1935
1940
|
# @!attribute [rw] description
|
1936
1941
|
# Description.
|
1937
1942
|
# @return [String]
|
@@ -1945,6 +1950,7 @@ module Aws::QuickSight
|
|
1945
1950
|
:status,
|
1946
1951
|
:arn,
|
1947
1952
|
:source_entity_arn,
|
1953
|
+
:data_set_arns,
|
1948
1954
|
:description)
|
1949
1955
|
include Aws::Structure
|
1950
1956
|
end
|
@@ -4435,9 +4441,8 @@ module Aws::QuickSight
|
|
4435
4441
|
end
|
4436
4442
|
|
4437
4443
|
# @!attribute [rw] dashboard_summary_list
|
4438
|
-
# A structure that contains all of the dashboards
|
4439
|
-
#
|
4440
|
-
# dashboards.
|
4444
|
+
# A structure that contains all of the dashboards in your AWS account.
|
4445
|
+
# This structure provides basic information about the dashboards.
|
4441
4446
|
# @return [Array<Types::DashboardSummary>]
|
4442
4447
|
#
|
4443
4448
|
# @!attribute [rw] next_token
|
@@ -5903,7 +5908,7 @@ module Aws::QuickSight
|
|
5903
5908
|
#
|
5904
5909
|
#
|
5905
5910
|
#
|
5906
|
-
# [1]: https://
|
5911
|
+
# [1]: https://awscli.amazonaws.com/v2/documentation/api/latest/reference/sts/assume-role.html
|
5907
5912
|
# @return [String]
|
5908
5913
|
#
|
5909
5914
|
# @!attribute [rw] aws_account_id
|
@@ -6886,7 +6891,7 @@ module Aws::QuickSight
|
|
6886
6891
|
# The template version.
|
6887
6892
|
#
|
6888
6893
|
# @!attribute [rw] arn
|
6889
|
-
# The ARN of the template version.
|
6894
|
+
# The Amazon Resource Name (ARN) of the template version.
|
6890
6895
|
# @return [String]
|
6891
6896
|
#
|
6892
6897
|
# @!attribute [rw] version_number
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-quicksight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.22.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.99.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Amazon QuickSight
|