aws-sdk-quicksight 1.42.0 → 1.43.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 +7 -4
- data/lib/aws-sdk-quicksight/types.rb +25 -9
- 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: cd6245bd9e7887a69519566cd2f67da1048a1c05fc77e085e57531ac7a314189
|
4
|
+
data.tar.gz: eee313187fa5866c5ebc0b1739c70bd49314700773ac2a5476f374cd2cf36254
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbd12bf79037993e1489f6c0bf2828e7a85400da81b0ba396b54f670ff609828cdd7c6504f7752588d3b717316e498f9febd4634689dd366a79db6c78e5673df
|
7
|
+
data.tar.gz: 0141e60fba61428f77758a7155982fb4ff439e37a67ed3d1b4251dca53e8c91779e67e73ea6ef9229566152a9e2ba87a1f5799c90be0fe6e225dc2248bb106c4
|
data/lib/aws-sdk-quicksight.rb
CHANGED
@@ -992,9 +992,12 @@ module Aws::QuickSight
|
|
992
992
|
#
|
993
993
|
# @option params [required, String] :type
|
994
994
|
# The type of the data source. Currently, the supported types for this
|
995
|
-
# operation are: `ATHENA, AURORA, AURORA_POSTGRESQL,
|
996
|
-
#
|
997
|
-
# TERADATA`. Use `ListDataSources` to
|
995
|
+
# operation are: `ATHENA, AURORA, AURORA_POSTGRESQL,
|
996
|
+
# AMAZON_ELASTICSEARCH, MARIADB, MYSQL, POSTGRESQL, PRESTO, REDSHIFT,
|
997
|
+
# S3, SNOWFLAKE, SPARK, SQLSERVER, TERADATA`. Use `ListDataSources` to
|
998
|
+
# return a list of all data sources.
|
999
|
+
#
|
1000
|
+
# `AMAZON_ELASTICSEARCH` is for Amazon managed Elasticsearch Service.
|
998
1001
|
#
|
999
1002
|
# @option params [Types::DataSourceParameters] :data_source_parameters
|
1000
1003
|
# The parameters that QuickSight uses to connect to your underlying
|
@@ -7440,7 +7443,7 @@ module Aws::QuickSight
|
|
7440
7443
|
params: params,
|
7441
7444
|
config: config)
|
7442
7445
|
context[:gem_name] = 'aws-sdk-quicksight'
|
7443
|
-
context[:gem_version] = '1.
|
7446
|
+
context[:gem_version] = '1.43.0'
|
7444
7447
|
Seahorse::Client::Request.new(handlers, context)
|
7445
7448
|
end
|
7446
7449
|
|
@@ -1807,10 +1807,12 @@ module Aws::QuickSight
|
|
1807
1807
|
#
|
1808
1808
|
# @!attribute [rw] type
|
1809
1809
|
# The type of the data source. Currently, the supported types for this
|
1810
|
-
# operation are: `ATHENA, AURORA, AURORA_POSTGRESQL,
|
1811
|
-
#
|
1812
|
-
# TERADATA`. Use `ListDataSources` to
|
1813
|
-
# sources.
|
1810
|
+
# operation are: `ATHENA, AURORA, AURORA_POSTGRESQL,
|
1811
|
+
# AMAZON_ELASTICSEARCH, MARIADB, MYSQL, POSTGRESQL, PRESTO, REDSHIFT,
|
1812
|
+
# S3, SNOWFLAKE, SPARK, SQLSERVER, TERADATA`. Use `ListDataSources` to
|
1813
|
+
# return a list of all data sources.
|
1814
|
+
#
|
1815
|
+
# `AMAZON_ELASTICSEARCH` is for Amazon managed Elasticsearch Service.
|
1814
1816
|
# @return [String]
|
1815
1817
|
#
|
1816
1818
|
# @!attribute [rw] data_source_parameters
|
@@ -9259,7 +9261,18 @@ module Aws::QuickSight
|
|
9259
9261
|
include Aws::Structure
|
9260
9262
|
end
|
9261
9263
|
|
9262
|
-
#
|
9264
|
+
# Information about a dataset that contains permissions for row-level
|
9265
|
+
# security (RLS). The permissions dataset maps fields to users or
|
9266
|
+
# groups. For more information, see [Using Row-Level Security (RLS) to
|
9267
|
+
# Restrict Access to a Dataset][1] in the *Amazon QuickSight User
|
9268
|
+
# Guide*.
|
9269
|
+
#
|
9270
|
+
# The option to deny permissions by setting `PermissionPolicy` to
|
9271
|
+
# `DENY_ACCESS` is not supported for new RLS datasets.
|
9272
|
+
#
|
9273
|
+
#
|
9274
|
+
#
|
9275
|
+
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/restrict-access-to-a-data-set-using-row-level-security.html
|
9263
9276
|
#
|
9264
9277
|
# @note When making an API call, you may pass RowLevelPermissionDataSet
|
9265
9278
|
# data as a hash:
|
@@ -9271,15 +9284,18 @@ module Aws::QuickSight
|
|
9271
9284
|
# }
|
9272
9285
|
#
|
9273
9286
|
# @!attribute [rw] namespace
|
9274
|
-
# The namespace associated with the
|
9287
|
+
# The namespace associated with the dataset that contains permissions
|
9288
|
+
# for RLS.
|
9275
9289
|
# @return [String]
|
9276
9290
|
#
|
9277
9291
|
# @!attribute [rw] arn
|
9278
|
-
# The Amazon Resource Name (ARN) of the
|
9292
|
+
# The Amazon Resource Name (ARN) of the dataset that contains
|
9293
|
+
# permissions for RLS.
|
9279
9294
|
# @return [String]
|
9280
9295
|
#
|
9281
9296
|
# @!attribute [rw] permission_policy
|
9282
|
-
#
|
9297
|
+
# The type of permissions to use when interpretting the permissions
|
9298
|
+
# for RLS. `DENY_ACCESS` is included for backward compatibility only.
|
9283
9299
|
# @return [String]
|
9284
9300
|
#
|
9285
9301
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RowLevelPermissionDataSet AWS API Documentation
|
@@ -9340,7 +9356,7 @@ module Aws::QuickSight
|
|
9340
9356
|
# }
|
9341
9357
|
#
|
9342
9358
|
# @!attribute [rw] data_source_arn
|
9343
|
-
# The
|
9359
|
+
# The Amazon Resource Name (ARN) for the data source.
|
9344
9360
|
# @return [String]
|
9345
9361
|
#
|
9346
9362
|
# @!attribute [rw] upload_settings
|
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.43.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-02-
|
11
|
+
date: 2021-02-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|