aws-sdk-quicksight 1.58.0 → 1.62.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9cc29e6f9ad715fd09f65470c8b8b1f69b8d2be2a22a2b982b830b8f2f0d77fd
4
- data.tar.gz: 394e927de9a522eb68fc871a48d806385bc8992cb9dd66cd9b0649ce39edddcd
3
+ metadata.gz: 75538650adcbc68a5491cfff5149522686273d67ed816d42ee38fcd3fee4ea91
4
+ data.tar.gz: 1f988505ac9cee650c095cbbe42d34f006ffec53d914dd06c7b30bee2df70386
5
5
  SHA512:
6
- metadata.gz: 5c605e6a257ccc43f604eb5a22c1ece354eed75a3ae8cf9aac17833f39df576fc1041e37d0a2673e882069301d890f2a6afdf9722ac0dd588a8dbdeca5d1c7b1
7
- data.tar.gz: c174e70c8899a99122f9e5631566efc529f978f2464f05ada5b2f2ec21ab1d082c312513524c41d19c010ae7f311b3ef3cf19f49ea4e5b753a819cf8f879040f
6
+ metadata.gz: 19157ed7f049478c993efca51cdfd3a9106f85458aeba95fb6c2ca131363894761357743f3d8d3ad0ea1bb90d82202276a9d19e870dbcb99f8ee4df79090e10e
7
+ data.tar.gz: 35aceaff9e536b4d151f15510861ae47544d1206e160d334c9ba0e64c2543381b5dd14455e8dfa21666185cad64cca0c79c991177bc13d6e3c5875bac5c51aca
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.62.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.61.0 (2022-01-05)
10
+ ------------------
11
+
12
+ * Feature - Multiple Doc-only updates for Amazon QuickSight.
13
+
14
+ 1.60.0 (2021-12-21)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.59.0 (2021-11-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.58.0 (2021-11-22)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.58.0
1
+ 1.62.0
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::QuickSight
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::RestJson)
78
82
 
@@ -119,7 +123,9 @@ module Aws::QuickSight
119
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
124
  # are very aggressive. Construct and pass an instance of
121
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
123
129
  #
124
130
  # @option options [required, String] :region
125
131
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +179,10 @@ module Aws::QuickSight
173
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
180
  # a clock skew correction and retry requests with skewed client clocks.
175
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
176
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
187
  # Set to true to disable SDK automatically adding host prefix
178
188
  # to default service endpoint when available.
@@ -295,7 +305,7 @@ module Aws::QuickSight
295
305
  # seconds to wait when opening a HTTP session before raising a
296
306
  # `Timeout::Error`.
297
307
  #
298
- # @option options [Integer] :http_read_timeout (60) The default
308
+ # @option options [Float] :http_read_timeout (60) The default
299
309
  # number of seconds to wait for response data. This value can
300
310
  # safely be set per-request on the session.
301
311
  #
@@ -311,6 +321,9 @@ module Aws::QuickSight
311
321
  # disables this behaviour. This value can safely be set per
312
322
  # request on the session.
313
323
  #
324
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
325
+ # in seconds.
326
+ #
314
327
  # @option options [Boolean] :http_wire_trace (false) When `true`,
315
328
  # HTTP debug output will be sent to the `:logger`.
316
329
  #
@@ -775,7 +788,8 @@ module Aws::QuickSight
775
788
  req.send_request(options)
776
789
  end
777
790
 
778
- # Creates a dataset.
791
+ # Creates a dataset. This operation doesn't support datasets that
792
+ # include uploaded files as a source.
779
793
  #
780
794
  # @option params [required, String] :aws_account_id
781
795
  # The Amazon Web Services account ID.
@@ -1631,7 +1645,11 @@ module Aws::QuickSight
1631
1645
  req.send_request(options)
1632
1646
  end
1633
1647
 
1634
- # Creates and starts a new SPICE ingestion on a dataset
1648
+ # Creates and starts a new SPICE ingestion for a dataset. You can
1649
+ # manually refresh datasets in an Enterprise edition account 32 times in
1650
+ # a 24-hour period. You can manually refresh datasets in a Standard
1651
+ # edition account 8 times in a 24-hour period. Each 24-hour period is
1652
+ # measured starting 24 hours before the current date and time.
1635
1653
  #
1636
1654
  # Any ingestions operating on tagged datasets inherit the same tags
1637
1655
  # automatically for use in access control. For an example, see [How do I
@@ -3221,7 +3239,8 @@ module Aws::QuickSight
3221
3239
  req.send_request(options)
3222
3240
  end
3223
3241
 
3224
- # Describes a dataset.
3242
+ # Describes a dataset. This operation doesn't support datasets that
3243
+ # include uploaded files as a source.
3225
3244
  #
3226
3245
  # @option params [required, String] :aws_account_id
3227
3246
  # The Amazon Web Services account ID.
@@ -7121,7 +7140,8 @@ module Aws::QuickSight
7121
7140
  req.send_request(options)
7122
7141
  end
7123
7142
 
7124
- # Updates a dataset.
7143
+ # Updates a dataset. This operation doesn't support datasets that
7144
+ # include uploaded files as a source.
7125
7145
  #
7126
7146
  # @option params [required, String] :aws_account_id
7127
7147
  # The Amazon Web Services account ID.
@@ -8627,7 +8647,7 @@ module Aws::QuickSight
8627
8647
  params: params,
8628
8648
  config: config)
8629
8649
  context[:gem_name] = 'aws-sdk-quicksight'
8630
- context[:gem_version] = '1.58.0'
8650
+ context[:gem_version] = '1.62.0'
8631
8651
  Seahorse::Client::Request.new(handlers, context)
8632
8652
  end
8633
8653
 
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-quicksight/customizations'
48
48
  # @!group service
49
49
  module Aws::QuickSight
50
50
 
51
- GEM_VERSION = '1.58.0'
51
+ GEM_VERSION = '1.62.0'
52
52
 
53
53
  end
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.58.0
4
+ version: 1.62.0
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: 2021-11-22 00:00:00.000000000 Z
11
+ date: 2022-02-03 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.122.0
22
+ version: 3.126.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.122.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement