aws-sdk-quicksight 1.108.0 → 1.110.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +212 -74
- data/lib/aws-sdk-quicksight/client_api.rb +46 -1
- data/lib/aws-sdk-quicksight/endpoints.rb +14 -0
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-quicksight/types.rb +262 -33
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +54 -9
- data/sig/types.rbs +44 -9
- 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: e76bec96f986655a1fe2924c4ea72026bd54ab406f1142d76e5d6d5968c72876
|
4
|
+
data.tar.gz: 5641f27c4b330e5cdd0eb572eeb5b9366251e83110feb35229027dba885c534a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 023167a692186dfe4880c2ff5ebdd44a6d11afa7583816833779e309e3409f670b59b3ffedd6f1d6e1596dfc364978cad5c02d47daf2b019d1182cb9a9f5d596
|
7
|
+
data.tar.gz: 2f6f158b73a1f5b00f0728ccecfc09db5a80b294e5fd3313c5cb32a71d6e0730705a8e1fb8b3b0b8b866eabf8144f8fea644f5f7b7788a8a8cdd4c0a38264bcc
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.110.0 (2024-04-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - New Q embedding supporting Generative Q&A
|
8
|
+
|
9
|
+
1.109.0 (2024-04-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.108.0 (2024-04-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.110.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::QuickSight
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::QuickSight
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -337,50 +346,65 @@ module Aws::QuickSight
|
|
337
346
|
# @option options [Aws::QuickSight::EndpointProvider] :endpoint_provider
|
338
347
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::QuickSight::EndpointParameters`
|
339
348
|
#
|
340
|
-
# @option options [
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
# @option options [Float] :
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
349
|
+
# @option options [Float] :http_continue_timeout (1)
|
350
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
351
|
+
# request body. This option has no effect unless the request has "Expect"
|
352
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
353
|
+
# behaviour. This value can safely be set per request on the session.
|
354
|
+
#
|
355
|
+
# @option options [Float] :http_idle_timeout (5)
|
356
|
+
# The number of seconds a connection is allowed to sit idle before it
|
357
|
+
# is considered stale. Stale connections are closed and removed from the
|
358
|
+
# pool before making a request.
|
359
|
+
#
|
360
|
+
# @option options [Float] :http_open_timeout (15)
|
361
|
+
# The default number of seconds to wait for response data.
|
362
|
+
# This value can safely be set per-request on the session.
|
363
|
+
#
|
364
|
+
# @option options [URI::HTTP,String] :http_proxy
|
365
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_read_timeout (60)
|
368
|
+
# The default number of seconds to wait for response data.
|
369
|
+
# This value can safely be set per-request on the session.
|
370
|
+
#
|
371
|
+
# @option options [Boolean] :http_wire_trace (false)
|
372
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
373
|
+
#
|
374
|
+
# @option options [Proc] :on_chunk_received
|
375
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
376
|
+
# of the response body is received. It provides three arguments: the chunk,
|
377
|
+
# the number of bytes received, and the total number of
|
378
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
379
|
+
#
|
380
|
+
# @option options [Proc] :on_chunk_sent
|
381
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
382
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
383
|
+
# the number of bytes read from the body, and the total number of
|
384
|
+
# bytes in the body.
|
385
|
+
#
|
386
|
+
# @option options [Boolean] :raise_response_errors (true)
|
387
|
+
# When `true`, response errors are raised.
|
388
|
+
#
|
389
|
+
# @option options [String] :ssl_ca_bundle
|
390
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
391
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
392
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
393
|
+
#
|
394
|
+
# @option options [String] :ssl_ca_directory
|
395
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
396
|
+
# authority files for verifying peer certificates. If you do
|
397
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
398
|
+
# default will be used if available.
|
365
399
|
#
|
366
|
-
# @option options [
|
367
|
-
#
|
400
|
+
# @option options [String] :ssl_ca_store
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
368
402
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# connection.
|
403
|
+
# @option options [Float] :ssl_timeout
|
404
|
+
# Sets the SSL timeout in seconds
|
372
405
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
375
|
-
# verifying peer certificates. If you do not pass
|
376
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
377
|
-
# will be used if available.
|
378
|
-
#
|
379
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
380
|
-
# directory that contains the unbundled SSL certificate
|
381
|
-
# authority files for verifying peer certificates. If you do
|
382
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
383
|
-
# system default will be used if available.
|
406
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
407
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
384
408
|
#
|
385
409
|
def initialize(*args)
|
386
410
|
super
|
@@ -565,7 +589,7 @@ module Aws::QuickSight
|
|
565
589
|
# [3]: https://docs.aws.amazon.com/quicksight/latest/user/security_iam_service-with-iam.html#security-create-iam-role
|
566
590
|
# [4]: https://docs.aws.amazon.com/quicksight/latest/user/scoping-policies-defaults.html
|
567
591
|
#
|
568
|
-
# @option params [
|
592
|
+
# @option params [String] :edition
|
569
593
|
# The edition of Amazon QuickSight that you want your account to have.
|
570
594
|
# Currently, you can choose from `ENTERPRISE` or `ENTERPRISE_AND_Q`.
|
571
595
|
#
|
@@ -622,9 +646,9 @@ module Aws::QuickSight
|
|
622
646
|
#
|
623
647
|
# @option params [Array<String>] :admin_group
|
624
648
|
# The admin group associated with your Active Directory or IAM Identity
|
625
|
-
# Center account.
|
626
|
-
# `IAM_IDENTITY_CENTER` is the
|
627
|
-
# Amazon QuickSight account.
|
649
|
+
# Center account. Either this field or the `AdminProGroup` field is
|
650
|
+
# required if `ACTIVE_DIRECTORY` or `IAM_IDENTITY_CENTER` is the
|
651
|
+
# selected authentication method of the new Amazon QuickSight account.
|
628
652
|
#
|
629
653
|
# For more information about using IAM Identity Center in Amazon
|
630
654
|
# QuickSight, see [Using IAM Identity Center with Amazon QuickSight
|
@@ -670,6 +694,56 @@ module Aws::QuickSight
|
|
670
694
|
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html
|
671
695
|
# [2]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
|
672
696
|
#
|
697
|
+
# @option params [Array<String>] :admin_pro_group
|
698
|
+
# The admin pro group associated with your Active Directory or IAM
|
699
|
+
# Identity Center account. Either this field or the `AdminGroup` field
|
700
|
+
# is required if `ACTIVE_DIRECTORY` or `IAM_IDENTITY_CENTER` is the
|
701
|
+
# selected authentication method of the new Amazon QuickSight account.
|
702
|
+
#
|
703
|
+
# For more information about using IAM Identity Center in Amazon
|
704
|
+
# QuickSight, see [Using IAM Identity Center with Amazon QuickSight
|
705
|
+
# Enterprise Edition][1] in the Amazon QuickSight User Guide. For more
|
706
|
+
# information about using Active Directory in Amazon QuickSight, see
|
707
|
+
# [Using Active Directory with Amazon QuickSight Enterprise Edition][2]
|
708
|
+
# in the Amazon QuickSight User Guide.
|
709
|
+
#
|
710
|
+
#
|
711
|
+
#
|
712
|
+
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html
|
713
|
+
# [2]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
|
714
|
+
#
|
715
|
+
# @option params [Array<String>] :author_pro_group
|
716
|
+
# The author pro group associated with your Active Directory or IAM
|
717
|
+
# Identity Center account.
|
718
|
+
#
|
719
|
+
# For more information about using IAM Identity Center in Amazon
|
720
|
+
# QuickSight, see [Using IAM Identity Center with Amazon QuickSight
|
721
|
+
# Enterprise Edition][1] in the Amazon QuickSight User Guide. For more
|
722
|
+
# information about using Active Directory in Amazon QuickSight, see
|
723
|
+
# [Using Active Directory with Amazon QuickSight Enterprise Edition][2]
|
724
|
+
# in the Amazon QuickSight User Guide.
|
725
|
+
#
|
726
|
+
#
|
727
|
+
#
|
728
|
+
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html
|
729
|
+
# [2]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
|
730
|
+
#
|
731
|
+
# @option params [Array<String>] :reader_pro_group
|
732
|
+
# The reader pro group associated with your Active Directory or IAM
|
733
|
+
# Identity Center account.
|
734
|
+
#
|
735
|
+
# For more information about using IAM Identity Center in Amazon
|
736
|
+
# QuickSight, see [Using IAM Identity Center with Amazon QuickSight
|
737
|
+
# Enterprise Edition][1] in the Amazon QuickSight User Guide. For more
|
738
|
+
# information about using Active Directory in Amazon QuickSight, see
|
739
|
+
# [Using Active Directory with Amazon QuickSight Enterprise Edition][2]
|
740
|
+
# in the Amazon QuickSight User Guide.
|
741
|
+
#
|
742
|
+
#
|
743
|
+
#
|
744
|
+
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html
|
745
|
+
# [2]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
|
746
|
+
#
|
673
747
|
# @option params [String] :first_name
|
674
748
|
# The first name of the author of the Amazon QuickSight account to use
|
675
749
|
# for future communications. This field is required if
|
@@ -706,7 +780,7 @@ module Aws::QuickSight
|
|
706
780
|
# @example Request syntax with placeholder values
|
707
781
|
#
|
708
782
|
# resp = client.create_account_subscription({
|
709
|
-
# edition: "STANDARD", #
|
783
|
+
# edition: "STANDARD", # accepts STANDARD, ENTERPRISE, ENTERPRISE_AND_Q
|
710
784
|
# authentication_method: "IAM_AND_QUICKSIGHT", # required, accepts IAM_AND_QUICKSIGHT, IAM_ONLY, ACTIVE_DIRECTORY, IAM_IDENTITY_CENTER
|
711
785
|
# aws_account_id: "AwsAccountId", # required
|
712
786
|
# account_name: "AccountName", # required
|
@@ -717,6 +791,9 @@ module Aws::QuickSight
|
|
717
791
|
# admin_group: ["String"],
|
718
792
|
# author_group: ["String"],
|
719
793
|
# reader_group: ["String"],
|
794
|
+
# admin_pro_group: ["String"],
|
795
|
+
# author_pro_group: ["String"],
|
796
|
+
# reader_pro_group: ["String"],
|
720
797
|
# first_name: "String",
|
721
798
|
# last_name: "String",
|
722
799
|
# email_address: "String",
|
@@ -2179,7 +2256,7 @@ module Aws::QuickSight
|
|
2179
2256
|
# member_name: "GroupName", # required
|
2180
2257
|
# aws_account_id: "AwsAccountId", # required
|
2181
2258
|
# namespace: "Namespace", # required
|
2182
|
-
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
2259
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
2183
2260
|
# })
|
2184
2261
|
#
|
2185
2262
|
# @example Response structure
|
@@ -3599,7 +3676,7 @@ module Aws::QuickSight
|
|
3599
3676
|
# @example Request syntax with placeholder values
|
3600
3677
|
#
|
3601
3678
|
# resp = client.delete_role_custom_permission({
|
3602
|
-
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
3679
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
3603
3680
|
# aws_account_id: "AwsAccountId", # required
|
3604
3681
|
# namespace: "Namespace", # required
|
3605
3682
|
# })
|
@@ -3644,7 +3721,7 @@ module Aws::QuickSight
|
|
3644
3721
|
#
|
3645
3722
|
# resp = client.delete_role_membership({
|
3646
3723
|
# member_name: "GroupName", # required
|
3647
|
-
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
3724
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
3648
3725
|
# aws_account_id: "AwsAccountId", # required
|
3649
3726
|
# namespace: "Namespace", # required
|
3650
3727
|
# })
|
@@ -6118,7 +6195,7 @@ module Aws::QuickSight
|
|
6118
6195
|
# @example Request syntax with placeholder values
|
6119
6196
|
#
|
6120
6197
|
# resp = client.describe_role_custom_permission({
|
6121
|
-
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
6198
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
6122
6199
|
# aws_account_id: "AwsAccountId", # required
|
6123
6200
|
# namespace: "Namespace", # required
|
6124
6201
|
# })
|
@@ -6916,7 +6993,7 @@ module Aws::QuickSight
|
|
6916
6993
|
# resp.user.arn #=> String
|
6917
6994
|
# resp.user.user_name #=> String
|
6918
6995
|
# resp.user.email #=> String
|
6919
|
-
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
6996
|
+
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER", "ADMIN_PRO", "AUTHOR_PRO", "READER_PRO"
|
6920
6997
|
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
6921
6998
|
# resp.user.active #=> Boolean
|
6922
6999
|
# resp.user.principal_id #=> String
|
@@ -7115,6 +7192,9 @@ module Aws::QuickSight
|
|
7115
7192
|
# q_search_bar: {
|
7116
7193
|
# initial_topic_id: "RestrictiveResourceId", # required
|
7117
7194
|
# },
|
7195
|
+
# generative_qn_a: {
|
7196
|
+
# initial_topic_id: "RestrictiveResourceId", # required
|
7197
|
+
# },
|
7118
7198
|
# },
|
7119
7199
|
# allowed_domains: ["String"],
|
7120
7200
|
# })
|
@@ -7181,9 +7261,10 @@ module Aws::QuickSight
|
|
7181
7261
|
# The Amazon Resource Name for the registered user.
|
7182
7262
|
#
|
7183
7263
|
# @option params [required, Types::RegisteredUserEmbeddingExperienceConfiguration] :experience_configuration
|
7184
|
-
# The experience you
|
7185
|
-
# Amazon QuickSight dashboards, Amazon QuickSight visuals, the
|
7186
|
-
# QuickSight Q search bar,
|
7264
|
+
# The experience that you want to embed. For registered users, you can
|
7265
|
+
# embed Amazon QuickSight dashboards, Amazon QuickSight visuals, the
|
7266
|
+
# Amazon QuickSight Q search bar, the Amazon QuickSight Generative
|
7267
|
+
# Q&A experience, or the entire Amazon QuickSight console.
|
7187
7268
|
#
|
7188
7269
|
# @option params [Array<String>] :allowed_domains
|
7189
7270
|
# The domains that you want to add to the allow list for access to the
|
@@ -7239,6 +7320,9 @@ module Aws::QuickSight
|
|
7239
7320
|
# visual_id: "ShortRestrictiveResourceId", # required
|
7240
7321
|
# },
|
7241
7322
|
# },
|
7323
|
+
# generative_qn_a: {
|
7324
|
+
# initial_topic_id: "RestrictiveResourceId",
|
7325
|
+
# },
|
7242
7326
|
# },
|
7243
7327
|
# allowed_domains: ["String"],
|
7244
7328
|
# })
|
@@ -8602,7 +8686,7 @@ module Aws::QuickSight
|
|
8602
8686
|
# @example Request syntax with placeholder values
|
8603
8687
|
#
|
8604
8688
|
# resp = client.list_role_memberships({
|
8605
|
-
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
8689
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
8606
8690
|
# next_token: "String",
|
8607
8691
|
# max_results: 1,
|
8608
8692
|
# aws_account_id: "AwsAccountId", # required
|
@@ -9081,6 +9165,7 @@ module Aws::QuickSight
|
|
9081
9165
|
# resp.topics_summaries[0].arn #=> String
|
9082
9166
|
# resp.topics_summaries[0].topic_id #=> String
|
9083
9167
|
# resp.topics_summaries[0].name #=> String
|
9168
|
+
# resp.topics_summaries[0].user_experience_version #=> String, one of "LEGACY", "NEW_READER_EXPERIENCE"
|
9084
9169
|
# resp.next_token #=> String
|
9085
9170
|
# resp.request_id #=> String
|
9086
9171
|
# resp.status #=> Integer
|
@@ -9195,7 +9280,7 @@ module Aws::QuickSight
|
|
9195
9280
|
# resp.user_list[0].arn #=> String
|
9196
9281
|
# resp.user_list[0].user_name #=> String
|
9197
9282
|
# resp.user_list[0].email #=> String
|
9198
|
-
# resp.user_list[0].role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
9283
|
+
# resp.user_list[0].role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER", "ADMIN_PRO", "AUTHOR_PRO", "READER_PRO"
|
9199
9284
|
# resp.user_list[0].identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
9200
9285
|
# resp.user_list[0].active #=> Boolean
|
9201
9286
|
# resp.user_list[0].principal_id #=> String
|
@@ -9347,13 +9432,8 @@ module Aws::QuickSight
|
|
9347
9432
|
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/managing-users.html#inviting-users
|
9348
9433
|
#
|
9349
9434
|
# @option params [required, String] :identity_type
|
9350
|
-
#
|
9351
|
-
#
|
9352
|
-
#
|
9353
|
-
# * `IAM`: A user whose identity maps to an existing IAM user or role.
|
9354
|
-
#
|
9355
|
-
# * `QUICKSIGHT`: A user whose identity is owned and managed internally
|
9356
|
-
# by Amazon QuickSight.
|
9435
|
+
# The identity type that your Amazon QuickSight account uses to manage
|
9436
|
+
# the identity of users.
|
9357
9437
|
#
|
9358
9438
|
# @option params [required, String] :email
|
9359
9439
|
# The email address of the user that you want to register.
|
@@ -9429,7 +9509,8 @@ module Aws::QuickSight
|
|
9429
9509
|
# Amazon QuickSight custom permissions are applied through IAM policies.
|
9430
9510
|
# Therefore, they override the permissions typically granted by
|
9431
9511
|
# assigning Amazon QuickSight users to one of the default security
|
9432
|
-
# cohorts in Amazon QuickSight (admin, author, reader
|
9512
|
+
# cohorts in Amazon QuickSight (admin, author, reader, admin pro, author
|
9513
|
+
# pro, reader pro).
|
9433
9514
|
#
|
9434
9515
|
# This feature is available only to Amazon QuickSight Enterprise edition
|
9435
9516
|
# subscriptions.
|
@@ -9474,7 +9555,7 @@ module Aws::QuickSight
|
|
9474
9555
|
# resp = client.register_user({
|
9475
9556
|
# identity_type: "IAM", # required, accepts IAM, QUICKSIGHT, IAM_IDENTITY_CENTER
|
9476
9557
|
# email: "String", # required
|
9477
|
-
# user_role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, RESTRICTED_AUTHOR, RESTRICTED_READER
|
9558
|
+
# user_role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, RESTRICTED_AUTHOR, RESTRICTED_READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
9478
9559
|
# iam_arn: "String",
|
9479
9560
|
# session_name: "RoleSessionName",
|
9480
9561
|
# aws_account_id: "AwsAccountId", # required
|
@@ -9497,7 +9578,7 @@ module Aws::QuickSight
|
|
9497
9578
|
# resp.user.arn #=> String
|
9498
9579
|
# resp.user.user_name #=> String
|
9499
9580
|
# resp.user.email #=> String
|
9500
|
-
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
9581
|
+
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER", "ADMIN_PRO", "AUTHOR_PRO", "READER_PRO"
|
9501
9582
|
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
9502
9583
|
# resp.user.active #=> Boolean
|
9503
9584
|
# resp.user.principal_id #=> String
|
@@ -12581,7 +12662,7 @@ module Aws::QuickSight
|
|
12581
12662
|
#
|
12582
12663
|
# resp = client.update_role_custom_permission({
|
12583
12664
|
# custom_permissions_name: "RoleName", # required
|
12584
|
-
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
12665
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
12585
12666
|
# aws_account_id: "AwsAccountId", # required
|
12586
12667
|
# namespace: "Namespace", # required
|
12587
12668
|
# })
|
@@ -12600,6 +12681,49 @@ module Aws::QuickSight
|
|
12600
12681
|
req.send_request(options)
|
12601
12682
|
end
|
12602
12683
|
|
12684
|
+
# Updates the SPICE capacity configuration for a Amazon QuickSight
|
12685
|
+
# account.
|
12686
|
+
#
|
12687
|
+
# @option params [required, String] :aws_account_id
|
12688
|
+
# The ID of the Amazon Web Services account that contains the SPICE
|
12689
|
+
# configuration that you want to update.
|
12690
|
+
#
|
12691
|
+
# @option params [required, String] :purchase_mode
|
12692
|
+
# Determines how SPICE capacity can be purchased. The following options
|
12693
|
+
# are available.
|
12694
|
+
#
|
12695
|
+
# * `MANUAL`: SPICE capacity can only be purchased manually.
|
12696
|
+
#
|
12697
|
+
# * `AUTO_PURCHASE`: Extra SPICE capacity is automatically purchased on
|
12698
|
+
# your behalf as needed. SPICE capacity can also be purchased manually
|
12699
|
+
# with this option.
|
12700
|
+
#
|
12701
|
+
# @return [Types::UpdateSPICECapacityConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12702
|
+
#
|
12703
|
+
# * {Types::UpdateSPICECapacityConfigurationResponse#request_id #request_id} => String
|
12704
|
+
# * {Types::UpdateSPICECapacityConfigurationResponse#status #status} => Integer
|
12705
|
+
#
|
12706
|
+
# @example Request syntax with placeholder values
|
12707
|
+
#
|
12708
|
+
# resp = client.update_spice_capacity_configuration({
|
12709
|
+
# aws_account_id: "AwsAccountId", # required
|
12710
|
+
# purchase_mode: "MANUAL", # required, accepts MANUAL, AUTO_PURCHASE
|
12711
|
+
# })
|
12712
|
+
#
|
12713
|
+
# @example Response structure
|
12714
|
+
#
|
12715
|
+
# resp.request_id #=> String
|
12716
|
+
# resp.status #=> Integer
|
12717
|
+
#
|
12718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSPICECapacityConfiguration AWS API Documentation
|
12719
|
+
#
|
12720
|
+
# @overload update_spice_capacity_configuration(params = {})
|
12721
|
+
# @param [Hash] params ({})
|
12722
|
+
def update_spice_capacity_configuration(params = {}, options = {})
|
12723
|
+
req = build_request(:update_spice_capacity_configuration, params)
|
12724
|
+
req.send_request(options)
|
12725
|
+
end
|
12726
|
+
|
12603
12727
|
# Updates a template from an existing Amazon QuickSight analysis or
|
12604
12728
|
# another template.
|
12605
12729
|
#
|
@@ -13457,6 +13581,20 @@ module Aws::QuickSight
|
|
13457
13581
|
# * `ADMIN`: A user who is an author, who can also manage Amazon
|
13458
13582
|
# QuickSight settings.
|
13459
13583
|
#
|
13584
|
+
# * `READER_PRO`: Reader Pro adds Generative BI capabilities to the
|
13585
|
+
# Reader role. Reader Pros have access to Amazon Q Business, can build
|
13586
|
+
# stories with Amazon Q, and can generate executive summaries from
|
13587
|
+
# dashboards.
|
13588
|
+
#
|
13589
|
+
# * `AUTHOR_PRO`: Author Pro adds Generative BI capabilities to the
|
13590
|
+
# Author role. Author Pros can author dashboards with natural language
|
13591
|
+
# with Amazon Q, build stories with Amazon Q, create Topics for
|
13592
|
+
# Q&A, and generate executive summaries from dashboards.
|
13593
|
+
#
|
13594
|
+
# * `ADMIN_PRO`: Admin Pros are Author Pros who can also manage Amazon
|
13595
|
+
# QuickSight administrative settings. Admin Pro users are billed at
|
13596
|
+
# Author Pro pricing.
|
13597
|
+
#
|
13460
13598
|
# The name of the Amazon QuickSight role is invisible to the user except
|
13461
13599
|
# for the console screens dealing with permissions.
|
13462
13600
|
#
|
@@ -13537,7 +13675,7 @@ module Aws::QuickSight
|
|
13537
13675
|
# aws_account_id: "AwsAccountId", # required
|
13538
13676
|
# namespace: "Namespace", # required
|
13539
13677
|
# email: "String", # required
|
13540
|
-
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, RESTRICTED_AUTHOR, RESTRICTED_READER
|
13678
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, RESTRICTED_AUTHOR, RESTRICTED_READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
13541
13679
|
# custom_permissions_name: "RoleName",
|
13542
13680
|
# unapply_custom_permissions: false,
|
13543
13681
|
# external_login_federation_provider_type: "String",
|
@@ -13550,7 +13688,7 @@ module Aws::QuickSight
|
|
13550
13688
|
# resp.user.arn #=> String
|
13551
13689
|
# resp.user.user_name #=> String
|
13552
13690
|
# resp.user.email #=> String
|
13553
|
-
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
13691
|
+
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER", "ADMIN_PRO", "AUTHOR_PRO", "READER_PRO"
|
13554
13692
|
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
13555
13693
|
# resp.user.active #=> Boolean
|
13556
13694
|
# resp.user.principal_id #=> String
|
@@ -13649,7 +13787,7 @@ module Aws::QuickSight
|
|
13649
13787
|
params: params,
|
13650
13788
|
config: config)
|
13651
13789
|
context[:gem_name] = 'aws-sdk-quicksight'
|
13652
|
-
context[:gem_version] = '1.
|
13790
|
+
context[:gem_version] = '1.110.0'
|
13653
13791
|
Seahorse::Client::Request.new(handlers, context)
|
13654
13792
|
end
|
13655
13793
|
|