aws-sdk-quicksight 1.54.0 → 1.58.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 +293 -131
- data/lib/aws-sdk-quicksight/client_api.rb +105 -21
- data/lib/aws-sdk-quicksight/types.rb +532 -238
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +4 -4
@@ -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
|
@@ -378,7 +387,7 @@ module Aws::QuickSight
|
|
378
387
|
# Guide.*
|
379
388
|
#
|
380
389
|
# You can create customizations for your Amazon Web Services account or,
|
381
|
-
# if you specify a namespace, for a
|
390
|
+
# if you specify a namespace, for a QuickSight namespace instead.
|
382
391
|
# Customizations that apply to a namespace always override
|
383
392
|
# customizations that apply to an Amazon Web Services account. To find
|
384
393
|
# out which customizations apply, use the `DescribeAccountCustomization`
|
@@ -407,8 +416,8 @@ 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
|
411
|
-
# Services account and a
|
419
|
+
# Amazon Web Services Region. You can add these to an Amazon Web
|
420
|
+
# Services account and a QuickSight namespace.
|
412
421
|
#
|
413
422
|
# For example, you can add a default theme by setting
|
414
423
|
# `AccountCustomization` to the midnight theme: `"AccountCustomization":
|
@@ -437,6 +446,7 @@ module Aws::QuickSight
|
|
437
446
|
# namespace: "Namespace",
|
438
447
|
# account_customization: { # required
|
439
448
|
# default_theme: "Arn",
|
449
|
+
# default_email_customization_template: "Arn",
|
440
450
|
# },
|
441
451
|
# tags: [
|
442
452
|
# {
|
@@ -452,6 +462,7 @@ module Aws::QuickSight
|
|
452
462
|
# resp.aws_account_id #=> String
|
453
463
|
# resp.namespace #=> String
|
454
464
|
# resp.account_customization.default_theme #=> String
|
465
|
+
# resp.account_customization.default_email_customization_template #=> String
|
455
466
|
# resp.request_id #=> String
|
456
467
|
# resp.status #=> Integer
|
457
468
|
#
|
@@ -604,7 +615,7 @@ module Aws::QuickSight
|
|
604
615
|
# dashboard.
|
605
616
|
#
|
606
617
|
# @option params [required, String] :dashboard_id
|
607
|
-
# The ID for the dashboard, also added to the
|
618
|
+
# The ID for the dashboard, also added to the IAM policy.
|
608
619
|
#
|
609
620
|
# @option params [required, String] :name
|
610
621
|
# The display name of the dashboard.
|
@@ -616,8 +627,8 @@ module Aws::QuickSight
|
|
616
627
|
#
|
617
628
|
# @option params [Array<Types::ResourcePermission>] :permissions
|
618
629
|
# A structure that contains the permissions of the dashboard. You can
|
619
|
-
# use this structure for granting permissions by providing a list of
|
620
|
-
#
|
630
|
+
# use this structure for granting permissions by providing a list of IAM
|
631
|
+
# action information for each principal ARN.
|
621
632
|
#
|
622
633
|
# To specify no permissions, omit the permissions list.
|
623
634
|
#
|
@@ -627,10 +638,10 @@ module Aws::QuickSight
|
|
627
638
|
# using as source. You can only create a dashboard from a template, so
|
628
639
|
# you use a `SourceTemplate` entity. If you need to create a dashboard
|
629
640
|
# from an analysis, first convert the analysis to a template by using
|
630
|
-
# the CreateTemplate API operation. For `SourceTemplate`, specify
|
631
|
-
# Amazon Resource Name (ARN) of the source template. The
|
641
|
+
# the ` CreateTemplate ` API operation. For `SourceTemplate`, specify
|
642
|
+
# the Amazon Resource Name (ARN) of the source template. The
|
632
643
|
# `SourceTemplate`ARN can contain any Amazon Web Services account and
|
633
|
-
# any Amazon QuickSight-supported Amazon Web Services Region
|
644
|
+
# any Amazon QuickSight-supported Amazon Web Services Region.
|
634
645
|
#
|
635
646
|
# Use the `DataSetReferences` entity within `SourceTemplate` to list the
|
636
647
|
# replacement datasets for the placeholders listed in the original. The
|
@@ -771,7 +782,7 @@ module Aws::QuickSight
|
|
771
782
|
#
|
772
783
|
# @option params [required, String] :data_set_id
|
773
784
|
# An ID for the dataset that you want to create. This ID is unique per
|
774
|
-
# Amazon Web Services Region
|
785
|
+
# Amazon Web Services Region for each Amazon Web Services account.
|
775
786
|
#
|
776
787
|
# @option params [required, String] :name
|
777
788
|
# The display name for the dataset.
|
@@ -1023,7 +1034,7 @@ module Aws::QuickSight
|
|
1023
1034
|
#
|
1024
1035
|
# @option params [required, String] :data_source_id
|
1025
1036
|
# An ID for the data source. This ID is unique per Amazon Web Services
|
1026
|
-
# Region
|
1037
|
+
# Region for each Amazon Web Services account.
|
1027
1038
|
#
|
1028
1039
|
# @option params [required, String] :name
|
1029
1040
|
# A display name for the data source.
|
@@ -1032,7 +1043,7 @@ module Aws::QuickSight
|
|
1032
1043
|
# The type of the data source. To return a list of all data sources, use
|
1033
1044
|
# `ListDataSources`.
|
1034
1045
|
#
|
1035
|
-
# Use `AMAZON_ELASTICSEARCH` for Amazon
|
1046
|
+
# Use `AMAZON_ELASTICSEARCH` for Amazon OpenSearch Service.
|
1036
1047
|
#
|
1037
1048
|
# @option params [Types::DataSourceParameters] :data_source_parameters
|
1038
1049
|
# The parameters that Amazon QuickSight uses to connect to your
|
@@ -1072,7 +1083,7 @@ module Aws::QuickSight
|
|
1072
1083
|
# aws_account_id: "AwsAccountId", # required
|
1073
1084
|
# data_source_id: "ResourceId", # required
|
1074
1085
|
# 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, AMAZON_OPENSEARCH
|
1086
|
+
# 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, EXASOL
|
1076
1087
|
# data_source_parameters: {
|
1077
1088
|
# amazon_elasticsearch_parameters: {
|
1078
1089
|
# domain: "Domain", # required
|
@@ -1166,6 +1177,10 @@ module Aws::QuickSight
|
|
1166
1177
|
# amazon_open_search_parameters: {
|
1167
1178
|
# domain: "Domain", # required
|
1168
1179
|
# },
|
1180
|
+
# exasol_parameters: {
|
1181
|
+
# host: "Host", # required
|
1182
|
+
# port: 1, # required
|
1183
|
+
# },
|
1169
1184
|
# },
|
1170
1185
|
# credentials: {
|
1171
1186
|
# credential_pair: {
|
@@ -1265,6 +1280,10 @@ module Aws::QuickSight
|
|
1265
1280
|
# amazon_open_search_parameters: {
|
1266
1281
|
# domain: "Domain", # required
|
1267
1282
|
# },
|
1283
|
+
# exasol_parameters: {
|
1284
|
+
# host: "Host", # required
|
1285
|
+
# port: 1, # required
|
1286
|
+
# },
|
1268
1287
|
# },
|
1269
1288
|
# ],
|
1270
1289
|
# },
|
@@ -1310,10 +1329,11 @@ module Aws::QuickSight
|
|
1310
1329
|
# Creates an empty shared folder.
|
1311
1330
|
#
|
1312
1331
|
# @option params [required, String] :aws_account_id
|
1313
|
-
# The
|
1332
|
+
# The ID for the Amazon Web Services account where you want to create
|
1333
|
+
# the folder.
|
1314
1334
|
#
|
1315
1335
|
# @option params [required, String] :folder_id
|
1316
|
-
# The folder
|
1336
|
+
# The ID of the folder.
|
1317
1337
|
#
|
1318
1338
|
# @option params [String] :name
|
1319
1339
|
# The name of the folder.
|
@@ -1385,10 +1405,10 @@ module Aws::QuickSight
|
|
1385
1405
|
# folder.
|
1386
1406
|
#
|
1387
1407
|
# @option params [required, String] :aws_account_id
|
1388
|
-
# The
|
1408
|
+
# The ID for the Amazon Web Services account that contains the folder.
|
1389
1409
|
#
|
1390
1410
|
# @option params [required, String] :folder_id
|
1391
|
-
# The folder
|
1411
|
+
# The ID of the folder.
|
1392
1412
|
#
|
1393
1413
|
# @option params [required, String] :member_id
|
1394
1414
|
# The ID of the asset (the dashboard, analysis, or dataset).
|
@@ -1530,7 +1550,7 @@ module Aws::QuickSight
|
|
1530
1550
|
req.send_request(options)
|
1531
1551
|
end
|
1532
1552
|
|
1533
|
-
# Creates an assignment with one specified
|
1553
|
+
# Creates an assignment with one specified IAM policy, identified by its
|
1534
1554
|
# Amazon Resource Name (ARN). This policy assignment is attached to the
|
1535
1555
|
# specified groups or users of Amazon QuickSight. Assignment names are
|
1536
1556
|
# unique per Amazon Web Services account. To avoid overwriting rules in
|
@@ -1538,7 +1558,7 @@ module Aws::QuickSight
|
|
1538
1558
|
#
|
1539
1559
|
# @option params [required, String] :aws_account_id
|
1540
1560
|
# The ID of the Amazon Web Services account where you want to assign an
|
1541
|
-
#
|
1561
|
+
# IAM policy to Amazon QuickSight users or groups.
|
1542
1562
|
#
|
1543
1563
|
# @option params [required, String] :assignment_name
|
1544
1564
|
# The name of the assignment, also called a rule. It must be unique
|
@@ -1557,7 +1577,7 @@ module Aws::QuickSight
|
|
1557
1577
|
# when creating the data source.
|
1558
1578
|
#
|
1559
1579
|
# @option params [String] :policy_arn
|
1560
|
-
# The ARN for the
|
1580
|
+
# The ARN for the IAM policy to apply to the Amazon QuickSight users and
|
1561
1581
|
# groups specified in this assignment.
|
1562
1582
|
#
|
1563
1583
|
# @option params [Hash<String,Array>] :identities
|
@@ -1632,6 +1652,9 @@ module Aws::QuickSight
|
|
1632
1652
|
# @option params [required, String] :aws_account_id
|
1633
1653
|
# The Amazon Web Services account ID.
|
1634
1654
|
#
|
1655
|
+
# @option params [String] :ingestion_type
|
1656
|
+
# The type of ingestion that you want to create.
|
1657
|
+
#
|
1635
1658
|
# @return [Types::CreateIngestionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1636
1659
|
#
|
1637
1660
|
# * {Types::CreateIngestionResponse#arn #arn} => String
|
@@ -1643,9 +1666,10 @@ module Aws::QuickSight
|
|
1643
1666
|
# @example Request syntax with placeholder values
|
1644
1667
|
#
|
1645
1668
|
# resp = client.create_ingestion({
|
1646
|
-
# data_set_id: "
|
1669
|
+
# data_set_id: "String", # required
|
1647
1670
|
# ingestion_id: "IngestionId", # required
|
1648
1671
|
# aws_account_id: "AwsAccountId", # required
|
1672
|
+
# ingestion_type: "INCREMENTAL_REFRESH", # accepts INCREMENTAL_REFRESH, FULL_REFRESH
|
1649
1673
|
# })
|
1650
1674
|
#
|
1651
1675
|
# @example Response structure
|
@@ -1771,7 +1795,7 @@ module Aws::QuickSight
|
|
1771
1795
|
# For `SourceTemplate`, specify the ARN of the source template. For
|
1772
1796
|
# `SourceAnalysis`, specify the ARN of the source analysis. The
|
1773
1797
|
# `SourceTemplate` ARN can contain any Amazon Web Services account and
|
1774
|
-
# any Amazon QuickSight-supported Amazon Web Services Region
|
1798
|
+
# any Amazon QuickSight-supported Amazon Web Services Region.
|
1775
1799
|
#
|
1776
1800
|
# Use the `DataSetReferences` entity within `SourceTemplate` or
|
1777
1801
|
# `SourceAnalysis` to list the replacement datasets for the placeholders
|
@@ -1925,7 +1949,7 @@ module Aws::QuickSight
|
|
1925
1949
|
# The ID of the theme that a custom theme will inherit from. All themes
|
1926
1950
|
# inherit from one of the starting themes defined by Amazon QuickSight.
|
1927
1951
|
# For a list of the starting themes, use `ListThemes` or choose
|
1928
|
-
# **Themes** from within
|
1952
|
+
# **Themes** from within an analysis.
|
1929
1953
|
#
|
1930
1954
|
# @option params [String] :version_description
|
1931
1955
|
# A description of the first version of the theme that you're creating.
|
@@ -2082,13 +2106,13 @@ module Aws::QuickSight
|
|
2082
2106
|
end
|
2083
2107
|
|
2084
2108
|
# Deletes all Amazon QuickSight customizations in this Amazon Web
|
2085
|
-
# Services Region
|
2109
|
+
# Services Region for the specified Amazon Web Services account and
|
2086
2110
|
# Amazon QuickSight namespace.
|
2087
2111
|
#
|
2088
2112
|
# @option params [required, String] :aws_account_id
|
2089
2113
|
# The ID for the Amazon Web Services account that you want to delete
|
2090
2114
|
# Amazon QuickSight customizations from in this Amazon Web Services
|
2091
|
-
# Region
|
2115
|
+
# Region.
|
2092
2116
|
#
|
2093
2117
|
# @option params [String] :namespace
|
2094
2118
|
# The Amazon QuickSight namespace that you're deleting the
|
@@ -2242,7 +2266,7 @@ module Aws::QuickSight
|
|
2242
2266
|
#
|
2243
2267
|
# @option params [required, String] :data_set_id
|
2244
2268
|
# The ID for the dataset that you want to create. This ID is unique per
|
2245
|
-
# Amazon Web Services Region
|
2269
|
+
# Amazon Web Services Region for each Amazon Web Services account.
|
2246
2270
|
#
|
2247
2271
|
# @return [Types::DeleteDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2248
2272
|
#
|
@@ -2282,7 +2306,7 @@ module Aws::QuickSight
|
|
2282
2306
|
#
|
2283
2307
|
# @option params [required, String] :data_source_id
|
2284
2308
|
# The ID of the data source. This ID is unique per Amazon Web Services
|
2285
|
-
# Region
|
2309
|
+
# Region for each Amazon Web Services account.
|
2286
2310
|
#
|
2287
2311
|
# @return [Types::DeleteDataSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2288
2312
|
#
|
@@ -2317,10 +2341,10 @@ module Aws::QuickSight
|
|
2317
2341
|
# Deletes an empty folder.
|
2318
2342
|
#
|
2319
2343
|
# @option params [required, String] :aws_account_id
|
2320
|
-
# The
|
2344
|
+
# The ID for the Amazon Web Services account that contains the folder.
|
2321
2345
|
#
|
2322
2346
|
# @option params [required, String] :folder_id
|
2323
|
-
# The folder
|
2347
|
+
# The ID of the folder.
|
2324
2348
|
#
|
2325
2349
|
# @return [Types::DeleteFolderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2326
2350
|
#
|
@@ -2356,7 +2380,7 @@ module Aws::QuickSight
|
|
2356
2380
|
# folder.
|
2357
2381
|
#
|
2358
2382
|
# @option params [required, String] :aws_account_id
|
2359
|
-
# The
|
2383
|
+
# The ID for the Amazon Web Services account that contains the folder.
|
2360
2384
|
#
|
2361
2385
|
# @option params [required, String] :folder_id
|
2362
2386
|
# The Folder ID.
|
@@ -2483,11 +2507,11 @@ module Aws::QuickSight
|
|
2483
2507
|
req.send_request(options)
|
2484
2508
|
end
|
2485
2509
|
|
2486
|
-
# Deletes an existing
|
2510
|
+
# Deletes an existing IAM policy assignment.
|
2487
2511
|
#
|
2488
2512
|
# @option params [required, String] :aws_account_id
|
2489
|
-
# The Amazon Web Services account ID where you want to delete the
|
2490
|
-
#
|
2513
|
+
# The Amazon Web Services account ID where you want to delete the IAM
|
2514
|
+
# policy assignment.
|
2491
2515
|
#
|
2492
2516
|
# @option params [required, String] :assignment_name
|
2493
2517
|
# The name of the assignment.
|
@@ -2836,7 +2860,7 @@ module Aws::QuickSight
|
|
2836
2860
|
|
2837
2861
|
# Describes the customizations associated with the provided Amazon Web
|
2838
2862
|
# Services account and Amazon Amazon QuickSight namespace in an Amazon
|
2839
|
-
# Web Services Region
|
2863
|
+
# Web Services Region. The Amazon QuickSight console evaluates which
|
2840
2864
|
# customizations to apply by running this API operation with the
|
2841
2865
|
# `Resolved` flag included.
|
2842
2866
|
#
|
@@ -2845,48 +2869,48 @@ module Aws::QuickSight
|
|
2845
2869
|
#
|
2846
2870
|
# * `Amazon Web Services account` - The Amazon Web Services account
|
2847
2871
|
# exists at the top of the hierarchy. It has the potential to use all
|
2848
|
-
# of the Amazon Web Services Regions
|
2849
|
-
# subscribe to Amazon QuickSight, you choose one Amazon Web
|
2850
|
-
# Region
|
2851
|
-
# capacity is located. You can use Amazon QuickSight in any
|
2852
|
-
# Amazon Web Services Region
|
2872
|
+
# of the Amazon Web Services Regions and Amazon Web Services Services.
|
2873
|
+
# When you subscribe to Amazon QuickSight, you choose one Amazon Web
|
2874
|
+
# Services Region to use as your home Region. That's where your free
|
2875
|
+
# SPICE capacity is located. You can use Amazon QuickSight in any
|
2876
|
+
# supported Amazon Web Services Region.
|
2853
2877
|
#
|
2854
|
-
# * `Amazon Web Services Region
|
2878
|
+
# * `Amazon Web Services Region` - In each Amazon Web Services Region
|
2855
2879
|
# where you sign in to Amazon QuickSight at least once, Amazon
|
2856
2880
|
# QuickSight acts as a separate instance of the same service. If you
|
2857
2881
|
# have a user directory, it resides in us-east-1, which is the US East
|
2858
2882
|
# (N. Virginia). Generally speaking, these users have access to Amazon
|
2859
|
-
# QuickSight in any Amazon Web Services Region
|
2883
|
+
# QuickSight in any Amazon Web Services Region, unless they are
|
2860
2884
|
# constrained to a namespace.
|
2861
2885
|
#
|
2862
|
-
# To run the command in a different Amazon Web Services Region
|
2863
|
-
# change your Region settings. If you're using the
|
2864
|
-
#
|
2886
|
+
# To run the command in a different Amazon Web Services Region, you
|
2887
|
+
# change your Region settings. If you're using the CLI, you can use
|
2888
|
+
# one of the following options:
|
2865
2889
|
#
|
2866
2890
|
# * Use [command line options][1].
|
2867
2891
|
#
|
2868
2892
|
# * Use [named profiles][2].
|
2869
2893
|
#
|
2870
2894
|
# * Run `aws configure` to change your default Amazon Web Services
|
2871
|
-
# Region
|
2872
|
-
#
|
2895
|
+
# Region. Use Enter to key the same settings for your keys. For more
|
2896
|
+
# information, see [Configuring the CLI][3].
|
2873
2897
|
#
|
2874
|
-
# * `Namespace` - A
|
2875
|
-
#
|
2876
|
-
#
|
2877
|
-
#
|
2898
|
+
# * `Namespace` - A QuickSight namespace is a partition that contains
|
2899
|
+
# users and assets (data sources, datasets, dashboards, and so on). To
|
2900
|
+
# access assets that are in a specific namespace, users and groups
|
2901
|
+
# must also be part of the same namespace. People who share a
|
2878
2902
|
# namespace are completely isolated from users and assets in other
|
2879
2903
|
# namespaces, even if they are in the same Amazon Web Services account
|
2880
|
-
# and Amazon Web Services Region
|
2904
|
+
# and Amazon Web Services Region.
|
2881
2905
|
#
|
2882
|
-
# * `Applied customizations` - Within an Amazon Web Services Region
|
2906
|
+
# * `Applied customizations` - Within an Amazon Web Services Region, a
|
2883
2907
|
# set of Amazon QuickSight customizations can apply to an Amazon Web
|
2884
2908
|
# Services account or to a namespace. Settings that you apply to a
|
2885
2909
|
# namespace override settings that you apply to an Amazon Web Services
|
2886
2910
|
# account. All settings are isolated to a single Amazon Web Services
|
2887
|
-
# Region
|
2888
|
-
#
|
2889
|
-
# Region
|
2911
|
+
# Region. To apply them in other Amazon Web Services Regions, run the
|
2912
|
+
# `CreateAccountCustomization` command in each Amazon Web Services
|
2913
|
+
# Region where you want to apply the same customizations.
|
2890
2914
|
#
|
2891
2915
|
#
|
2892
2916
|
#
|
@@ -2933,6 +2957,7 @@ module Aws::QuickSight
|
|
2933
2957
|
# resp.aws_account_id #=> String
|
2934
2958
|
# resp.namespace #=> String
|
2935
2959
|
# resp.account_customization.default_theme #=> String
|
2960
|
+
# resp.account_customization.default_email_customization_template #=> String
|
2936
2961
|
# resp.request_id #=> String
|
2937
2962
|
# resp.status #=> Integer
|
2938
2963
|
#
|
@@ -3154,7 +3179,7 @@ module Aws::QuickSight
|
|
3154
3179
|
# that you're describing permissions for.
|
3155
3180
|
#
|
3156
3181
|
# @option params [required, String] :dashboard_id
|
3157
|
-
# The ID for the dashboard, also added to the
|
3182
|
+
# The ID for the dashboard, also added to the IAM policy.
|
3158
3183
|
#
|
3159
3184
|
# @return [Types::DescribeDashboardPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3160
3185
|
#
|
@@ -3163,6 +3188,7 @@ module Aws::QuickSight
|
|
3163
3188
|
# * {Types::DescribeDashboardPermissionsResponse#permissions #permissions} => Array<Types::ResourcePermission>
|
3164
3189
|
# * {Types::DescribeDashboardPermissionsResponse#status #status} => Integer
|
3165
3190
|
# * {Types::DescribeDashboardPermissionsResponse#request_id #request_id} => String
|
3191
|
+
# * {Types::DescribeDashboardPermissionsResponse#link_sharing_configuration #link_sharing_configuration} => Types::LinkSharingConfiguration
|
3166
3192
|
#
|
3167
3193
|
# @example Request syntax with placeholder values
|
3168
3194
|
#
|
@@ -3181,6 +3207,10 @@ module Aws::QuickSight
|
|
3181
3207
|
# resp.permissions[0].actions[0] #=> String
|
3182
3208
|
# resp.status #=> Integer
|
3183
3209
|
# resp.request_id #=> String
|
3210
|
+
# resp.link_sharing_configuration.permissions #=> Array
|
3211
|
+
# resp.link_sharing_configuration.permissions[0].principal #=> String
|
3212
|
+
# resp.link_sharing_configuration.permissions[0].actions #=> Array
|
3213
|
+
# resp.link_sharing_configuration.permissions[0].actions[0] #=> String
|
3184
3214
|
#
|
3185
3215
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDashboardPermissions AWS API Documentation
|
3186
3216
|
#
|
@@ -3198,7 +3228,7 @@ module Aws::QuickSight
|
|
3198
3228
|
#
|
3199
3229
|
# @option params [required, String] :data_set_id
|
3200
3230
|
# The ID for the dataset that you want to create. This ID is unique per
|
3201
|
-
# Amazon Web Services Region
|
3231
|
+
# Amazon Web Services Region for each Amazon Web Services account.
|
3202
3232
|
#
|
3203
3233
|
# @return [Types::DescribeDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3204
3234
|
#
|
@@ -3328,7 +3358,7 @@ module Aws::QuickSight
|
|
3328
3358
|
#
|
3329
3359
|
# @option params [required, String] :data_set_id
|
3330
3360
|
# The ID for the dataset that you want to create. This ID is unique per
|
3331
|
-
# Amazon Web Services Region
|
3361
|
+
# Amazon Web Services Region for each Amazon Web Services account.
|
3332
3362
|
#
|
3333
3363
|
# @return [Types::DescribeDataSetPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3334
3364
|
#
|
@@ -3372,7 +3402,7 @@ module Aws::QuickSight
|
|
3372
3402
|
#
|
3373
3403
|
# @option params [required, String] :data_source_id
|
3374
3404
|
# The ID of the data source. This ID is unique per Amazon Web Services
|
3375
|
-
# Region
|
3405
|
+
# Region for each Amazon Web Services account.
|
3376
3406
|
#
|
3377
3407
|
# @return [Types::DescribeDataSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3378
3408
|
#
|
@@ -3392,7 +3422,7 @@ module Aws::QuickSight
|
|
3392
3422
|
# resp.data_source.arn #=> String
|
3393
3423
|
# resp.data_source.data_source_id #=> String
|
3394
3424
|
# resp.data_source.name #=> String
|
3395
|
-
# 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"
|
3425
|
+
# 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", "EXASOL"
|
3396
3426
|
# resp.data_source.status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
|
3397
3427
|
# resp.data_source.created_time #=> Time
|
3398
3428
|
# resp.data_source.last_updated_time #=> Time
|
@@ -3444,6 +3474,8 @@ module Aws::QuickSight
|
|
3444
3474
|
# resp.data_source.data_source_parameters.twitter_parameters.query #=> String
|
3445
3475
|
# resp.data_source.data_source_parameters.twitter_parameters.max_rows #=> Integer
|
3446
3476
|
# resp.data_source.data_source_parameters.amazon_open_search_parameters.domain #=> String
|
3477
|
+
# resp.data_source.data_source_parameters.exasol_parameters.host #=> String
|
3478
|
+
# resp.data_source.data_source_parameters.exasol_parameters.port #=> Integer
|
3447
3479
|
# resp.data_source.alternate_data_source_parameters #=> Array
|
3448
3480
|
# resp.data_source.alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
|
3449
3481
|
# resp.data_source.alternate_data_source_parameters[0].athena_parameters.work_group #=> String
|
@@ -3493,6 +3525,8 @@ module Aws::QuickSight
|
|
3493
3525
|
# resp.data_source.alternate_data_source_parameters[0].twitter_parameters.query #=> String
|
3494
3526
|
# resp.data_source.alternate_data_source_parameters[0].twitter_parameters.max_rows #=> Integer
|
3495
3527
|
# resp.data_source.alternate_data_source_parameters[0].amazon_open_search_parameters.domain #=> String
|
3528
|
+
# resp.data_source.alternate_data_source_parameters[0].exasol_parameters.host #=> String
|
3529
|
+
# resp.data_source.alternate_data_source_parameters[0].exasol_parameters.port #=> Integer
|
3496
3530
|
# resp.data_source.vpc_connection_properties.vpc_connection_arn #=> String
|
3497
3531
|
# resp.data_source.ssl_properties.disable_ssl #=> Boolean
|
3498
3532
|
# 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"
|
@@ -3516,7 +3550,7 @@ module Aws::QuickSight
|
|
3516
3550
|
#
|
3517
3551
|
# @option params [required, String] :data_source_id
|
3518
3552
|
# The ID of the data source. This ID is unique per Amazon Web Services
|
3519
|
-
# Region
|
3553
|
+
# Region for each Amazon Web Services account.
|
3520
3554
|
#
|
3521
3555
|
# @return [Types::DescribeDataSourcePermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3522
3556
|
#
|
@@ -3556,10 +3590,10 @@ module Aws::QuickSight
|
|
3556
3590
|
# Describes a folder.
|
3557
3591
|
#
|
3558
3592
|
# @option params [required, String] :aws_account_id
|
3559
|
-
# The
|
3593
|
+
# The ID for the Amazon Web Services account that contains the folder.
|
3560
3594
|
#
|
3561
3595
|
# @option params [required, String] :folder_id
|
3562
|
-
# The folder
|
3596
|
+
# The ID of the folder.
|
3563
3597
|
#
|
3564
3598
|
# @return [Types::DescribeFolderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3565
3599
|
#
|
@@ -3599,10 +3633,10 @@ module Aws::QuickSight
|
|
3599
3633
|
# Describes permissions for a folder.
|
3600
3634
|
#
|
3601
3635
|
# @option params [required, String] :aws_account_id
|
3602
|
-
# The
|
3636
|
+
# The ID for the Amazon Web Services account that contains the folder.
|
3603
3637
|
#
|
3604
3638
|
# @option params [required, String] :folder_id
|
3605
|
-
# The folder
|
3639
|
+
# The ID of the folder.
|
3606
3640
|
#
|
3607
3641
|
# @return [Types::DescribeFolderPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3608
3642
|
#
|
@@ -3644,10 +3678,10 @@ module Aws::QuickSight
|
|
3644
3678
|
# ancestor folders.
|
3645
3679
|
#
|
3646
3680
|
# @option params [required, String] :aws_account_id
|
3647
|
-
# The
|
3681
|
+
# The ID for the Amazon Web Services account that contains the folder.
|
3648
3682
|
#
|
3649
3683
|
# @option params [required, String] :folder_id
|
3650
|
-
# The folder
|
3684
|
+
# The ID of the folder.
|
3651
3685
|
#
|
3652
3686
|
# @return [Types::DescribeFolderResolvedPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3653
3687
|
#
|
@@ -3730,7 +3764,7 @@ module Aws::QuickSight
|
|
3730
3764
|
req.send_request(options)
|
3731
3765
|
end
|
3732
3766
|
|
3733
|
-
# Describes an existing
|
3767
|
+
# Describes an existing IAM policy assignment, as specified by the
|
3734
3768
|
# assignment name.
|
3735
3769
|
#
|
3736
3770
|
# @option params [required, String] :aws_account_id
|
@@ -3800,7 +3834,7 @@ module Aws::QuickSight
|
|
3800
3834
|
#
|
3801
3835
|
# resp = client.describe_ingestion({
|
3802
3836
|
# aws_account_id: "AwsAccountId", # required
|
3803
|
-
# data_set_id: "
|
3837
|
+
# data_set_id: "String", # required
|
3804
3838
|
# ingestion_id: "IngestionId", # required
|
3805
3839
|
# })
|
3806
3840
|
#
|
@@ -3809,10 +3843,11 @@ module Aws::QuickSight
|
|
3809
3843
|
# resp.ingestion.arn #=> String
|
3810
3844
|
# resp.ingestion.ingestion_id #=> String
|
3811
3845
|
# resp.ingestion.ingestion_status #=> String, one of "INITIALIZED", "QUEUED", "RUNNING", "FAILED", "COMPLETED", "CANCELLED"
|
3812
|
-
# 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"
|
3846
|
+
# 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"
|
3813
3847
|
# resp.ingestion.error_info.message #=> String
|
3814
3848
|
# resp.ingestion.row_info.rows_ingested #=> Integer
|
3815
3849
|
# resp.ingestion.row_info.rows_dropped #=> Integer
|
3850
|
+
# resp.ingestion.row_info.total_rows_in_dataset #=> Integer
|
3816
3851
|
# resp.ingestion.queue_info.waiting_on_ingestion #=> String
|
3817
3852
|
# resp.ingestion.queue_info.queued_ingestion #=> String
|
3818
3853
|
# resp.ingestion.created_time #=> Time
|
@@ -3832,6 +3867,43 @@ module Aws::QuickSight
|
|
3832
3867
|
req.send_request(options)
|
3833
3868
|
end
|
3834
3869
|
|
3870
|
+
# Provides a summary and status of IP rules.
|
3871
|
+
#
|
3872
|
+
# @option params [required, String] :aws_account_id
|
3873
|
+
# The ID of the Amazon Web Services account that contains the IP rules.
|
3874
|
+
#
|
3875
|
+
# @return [Types::DescribeIpRestrictionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3876
|
+
#
|
3877
|
+
# * {Types::DescribeIpRestrictionResponse#aws_account_id #aws_account_id} => String
|
3878
|
+
# * {Types::DescribeIpRestrictionResponse#ip_restriction_rule_map #ip_restriction_rule_map} => Hash<String,String>
|
3879
|
+
# * {Types::DescribeIpRestrictionResponse#enabled #enabled} => Boolean
|
3880
|
+
# * {Types::DescribeIpRestrictionResponse#request_id #request_id} => String
|
3881
|
+
# * {Types::DescribeIpRestrictionResponse#status #status} => Integer
|
3882
|
+
#
|
3883
|
+
# @example Request syntax with placeholder values
|
3884
|
+
#
|
3885
|
+
# resp = client.describe_ip_restriction({
|
3886
|
+
# aws_account_id: "AwsAccountId", # required
|
3887
|
+
# })
|
3888
|
+
#
|
3889
|
+
# @example Response structure
|
3890
|
+
#
|
3891
|
+
# resp.aws_account_id #=> String
|
3892
|
+
# resp.ip_restriction_rule_map #=> Hash
|
3893
|
+
# resp.ip_restriction_rule_map["CIDR"] #=> String
|
3894
|
+
# resp.enabled #=> Boolean
|
3895
|
+
# resp.request_id #=> String
|
3896
|
+
# resp.status #=> Integer
|
3897
|
+
#
|
3898
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeIpRestriction AWS API Documentation
|
3899
|
+
#
|
3900
|
+
# @overload describe_ip_restriction(params = {})
|
3901
|
+
# @param [Hash] params ({})
|
3902
|
+
def describe_ip_restriction(params = {}, options = {})
|
3903
|
+
req = build_request(:describe_ip_restriction, params)
|
3904
|
+
req.send_request(options)
|
3905
|
+
end
|
3906
|
+
|
3835
3907
|
# Describes the current namespace.
|
3836
3908
|
#
|
3837
3909
|
# @option params [required, String] :aws_account_id
|
@@ -4450,6 +4522,9 @@ module Aws::QuickSight
|
|
4450
4522
|
# quick_sight_console: {
|
4451
4523
|
# initial_path: "EntryPath",
|
4452
4524
|
# },
|
4525
|
+
# q_search_bar: {
|
4526
|
+
# initial_topic_id: "RestrictiveResourceId",
|
4527
|
+
# },
|
4453
4528
|
# },
|
4454
4529
|
# })
|
4455
4530
|
#
|
@@ -4540,10 +4615,11 @@ module Aws::QuickSight
|
|
4540
4615
|
#
|
4541
4616
|
# * Invited nonfederated users
|
4542
4617
|
#
|
4543
|
-
# *
|
4544
|
-
# Single Sign-On using SAML, OpenID Connect, or
|
4618
|
+
# * IAM users and IAM role-based sessions authenticated through
|
4619
|
+
# Federated Single Sign-On using SAML, OpenID Connect, or IAM
|
4620
|
+
# federation.
|
4545
4621
|
#
|
4546
|
-
# Omit this parameter for users in the third group –
|
4622
|
+
# Omit this parameter for users in the third group – IAM users and IAM
|
4547
4623
|
# role-based sessions.
|
4548
4624
|
#
|
4549
4625
|
# @option params [String] :namespace
|
@@ -4555,8 +4631,8 @@ module Aws::QuickSight
|
|
4555
4631
|
# A list of one or more dashboard IDs that you want to add to a session
|
4556
4632
|
# that includes anonymous users. The `IdentityType` parameter must be
|
4557
4633
|
# set to `ANONYMOUS` for this to work, because other identity types
|
4558
|
-
# authenticate as Amazon QuickSight or
|
4559
|
-
# "`--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3
|
4634
|
+
# authenticate as Amazon QuickSight or IAM users. For example, if you
|
4635
|
+
# set "`--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3
|
4560
4636
|
# identity-type ANONYMOUS`", the session can access all three
|
4561
4637
|
# dashboards.
|
4562
4638
|
#
|
@@ -4852,7 +4928,7 @@ module Aws::QuickSight
|
|
4852
4928
|
end
|
4853
4929
|
|
4854
4930
|
# Lists all of the datasets belonging to the current Amazon Web Services
|
4855
|
-
# account in an Amazon Web Services Region
|
4931
|
+
# account in an Amazon Web Services Region.
|
4856
4932
|
#
|
4857
4933
|
# The permissions resource is
|
4858
4934
|
# `arn:aws:quicksight:region:aws-account-id:dataset/*`.
|
@@ -4913,7 +4989,7 @@ module Aws::QuickSight
|
|
4913
4989
|
req.send_request(options)
|
4914
4990
|
end
|
4915
4991
|
|
4916
|
-
# Lists data sources in current Amazon Web Services Region
|
4992
|
+
# Lists data sources in current Amazon Web Services Region that belong
|
4917
4993
|
# to this Amazon Web Services account.
|
4918
4994
|
#
|
4919
4995
|
# @option params [required, String] :aws_account_id
|
@@ -4949,7 +5025,7 @@ module Aws::QuickSight
|
|
4949
5025
|
# resp.data_sources[0].arn #=> String
|
4950
5026
|
# resp.data_sources[0].data_source_id #=> String
|
4951
5027
|
# resp.data_sources[0].name #=> String
|
4952
|
-
# 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"
|
5028
|
+
# 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", "EXASOL"
|
4953
5029
|
# resp.data_sources[0].status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
|
4954
5030
|
# resp.data_sources[0].created_time #=> Time
|
4955
5031
|
# resp.data_sources[0].last_updated_time #=> Time
|
@@ -5001,6 +5077,8 @@ module Aws::QuickSight
|
|
5001
5077
|
# resp.data_sources[0].data_source_parameters.twitter_parameters.query #=> String
|
5002
5078
|
# resp.data_sources[0].data_source_parameters.twitter_parameters.max_rows #=> Integer
|
5003
5079
|
# resp.data_sources[0].data_source_parameters.amazon_open_search_parameters.domain #=> String
|
5080
|
+
# resp.data_sources[0].data_source_parameters.exasol_parameters.host #=> String
|
5081
|
+
# resp.data_sources[0].data_source_parameters.exasol_parameters.port #=> Integer
|
5004
5082
|
# resp.data_sources[0].alternate_data_source_parameters #=> Array
|
5005
5083
|
# resp.data_sources[0].alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
|
5006
5084
|
# resp.data_sources[0].alternate_data_source_parameters[0].athena_parameters.work_group #=> String
|
@@ -5050,6 +5128,8 @@ module Aws::QuickSight
|
|
5050
5128
|
# resp.data_sources[0].alternate_data_source_parameters[0].twitter_parameters.query #=> String
|
5051
5129
|
# resp.data_sources[0].alternate_data_source_parameters[0].twitter_parameters.max_rows #=> Integer
|
5052
5130
|
# resp.data_sources[0].alternate_data_source_parameters[0].amazon_open_search_parameters.domain #=> String
|
5131
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].exasol_parameters.host #=> String
|
5132
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].exasol_parameters.port #=> Integer
|
5053
5133
|
# resp.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
|
5054
5134
|
# resp.data_sources[0].ssl_properties.disable_ssl #=> Boolean
|
5055
5135
|
# 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"
|
@@ -5070,10 +5150,10 @@ module Aws::QuickSight
|
|
5070
5150
|
# List all assets (`DASHBOARD`, `ANALYSIS`, and `DATASET`) in a folder.
|
5071
5151
|
#
|
5072
5152
|
# @option params [required, String] :aws_account_id
|
5073
|
-
# The
|
5153
|
+
# The ID for the Amazon Web Services account that contains the folder.
|
5074
5154
|
#
|
5075
5155
|
# @option params [required, String] :folder_id
|
5076
|
-
# The folder
|
5156
|
+
# The ID of the folder.
|
5077
5157
|
#
|
5078
5158
|
# @option params [String] :next_token
|
5079
5159
|
# The token for the next set of results, or null if there are no more
|
@@ -5119,7 +5199,7 @@ module Aws::QuickSight
|
|
5119
5199
|
# Lists all folders in an account.
|
5120
5200
|
#
|
5121
5201
|
# @option params [required, String] :aws_account_id
|
5122
|
-
# The
|
5202
|
+
# The ID for the Amazon Web Services account that contains the folder.
|
5123
5203
|
#
|
5124
5204
|
# @option params [String] :next_token
|
5125
5205
|
# The token for the next set of results, or null if there are no more
|
@@ -5271,11 +5351,11 @@ module Aws::QuickSight
|
|
5271
5351
|
req.send_request(options)
|
5272
5352
|
end
|
5273
5353
|
|
5274
|
-
# Lists
|
5354
|
+
# Lists IAM policy assignments in the current Amazon QuickSight account.
|
5275
5355
|
#
|
5276
5356
|
# @option params [required, String] :aws_account_id
|
5277
|
-
# The ID of the Amazon Web Services account that contains these
|
5278
|
-
#
|
5357
|
+
# The ID of the Amazon Web Services account that contains these IAM
|
5358
|
+
# policy assignments.
|
5279
5359
|
#
|
5280
5360
|
# @option params [String] :assignment_status
|
5281
5361
|
# The status of the assignments.
|
@@ -5325,7 +5405,7 @@ module Aws::QuickSight
|
|
5325
5405
|
req.send_request(options)
|
5326
5406
|
end
|
5327
5407
|
|
5328
|
-
# Lists all the
|
5408
|
+
# Lists all the IAM policy assignments, including the Amazon Resource
|
5329
5409
|
# Names (ARNs) for the IAM policies assigned to the specified user and
|
5330
5410
|
# group or groups that the user belongs to.
|
5331
5411
|
#
|
@@ -5408,8 +5488,8 @@ module Aws::QuickSight
|
|
5408
5488
|
# @example Request syntax with placeholder values
|
5409
5489
|
#
|
5410
5490
|
# resp = client.list_ingestions({
|
5411
|
-
# data_set_id: "
|
5412
|
-
# next_token: "
|
5491
|
+
# data_set_id: "String", # required
|
5492
|
+
# next_token: "String",
|
5413
5493
|
# aws_account_id: "AwsAccountId", # required
|
5414
5494
|
# max_results: 1,
|
5415
5495
|
# })
|
@@ -5420,10 +5500,11 @@ module Aws::QuickSight
|
|
5420
5500
|
# resp.ingestions[0].arn #=> String
|
5421
5501
|
# resp.ingestions[0].ingestion_id #=> String
|
5422
5502
|
# resp.ingestions[0].ingestion_status #=> String, one of "INITIALIZED", "QUEUED", "RUNNING", "FAILED", "COMPLETED", "CANCELLED"
|
5423
|
-
# 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"
|
5503
|
+
# 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"
|
5424
5504
|
# resp.ingestions[0].error_info.message #=> String
|
5425
5505
|
# resp.ingestions[0].row_info.rows_ingested #=> Integer
|
5426
5506
|
# resp.ingestions[0].row_info.rows_dropped #=> Integer
|
5507
|
+
# resp.ingestions[0].row_info.total_rows_in_dataset #=> Integer
|
5427
5508
|
# resp.ingestions[0].queue_info.waiting_on_ingestion #=> String
|
5428
5509
|
# resp.ingestions[0].queue_info.queued_ingestion #=> String
|
5429
5510
|
# resp.ingestions[0].created_time #=> Time
|
@@ -5983,14 +6064,14 @@ module Aws::QuickSight
|
|
5983
6064
|
end
|
5984
6065
|
|
5985
6066
|
# Creates an Amazon QuickSight user, whose identity is associated with
|
5986
|
-
# the
|
5987
|
-
#
|
6067
|
+
# the Identity and Access Management (IAM) identity or role specified in
|
6068
|
+
# the request.
|
5988
6069
|
#
|
5989
6070
|
# @option params [required, String] :identity_type
|
5990
6071
|
# Amazon QuickSight supports several ways of managing the identity of
|
5991
6072
|
# users. This parameter accepts two values:
|
5992
6073
|
#
|
5993
|
-
# * `IAM`\: A user whose identity maps to an existing
|
6074
|
+
# * `IAM`\: A user whose identity maps to an existing IAM user or role.
|
5994
6075
|
#
|
5995
6076
|
# * `QUICKSIGHT`\: A user whose identity is owned and managed internally
|
5996
6077
|
# by Amazon QuickSight.
|
@@ -6015,17 +6096,17 @@ module Aws::QuickSight
|
|
6015
6096
|
# * `RESTRICTED_AUTHOR`\: This role isn't currently available for use.
|
6016
6097
|
#
|
6017
6098
|
# @option params [String] :iam_arn
|
6018
|
-
# The ARN of the
|
6099
|
+
# The ARN of the IAM user or role that you are registering with Amazon
|
6019
6100
|
# QuickSight.
|
6020
6101
|
#
|
6021
6102
|
# @option params [String] :session_name
|
6022
6103
|
# You need to use this parameter only when you register one or more
|
6023
|
-
# users using an assumed
|
6024
|
-
# name for other scenarios, for example when you are registering
|
6025
|
-
#
|
6026
|
-
# using the same
|
6027
|
-
# more information on assuming
|
6028
|
-
# *
|
6104
|
+
# users using an assumed IAM role. You don't need to provide the
|
6105
|
+
# session name for other scenarios, for example when you are registering
|
6106
|
+
# an IAM user or an Amazon QuickSight user. You can register multiple
|
6107
|
+
# users using the same IAM role if each user has a different session
|
6108
|
+
# name. For more information on assuming IAM roles, see [ `assume-role`
|
6109
|
+
# ][1] in the *CLI Reference.*
|
6029
6110
|
#
|
6030
6111
|
#
|
6031
6112
|
#
|
@@ -6064,9 +6145,9 @@ module Aws::QuickSight
|
|
6064
6145
|
# restrictions. Currently, you need to create the profile names for
|
6065
6146
|
# custom permission sets by using the Amazon QuickSight console. Then,
|
6066
6147
|
# you use the `RegisterUser` API operation to assign the named set of
|
6067
|
-
# permissions to a
|
6148
|
+
# permissions to a QuickSight user.
|
6068
6149
|
#
|
6069
|
-
# Amazon QuickSight custom permissions are applied through
|
6150
|
+
# Amazon QuickSight custom permissions are applied through IAM policies.
|
6070
6151
|
# Therefore, they override the permissions typically granted by
|
6071
6152
|
# assigning Amazon QuickSight users to one of the default security
|
6072
6153
|
# cohorts in Amazon QuickSight (admin, author, reader).
|
@@ -6328,7 +6409,7 @@ module Aws::QuickSight
|
|
6328
6409
|
# Searches the subfolders in a folder.
|
6329
6410
|
#
|
6330
6411
|
# @option params [required, String] :aws_account_id
|
6331
|
-
# The
|
6412
|
+
# The ID for the Amazon Web Services account that contains the folder.
|
6332
6413
|
#
|
6333
6414
|
# @option params [required, Array<Types::FolderSearchFilter>] :filters
|
6334
6415
|
# The filters to apply to the search. Currently, you can search only by
|
@@ -6404,13 +6485,14 @@ module Aws::QuickSight
|
|
6404
6485
|
# template.
|
6405
6486
|
#
|
6406
6487
|
# Tagging for Amazon QuickSight works in a similar way to tagging for
|
6407
|
-
# other
|
6488
|
+
# other Amazon Web Services services, except for the following:
|
6408
6489
|
#
|
6409
|
-
# * You can't use tags to track
|
6410
|
-
#
|
6411
|
-
#
|
6490
|
+
# * You can't use tags to track costs for Amazon QuickSight. This
|
6491
|
+
# isn't possible because you can't tag the resources that Amazon
|
6492
|
+
# QuickSight costs are based on, for example Amazon QuickSight storage
|
6493
|
+
# capacity (SPICE), number of users, type of users, and usage metrics.
|
6412
6494
|
#
|
6413
|
-
# * Amazon QuickSight doesn't currently support the
|
6495
|
+
# * Amazon QuickSight doesn't currently support the tag editor for
|
6414
6496
|
# Resource Groups.
|
6415
6497
|
#
|
6416
6498
|
# @option params [required, String] :resource_arn
|
@@ -6487,7 +6569,7 @@ module Aws::QuickSight
|
|
6487
6569
|
end
|
6488
6570
|
|
6489
6571
|
# Updates Amazon QuickSight customizations the current Amazon Web
|
6490
|
-
# Services Region
|
6572
|
+
# Services Region. Currently, the only customization you can use is a
|
6491
6573
|
# theme.
|
6492
6574
|
#
|
6493
6575
|
# You can use customizations for your Amazon Web Services account or, if
|
@@ -6507,7 +6589,7 @@ module Aws::QuickSight
|
|
6507
6589
|
#
|
6508
6590
|
# @option params [required, Types::AccountCustomization] :account_customization
|
6509
6591
|
# The Amazon QuickSight customizations you're updating in the current
|
6510
|
-
# Amazon Web Services Region
|
6592
|
+
# Amazon Web Services Region.
|
6511
6593
|
#
|
6512
6594
|
# @return [Types::UpdateAccountCustomizationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6513
6595
|
#
|
@@ -6525,6 +6607,7 @@ module Aws::QuickSight
|
|
6525
6607
|
# namespace: "Namespace",
|
6526
6608
|
# account_customization: { # required
|
6527
6609
|
# default_theme: "Arn",
|
6610
|
+
# default_email_customization_template: "Arn",
|
6528
6611
|
# },
|
6529
6612
|
# })
|
6530
6613
|
#
|
@@ -6534,6 +6617,7 @@ module Aws::QuickSight
|
|
6534
6617
|
# resp.aws_account_id #=> String
|
6535
6618
|
# resp.namespace #=> String
|
6536
6619
|
# resp.account_customization.default_theme #=> String
|
6620
|
+
# resp.account_customization.default_email_customization_template #=> String
|
6537
6621
|
# resp.request_id #=> String
|
6538
6622
|
# resp.status #=> Integer
|
6539
6623
|
#
|
@@ -6761,8 +6845,8 @@ module Aws::QuickSight
|
|
6761
6845
|
#
|
6762
6846
|
# <note markdown="1"> Updating a Dashboard creates a new dashboard version but does not
|
6763
6847
|
# immediately publish the new version. You can update the published
|
6764
|
-
# version of a dashboard by using the UpdateDashboardPublishedVersion
|
6765
|
-
# API operation.
|
6848
|
+
# version of a dashboard by using the ` UpdateDashboardPublishedVersion
|
6849
|
+
# ` API operation.
|
6766
6850
|
#
|
6767
6851
|
# </note>
|
6768
6852
|
#
|
@@ -6782,10 +6866,10 @@ module Aws::QuickSight
|
|
6782
6866
|
# using as source. You can only update a dashboard from a template, so
|
6783
6867
|
# you use a `SourceTemplate` entity. If you need to update a dashboard
|
6784
6868
|
# from an analysis, first convert the analysis to a template by using
|
6785
|
-
# the CreateTemplate API operation. For `SourceTemplate`, specify
|
6786
|
-
# Amazon Resource Name (ARN) of the source template. The
|
6869
|
+
# the ` CreateTemplate ` API operation. For `SourceTemplate`, specify
|
6870
|
+
# the Amazon Resource Name (ARN) of the source template. The
|
6787
6871
|
# `SourceTemplate` ARN can contain any Amazon Web Services account and
|
6788
|
-
# any Amazon QuickSight-supported Amazon Web Services Region
|
6872
|
+
# any Amazon QuickSight-supported Amazon Web Services Region.
|
6789
6873
|
#
|
6790
6874
|
# Use the `DataSetReferences` entity within `SourceTemplate` to list the
|
6791
6875
|
# replacement datasets for the placeholders listed in the original. The
|
@@ -6924,6 +7008,12 @@ module Aws::QuickSight
|
|
6924
7008
|
# @option params [Array<Types::ResourcePermission>] :revoke_permissions
|
6925
7009
|
# The permissions that you want to revoke from this resource.
|
6926
7010
|
#
|
7011
|
+
# @option params [Array<Types::ResourcePermission>] :grant_link_permissions
|
7012
|
+
# Grants link permissions to all users in a defined namespace.
|
7013
|
+
#
|
7014
|
+
# @option params [Array<Types::ResourcePermission>] :revoke_link_permissions
|
7015
|
+
# Revokes link permissions from all users in a defined namespace.
|
7016
|
+
#
|
6927
7017
|
# @return [Types::UpdateDashboardPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6928
7018
|
#
|
6929
7019
|
# * {Types::UpdateDashboardPermissionsResponse#dashboard_arn #dashboard_arn} => String
|
@@ -6931,6 +7021,7 @@ module Aws::QuickSight
|
|
6931
7021
|
# * {Types::UpdateDashboardPermissionsResponse#permissions #permissions} => Array<Types::ResourcePermission>
|
6932
7022
|
# * {Types::UpdateDashboardPermissionsResponse#request_id #request_id} => String
|
6933
7023
|
# * {Types::UpdateDashboardPermissionsResponse#status #status} => Integer
|
7024
|
+
# * {Types::UpdateDashboardPermissionsResponse#link_sharing_configuration #link_sharing_configuration} => Types::LinkSharingConfiguration
|
6934
7025
|
#
|
6935
7026
|
# @example Request syntax with placeholder values
|
6936
7027
|
#
|
@@ -6949,6 +7040,18 @@ module Aws::QuickSight
|
|
6949
7040
|
# actions: ["String"], # required
|
6950
7041
|
# },
|
6951
7042
|
# ],
|
7043
|
+
# grant_link_permissions: [
|
7044
|
+
# {
|
7045
|
+
# principal: "Principal", # required
|
7046
|
+
# actions: ["String"], # required
|
7047
|
+
# },
|
7048
|
+
# ],
|
7049
|
+
# revoke_link_permissions: [
|
7050
|
+
# {
|
7051
|
+
# principal: "Principal", # required
|
7052
|
+
# actions: ["String"], # required
|
7053
|
+
# },
|
7054
|
+
# ],
|
6952
7055
|
# })
|
6953
7056
|
#
|
6954
7057
|
# @example Response structure
|
@@ -6961,6 +7064,10 @@ module Aws::QuickSight
|
|
6961
7064
|
# resp.permissions[0].actions[0] #=> String
|
6962
7065
|
# resp.request_id #=> String
|
6963
7066
|
# resp.status #=> Integer
|
7067
|
+
# resp.link_sharing_configuration.permissions #=> Array
|
7068
|
+
# resp.link_sharing_configuration.permissions[0].principal #=> String
|
7069
|
+
# resp.link_sharing_configuration.permissions[0].actions #=> Array
|
7070
|
+
# resp.link_sharing_configuration.permissions[0].actions[0] #=> String
|
6964
7071
|
#
|
6965
7072
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDashboardPermissions AWS API Documentation
|
6966
7073
|
#
|
@@ -7021,7 +7128,7 @@ module Aws::QuickSight
|
|
7021
7128
|
#
|
7022
7129
|
# @option params [required, String] :data_set_id
|
7023
7130
|
# The ID for the dataset that you want to update. This ID is unique per
|
7024
|
-
# Amazon Web Services Region
|
7131
|
+
# Amazon Web Services Region for each Amazon Web Services account.
|
7025
7132
|
#
|
7026
7133
|
# @option params [required, String] :name
|
7027
7134
|
# The display name for the dataset.
|
@@ -7256,7 +7363,7 @@ module Aws::QuickSight
|
|
7256
7363
|
#
|
7257
7364
|
# @option params [required, String] :data_set_id
|
7258
7365
|
# The ID for the dataset whose permissions you want to update. This ID
|
7259
|
-
# is unique per Amazon Web Services Region
|
7366
|
+
# is unique per Amazon Web Services Region for each Amazon Web Services
|
7260
7367
|
# account.
|
7261
7368
|
#
|
7262
7369
|
# @option params [Array<Types::ResourcePermission>] :grant_permissions
|
@@ -7314,7 +7421,7 @@ module Aws::QuickSight
|
|
7314
7421
|
#
|
7315
7422
|
# @option params [required, String] :data_source_id
|
7316
7423
|
# The ID of the data source. This ID is unique per Amazon Web Services
|
7317
|
-
# Region
|
7424
|
+
# Region for each Amazon Web Services account.
|
7318
7425
|
#
|
7319
7426
|
# @option params [required, String] :name
|
7320
7427
|
# A display name for the data source.
|
@@ -7443,6 +7550,10 @@ module Aws::QuickSight
|
|
7443
7550
|
# amazon_open_search_parameters: {
|
7444
7551
|
# domain: "Domain", # required
|
7445
7552
|
# },
|
7553
|
+
# exasol_parameters: {
|
7554
|
+
# host: "Host", # required
|
7555
|
+
# port: 1, # required
|
7556
|
+
# },
|
7446
7557
|
# },
|
7447
7558
|
# credentials: {
|
7448
7559
|
# credential_pair: {
|
@@ -7542,6 +7653,10 @@ module Aws::QuickSight
|
|
7542
7653
|
# amazon_open_search_parameters: {
|
7543
7654
|
# domain: "Domain", # required
|
7544
7655
|
# },
|
7656
|
+
# exasol_parameters: {
|
7657
|
+
# host: "Host", # required
|
7658
|
+
# port: 1, # required
|
7659
|
+
# },
|
7545
7660
|
# },
|
7546
7661
|
# ],
|
7547
7662
|
# },
|
@@ -7579,7 +7694,7 @@ module Aws::QuickSight
|
|
7579
7694
|
#
|
7580
7695
|
# @option params [required, String] :data_source_id
|
7581
7696
|
# The ID of the data source. This ID is unique per Amazon Web Services
|
7582
|
-
# Region
|
7697
|
+
# Region for each Amazon Web Services account.
|
7583
7698
|
#
|
7584
7699
|
# @option params [Array<Types::ResourcePermission>] :grant_permissions
|
7585
7700
|
# A list of resource permissions that you want to grant on the data
|
@@ -7634,10 +7749,11 @@ module Aws::QuickSight
|
|
7634
7749
|
# Updates the name of a folder.
|
7635
7750
|
#
|
7636
7751
|
# @option params [required, String] :aws_account_id
|
7637
|
-
# The
|
7752
|
+
# The ID for the Amazon Web Services account that contains the folder to
|
7753
|
+
# update.
|
7638
7754
|
#
|
7639
7755
|
# @option params [required, String] :folder_id
|
7640
|
-
# The folder
|
7756
|
+
# The ID of the folder.
|
7641
7757
|
#
|
7642
7758
|
# @option params [required, String] :name
|
7643
7759
|
# The name of the folder.
|
@@ -7676,10 +7792,11 @@ module Aws::QuickSight
|
|
7676
7792
|
# Updates permissions of a folder.
|
7677
7793
|
#
|
7678
7794
|
# @option params [required, String] :aws_account_id
|
7679
|
-
# The
|
7795
|
+
# The ID for the Amazon Web Services account that contains the folder to
|
7796
|
+
# update.
|
7680
7797
|
#
|
7681
7798
|
# @option params [required, String] :folder_id
|
7682
|
-
# The folder
|
7799
|
+
# The ID of the folder.
|
7683
7800
|
#
|
7684
7801
|
# @option params [Array<Types::ResourcePermission>] :grant_permissions
|
7685
7802
|
# The permissions that you want to grant on a resource.
|
@@ -7783,12 +7900,12 @@ module Aws::QuickSight
|
|
7783
7900
|
req.send_request(options)
|
7784
7901
|
end
|
7785
7902
|
|
7786
|
-
# Updates an existing
|
7903
|
+
# Updates an existing IAM policy assignment. This operation updates only
|
7787
7904
|
# the optional parameter or parameters that are specified in the
|
7788
7905
|
# request. This overwrites all of the users included in `Identities`.
|
7789
7906
|
#
|
7790
7907
|
# @option params [required, String] :aws_account_id
|
7791
|
-
# The ID of the Amazon Web Services account that contains the
|
7908
|
+
# The ID of the Amazon Web Services account that contains the IAM policy
|
7792
7909
|
# assignment.
|
7793
7910
|
#
|
7794
7911
|
# @option params [required, String] :assignment_name
|
@@ -7811,7 +7928,7 @@ module Aws::QuickSight
|
|
7811
7928
|
# when creating the data source.
|
7812
7929
|
#
|
7813
7930
|
# @option params [String] :policy_arn
|
7814
|
-
# The ARN for the
|
7931
|
+
# The ARN for the IAM policy to apply to the Amazon QuickSight users and
|
7815
7932
|
# groups specified in this assignment.
|
7816
7933
|
#
|
7817
7934
|
# @option params [Hash<String,Array>] :identities
|
@@ -7862,6 +7979,51 @@ module Aws::QuickSight
|
|
7862
7979
|
req.send_request(options)
|
7863
7980
|
end
|
7864
7981
|
|
7982
|
+
# Updates the content and status of IP rules. To use this operation, you
|
7983
|
+
# need to provide the entire map of rules. You can use the
|
7984
|
+
# `DescribeIpRestriction` operation to get the current rule map.
|
7985
|
+
#
|
7986
|
+
# @option params [required, String] :aws_account_id
|
7987
|
+
# The ID of the Amazon Web Services account that contains the IP rules.
|
7988
|
+
#
|
7989
|
+
# @option params [Hash<String,String>] :ip_restriction_rule_map
|
7990
|
+
# A map that describes the updated IP rules with CIDR ranges and
|
7991
|
+
# descriptions.
|
7992
|
+
#
|
7993
|
+
# @option params [Boolean] :enabled
|
7994
|
+
# A value that specifies whether IP rules are turned on.
|
7995
|
+
#
|
7996
|
+
# @return [Types::UpdateIpRestrictionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7997
|
+
#
|
7998
|
+
# * {Types::UpdateIpRestrictionResponse#aws_account_id #aws_account_id} => String
|
7999
|
+
# * {Types::UpdateIpRestrictionResponse#request_id #request_id} => String
|
8000
|
+
# * {Types::UpdateIpRestrictionResponse#status #status} => Integer
|
8001
|
+
#
|
8002
|
+
# @example Request syntax with placeholder values
|
8003
|
+
#
|
8004
|
+
# resp = client.update_ip_restriction({
|
8005
|
+
# aws_account_id: "AwsAccountId", # required
|
8006
|
+
# ip_restriction_rule_map: {
|
8007
|
+
# "CIDR" => "IpRestrictionRuleDescription",
|
8008
|
+
# },
|
8009
|
+
# enabled: false,
|
8010
|
+
# })
|
8011
|
+
#
|
8012
|
+
# @example Response structure
|
8013
|
+
#
|
8014
|
+
# resp.aws_account_id #=> String
|
8015
|
+
# resp.request_id #=> String
|
8016
|
+
# resp.status #=> Integer
|
8017
|
+
#
|
8018
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateIpRestriction AWS API Documentation
|
8019
|
+
#
|
8020
|
+
# @overload update_ip_restriction(params = {})
|
8021
|
+
# @param [Hash] params ({})
|
8022
|
+
def update_ip_restriction(params = {}, options = {})
|
8023
|
+
req = build_request(:update_ip_restriction, params)
|
8024
|
+
req.send_request(options)
|
8025
|
+
end
|
8026
|
+
|
7865
8027
|
# Updates a template from an existing Amazon QuickSight analysis or
|
7866
8028
|
# another template.
|
7867
8029
|
#
|
@@ -8360,9 +8522,9 @@ module Aws::QuickSight
|
|
8360
8522
|
# restrictions. Currently, you need to create the profile names for
|
8361
8523
|
# custom permission sets by using the Amazon QuickSight console. Then,
|
8362
8524
|
# you use the `RegisterUser` API operation to assign the named set of
|
8363
|
-
# permissions to a
|
8525
|
+
# permissions to a QuickSight user.
|
8364
8526
|
#
|
8365
|
-
# Amazon QuickSight custom permissions are applied through
|
8527
|
+
# Amazon QuickSight custom permissions are applied through IAM policies.
|
8366
8528
|
# Therefore, they override the permissions typically granted by
|
8367
8529
|
# assigning Amazon QuickSight users to one of the default security
|
8368
8530
|
# cohorts in Amazon QuickSight (admin, author, reader).
|
@@ -8393,8 +8555,8 @@ module Aws::QuickSight
|
|
8393
8555
|
# to provide the custom OIDC provider URL.
|
8394
8556
|
#
|
8395
8557
|
# * `NONE`\: This clears all the previously saved external login
|
8396
|
-
# information for a user. Use ` DescribeUser ` API to
|
8397
|
-
# external login information.
|
8558
|
+
# information for a user. Use the ` DescribeUser ` API operation to
|
8559
|
+
# check the external login information.
|
8398
8560
|
#
|
8399
8561
|
# @option params [String] :custom_federation_provider_url
|
8400
8562
|
# The URL of the custom OpenID Connect (OIDC) provider that provides
|
@@ -8465,7 +8627,7 @@ module Aws::QuickSight
|
|
8465
8627
|
params: params,
|
8466
8628
|
config: config)
|
8467
8629
|
context[:gem_name] = 'aws-sdk-quicksight'
|
8468
|
-
context[:gem_version] = '1.
|
8630
|
+
context[:gem_version] = '1.58.0'
|
8469
8631
|
Seahorse::Client::Request.new(handlers, context)
|
8470
8632
|
end
|
8471
8633
|
|