aws-sdk-quicksight 1.109.0 → 1.111.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +146 -31
- 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 +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0d6aadfd41912849635ac129e2c79681e3776ea6decf0a1830806a791d13d90
|
4
|
+
data.tar.gz: 18e1b5a7d8ee8014818e142ded16f12a1a6304f147b14fa73b124979b4cd1f7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9967e0f072652528630dc2d906a8d3b15455b7cfb31bfd88a25f0a79345b5253761db3eeb1e34f40b9a4b70471214f3535339fe96367a610d6bbad82399f67ef
|
7
|
+
data.tar.gz: a66d001cef92a44ffd9bcae5b7946779f3aa0bde312f13cc59bf87d59ded93fe7258080e244d6d31ff6727d6b750ac38280809813118ccbc2f8fc1572d9e1f4e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.111.0 (2024-05-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.110.0 (2024-04-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - New Q embedding supporting Generative Q&A
|
13
|
+
|
4
14
|
1.109.0 (2024-04-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.111.0
|
@@ -301,8 +301,9 @@ module Aws::QuickSight
|
|
301
301
|
#
|
302
302
|
# @option options [String] :sdk_ua_app_id
|
303
303
|
# A unique and opaque application ID that is appended to the
|
304
|
-
# User-Agent header as app
|
305
|
-
# maximum length of 50.
|
304
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
305
|
+
# maximum length of 50. This variable is sourced from environment
|
306
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
306
307
|
#
|
307
308
|
# @option options [String] :secret_access_key
|
308
309
|
#
|
@@ -589,7 +590,7 @@ module Aws::QuickSight
|
|
589
590
|
# [3]: https://docs.aws.amazon.com/quicksight/latest/user/security_iam_service-with-iam.html#security-create-iam-role
|
590
591
|
# [4]: https://docs.aws.amazon.com/quicksight/latest/user/scoping-policies-defaults.html
|
591
592
|
#
|
592
|
-
# @option params [
|
593
|
+
# @option params [String] :edition
|
593
594
|
# The edition of Amazon QuickSight that you want your account to have.
|
594
595
|
# Currently, you can choose from `ENTERPRISE` or `ENTERPRISE_AND_Q`.
|
595
596
|
#
|
@@ -646,9 +647,9 @@ module Aws::QuickSight
|
|
646
647
|
#
|
647
648
|
# @option params [Array<String>] :admin_group
|
648
649
|
# The admin group associated with your Active Directory or IAM Identity
|
649
|
-
# Center account.
|
650
|
-
# `IAM_IDENTITY_CENTER` is the
|
651
|
-
# Amazon QuickSight account.
|
650
|
+
# Center account. Either this field or the `AdminProGroup` field is
|
651
|
+
# required if `ACTIVE_DIRECTORY` or `IAM_IDENTITY_CENTER` is the
|
652
|
+
# selected authentication method of the new Amazon QuickSight account.
|
652
653
|
#
|
653
654
|
# For more information about using IAM Identity Center in Amazon
|
654
655
|
# QuickSight, see [Using IAM Identity Center with Amazon QuickSight
|
@@ -694,6 +695,56 @@ module Aws::QuickSight
|
|
694
695
|
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html
|
695
696
|
# [2]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
|
696
697
|
#
|
698
|
+
# @option params [Array<String>] :admin_pro_group
|
699
|
+
# The admin pro group associated with your Active Directory or IAM
|
700
|
+
# Identity Center account. Either this field or the `AdminGroup` field
|
701
|
+
# is required if `ACTIVE_DIRECTORY` or `IAM_IDENTITY_CENTER` is the
|
702
|
+
# selected authentication method of the new Amazon QuickSight account.
|
703
|
+
#
|
704
|
+
# For more information about using IAM Identity Center in Amazon
|
705
|
+
# QuickSight, see [Using IAM Identity Center with Amazon QuickSight
|
706
|
+
# Enterprise Edition][1] in the Amazon QuickSight User Guide. For more
|
707
|
+
# information about using Active Directory in Amazon QuickSight, see
|
708
|
+
# [Using Active Directory with Amazon QuickSight Enterprise Edition][2]
|
709
|
+
# in the Amazon QuickSight User Guide.
|
710
|
+
#
|
711
|
+
#
|
712
|
+
#
|
713
|
+
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html
|
714
|
+
# [2]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
|
715
|
+
#
|
716
|
+
# @option params [Array<String>] :author_pro_group
|
717
|
+
# The author pro group associated with your Active Directory or IAM
|
718
|
+
# Identity Center account.
|
719
|
+
#
|
720
|
+
# For more information about using IAM Identity Center in Amazon
|
721
|
+
# QuickSight, see [Using IAM Identity Center with Amazon QuickSight
|
722
|
+
# Enterprise Edition][1] in the Amazon QuickSight User Guide. For more
|
723
|
+
# information about using Active Directory in Amazon QuickSight, see
|
724
|
+
# [Using Active Directory with Amazon QuickSight Enterprise Edition][2]
|
725
|
+
# in the Amazon QuickSight User Guide.
|
726
|
+
#
|
727
|
+
#
|
728
|
+
#
|
729
|
+
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html
|
730
|
+
# [2]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
|
731
|
+
#
|
732
|
+
# @option params [Array<String>] :reader_pro_group
|
733
|
+
# The reader pro group associated with your Active Directory or IAM
|
734
|
+
# Identity Center account.
|
735
|
+
#
|
736
|
+
# For more information about using IAM Identity Center in Amazon
|
737
|
+
# QuickSight, see [Using IAM Identity Center with Amazon QuickSight
|
738
|
+
# Enterprise Edition][1] in the Amazon QuickSight User Guide. For more
|
739
|
+
# information about using Active Directory in Amazon QuickSight, see
|
740
|
+
# [Using Active Directory with Amazon QuickSight Enterprise Edition][2]
|
741
|
+
# in the Amazon QuickSight User Guide.
|
742
|
+
#
|
743
|
+
#
|
744
|
+
#
|
745
|
+
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html
|
746
|
+
# [2]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
|
747
|
+
#
|
697
748
|
# @option params [String] :first_name
|
698
749
|
# The first name of the author of the Amazon QuickSight account to use
|
699
750
|
# for future communications. This field is required if
|
@@ -730,7 +781,7 @@ module Aws::QuickSight
|
|
730
781
|
# @example Request syntax with placeholder values
|
731
782
|
#
|
732
783
|
# resp = client.create_account_subscription({
|
733
|
-
# edition: "STANDARD", #
|
784
|
+
# edition: "STANDARD", # accepts STANDARD, ENTERPRISE, ENTERPRISE_AND_Q
|
734
785
|
# authentication_method: "IAM_AND_QUICKSIGHT", # required, accepts IAM_AND_QUICKSIGHT, IAM_ONLY, ACTIVE_DIRECTORY, IAM_IDENTITY_CENTER
|
735
786
|
# aws_account_id: "AwsAccountId", # required
|
736
787
|
# account_name: "AccountName", # required
|
@@ -741,6 +792,9 @@ module Aws::QuickSight
|
|
741
792
|
# admin_group: ["String"],
|
742
793
|
# author_group: ["String"],
|
743
794
|
# reader_group: ["String"],
|
795
|
+
# admin_pro_group: ["String"],
|
796
|
+
# author_pro_group: ["String"],
|
797
|
+
# reader_pro_group: ["String"],
|
744
798
|
# first_name: "String",
|
745
799
|
# last_name: "String",
|
746
800
|
# email_address: "String",
|
@@ -2203,7 +2257,7 @@ module Aws::QuickSight
|
|
2203
2257
|
# member_name: "GroupName", # required
|
2204
2258
|
# aws_account_id: "AwsAccountId", # required
|
2205
2259
|
# namespace: "Namespace", # required
|
2206
|
-
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
2260
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
2207
2261
|
# })
|
2208
2262
|
#
|
2209
2263
|
# @example Response structure
|
@@ -3623,7 +3677,7 @@ module Aws::QuickSight
|
|
3623
3677
|
# @example Request syntax with placeholder values
|
3624
3678
|
#
|
3625
3679
|
# resp = client.delete_role_custom_permission({
|
3626
|
-
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
3680
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
3627
3681
|
# aws_account_id: "AwsAccountId", # required
|
3628
3682
|
# namespace: "Namespace", # required
|
3629
3683
|
# })
|
@@ -3668,7 +3722,7 @@ module Aws::QuickSight
|
|
3668
3722
|
#
|
3669
3723
|
# resp = client.delete_role_membership({
|
3670
3724
|
# member_name: "GroupName", # required
|
3671
|
-
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
3725
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
3672
3726
|
# aws_account_id: "AwsAccountId", # required
|
3673
3727
|
# namespace: "Namespace", # required
|
3674
3728
|
# })
|
@@ -6142,7 +6196,7 @@ module Aws::QuickSight
|
|
6142
6196
|
# @example Request syntax with placeholder values
|
6143
6197
|
#
|
6144
6198
|
# resp = client.describe_role_custom_permission({
|
6145
|
-
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
6199
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
6146
6200
|
# aws_account_id: "AwsAccountId", # required
|
6147
6201
|
# namespace: "Namespace", # required
|
6148
6202
|
# })
|
@@ -6940,7 +6994,7 @@ module Aws::QuickSight
|
|
6940
6994
|
# resp.user.arn #=> String
|
6941
6995
|
# resp.user.user_name #=> String
|
6942
6996
|
# resp.user.email #=> String
|
6943
|
-
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
6997
|
+
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER", "ADMIN_PRO", "AUTHOR_PRO", "READER_PRO"
|
6944
6998
|
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
6945
6999
|
# resp.user.active #=> Boolean
|
6946
7000
|
# resp.user.principal_id #=> String
|
@@ -7139,6 +7193,9 @@ module Aws::QuickSight
|
|
7139
7193
|
# q_search_bar: {
|
7140
7194
|
# initial_topic_id: "RestrictiveResourceId", # required
|
7141
7195
|
# },
|
7196
|
+
# generative_qn_a: {
|
7197
|
+
# initial_topic_id: "RestrictiveResourceId", # required
|
7198
|
+
# },
|
7142
7199
|
# },
|
7143
7200
|
# allowed_domains: ["String"],
|
7144
7201
|
# })
|
@@ -7205,9 +7262,10 @@ module Aws::QuickSight
|
|
7205
7262
|
# The Amazon Resource Name for the registered user.
|
7206
7263
|
#
|
7207
7264
|
# @option params [required, Types::RegisteredUserEmbeddingExperienceConfiguration] :experience_configuration
|
7208
|
-
# The experience you
|
7209
|
-
# Amazon QuickSight dashboards, Amazon QuickSight visuals, the
|
7210
|
-
# QuickSight Q search bar,
|
7265
|
+
# The experience that you want to embed. For registered users, you can
|
7266
|
+
# embed Amazon QuickSight dashboards, Amazon QuickSight visuals, the
|
7267
|
+
# Amazon QuickSight Q search bar, the Amazon QuickSight Generative
|
7268
|
+
# Q&A experience, or the entire Amazon QuickSight console.
|
7211
7269
|
#
|
7212
7270
|
# @option params [Array<String>] :allowed_domains
|
7213
7271
|
# The domains that you want to add to the allow list for access to the
|
@@ -7263,6 +7321,9 @@ module Aws::QuickSight
|
|
7263
7321
|
# visual_id: "ShortRestrictiveResourceId", # required
|
7264
7322
|
# },
|
7265
7323
|
# },
|
7324
|
+
# generative_qn_a: {
|
7325
|
+
# initial_topic_id: "RestrictiveResourceId",
|
7326
|
+
# },
|
7266
7327
|
# },
|
7267
7328
|
# allowed_domains: ["String"],
|
7268
7329
|
# })
|
@@ -8626,7 +8687,7 @@ module Aws::QuickSight
|
|
8626
8687
|
# @example Request syntax with placeholder values
|
8627
8688
|
#
|
8628
8689
|
# resp = client.list_role_memberships({
|
8629
|
-
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
8690
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
8630
8691
|
# next_token: "String",
|
8631
8692
|
# max_results: 1,
|
8632
8693
|
# aws_account_id: "AwsAccountId", # required
|
@@ -9105,6 +9166,7 @@ module Aws::QuickSight
|
|
9105
9166
|
# resp.topics_summaries[0].arn #=> String
|
9106
9167
|
# resp.topics_summaries[0].topic_id #=> String
|
9107
9168
|
# resp.topics_summaries[0].name #=> String
|
9169
|
+
# resp.topics_summaries[0].user_experience_version #=> String, one of "LEGACY", "NEW_READER_EXPERIENCE"
|
9108
9170
|
# resp.next_token #=> String
|
9109
9171
|
# resp.request_id #=> String
|
9110
9172
|
# resp.status #=> Integer
|
@@ -9219,7 +9281,7 @@ module Aws::QuickSight
|
|
9219
9281
|
# resp.user_list[0].arn #=> String
|
9220
9282
|
# resp.user_list[0].user_name #=> String
|
9221
9283
|
# resp.user_list[0].email #=> String
|
9222
|
-
# resp.user_list[0].role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
9284
|
+
# resp.user_list[0].role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER", "ADMIN_PRO", "AUTHOR_PRO", "READER_PRO"
|
9223
9285
|
# resp.user_list[0].identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
9224
9286
|
# resp.user_list[0].active #=> Boolean
|
9225
9287
|
# resp.user_list[0].principal_id #=> String
|
@@ -9371,13 +9433,8 @@ module Aws::QuickSight
|
|
9371
9433
|
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/managing-users.html#inviting-users
|
9372
9434
|
#
|
9373
9435
|
# @option params [required, String] :identity_type
|
9374
|
-
#
|
9375
|
-
#
|
9376
|
-
#
|
9377
|
-
# * `IAM`: A user whose identity maps to an existing IAM user or role.
|
9378
|
-
#
|
9379
|
-
# * `QUICKSIGHT`: A user whose identity is owned and managed internally
|
9380
|
-
# by Amazon QuickSight.
|
9436
|
+
# The identity type that your Amazon QuickSight account uses to manage
|
9437
|
+
# the identity of users.
|
9381
9438
|
#
|
9382
9439
|
# @option params [required, String] :email
|
9383
9440
|
# The email address of the user that you want to register.
|
@@ -9453,7 +9510,8 @@ module Aws::QuickSight
|
|
9453
9510
|
# Amazon QuickSight custom permissions are applied through IAM policies.
|
9454
9511
|
# Therefore, they override the permissions typically granted by
|
9455
9512
|
# assigning Amazon QuickSight users to one of the default security
|
9456
|
-
# cohorts in Amazon QuickSight (admin, author, reader
|
9513
|
+
# cohorts in Amazon QuickSight (admin, author, reader, admin pro, author
|
9514
|
+
# pro, reader pro).
|
9457
9515
|
#
|
9458
9516
|
# This feature is available only to Amazon QuickSight Enterprise edition
|
9459
9517
|
# subscriptions.
|
@@ -9498,7 +9556,7 @@ module Aws::QuickSight
|
|
9498
9556
|
# resp = client.register_user({
|
9499
9557
|
# identity_type: "IAM", # required, accepts IAM, QUICKSIGHT, IAM_IDENTITY_CENTER
|
9500
9558
|
# email: "String", # required
|
9501
|
-
# user_role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, RESTRICTED_AUTHOR, RESTRICTED_READER
|
9559
|
+
# user_role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, RESTRICTED_AUTHOR, RESTRICTED_READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
9502
9560
|
# iam_arn: "String",
|
9503
9561
|
# session_name: "RoleSessionName",
|
9504
9562
|
# aws_account_id: "AwsAccountId", # required
|
@@ -9521,7 +9579,7 @@ module Aws::QuickSight
|
|
9521
9579
|
# resp.user.arn #=> String
|
9522
9580
|
# resp.user.user_name #=> String
|
9523
9581
|
# resp.user.email #=> String
|
9524
|
-
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
9582
|
+
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER", "ADMIN_PRO", "AUTHOR_PRO", "READER_PRO"
|
9525
9583
|
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
9526
9584
|
# resp.user.active #=> Boolean
|
9527
9585
|
# resp.user.principal_id #=> String
|
@@ -12605,7 +12663,7 @@ module Aws::QuickSight
|
|
12605
12663
|
#
|
12606
12664
|
# resp = client.update_role_custom_permission({
|
12607
12665
|
# custom_permissions_name: "RoleName", # required
|
12608
|
-
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER
|
12666
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
12609
12667
|
# aws_account_id: "AwsAccountId", # required
|
12610
12668
|
# namespace: "Namespace", # required
|
12611
12669
|
# })
|
@@ -12624,6 +12682,49 @@ module Aws::QuickSight
|
|
12624
12682
|
req.send_request(options)
|
12625
12683
|
end
|
12626
12684
|
|
12685
|
+
# Updates the SPICE capacity configuration for a Amazon QuickSight
|
12686
|
+
# account.
|
12687
|
+
#
|
12688
|
+
# @option params [required, String] :aws_account_id
|
12689
|
+
# The ID of the Amazon Web Services account that contains the SPICE
|
12690
|
+
# configuration that you want to update.
|
12691
|
+
#
|
12692
|
+
# @option params [required, String] :purchase_mode
|
12693
|
+
# Determines how SPICE capacity can be purchased. The following options
|
12694
|
+
# are available.
|
12695
|
+
#
|
12696
|
+
# * `MANUAL`: SPICE capacity can only be purchased manually.
|
12697
|
+
#
|
12698
|
+
# * `AUTO_PURCHASE`: Extra SPICE capacity is automatically purchased on
|
12699
|
+
# your behalf as needed. SPICE capacity can also be purchased manually
|
12700
|
+
# with this option.
|
12701
|
+
#
|
12702
|
+
# @return [Types::UpdateSPICECapacityConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12703
|
+
#
|
12704
|
+
# * {Types::UpdateSPICECapacityConfigurationResponse#request_id #request_id} => String
|
12705
|
+
# * {Types::UpdateSPICECapacityConfigurationResponse#status #status} => Integer
|
12706
|
+
#
|
12707
|
+
# @example Request syntax with placeholder values
|
12708
|
+
#
|
12709
|
+
# resp = client.update_spice_capacity_configuration({
|
12710
|
+
# aws_account_id: "AwsAccountId", # required
|
12711
|
+
# purchase_mode: "MANUAL", # required, accepts MANUAL, AUTO_PURCHASE
|
12712
|
+
# })
|
12713
|
+
#
|
12714
|
+
# @example Response structure
|
12715
|
+
#
|
12716
|
+
# resp.request_id #=> String
|
12717
|
+
# resp.status #=> Integer
|
12718
|
+
#
|
12719
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSPICECapacityConfiguration AWS API Documentation
|
12720
|
+
#
|
12721
|
+
# @overload update_spice_capacity_configuration(params = {})
|
12722
|
+
# @param [Hash] params ({})
|
12723
|
+
def update_spice_capacity_configuration(params = {}, options = {})
|
12724
|
+
req = build_request(:update_spice_capacity_configuration, params)
|
12725
|
+
req.send_request(options)
|
12726
|
+
end
|
12727
|
+
|
12627
12728
|
# Updates a template from an existing Amazon QuickSight analysis or
|
12628
12729
|
# another template.
|
12629
12730
|
#
|
@@ -13481,6 +13582,20 @@ module Aws::QuickSight
|
|
13481
13582
|
# * `ADMIN`: A user who is an author, who can also manage Amazon
|
13482
13583
|
# QuickSight settings.
|
13483
13584
|
#
|
13585
|
+
# * `READER_PRO`: Reader Pro adds Generative BI capabilities to the
|
13586
|
+
# Reader role. Reader Pros have access to Amazon Q Business, can build
|
13587
|
+
# stories with Amazon Q, and can generate executive summaries from
|
13588
|
+
# dashboards.
|
13589
|
+
#
|
13590
|
+
# * `AUTHOR_PRO`: Author Pro adds Generative BI capabilities to the
|
13591
|
+
# Author role. Author Pros can author dashboards with natural language
|
13592
|
+
# with Amazon Q, build stories with Amazon Q, create Topics for
|
13593
|
+
# Q&A, and generate executive summaries from dashboards.
|
13594
|
+
#
|
13595
|
+
# * `ADMIN_PRO`: Admin Pros are Author Pros who can also manage Amazon
|
13596
|
+
# QuickSight administrative settings. Admin Pro users are billed at
|
13597
|
+
# Author Pro pricing.
|
13598
|
+
#
|
13484
13599
|
# The name of the Amazon QuickSight role is invisible to the user except
|
13485
13600
|
# for the console screens dealing with permissions.
|
13486
13601
|
#
|
@@ -13561,7 +13676,7 @@ module Aws::QuickSight
|
|
13561
13676
|
# aws_account_id: "AwsAccountId", # required
|
13562
13677
|
# namespace: "Namespace", # required
|
13563
13678
|
# email: "String", # required
|
13564
|
-
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, RESTRICTED_AUTHOR, RESTRICTED_READER
|
13679
|
+
# role: "ADMIN", # required, accepts ADMIN, AUTHOR, READER, RESTRICTED_AUTHOR, RESTRICTED_READER, ADMIN_PRO, AUTHOR_PRO, READER_PRO
|
13565
13680
|
# custom_permissions_name: "RoleName",
|
13566
13681
|
# unapply_custom_permissions: false,
|
13567
13682
|
# external_login_federation_provider_type: "String",
|
@@ -13574,7 +13689,7 @@ module Aws::QuickSight
|
|
13574
13689
|
# resp.user.arn #=> String
|
13575
13690
|
# resp.user.user_name #=> String
|
13576
13691
|
# resp.user.email #=> String
|
13577
|
-
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER"
|
13692
|
+
# resp.user.role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER", "ADMIN_PRO", "AUTHOR_PRO", "READER_PRO"
|
13578
13693
|
# resp.user.identity_type #=> String, one of "IAM", "QUICKSIGHT", "IAM_IDENTITY_CENTER"
|
13579
13694
|
# resp.user.active #=> Boolean
|
13580
13695
|
# resp.user.principal_id #=> String
|
@@ -13673,7 +13788,7 @@ module Aws::QuickSight
|
|
13673
13788
|
params: params,
|
13674
13789
|
config: config)
|
13675
13790
|
context[:gem_name] = 'aws-sdk-quicksight'
|
13676
|
-
context[:gem_version] = '1.
|
13791
|
+
context[:gem_version] = '1.111.0'
|
13677
13792
|
Seahorse::Client::Request.new(handlers, context)
|
13678
13793
|
end
|
13679
13794
|
|
@@ -50,6 +50,7 @@ module Aws::QuickSight
|
|
50
50
|
AnonymousUserDashboardEmbeddingConfiguration = Shapes::StructureShape.new(name: 'AnonymousUserDashboardEmbeddingConfiguration')
|
51
51
|
AnonymousUserDashboardVisualEmbeddingConfiguration = Shapes::StructureShape.new(name: 'AnonymousUserDashboardVisualEmbeddingConfiguration')
|
52
52
|
AnonymousUserEmbeddingExperienceConfiguration = Shapes::StructureShape.new(name: 'AnonymousUserEmbeddingExperienceConfiguration')
|
53
|
+
AnonymousUserGenerativeQnAEmbeddingConfiguration = Shapes::StructureShape.new(name: 'AnonymousUserGenerativeQnAEmbeddingConfiguration')
|
53
54
|
AnonymousUserQSearchBarEmbeddingConfiguration = Shapes::StructureShape.new(name: 'AnonymousUserQSearchBarEmbeddingConfiguration')
|
54
55
|
AnonymousUserSnapshotJobResult = Shapes::StructureShape.new(name: 'AnonymousUserSnapshotJobResult')
|
55
56
|
AnonymousUserSnapshotJobResultList = Shapes::ListShape.new(name: 'AnonymousUserSnapshotJobResultList')
|
@@ -791,6 +792,7 @@ module Aws::QuickSight
|
|
791
792
|
FunnelChartSortConfiguration = Shapes::StructureShape.new(name: 'FunnelChartSortConfiguration')
|
792
793
|
FunnelChartVisual = Shapes::StructureShape.new(name: 'FunnelChartVisual')
|
793
794
|
GaugeChartArcConditionalFormatting = Shapes::StructureShape.new(name: 'GaugeChartArcConditionalFormatting')
|
795
|
+
GaugeChartColorConfiguration = Shapes::StructureShape.new(name: 'GaugeChartColorConfiguration')
|
794
796
|
GaugeChartConditionalFormatting = Shapes::StructureShape.new(name: 'GaugeChartConditionalFormatting')
|
795
797
|
GaugeChartConditionalFormattingOption = Shapes::StructureShape.new(name: 'GaugeChartConditionalFormattingOption')
|
796
798
|
GaugeChartConditionalFormattingOptionList = Shapes::ListShape.new(name: 'GaugeChartConditionalFormattingOptionList')
|
@@ -1213,6 +1215,7 @@ module Aws::QuickSight
|
|
1213
1215
|
ProjectedColumnList = Shapes::ListShape.new(name: 'ProjectedColumnList')
|
1214
1216
|
PropertyRole = Shapes::StringShape.new(name: 'PropertyRole')
|
1215
1217
|
PropertyUsage = Shapes::StringShape.new(name: 'PropertyUsage')
|
1218
|
+
PurchaseMode = Shapes::StringShape.new(name: 'PurchaseMode')
|
1216
1219
|
PutDataSetRefreshPropertiesRequest = Shapes::StructureShape.new(name: 'PutDataSetRefreshPropertiesRequest')
|
1217
1220
|
PutDataSetRefreshPropertiesResponse = Shapes::StructureShape.new(name: 'PutDataSetRefreshPropertiesResponse')
|
1218
1221
|
Query = Shapes::StringShape.new(name: 'Query')
|
@@ -1263,6 +1266,7 @@ module Aws::QuickSight
|
|
1263
1266
|
RegisteredUserDashboardFeatureConfigurations = Shapes::StructureShape.new(name: 'RegisteredUserDashboardFeatureConfigurations')
|
1264
1267
|
RegisteredUserDashboardVisualEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserDashboardVisualEmbeddingConfiguration')
|
1265
1268
|
RegisteredUserEmbeddingExperienceConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserEmbeddingExperienceConfiguration')
|
1269
|
+
RegisteredUserGenerativeQnAEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserGenerativeQnAEmbeddingConfiguration')
|
1266
1270
|
RegisteredUserQSearchBarEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserQSearchBarEmbeddingConfiguration')
|
1267
1271
|
RegisteredUserQuickSightConsoleEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserQuickSightConsoleEmbeddingConfiguration')
|
1268
1272
|
RelationalTable = Shapes::StructureShape.new(name: 'RelationalTable')
|
@@ -1715,6 +1719,8 @@ module Aws::QuickSight
|
|
1715
1719
|
UpdateResourcePermissionList = Shapes::ListShape.new(name: 'UpdateResourcePermissionList')
|
1716
1720
|
UpdateRoleCustomPermissionRequest = Shapes::StructureShape.new(name: 'UpdateRoleCustomPermissionRequest')
|
1717
1721
|
UpdateRoleCustomPermissionResponse = Shapes::StructureShape.new(name: 'UpdateRoleCustomPermissionResponse')
|
1722
|
+
UpdateSPICECapacityConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateSPICECapacityConfigurationRequest')
|
1723
|
+
UpdateSPICECapacityConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateSPICECapacityConfigurationResponse')
|
1718
1724
|
UpdateTemplateAliasRequest = Shapes::StructureShape.new(name: 'UpdateTemplateAliasRequest')
|
1719
1725
|
UpdateTemplateAliasResponse = Shapes::StructureShape.new(name: 'UpdateTemplateAliasResponse')
|
1720
1726
|
UpdateTemplatePermissionsRequest = Shapes::StructureShape.new(name: 'UpdateTemplatePermissionsRequest')
|
@@ -1940,8 +1946,12 @@ module Aws::QuickSight
|
|
1940
1946
|
AnonymousUserEmbeddingExperienceConfiguration.add_member(:dashboard, Shapes::ShapeRef.new(shape: AnonymousUserDashboardEmbeddingConfiguration, location_name: "Dashboard"))
|
1941
1947
|
AnonymousUserEmbeddingExperienceConfiguration.add_member(:dashboard_visual, Shapes::ShapeRef.new(shape: AnonymousUserDashboardVisualEmbeddingConfiguration, location_name: "DashboardVisual"))
|
1942
1948
|
AnonymousUserEmbeddingExperienceConfiguration.add_member(:q_search_bar, Shapes::ShapeRef.new(shape: AnonymousUserQSearchBarEmbeddingConfiguration, location_name: "QSearchBar"))
|
1949
|
+
AnonymousUserEmbeddingExperienceConfiguration.add_member(:generative_qn_a, Shapes::ShapeRef.new(shape: AnonymousUserGenerativeQnAEmbeddingConfiguration, location_name: "GenerativeQnA"))
|
1943
1950
|
AnonymousUserEmbeddingExperienceConfiguration.struct_class = Types::AnonymousUserEmbeddingExperienceConfiguration
|
1944
1951
|
|
1952
|
+
AnonymousUserGenerativeQnAEmbeddingConfiguration.add_member(:initial_topic_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, required: true, location_name: "InitialTopicId"))
|
1953
|
+
AnonymousUserGenerativeQnAEmbeddingConfiguration.struct_class = Types::AnonymousUserGenerativeQnAEmbeddingConfiguration
|
1954
|
+
|
1945
1955
|
AnonymousUserQSearchBarEmbeddingConfiguration.add_member(:initial_topic_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, required: true, location_name: "InitialTopicId"))
|
1946
1956
|
AnonymousUserQSearchBarEmbeddingConfiguration.struct_class = Types::AnonymousUserQSearchBarEmbeddingConfiguration
|
1947
1957
|
|
@@ -2780,7 +2790,7 @@ module Aws::QuickSight
|
|
2780
2790
|
CreateAccountCustomizationResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
2781
2791
|
CreateAccountCustomizationResponse.struct_class = Types::CreateAccountCustomizationResponse
|
2782
2792
|
|
2783
|
-
CreateAccountSubscriptionRequest.add_member(:edition, Shapes::ShapeRef.new(shape: Edition,
|
2793
|
+
CreateAccountSubscriptionRequest.add_member(:edition, Shapes::ShapeRef.new(shape: Edition, location_name: "Edition"))
|
2784
2794
|
CreateAccountSubscriptionRequest.add_member(:authentication_method, Shapes::ShapeRef.new(shape: AuthenticationMethodOption, required: true, location_name: "AuthenticationMethod"))
|
2785
2795
|
CreateAccountSubscriptionRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
2786
2796
|
CreateAccountSubscriptionRequest.add_member(:account_name, Shapes::ShapeRef.new(shape: AccountName, required: true, location_name: "AccountName"))
|
@@ -2791,6 +2801,9 @@ module Aws::QuickSight
|
|
2791
2801
|
CreateAccountSubscriptionRequest.add_member(:admin_group, Shapes::ShapeRef.new(shape: GroupsList, location_name: "AdminGroup"))
|
2792
2802
|
CreateAccountSubscriptionRequest.add_member(:author_group, Shapes::ShapeRef.new(shape: GroupsList, location_name: "AuthorGroup"))
|
2793
2803
|
CreateAccountSubscriptionRequest.add_member(:reader_group, Shapes::ShapeRef.new(shape: GroupsList, location_name: "ReaderGroup"))
|
2804
|
+
CreateAccountSubscriptionRequest.add_member(:admin_pro_group, Shapes::ShapeRef.new(shape: GroupsList, location_name: "AdminProGroup"))
|
2805
|
+
CreateAccountSubscriptionRequest.add_member(:author_pro_group, Shapes::ShapeRef.new(shape: GroupsList, location_name: "AuthorProGroup"))
|
2806
|
+
CreateAccountSubscriptionRequest.add_member(:reader_pro_group, Shapes::ShapeRef.new(shape: GroupsList, location_name: "ReaderProGroup"))
|
2794
2807
|
CreateAccountSubscriptionRequest.add_member(:first_name, Shapes::ShapeRef.new(shape: String, location_name: "FirstName"))
|
2795
2808
|
CreateAccountSubscriptionRequest.add_member(:last_name, Shapes::ShapeRef.new(shape: String, location_name: "LastName"))
|
2796
2809
|
CreateAccountSubscriptionRequest.add_member(:email_address, Shapes::ShapeRef.new(shape: String, location_name: "EmailAddress"))
|
@@ -4936,6 +4949,10 @@ module Aws::QuickSight
|
|
4936
4949
|
GaugeChartArcConditionalFormatting.add_member(:foreground_color, Shapes::ShapeRef.new(shape: ConditionalFormattingColor, location_name: "ForegroundColor"))
|
4937
4950
|
GaugeChartArcConditionalFormatting.struct_class = Types::GaugeChartArcConditionalFormatting
|
4938
4951
|
|
4952
|
+
GaugeChartColorConfiguration.add_member(:foreground_color, Shapes::ShapeRef.new(shape: HexColor, location_name: "ForegroundColor"))
|
4953
|
+
GaugeChartColorConfiguration.add_member(:background_color, Shapes::ShapeRef.new(shape: HexColor, location_name: "BackgroundColor"))
|
4954
|
+
GaugeChartColorConfiguration.struct_class = Types::GaugeChartColorConfiguration
|
4955
|
+
|
4939
4956
|
GaugeChartConditionalFormatting.add_member(:conditional_formatting_options, Shapes::ShapeRef.new(shape: GaugeChartConditionalFormattingOptionList, location_name: "ConditionalFormattingOptions"))
|
4940
4957
|
GaugeChartConditionalFormatting.struct_class = Types::GaugeChartConditionalFormatting
|
4941
4958
|
|
@@ -4950,6 +4967,7 @@ module Aws::QuickSight
|
|
4950
4967
|
GaugeChartConfiguration.add_member(:data_labels, Shapes::ShapeRef.new(shape: DataLabelOptions, location_name: "DataLabels"))
|
4951
4968
|
GaugeChartConfiguration.add_member(:tooltip_options, Shapes::ShapeRef.new(shape: TooltipOptions, location_name: "TooltipOptions"))
|
4952
4969
|
GaugeChartConfiguration.add_member(:visual_palette, Shapes::ShapeRef.new(shape: VisualPalette, location_name: "VisualPalette"))
|
4970
|
+
GaugeChartConfiguration.add_member(:color_configuration, Shapes::ShapeRef.new(shape: GaugeChartColorConfiguration, location_name: "ColorConfiguration"))
|
4953
4971
|
GaugeChartConfiguration.add_member(:interactions, Shapes::ShapeRef.new(shape: VisualInteractionOptions, location_name: "Interactions"))
|
4954
4972
|
GaugeChartConfiguration.struct_class = Types::GaugeChartConfiguration
|
4955
4973
|
|
@@ -6660,8 +6678,12 @@ module Aws::QuickSight
|
|
6660
6678
|
RegisteredUserEmbeddingExperienceConfiguration.add_member(:quick_sight_console, Shapes::ShapeRef.new(shape: RegisteredUserQuickSightConsoleEmbeddingConfiguration, location_name: "QuickSightConsole"))
|
6661
6679
|
RegisteredUserEmbeddingExperienceConfiguration.add_member(:q_search_bar, Shapes::ShapeRef.new(shape: RegisteredUserQSearchBarEmbeddingConfiguration, location_name: "QSearchBar"))
|
6662
6680
|
RegisteredUserEmbeddingExperienceConfiguration.add_member(:dashboard_visual, Shapes::ShapeRef.new(shape: RegisteredUserDashboardVisualEmbeddingConfiguration, location_name: "DashboardVisual"))
|
6681
|
+
RegisteredUserEmbeddingExperienceConfiguration.add_member(:generative_qn_a, Shapes::ShapeRef.new(shape: RegisteredUserGenerativeQnAEmbeddingConfiguration, location_name: "GenerativeQnA"))
|
6663
6682
|
RegisteredUserEmbeddingExperienceConfiguration.struct_class = Types::RegisteredUserEmbeddingExperienceConfiguration
|
6664
6683
|
|
6684
|
+
RegisteredUserGenerativeQnAEmbeddingConfiguration.add_member(:initial_topic_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, location_name: "InitialTopicId"))
|
6685
|
+
RegisteredUserGenerativeQnAEmbeddingConfiguration.struct_class = Types::RegisteredUserGenerativeQnAEmbeddingConfiguration
|
6686
|
+
|
6665
6687
|
RegisteredUserQSearchBarEmbeddingConfiguration.add_member(:initial_topic_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, location_name: "InitialTopicId"))
|
6666
6688
|
RegisteredUserQSearchBarEmbeddingConfiguration.struct_class = Types::RegisteredUserQSearchBarEmbeddingConfiguration
|
6667
6689
|
|
@@ -7872,6 +7894,7 @@ module Aws::QuickSight
|
|
7872
7894
|
TopicSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
7873
7895
|
TopicSummary.add_member(:topic_id, Shapes::ShapeRef.new(shape: TopicId, location_name: "TopicId"))
|
7874
7896
|
TopicSummary.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "Name"))
|
7897
|
+
TopicSummary.add_member(:user_experience_version, Shapes::ShapeRef.new(shape: TopicUserExperienceVersion, location_name: "UserExperienceVersion"))
|
7875
7898
|
TopicSummary.struct_class = Types::TopicSummary
|
7876
7899
|
|
7877
7900
|
TotalAggregationComputation.add_member(:computation_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "ComputationId"))
|
@@ -8292,6 +8315,14 @@ module Aws::QuickSight
|
|
8292
8315
|
UpdateRoleCustomPermissionResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location_name: "Status"))
|
8293
8316
|
UpdateRoleCustomPermissionResponse.struct_class = Types::UpdateRoleCustomPermissionResponse
|
8294
8317
|
|
8318
|
+
UpdateSPICECapacityConfigurationRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
8319
|
+
UpdateSPICECapacityConfigurationRequest.add_member(:purchase_mode, Shapes::ShapeRef.new(shape: PurchaseMode, required: true, location_name: "PurchaseMode"))
|
8320
|
+
UpdateSPICECapacityConfigurationRequest.struct_class = Types::UpdateSPICECapacityConfigurationRequest
|
8321
|
+
|
8322
|
+
UpdateSPICECapacityConfigurationResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
8323
|
+
UpdateSPICECapacityConfigurationResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
8324
|
+
UpdateSPICECapacityConfigurationResponse.struct_class = Types::UpdateSPICECapacityConfigurationResponse
|
8325
|
+
|
8295
8326
|
UpdateTemplateAliasRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
8296
8327
|
UpdateTemplateAliasRequest.add_member(:template_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location: "uri", location_name: "TemplateId"))
|
8297
8328
|
UpdateTemplateAliasRequest.add_member(:alias_name, Shapes::ShapeRef.new(shape: AliasName, required: true, location: "uri", location_name: "AliasName"))
|
@@ -8684,6 +8715,7 @@ module Aws::QuickSight
|
|
8684
8715
|
"endpointPrefix" => "quicksight",
|
8685
8716
|
"jsonVersion" => "1.0",
|
8686
8717
|
"protocol" => "rest-json",
|
8718
|
+
"protocols" => ["rest-json"],
|
8687
8719
|
"serviceFullName" => "Amazon QuickSight",
|
8688
8720
|
"serviceId" => "QuickSight",
|
8689
8721
|
"signatureVersion" => "v4",
|
@@ -11241,6 +11273,19 @@ module Aws::QuickSight
|
|
11241
11273
|
o.errors << Shapes::ShapeRef.new(shape: ResourceUnavailableException)
|
11242
11274
|
end)
|
11243
11275
|
|
11276
|
+
api.add_operation(:update_spice_capacity_configuration, Seahorse::Model::Operation.new.tap do |o|
|
11277
|
+
o.name = "UpdateSPICECapacityConfiguration"
|
11278
|
+
o.http_method = "POST"
|
11279
|
+
o.http_request_uri = "/accounts/{AwsAccountId}/spice-capacity-configuration"
|
11280
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateSPICECapacityConfigurationRequest)
|
11281
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateSPICECapacityConfigurationResponse)
|
11282
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
11283
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
11284
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
11285
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
11286
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
11287
|
+
end)
|
11288
|
+
|
11244
11289
|
api.add_operation(:update_template, Seahorse::Model::Operation.new.tap do |o|
|
11245
11290
|
o.name = "UpdateTemplate"
|
11246
11291
|
o.http_method = "PUT"
|
@@ -2252,6 +2252,20 @@ module Aws::QuickSight
|
|
2252
2252
|
end
|
2253
2253
|
end
|
2254
2254
|
|
2255
|
+
class UpdateSPICECapacityConfiguration
|
2256
|
+
def self.build(context)
|
2257
|
+
unless context.config.regional_endpoint
|
2258
|
+
endpoint = context.config.endpoint.to_s
|
2259
|
+
end
|
2260
|
+
Aws::QuickSight::EndpointParameters.new(
|
2261
|
+
region: context.config.region,
|
2262
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2263
|
+
use_fips: context.config.use_fips_endpoint,
|
2264
|
+
endpoint: endpoint,
|
2265
|
+
)
|
2266
|
+
end
|
2267
|
+
end
|
2268
|
+
|
2255
2269
|
class UpdateTemplate
|
2256
2270
|
def self.build(context)
|
2257
2271
|
unless context.config.regional_endpoint
|
@@ -378,6 +378,8 @@ module Aws::QuickSight
|
|
378
378
|
Aws::QuickSight::Endpoints::UpdateRefreshSchedule.build(context)
|
379
379
|
when :update_role_custom_permission
|
380
380
|
Aws::QuickSight::Endpoints::UpdateRoleCustomPermission.build(context)
|
381
|
+
when :update_spice_capacity_configuration
|
382
|
+
Aws::QuickSight::Endpoints::UpdateSPICECapacityConfiguration.build(context)
|
381
383
|
when :update_template
|
382
384
|
Aws::QuickSight::Endpoints::UpdateTemplate.build(context)
|
383
385
|
when :update_template_alias
|