aws-sdk-quicksight 1.35.0 → 1.36.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/lib/aws-sdk-quicksight.rb +1 -1
- data/lib/aws-sdk-quicksight/client.rb +12 -1
- data/lib/aws-sdk-quicksight/client_api.rb +3 -2
- data/lib/aws-sdk-quicksight/types.rb +15 -0
- 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: e92f6fdf5123d8ab414b049293fcfa410ccce635b1fecbd9b74e6604e41bf9e1
|
|
4
|
+
data.tar.gz: b4d0ecd8fa5a1ae33c336df7f1b65b0be1fcadfbf66ff765081dd1513f0b34e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0c3bfcc68f60a4bb18ed6100cea0c5e975c661b63fba54710d7174ebce4e58bbddee069506de18c20ebea8131f235cba43bee87d3bfe1f921b7e3681ab52b868
|
|
7
|
+
data.tar.gz: 6298b990d949f1152856becedc7a5b1c8ff273a55dd9fecad112cbafda52e52a84ae6c74bc3e3ad99b6d9526177b87706c44feab3105e7dc5be5decb9275c8e5
|
data/lib/aws-sdk-quicksight.rb
CHANGED
|
@@ -3874,6 +3874,16 @@ module Aws::QuickSight
|
|
|
3874
3874
|
# Remove the reset button on the embedded dashboard. The default is
|
|
3875
3875
|
# FALSE, which enables the reset button.
|
|
3876
3876
|
#
|
|
3877
|
+
# @option params [Boolean] :state_persistence_enabled
|
|
3878
|
+
# Adds persistence of state for the user session in an embedded
|
|
3879
|
+
# dashboard. Persistence applies to the sheet and the parameter
|
|
3880
|
+
# settings. These are control settings that the dashboard subscriber
|
|
3881
|
+
# (QuickSight reader) chooses while viewing the dashboard. If this is
|
|
3882
|
+
# set to `TRUE`, the settings are the same when the the subscriber
|
|
3883
|
+
# reopens the same dashboard URL. The state is stored in QuickSight, not
|
|
3884
|
+
# in a browser cookie. If this is set to FALSE, the state of the user
|
|
3885
|
+
# session is not persisted. The default is `FALSE`.
|
|
3886
|
+
#
|
|
3877
3887
|
# @option params [String] :user_arn
|
|
3878
3888
|
# The Amazon QuickSight user's Amazon Resource Name (ARN), for use with
|
|
3879
3889
|
# `QUICKSIGHT` identity type. You can use this for any Amazon QuickSight
|
|
@@ -3906,6 +3916,7 @@ module Aws::QuickSight
|
|
|
3906
3916
|
# session_lifetime_in_minutes: 1,
|
|
3907
3917
|
# undo_redo_disabled: false,
|
|
3908
3918
|
# reset_disabled: false,
|
|
3919
|
+
# state_persistence_enabled: false,
|
|
3909
3920
|
# user_arn: "Arn",
|
|
3910
3921
|
# })
|
|
3911
3922
|
#
|
|
@@ -7367,7 +7378,7 @@ module Aws::QuickSight
|
|
|
7367
7378
|
params: params,
|
|
7368
7379
|
config: config)
|
|
7369
7380
|
context[:gem_name] = 'aws-sdk-quicksight'
|
|
7370
|
-
context[:gem_version] = '1.
|
|
7381
|
+
context[:gem_version] = '1.36.0'
|
|
7371
7382
|
Seahorse::Client::Request.new(handlers, context)
|
|
7372
7383
|
end
|
|
7373
7384
|
|
|
@@ -1488,8 +1488,9 @@ module Aws::QuickSight
|
|
|
1488
1488
|
GetDashboardEmbedUrlRequest.add_member(:dashboard_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, required: true, location: "uri", location_name: "DashboardId"))
|
|
1489
1489
|
GetDashboardEmbedUrlRequest.add_member(:identity_type, Shapes::ShapeRef.new(shape: IdentityType, required: true, location: "querystring", location_name: "creds-type"))
|
|
1490
1490
|
GetDashboardEmbedUrlRequest.add_member(:session_lifetime_in_minutes, Shapes::ShapeRef.new(shape: SessionLifetimeInMinutes, location: "querystring", location_name: "session-lifetime"))
|
|
1491
|
-
GetDashboardEmbedUrlRequest.add_member(:undo_redo_disabled, Shapes::ShapeRef.new(shape:
|
|
1492
|
-
GetDashboardEmbedUrlRequest.add_member(:reset_disabled, Shapes::ShapeRef.new(shape:
|
|
1491
|
+
GetDashboardEmbedUrlRequest.add_member(:undo_redo_disabled, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "undo-redo-disabled"))
|
|
1492
|
+
GetDashboardEmbedUrlRequest.add_member(:reset_disabled, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "reset-disabled"))
|
|
1493
|
+
GetDashboardEmbedUrlRequest.add_member(:state_persistence_enabled, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "state-persistence-enabled"))
|
|
1493
1494
|
GetDashboardEmbedUrlRequest.add_member(:user_arn, Shapes::ShapeRef.new(shape: Arn, location: "querystring", location_name: "user-arn"))
|
|
1494
1495
|
GetDashboardEmbedUrlRequest.struct_class = Types::GetDashboardEmbedUrlRequest
|
|
1495
1496
|
|
|
@@ -6109,6 +6109,7 @@ module Aws::QuickSight
|
|
|
6109
6109
|
# session_lifetime_in_minutes: 1,
|
|
6110
6110
|
# undo_redo_disabled: false,
|
|
6111
6111
|
# reset_disabled: false,
|
|
6112
|
+
# state_persistence_enabled: false,
|
|
6112
6113
|
# user_arn: "Arn",
|
|
6113
6114
|
# }
|
|
6114
6115
|
#
|
|
@@ -6140,6 +6141,17 @@ module Aws::QuickSight
|
|
|
6140
6141
|
# FALSE, which enables the reset button.
|
|
6141
6142
|
# @return [Boolean]
|
|
6142
6143
|
#
|
|
6144
|
+
# @!attribute [rw] state_persistence_enabled
|
|
6145
|
+
# Adds persistence of state for the user session in an embedded
|
|
6146
|
+
# dashboard. Persistence applies to the sheet and the parameter
|
|
6147
|
+
# settings. These are control settings that the dashboard subscriber
|
|
6148
|
+
# (QuickSight reader) chooses while viewing the dashboard. If this is
|
|
6149
|
+
# set to `TRUE`, the settings are the same when the the subscriber
|
|
6150
|
+
# reopens the same dashboard URL. The state is stored in QuickSight,
|
|
6151
|
+
# not in a browser cookie. If this is set to FALSE, the state of the
|
|
6152
|
+
# user session is not persisted. The default is `FALSE`.
|
|
6153
|
+
# @return [Boolean]
|
|
6154
|
+
#
|
|
6143
6155
|
# @!attribute [rw] user_arn
|
|
6144
6156
|
# The Amazon QuickSight user's Amazon Resource Name (ARN), for use
|
|
6145
6157
|
# with `QUICKSIGHT` identity type. You can use this for any Amazon
|
|
@@ -6167,6 +6179,7 @@ module Aws::QuickSight
|
|
|
6167
6179
|
:session_lifetime_in_minutes,
|
|
6168
6180
|
:undo_redo_disabled,
|
|
6169
6181
|
:reset_disabled,
|
|
6182
|
+
:state_persistence_enabled,
|
|
6170
6183
|
:user_arn)
|
|
6171
6184
|
SENSITIVE = []
|
|
6172
6185
|
include Aws::Structure
|
|
@@ -8293,6 +8306,8 @@ module Aws::QuickSight
|
|
|
8293
8306
|
include Aws::Structure
|
|
8294
8307
|
end
|
|
8295
8308
|
|
|
8309
|
+
# Oracle parameters.
|
|
8310
|
+
#
|
|
8296
8311
|
# @note When making an API call, you may pass OracleParameters
|
|
8297
8312
|
# data as a hash:
|
|
8298
8313
|
#
|
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.36.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: 2020-11-
|
|
11
|
+
date: 2020-11-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|