aws-sdk-quicksight 1.53.0 → 1.57.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +164 -50
- data/lib/aws-sdk-quicksight/client_api.rb +89 -21
- data/lib/aws-sdk-quicksight/types.rb +267 -65
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee0995bdc1aaf86fd2ca56fe3ebc6894605e676acbcef5a05ca594cf41e31460
|
4
|
+
data.tar.gz: 4f28af7960330ad8c6b55030602bc78146a60213712a425b58de966398122427
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ec2912ab87e80387e65b079d3d61bdf196af2ee7ee1f7b882f3980c17c471be399250e4a7540226961fc76ff06736c431eab10318074d8ef09638212a06aa38
|
7
|
+
data.tar.gz: e815546ed800b84d04eb07335043b3743376384fc3fca5b733fb71e77ed4ee429c3eee3fef47356b3a6d66fbe3d43773123f960240c73a823110bcedc9f86e6f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.57.0 (2021-11-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.56.0 (2021-10-22)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added QSearchBar option for GenerateEmbedUrlForRegisteredUser ExperienceConfiguration to support Q search bar embedding
|
13
|
+
|
14
|
+
1.55.0 (2021-10-18)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - AWS QuickSight Service Features - Add IP Restriction UI and public APIs support.
|
18
|
+
|
19
|
+
1.54.0 (2021-09-10)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Add new data source type for Amazon OpenSearch (successor to Amazon ElasticSearch).
|
23
|
+
|
4
24
|
1.53.0 (2021-09-02)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.57.0
|
@@ -275,6 +275,15 @@ module Aws::QuickSight
|
|
275
275
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
276
|
# requests are made, and retries are disabled.
|
277
277
|
#
|
278
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
279
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
280
|
+
# will be used if available.
|
281
|
+
#
|
282
|
+
# @option options [Boolean] :use_fips_endpoint
|
283
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
284
|
+
# When a `fips` region is used, the region is normalized and this config
|
285
|
+
# is set to `true`.
|
286
|
+
#
|
278
287
|
# @option options [Boolean] :validate_params (true)
|
279
288
|
# When `true`, request parameters are validated before
|
280
289
|
# sending the request.
|
@@ -349,7 +358,7 @@ module Aws::QuickSight
|
|
349
358
|
#
|
350
359
|
# resp = client.cancel_ingestion({
|
351
360
|
# aws_account_id: "AwsAccountId", # required
|
352
|
-
# data_set_id: "
|
361
|
+
# data_set_id: "String", # required
|
353
362
|
# ingestion_id: "IngestionId", # required
|
354
363
|
# })
|
355
364
|
#
|
@@ -370,7 +379,7 @@ module Aws::QuickSight
|
|
370
379
|
end
|
371
380
|
|
372
381
|
# Creates Amazon QuickSight customizations the current Amazon Web
|
373
|
-
# Services Region
|
382
|
+
# Services Region. Currently, you can add a custom default theme by
|
374
383
|
# using the `CreateAccountCustomization` or `UpdateAccountCustomization`
|
375
384
|
# API operation. To further customize Amazon QuickSight by removing
|
376
385
|
# Amazon QuickSight sample assets and videos for all new users, see
|
@@ -407,7 +416,7 @@ module Aws::QuickSight
|
|
407
416
|
#
|
408
417
|
# @option params [required, Types::AccountCustomization] :account_customization
|
409
418
|
# The Amazon QuickSight customizations you're adding in the current
|
410
|
-
# Amazon Web Services Region
|
419
|
+
# Amazon Web Services Region. You can add these to an Amazon Web
|
411
420
|
# Services account and a Amazon QuickSight namespace.
|
412
421
|
#
|
413
422
|
# For example, you can add a default theme by setting
|
@@ -630,7 +639,7 @@ module Aws::QuickSight
|
|
630
639
|
# the CreateTemplate API operation. For `SourceTemplate`, specify the
|
631
640
|
# Amazon Resource Name (ARN) of the source template. The
|
632
641
|
# `SourceTemplate`ARN can contain any Amazon Web Services account and
|
633
|
-
# any Amazon QuickSight-supported Amazon Web Services Region
|
642
|
+
# any Amazon QuickSight-supported Amazon Web Services Region.
|
634
643
|
#
|
635
644
|
# Use the `DataSetReferences` entity within `SourceTemplate` to list the
|
636
645
|
# replacement datasets for the placeholders listed in the original. The
|
@@ -771,7 +780,7 @@ module Aws::QuickSight
|
|
771
780
|
#
|
772
781
|
# @option params [required, String] :data_set_id
|
773
782
|
# An ID for the dataset that you want to create. This ID is unique per
|
774
|
-
# Amazon Web Services Region
|
783
|
+
# Amazon Web Services Region for each Amazon Web Services account.
|
775
784
|
#
|
776
785
|
# @option params [required, String] :name
|
777
786
|
# The display name for the dataset.
|
@@ -1023,7 +1032,7 @@ module Aws::QuickSight
|
|
1023
1032
|
#
|
1024
1033
|
# @option params [required, String] :data_source_id
|
1025
1034
|
# An ID for the data source. This ID is unique per Amazon Web Services
|
1026
|
-
# Region
|
1035
|
+
# Region for each Amazon Web Services account.
|
1027
1036
|
#
|
1028
1037
|
# @option params [required, String] :name
|
1029
1038
|
# A display name for the data source.
|
@@ -1032,7 +1041,7 @@ module Aws::QuickSight
|
|
1032
1041
|
# The type of the data source. To return a list of all data sources, use
|
1033
1042
|
# `ListDataSources`.
|
1034
1043
|
#
|
1035
|
-
# Use `AMAZON_ELASTICSEARCH` for Amazon
|
1044
|
+
# Use `AMAZON_ELASTICSEARCH` for Amazon OpenSearch Service.
|
1036
1045
|
#
|
1037
1046
|
# @option params [Types::DataSourceParameters] :data_source_parameters
|
1038
1047
|
# The parameters that Amazon QuickSight uses to connect to your
|
@@ -1072,7 +1081,7 @@ module Aws::QuickSight
|
|
1072
1081
|
# aws_account_id: "AwsAccountId", # required
|
1073
1082
|
# data_source_id: "ResourceId", # required
|
1074
1083
|
# name: "ResourceName", # required
|
1075
|
-
# type: "ADOBE_ANALYTICS", # required, accepts ADOBE_ANALYTICS, AMAZON_ELASTICSEARCH, ATHENA, AURORA, AURORA_POSTGRESQL, AWS_IOT_ANALYTICS, GITHUB, JIRA, MARIADB, MYSQL, ORACLE, POSTGRESQL, PRESTO, REDSHIFT, S3, SALESFORCE, SERVICENOW, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, TWITTER, TIMESTREAM
|
1084
|
+
# type: "ADOBE_ANALYTICS", # required, accepts ADOBE_ANALYTICS, AMAZON_ELASTICSEARCH, ATHENA, AURORA, AURORA_POSTGRESQL, AWS_IOT_ANALYTICS, GITHUB, JIRA, MARIADB, MYSQL, ORACLE, POSTGRESQL, PRESTO, REDSHIFT, S3, SALESFORCE, SERVICENOW, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, TWITTER, TIMESTREAM, AMAZON_OPENSEARCH
|
1076
1085
|
# data_source_parameters: {
|
1077
1086
|
# amazon_elasticsearch_parameters: {
|
1078
1087
|
# domain: "Domain", # required
|
@@ -1163,6 +1172,9 @@ module Aws::QuickSight
|
|
1163
1172
|
# query: "Query", # required
|
1164
1173
|
# max_rows: 1, # required
|
1165
1174
|
# },
|
1175
|
+
# amazon_open_search_parameters: {
|
1176
|
+
# domain: "Domain", # required
|
1177
|
+
# },
|
1166
1178
|
# },
|
1167
1179
|
# credentials: {
|
1168
1180
|
# credential_pair: {
|
@@ -1259,6 +1271,9 @@ module Aws::QuickSight
|
|
1259
1271
|
# query: "Query", # required
|
1260
1272
|
# max_rows: 1, # required
|
1261
1273
|
# },
|
1274
|
+
# amazon_open_search_parameters: {
|
1275
|
+
# domain: "Domain", # required
|
1276
|
+
# },
|
1262
1277
|
# },
|
1263
1278
|
# ],
|
1264
1279
|
# },
|
@@ -1626,6 +1641,9 @@ module Aws::QuickSight
|
|
1626
1641
|
# @option params [required, String] :aws_account_id
|
1627
1642
|
# The Amazon Web Services account ID.
|
1628
1643
|
#
|
1644
|
+
# @option params [String] :ingestion_type
|
1645
|
+
# The type of ingestion that you want to create.
|
1646
|
+
#
|
1629
1647
|
# @return [Types::CreateIngestionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1630
1648
|
#
|
1631
1649
|
# * {Types::CreateIngestionResponse#arn #arn} => String
|
@@ -1637,9 +1655,10 @@ module Aws::QuickSight
|
|
1637
1655
|
# @example Request syntax with placeholder values
|
1638
1656
|
#
|
1639
1657
|
# resp = client.create_ingestion({
|
1640
|
-
# data_set_id: "
|
1658
|
+
# data_set_id: "String", # required
|
1641
1659
|
# ingestion_id: "IngestionId", # required
|
1642
1660
|
# aws_account_id: "AwsAccountId", # required
|
1661
|
+
# ingestion_type: "INCREMENTAL_REFRESH", # accepts INCREMENTAL_REFRESH, FULL_REFRESH
|
1643
1662
|
# })
|
1644
1663
|
#
|
1645
1664
|
# @example Response structure
|
@@ -1765,7 +1784,7 @@ module Aws::QuickSight
|
|
1765
1784
|
# For `SourceTemplate`, specify the ARN of the source template. For
|
1766
1785
|
# `SourceAnalysis`, specify the ARN of the source analysis. The
|
1767
1786
|
# `SourceTemplate` ARN can contain any Amazon Web Services account and
|
1768
|
-
# any Amazon QuickSight-supported Amazon Web Services Region
|
1787
|
+
# any Amazon QuickSight-supported Amazon Web Services Region.
|
1769
1788
|
#
|
1770
1789
|
# Use the `DataSetReferences` entity within `SourceTemplate` or
|
1771
1790
|
# `SourceAnalysis` to list the replacement datasets for the placeholders
|
@@ -2076,13 +2095,13 @@ module Aws::QuickSight
|
|
2076
2095
|
end
|
2077
2096
|
|
2078
2097
|
# Deletes all Amazon QuickSight customizations in this Amazon Web
|
2079
|
-
# Services Region
|
2098
|
+
# Services Region for the specified Amazon Web Services account and
|
2080
2099
|
# Amazon QuickSight namespace.
|
2081
2100
|
#
|
2082
2101
|
# @option params [required, String] :aws_account_id
|
2083
2102
|
# The ID for the Amazon Web Services account that you want to delete
|
2084
2103
|
# Amazon QuickSight customizations from in this Amazon Web Services
|
2085
|
-
# Region
|
2104
|
+
# Region.
|
2086
2105
|
#
|
2087
2106
|
# @option params [String] :namespace
|
2088
2107
|
# The Amazon QuickSight namespace that you're deleting the
|
@@ -2236,7 +2255,7 @@ module Aws::QuickSight
|
|
2236
2255
|
#
|
2237
2256
|
# @option params [required, String] :data_set_id
|
2238
2257
|
# The ID for the dataset that you want to create. This ID is unique per
|
2239
|
-
# Amazon Web Services Region
|
2258
|
+
# Amazon Web Services Region for each Amazon Web Services account.
|
2240
2259
|
#
|
2241
2260
|
# @return [Types::DeleteDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2242
2261
|
#
|
@@ -2276,7 +2295,7 @@ module Aws::QuickSight
|
|
2276
2295
|
#
|
2277
2296
|
# @option params [required, String] :data_source_id
|
2278
2297
|
# The ID of the data source. This ID is unique per Amazon Web Services
|
2279
|
-
# Region
|
2298
|
+
# Region for each Amazon Web Services account.
|
2280
2299
|
#
|
2281
2300
|
# @return [Types::DeleteDataSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2282
2301
|
#
|
@@ -2830,7 +2849,7 @@ module Aws::QuickSight
|
|
2830
2849
|
|
2831
2850
|
# Describes the customizations associated with the provided Amazon Web
|
2832
2851
|
# Services account and Amazon Amazon QuickSight namespace in an Amazon
|
2833
|
-
# Web Services Region
|
2852
|
+
# Web Services Region. The Amazon QuickSight console evaluates which
|
2834
2853
|
# customizations to apply by running this API operation with the
|
2835
2854
|
# `Resolved` flag included.
|
2836
2855
|
#
|
@@ -2839,21 +2858,21 @@ module Aws::QuickSight
|
|
2839
2858
|
#
|
2840
2859
|
# * `Amazon Web Services account` - The Amazon Web Services account
|
2841
2860
|
# exists at the top of the hierarchy. It has the potential to use all
|
2842
|
-
# of the Amazon Web Services Regions
|
2861
|
+
# of the Amazon Web Services Regions and AWS Services. When you
|
2843
2862
|
# subscribe to Amazon QuickSight, you choose one Amazon Web Services
|
2844
|
-
# Region
|
2863
|
+
# Region to use as your home Region. That's where your free SPICE
|
2845
2864
|
# capacity is located. You can use Amazon QuickSight in any supported
|
2846
|
-
# Amazon Web Services Region
|
2865
|
+
# Amazon Web Services Region.
|
2847
2866
|
#
|
2848
|
-
# * `Amazon Web Services Region
|
2867
|
+
# * `Amazon Web Services Region` - In each Amazon Web Services Region
|
2849
2868
|
# where you sign in to Amazon QuickSight at least once, Amazon
|
2850
2869
|
# QuickSight acts as a separate instance of the same service. If you
|
2851
2870
|
# have a user directory, it resides in us-east-1, which is the US East
|
2852
2871
|
# (N. Virginia). Generally speaking, these users have access to Amazon
|
2853
|
-
# QuickSight in any Amazon Web Services Region
|
2872
|
+
# QuickSight in any Amazon Web Services Region, unless they are
|
2854
2873
|
# constrained to a namespace.
|
2855
2874
|
#
|
2856
|
-
# To run the command in a different Amazon Web Services Region
|
2875
|
+
# To run the command in a different Amazon Web Services Region, you
|
2857
2876
|
# change your Region settings. If you're using the AWS CLI, you can
|
2858
2877
|
# use one of the following options:
|
2859
2878
|
#
|
@@ -2862,8 +2881,8 @@ module Aws::QuickSight
|
|
2862
2881
|
# * Use [named profiles][2].
|
2863
2882
|
#
|
2864
2883
|
# * Run `aws configure` to change your default Amazon Web Services
|
2865
|
-
# Region
|
2866
|
-
#
|
2884
|
+
# Region. Use Enter to key the same settings for your keys. For more
|
2885
|
+
# information, see [Configuring the AWS CLI][3].
|
2867
2886
|
#
|
2868
2887
|
# * `Namespace` - A Amazon QuickSight namespace is a partition that
|
2869
2888
|
# contains users and assets (data sources, datasets, dashboards, and
|
@@ -2871,16 +2890,16 @@ module Aws::QuickSight
|
|
2871
2890
|
# groups must also be part of the same namespace. People who share a
|
2872
2891
|
# namespace are completely isolated from users and assets in other
|
2873
2892
|
# namespaces, even if they are in the same Amazon Web Services account
|
2874
|
-
# and Amazon Web Services Region
|
2893
|
+
# and Amazon Web Services Region.
|
2875
2894
|
#
|
2876
|
-
# * `Applied customizations` - Within an Amazon Web Services Region
|
2895
|
+
# * `Applied customizations` - Within an Amazon Web Services Region, a
|
2877
2896
|
# set of Amazon QuickSight customizations can apply to an Amazon Web
|
2878
2897
|
# Services account or to a namespace. Settings that you apply to a
|
2879
2898
|
# namespace override settings that you apply to an Amazon Web Services
|
2880
2899
|
# account. All settings are isolated to a single Amazon Web Services
|
2881
|
-
# Region
|
2882
|
-
#
|
2883
|
-
# Region
|
2900
|
+
# Region. To apply them in other Amazon Web Services Regions, run the
|
2901
|
+
# `CreateAccountCustomization` command in each Amazon Web Services
|
2902
|
+
# Region where you want to apply the same customizations.
|
2884
2903
|
#
|
2885
2904
|
#
|
2886
2905
|
#
|
@@ -3192,7 +3211,7 @@ module Aws::QuickSight
|
|
3192
3211
|
#
|
3193
3212
|
# @option params [required, String] :data_set_id
|
3194
3213
|
# The ID for the dataset that you want to create. This ID is unique per
|
3195
|
-
# Amazon Web Services Region
|
3214
|
+
# Amazon Web Services Region for each Amazon Web Services account.
|
3196
3215
|
#
|
3197
3216
|
# @return [Types::DescribeDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3198
3217
|
#
|
@@ -3322,7 +3341,7 @@ module Aws::QuickSight
|
|
3322
3341
|
#
|
3323
3342
|
# @option params [required, String] :data_set_id
|
3324
3343
|
# The ID for the dataset that you want to create. This ID is unique per
|
3325
|
-
# Amazon Web Services Region
|
3344
|
+
# Amazon Web Services Region for each Amazon Web Services account.
|
3326
3345
|
#
|
3327
3346
|
# @return [Types::DescribeDataSetPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3328
3347
|
#
|
@@ -3366,7 +3385,7 @@ module Aws::QuickSight
|
|
3366
3385
|
#
|
3367
3386
|
# @option params [required, String] :data_source_id
|
3368
3387
|
# The ID of the data source. This ID is unique per Amazon Web Services
|
3369
|
-
# Region
|
3388
|
+
# Region for each Amazon Web Services account.
|
3370
3389
|
#
|
3371
3390
|
# @return [Types::DescribeDataSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3372
3391
|
#
|
@@ -3386,7 +3405,7 @@ module Aws::QuickSight
|
|
3386
3405
|
# resp.data_source.arn #=> String
|
3387
3406
|
# resp.data_source.data_source_id #=> String
|
3388
3407
|
# resp.data_source.name #=> String
|
3389
|
-
# resp.data_source.type #=> String, one of "ADOBE_ANALYTICS", "AMAZON_ELASTICSEARCH", "ATHENA", "AURORA", "AURORA_POSTGRESQL", "AWS_IOT_ANALYTICS", "GITHUB", "JIRA", "MARIADB", "MYSQL", "ORACLE", "POSTGRESQL", "PRESTO", "REDSHIFT", "S3", "SALESFORCE", "SERVICENOW", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "TWITTER", "TIMESTREAM"
|
3408
|
+
# resp.data_source.type #=> String, one of "ADOBE_ANALYTICS", "AMAZON_ELASTICSEARCH", "ATHENA", "AURORA", "AURORA_POSTGRESQL", "AWS_IOT_ANALYTICS", "GITHUB", "JIRA", "MARIADB", "MYSQL", "ORACLE", "POSTGRESQL", "PRESTO", "REDSHIFT", "S3", "SALESFORCE", "SERVICENOW", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "TWITTER", "TIMESTREAM", "AMAZON_OPENSEARCH"
|
3390
3409
|
# resp.data_source.status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
|
3391
3410
|
# resp.data_source.created_time #=> Time
|
3392
3411
|
# resp.data_source.last_updated_time #=> Time
|
@@ -3437,6 +3456,7 @@ module Aws::QuickSight
|
|
3437
3456
|
# resp.data_source.data_source_parameters.teradata_parameters.database #=> String
|
3438
3457
|
# resp.data_source.data_source_parameters.twitter_parameters.query #=> String
|
3439
3458
|
# resp.data_source.data_source_parameters.twitter_parameters.max_rows #=> Integer
|
3459
|
+
# resp.data_source.data_source_parameters.amazon_open_search_parameters.domain #=> String
|
3440
3460
|
# resp.data_source.alternate_data_source_parameters #=> Array
|
3441
3461
|
# resp.data_source.alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
|
3442
3462
|
# resp.data_source.alternate_data_source_parameters[0].athena_parameters.work_group #=> String
|
@@ -3485,6 +3505,7 @@ module Aws::QuickSight
|
|
3485
3505
|
# resp.data_source.alternate_data_source_parameters[0].teradata_parameters.database #=> String
|
3486
3506
|
# resp.data_source.alternate_data_source_parameters[0].twitter_parameters.query #=> String
|
3487
3507
|
# resp.data_source.alternate_data_source_parameters[0].twitter_parameters.max_rows #=> Integer
|
3508
|
+
# resp.data_source.alternate_data_source_parameters[0].amazon_open_search_parameters.domain #=> String
|
3488
3509
|
# resp.data_source.vpc_connection_properties.vpc_connection_arn #=> String
|
3489
3510
|
# resp.data_source.ssl_properties.disable_ssl #=> Boolean
|
3490
3511
|
# resp.data_source.error_info.type #=> String, one of "ACCESS_DENIED", "COPY_SOURCE_NOT_FOUND", "TIMEOUT", "ENGINE_VERSION_NOT_SUPPORTED", "UNKNOWN_HOST", "GENERIC_SQL_FAILURE", "CONFLICT", "UNKNOWN"
|
@@ -3508,7 +3529,7 @@ module Aws::QuickSight
|
|
3508
3529
|
#
|
3509
3530
|
# @option params [required, String] :data_source_id
|
3510
3531
|
# The ID of the data source. This ID is unique per Amazon Web Services
|
3511
|
-
# Region
|
3532
|
+
# Region for each Amazon Web Services account.
|
3512
3533
|
#
|
3513
3534
|
# @return [Types::DescribeDataSourcePermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3514
3535
|
#
|
@@ -3792,7 +3813,7 @@ module Aws::QuickSight
|
|
3792
3813
|
#
|
3793
3814
|
# resp = client.describe_ingestion({
|
3794
3815
|
# aws_account_id: "AwsAccountId", # required
|
3795
|
-
# data_set_id: "
|
3816
|
+
# data_set_id: "String", # required
|
3796
3817
|
# ingestion_id: "IngestionId", # required
|
3797
3818
|
# })
|
3798
3819
|
#
|
@@ -3801,10 +3822,11 @@ module Aws::QuickSight
|
|
3801
3822
|
# resp.ingestion.arn #=> String
|
3802
3823
|
# resp.ingestion.ingestion_id #=> String
|
3803
3824
|
# resp.ingestion.ingestion_status #=> String, one of "INITIALIZED", "QUEUED", "RUNNING", "FAILED", "COMPLETED", "CANCELLED"
|
3804
|
-
# resp.ingestion.error_info.type #=> String, one of "FAILURE_TO_ASSUME_ROLE", "INGESTION_SUPERSEDED", "INGESTION_CANCELED", "DATA_SET_DELETED", "DATA_SET_NOT_SPICE", "S3_UPLOADED_FILE_DELETED", "S3_MANIFEST_ERROR", "DATA_TOLERANCE_EXCEPTION", "SPICE_TABLE_NOT_FOUND", "DATA_SET_SIZE_LIMIT_EXCEEDED", "ROW_SIZE_LIMIT_EXCEEDED", "ACCOUNT_CAPACITY_LIMIT_EXCEEDED", "CUSTOMER_ERROR", "DATA_SOURCE_NOT_FOUND", "IAM_ROLE_NOT_AVAILABLE", "CONNECTION_FAILURE", "SQL_TABLE_NOT_FOUND", "PERMISSION_DENIED", "SSL_CERTIFICATE_VALIDATION_FAILURE", "OAUTH_TOKEN_FAILURE", "SOURCE_API_LIMIT_EXCEEDED_FAILURE", "PASSWORD_AUTHENTICATION_FAILURE", "SQL_SCHEMA_MISMATCH_ERROR", "INVALID_DATE_FORMAT", "INVALID_DATAPREP_SYNTAX", "SOURCE_RESOURCE_LIMIT_EXCEEDED", "SQL_INVALID_PARAMETER_VALUE", "QUERY_TIMEOUT", "SQL_NUMERIC_OVERFLOW", "UNRESOLVABLE_HOST", "UNROUTABLE_HOST", "SQL_EXCEPTION", "S3_FILE_INACCESSIBLE", "IOT_FILE_NOT_FOUND", "IOT_DATA_SET_FILE_EMPTY", "INVALID_DATA_SOURCE_CONFIG", "DATA_SOURCE_AUTH_FAILED", "DATA_SOURCE_CONNECTION_FAILED", "FAILURE_TO_PROCESS_JSON_FILE", "INTERNAL_SERVICE_ERROR"
|
3825
|
+
# resp.ingestion.error_info.type #=> String, one of "FAILURE_TO_ASSUME_ROLE", "INGESTION_SUPERSEDED", "INGESTION_CANCELED", "DATA_SET_DELETED", "DATA_SET_NOT_SPICE", "S3_UPLOADED_FILE_DELETED", "S3_MANIFEST_ERROR", "DATA_TOLERANCE_EXCEPTION", "SPICE_TABLE_NOT_FOUND", "DATA_SET_SIZE_LIMIT_EXCEEDED", "ROW_SIZE_LIMIT_EXCEEDED", "ACCOUNT_CAPACITY_LIMIT_EXCEEDED", "CUSTOMER_ERROR", "DATA_SOURCE_NOT_FOUND", "IAM_ROLE_NOT_AVAILABLE", "CONNECTION_FAILURE", "SQL_TABLE_NOT_FOUND", "PERMISSION_DENIED", "SSL_CERTIFICATE_VALIDATION_FAILURE", "OAUTH_TOKEN_FAILURE", "SOURCE_API_LIMIT_EXCEEDED_FAILURE", "PASSWORD_AUTHENTICATION_FAILURE", "SQL_SCHEMA_MISMATCH_ERROR", "INVALID_DATE_FORMAT", "INVALID_DATAPREP_SYNTAX", "SOURCE_RESOURCE_LIMIT_EXCEEDED", "SQL_INVALID_PARAMETER_VALUE", "QUERY_TIMEOUT", "SQL_NUMERIC_OVERFLOW", "UNRESOLVABLE_HOST", "UNROUTABLE_HOST", "SQL_EXCEPTION", "S3_FILE_INACCESSIBLE", "IOT_FILE_NOT_FOUND", "IOT_DATA_SET_FILE_EMPTY", "INVALID_DATA_SOURCE_CONFIG", "DATA_SOURCE_AUTH_FAILED", "DATA_SOURCE_CONNECTION_FAILED", "FAILURE_TO_PROCESS_JSON_FILE", "INTERNAL_SERVICE_ERROR", "REFRESH_SUPPRESSED_BY_EDIT", "PERMISSION_NOT_FOUND", "ELASTICSEARCH_CURSOR_NOT_ENABLED", "CURSOR_NOT_ENABLED"
|
3805
3826
|
# resp.ingestion.error_info.message #=> String
|
3806
3827
|
# resp.ingestion.row_info.rows_ingested #=> Integer
|
3807
3828
|
# resp.ingestion.row_info.rows_dropped #=> Integer
|
3829
|
+
# resp.ingestion.row_info.total_rows_in_dataset #=> Integer
|
3808
3830
|
# resp.ingestion.queue_info.waiting_on_ingestion #=> String
|
3809
3831
|
# resp.ingestion.queue_info.queued_ingestion #=> String
|
3810
3832
|
# resp.ingestion.created_time #=> Time
|
@@ -3824,6 +3846,43 @@ module Aws::QuickSight
|
|
3824
3846
|
req.send_request(options)
|
3825
3847
|
end
|
3826
3848
|
|
3849
|
+
# Provides a summary and status of IP Rules.
|
3850
|
+
#
|
3851
|
+
# @option params [required, String] :aws_account_id
|
3852
|
+
# Your AWS account ID.
|
3853
|
+
#
|
3854
|
+
# @return [Types::DescribeIpRestrictionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3855
|
+
#
|
3856
|
+
# * {Types::DescribeIpRestrictionResponse#aws_account_id #aws_account_id} => String
|
3857
|
+
# * {Types::DescribeIpRestrictionResponse#ip_restriction_rule_map #ip_restriction_rule_map} => Hash<String,String>
|
3858
|
+
# * {Types::DescribeIpRestrictionResponse#enabled #enabled} => Boolean
|
3859
|
+
# * {Types::DescribeIpRestrictionResponse#request_id #request_id} => String
|
3860
|
+
# * {Types::DescribeIpRestrictionResponse#status #status} => Integer
|
3861
|
+
#
|
3862
|
+
# @example Request syntax with placeholder values
|
3863
|
+
#
|
3864
|
+
# resp = client.describe_ip_restriction({
|
3865
|
+
# aws_account_id: "AwsAccountId", # required
|
3866
|
+
# })
|
3867
|
+
#
|
3868
|
+
# @example Response structure
|
3869
|
+
#
|
3870
|
+
# resp.aws_account_id #=> String
|
3871
|
+
# resp.ip_restriction_rule_map #=> Hash
|
3872
|
+
# resp.ip_restriction_rule_map["CIDR"] #=> String
|
3873
|
+
# resp.enabled #=> Boolean
|
3874
|
+
# resp.request_id #=> String
|
3875
|
+
# resp.status #=> Integer
|
3876
|
+
#
|
3877
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeIpRestriction AWS API Documentation
|
3878
|
+
#
|
3879
|
+
# @overload describe_ip_restriction(params = {})
|
3880
|
+
# @param [Hash] params ({})
|
3881
|
+
def describe_ip_restriction(params = {}, options = {})
|
3882
|
+
req = build_request(:describe_ip_restriction, params)
|
3883
|
+
req.send_request(options)
|
3884
|
+
end
|
3885
|
+
|
3827
3886
|
# Describes the current namespace.
|
3828
3887
|
#
|
3829
3888
|
# @option params [required, String] :aws_account_id
|
@@ -4421,7 +4480,8 @@ module Aws::QuickSight
|
|
4421
4480
|
#
|
4422
4481
|
# @option params [required, Types::RegisteredUserEmbeddingExperienceConfiguration] :experience_configuration
|
4423
4482
|
# The experience you are embedding. For registered users, you can embed
|
4424
|
-
# Amazon QuickSight dashboards
|
4483
|
+
# Amazon QuickSight dashboards, the entire Amazon QuickSight console, or
|
4484
|
+
# the Amazon QuickSight Q search bar.
|
4425
4485
|
#
|
4426
4486
|
# @return [Types::GenerateEmbedUrlForRegisteredUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4427
4487
|
#
|
@@ -4442,6 +4502,9 @@ module Aws::QuickSight
|
|
4442
4502
|
# quick_sight_console: {
|
4443
4503
|
# initial_path: "EntryPath",
|
4444
4504
|
# },
|
4505
|
+
# q_search_bar: {
|
4506
|
+
# initial_topic_id: "RestrictiveResourceId",
|
4507
|
+
# },
|
4445
4508
|
# },
|
4446
4509
|
# })
|
4447
4510
|
#
|
@@ -4844,7 +4907,7 @@ module Aws::QuickSight
|
|
4844
4907
|
end
|
4845
4908
|
|
4846
4909
|
# Lists all of the datasets belonging to the current Amazon Web Services
|
4847
|
-
# account in an Amazon Web Services Region
|
4910
|
+
# account in an Amazon Web Services Region.
|
4848
4911
|
#
|
4849
4912
|
# The permissions resource is
|
4850
4913
|
# `arn:aws:quicksight:region:aws-account-id:dataset/*`.
|
@@ -4905,7 +4968,7 @@ module Aws::QuickSight
|
|
4905
4968
|
req.send_request(options)
|
4906
4969
|
end
|
4907
4970
|
|
4908
|
-
# Lists data sources in current Amazon Web Services Region
|
4971
|
+
# Lists data sources in current Amazon Web Services Region that belong
|
4909
4972
|
# to this Amazon Web Services account.
|
4910
4973
|
#
|
4911
4974
|
# @option params [required, String] :aws_account_id
|
@@ -4941,7 +5004,7 @@ module Aws::QuickSight
|
|
4941
5004
|
# resp.data_sources[0].arn #=> String
|
4942
5005
|
# resp.data_sources[0].data_source_id #=> String
|
4943
5006
|
# resp.data_sources[0].name #=> String
|
4944
|
-
# resp.data_sources[0].type #=> String, one of "ADOBE_ANALYTICS", "AMAZON_ELASTICSEARCH", "ATHENA", "AURORA", "AURORA_POSTGRESQL", "AWS_IOT_ANALYTICS", "GITHUB", "JIRA", "MARIADB", "MYSQL", "ORACLE", "POSTGRESQL", "PRESTO", "REDSHIFT", "S3", "SALESFORCE", "SERVICENOW", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "TWITTER", "TIMESTREAM"
|
5007
|
+
# resp.data_sources[0].type #=> String, one of "ADOBE_ANALYTICS", "AMAZON_ELASTICSEARCH", "ATHENA", "AURORA", "AURORA_POSTGRESQL", "AWS_IOT_ANALYTICS", "GITHUB", "JIRA", "MARIADB", "MYSQL", "ORACLE", "POSTGRESQL", "PRESTO", "REDSHIFT", "S3", "SALESFORCE", "SERVICENOW", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "TWITTER", "TIMESTREAM", "AMAZON_OPENSEARCH"
|
4945
5008
|
# resp.data_sources[0].status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
|
4946
5009
|
# resp.data_sources[0].created_time #=> Time
|
4947
5010
|
# resp.data_sources[0].last_updated_time #=> Time
|
@@ -4992,6 +5055,7 @@ module Aws::QuickSight
|
|
4992
5055
|
# resp.data_sources[0].data_source_parameters.teradata_parameters.database #=> String
|
4993
5056
|
# resp.data_sources[0].data_source_parameters.twitter_parameters.query #=> String
|
4994
5057
|
# resp.data_sources[0].data_source_parameters.twitter_parameters.max_rows #=> Integer
|
5058
|
+
# resp.data_sources[0].data_source_parameters.amazon_open_search_parameters.domain #=> String
|
4995
5059
|
# resp.data_sources[0].alternate_data_source_parameters #=> Array
|
4996
5060
|
# resp.data_sources[0].alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
|
4997
5061
|
# resp.data_sources[0].alternate_data_source_parameters[0].athena_parameters.work_group #=> String
|
@@ -5040,6 +5104,7 @@ module Aws::QuickSight
|
|
5040
5104
|
# resp.data_sources[0].alternate_data_source_parameters[0].teradata_parameters.database #=> String
|
5041
5105
|
# resp.data_sources[0].alternate_data_source_parameters[0].twitter_parameters.query #=> String
|
5042
5106
|
# resp.data_sources[0].alternate_data_source_parameters[0].twitter_parameters.max_rows #=> Integer
|
5107
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].amazon_open_search_parameters.domain #=> String
|
5043
5108
|
# resp.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
|
5044
5109
|
# resp.data_sources[0].ssl_properties.disable_ssl #=> Boolean
|
5045
5110
|
# resp.data_sources[0].error_info.type #=> String, one of "ACCESS_DENIED", "COPY_SOURCE_NOT_FOUND", "TIMEOUT", "ENGINE_VERSION_NOT_SUPPORTED", "UNKNOWN_HOST", "GENERIC_SQL_FAILURE", "CONFLICT", "UNKNOWN"
|
@@ -5398,8 +5463,8 @@ module Aws::QuickSight
|
|
5398
5463
|
# @example Request syntax with placeholder values
|
5399
5464
|
#
|
5400
5465
|
# resp = client.list_ingestions({
|
5401
|
-
# data_set_id: "
|
5402
|
-
# next_token: "
|
5466
|
+
# data_set_id: "String", # required
|
5467
|
+
# next_token: "String",
|
5403
5468
|
# aws_account_id: "AwsAccountId", # required
|
5404
5469
|
# max_results: 1,
|
5405
5470
|
# })
|
@@ -5410,10 +5475,11 @@ module Aws::QuickSight
|
|
5410
5475
|
# resp.ingestions[0].arn #=> String
|
5411
5476
|
# resp.ingestions[0].ingestion_id #=> String
|
5412
5477
|
# resp.ingestions[0].ingestion_status #=> String, one of "INITIALIZED", "QUEUED", "RUNNING", "FAILED", "COMPLETED", "CANCELLED"
|
5413
|
-
# resp.ingestions[0].error_info.type #=> String, one of "FAILURE_TO_ASSUME_ROLE", "INGESTION_SUPERSEDED", "INGESTION_CANCELED", "DATA_SET_DELETED", "DATA_SET_NOT_SPICE", "S3_UPLOADED_FILE_DELETED", "S3_MANIFEST_ERROR", "DATA_TOLERANCE_EXCEPTION", "SPICE_TABLE_NOT_FOUND", "DATA_SET_SIZE_LIMIT_EXCEEDED", "ROW_SIZE_LIMIT_EXCEEDED", "ACCOUNT_CAPACITY_LIMIT_EXCEEDED", "CUSTOMER_ERROR", "DATA_SOURCE_NOT_FOUND", "IAM_ROLE_NOT_AVAILABLE", "CONNECTION_FAILURE", "SQL_TABLE_NOT_FOUND", "PERMISSION_DENIED", "SSL_CERTIFICATE_VALIDATION_FAILURE", "OAUTH_TOKEN_FAILURE", "SOURCE_API_LIMIT_EXCEEDED_FAILURE", "PASSWORD_AUTHENTICATION_FAILURE", "SQL_SCHEMA_MISMATCH_ERROR", "INVALID_DATE_FORMAT", "INVALID_DATAPREP_SYNTAX", "SOURCE_RESOURCE_LIMIT_EXCEEDED", "SQL_INVALID_PARAMETER_VALUE", "QUERY_TIMEOUT", "SQL_NUMERIC_OVERFLOW", "UNRESOLVABLE_HOST", "UNROUTABLE_HOST", "SQL_EXCEPTION", "S3_FILE_INACCESSIBLE", "IOT_FILE_NOT_FOUND", "IOT_DATA_SET_FILE_EMPTY", "INVALID_DATA_SOURCE_CONFIG", "DATA_SOURCE_AUTH_FAILED", "DATA_SOURCE_CONNECTION_FAILED", "FAILURE_TO_PROCESS_JSON_FILE", "INTERNAL_SERVICE_ERROR"
|
5478
|
+
# resp.ingestions[0].error_info.type #=> String, one of "FAILURE_TO_ASSUME_ROLE", "INGESTION_SUPERSEDED", "INGESTION_CANCELED", "DATA_SET_DELETED", "DATA_SET_NOT_SPICE", "S3_UPLOADED_FILE_DELETED", "S3_MANIFEST_ERROR", "DATA_TOLERANCE_EXCEPTION", "SPICE_TABLE_NOT_FOUND", "DATA_SET_SIZE_LIMIT_EXCEEDED", "ROW_SIZE_LIMIT_EXCEEDED", "ACCOUNT_CAPACITY_LIMIT_EXCEEDED", "CUSTOMER_ERROR", "DATA_SOURCE_NOT_FOUND", "IAM_ROLE_NOT_AVAILABLE", "CONNECTION_FAILURE", "SQL_TABLE_NOT_FOUND", "PERMISSION_DENIED", "SSL_CERTIFICATE_VALIDATION_FAILURE", "OAUTH_TOKEN_FAILURE", "SOURCE_API_LIMIT_EXCEEDED_FAILURE", "PASSWORD_AUTHENTICATION_FAILURE", "SQL_SCHEMA_MISMATCH_ERROR", "INVALID_DATE_FORMAT", "INVALID_DATAPREP_SYNTAX", "SOURCE_RESOURCE_LIMIT_EXCEEDED", "SQL_INVALID_PARAMETER_VALUE", "QUERY_TIMEOUT", "SQL_NUMERIC_OVERFLOW", "UNRESOLVABLE_HOST", "UNROUTABLE_HOST", "SQL_EXCEPTION", "S3_FILE_INACCESSIBLE", "IOT_FILE_NOT_FOUND", "IOT_DATA_SET_FILE_EMPTY", "INVALID_DATA_SOURCE_CONFIG", "DATA_SOURCE_AUTH_FAILED", "DATA_SOURCE_CONNECTION_FAILED", "FAILURE_TO_PROCESS_JSON_FILE", "INTERNAL_SERVICE_ERROR", "REFRESH_SUPPRESSED_BY_EDIT", "PERMISSION_NOT_FOUND", "ELASTICSEARCH_CURSOR_NOT_ENABLED", "CURSOR_NOT_ENABLED"
|
5414
5479
|
# resp.ingestions[0].error_info.message #=> String
|
5415
5480
|
# resp.ingestions[0].row_info.rows_ingested #=> Integer
|
5416
5481
|
# resp.ingestions[0].row_info.rows_dropped #=> Integer
|
5482
|
+
# resp.ingestions[0].row_info.total_rows_in_dataset #=> Integer
|
5417
5483
|
# resp.ingestions[0].queue_info.waiting_on_ingestion #=> String
|
5418
5484
|
# resp.ingestions[0].queue_info.queued_ingestion #=> String
|
5419
5485
|
# resp.ingestions[0].created_time #=> Time
|
@@ -6477,7 +6543,7 @@ module Aws::QuickSight
|
|
6477
6543
|
end
|
6478
6544
|
|
6479
6545
|
# Updates Amazon QuickSight customizations the current Amazon Web
|
6480
|
-
# Services Region
|
6546
|
+
# Services Region. Currently, the only customization you can use is a
|
6481
6547
|
# theme.
|
6482
6548
|
#
|
6483
6549
|
# You can use customizations for your Amazon Web Services account or, if
|
@@ -6497,7 +6563,7 @@ module Aws::QuickSight
|
|
6497
6563
|
#
|
6498
6564
|
# @option params [required, Types::AccountCustomization] :account_customization
|
6499
6565
|
# The Amazon QuickSight customizations you're updating in the current
|
6500
|
-
# Amazon Web Services Region
|
6566
|
+
# Amazon Web Services Region.
|
6501
6567
|
#
|
6502
6568
|
# @return [Types::UpdateAccountCustomizationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6503
6569
|
#
|
@@ -6775,7 +6841,7 @@ module Aws::QuickSight
|
|
6775
6841
|
# the CreateTemplate API operation. For `SourceTemplate`, specify the
|
6776
6842
|
# Amazon Resource Name (ARN) of the source template. The
|
6777
6843
|
# `SourceTemplate` ARN can contain any Amazon Web Services account and
|
6778
|
-
# any Amazon QuickSight-supported Amazon Web Services Region
|
6844
|
+
# any Amazon QuickSight-supported Amazon Web Services Region.
|
6779
6845
|
#
|
6780
6846
|
# Use the `DataSetReferences` entity within `SourceTemplate` to list the
|
6781
6847
|
# replacement datasets for the placeholders listed in the original. The
|
@@ -7011,7 +7077,7 @@ module Aws::QuickSight
|
|
7011
7077
|
#
|
7012
7078
|
# @option params [required, String] :data_set_id
|
7013
7079
|
# The ID for the dataset that you want to update. This ID is unique per
|
7014
|
-
# Amazon Web Services Region
|
7080
|
+
# Amazon Web Services Region for each Amazon Web Services account.
|
7015
7081
|
#
|
7016
7082
|
# @option params [required, String] :name
|
7017
7083
|
# The display name for the dataset.
|
@@ -7246,7 +7312,7 @@ module Aws::QuickSight
|
|
7246
7312
|
#
|
7247
7313
|
# @option params [required, String] :data_set_id
|
7248
7314
|
# The ID for the dataset whose permissions you want to update. This ID
|
7249
|
-
# is unique per Amazon Web Services Region
|
7315
|
+
# is unique per Amazon Web Services Region for each Amazon Web Services
|
7250
7316
|
# account.
|
7251
7317
|
#
|
7252
7318
|
# @option params [Array<Types::ResourcePermission>] :grant_permissions
|
@@ -7304,7 +7370,7 @@ module Aws::QuickSight
|
|
7304
7370
|
#
|
7305
7371
|
# @option params [required, String] :data_source_id
|
7306
7372
|
# The ID of the data source. This ID is unique per Amazon Web Services
|
7307
|
-
# Region
|
7373
|
+
# Region for each Amazon Web Services account.
|
7308
7374
|
#
|
7309
7375
|
# @option params [required, String] :name
|
7310
7376
|
# A display name for the data source.
|
@@ -7430,6 +7496,9 @@ module Aws::QuickSight
|
|
7430
7496
|
# query: "Query", # required
|
7431
7497
|
# max_rows: 1, # required
|
7432
7498
|
# },
|
7499
|
+
# amazon_open_search_parameters: {
|
7500
|
+
# domain: "Domain", # required
|
7501
|
+
# },
|
7433
7502
|
# },
|
7434
7503
|
# credentials: {
|
7435
7504
|
# credential_pair: {
|
@@ -7526,6 +7595,9 @@ module Aws::QuickSight
|
|
7526
7595
|
# query: "Query", # required
|
7527
7596
|
# max_rows: 1, # required
|
7528
7597
|
# },
|
7598
|
+
# amazon_open_search_parameters: {
|
7599
|
+
# domain: "Domain", # required
|
7600
|
+
# },
|
7529
7601
|
# },
|
7530
7602
|
# ],
|
7531
7603
|
# },
|
@@ -7563,7 +7635,7 @@ module Aws::QuickSight
|
|
7563
7635
|
#
|
7564
7636
|
# @option params [required, String] :data_source_id
|
7565
7637
|
# The ID of the data source. This ID is unique per Amazon Web Services
|
7566
|
-
# Region
|
7638
|
+
# Region for each Amazon Web Services account.
|
7567
7639
|
#
|
7568
7640
|
# @option params [Array<Types::ResourcePermission>] :grant_permissions
|
7569
7641
|
# A list of resource permissions that you want to grant on the data
|
@@ -7846,6 +7918,48 @@ module Aws::QuickSight
|
|
7846
7918
|
req.send_request(options)
|
7847
7919
|
end
|
7848
7920
|
|
7921
|
+
# Updates content and status of IP Rules.
|
7922
|
+
#
|
7923
|
+
# @option params [required, String] :aws_account_id
|
7924
|
+
# Your AWS account ID.
|
7925
|
+
#
|
7926
|
+
# @option params [Hash<String,String>] :ip_restriction_rule_map
|
7927
|
+
# Describes updated IP rules.
|
7928
|
+
#
|
7929
|
+
# @option params [Boolean] :enabled
|
7930
|
+
# Whether or not IP rules are enabled.
|
7931
|
+
#
|
7932
|
+
# @return [Types::UpdateIpRestrictionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7933
|
+
#
|
7934
|
+
# * {Types::UpdateIpRestrictionResponse#aws_account_id #aws_account_id} => String
|
7935
|
+
# * {Types::UpdateIpRestrictionResponse#request_id #request_id} => String
|
7936
|
+
# * {Types::UpdateIpRestrictionResponse#status #status} => Integer
|
7937
|
+
#
|
7938
|
+
# @example Request syntax with placeholder values
|
7939
|
+
#
|
7940
|
+
# resp = client.update_ip_restriction({
|
7941
|
+
# aws_account_id: "AwsAccountId", # required
|
7942
|
+
# ip_restriction_rule_map: {
|
7943
|
+
# "CIDR" => "IpRestrictionRuleDescription",
|
7944
|
+
# },
|
7945
|
+
# enabled: false,
|
7946
|
+
# })
|
7947
|
+
#
|
7948
|
+
# @example Response structure
|
7949
|
+
#
|
7950
|
+
# resp.aws_account_id #=> String
|
7951
|
+
# resp.request_id #=> String
|
7952
|
+
# resp.status #=> Integer
|
7953
|
+
#
|
7954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateIpRestriction AWS API Documentation
|
7955
|
+
#
|
7956
|
+
# @overload update_ip_restriction(params = {})
|
7957
|
+
# @param [Hash] params ({})
|
7958
|
+
def update_ip_restriction(params = {}, options = {})
|
7959
|
+
req = build_request(:update_ip_restriction, params)
|
7960
|
+
req.send_request(options)
|
7961
|
+
end
|
7962
|
+
|
7849
7963
|
# Updates a template from an existing Amazon QuickSight analysis or
|
7850
7964
|
# another template.
|
7851
7965
|
#
|
@@ -8449,7 +8563,7 @@ module Aws::QuickSight
|
|
8449
8563
|
params: params,
|
8450
8564
|
config: config)
|
8451
8565
|
context[:gem_name] = 'aws-sdk-quicksight'
|
8452
|
-
context[:gem_version] = '1.
|
8566
|
+
context[:gem_version] = '1.57.0'
|
8453
8567
|
Seahorse::Client::Request.new(handlers, context)
|
8454
8568
|
end
|
8455
8569
|
|