aws-sdk-quicksight 1.166.0 → 1.167.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +202 -7
- data/lib/aws-sdk-quicksight/client_api.rb +143 -0
- data/lib/aws-sdk-quicksight/errors.rb +21 -0
- data/lib/aws-sdk-quicksight/types.rb +292 -3
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +61 -2
- data/sig/errors.rbs +4 -0
- data/sig/types.rbs +82 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4c5a9854d8280c0af341fe28923ecf0217b6ebea509e0f48cf6b9a517aa899b3
|
|
4
|
+
data.tar.gz: 6615f8515b41b7233fec248094ffa4ba01e4c6f46dedfc642ad57843eecb50ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a810021e52d2d9bc21a277017cb56dfde1d7fdbf98ace9bfc8d4c47994cb4013824be2b9199a8b30875ba7dcc03c12a88e6c43d1410568966457b62088d366b
|
|
7
|
+
data.tar.gz: 459dcdbcd58fc0749241f5e50a174efc6b1cb9cd7dc87ded5e90e646e075a63d2113bb42b79e688c050cbdfd9fa34a357dd4d24d8d34ca2e1b8785be1c34fef7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.167.0 (2025-12-29)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for quick users to be able to perform role upgrades on their own. Additionally it allows admins to make this feature admin or auto approval along with new self upgrade capability that can be restricted by Admins.
|
|
8
|
+
|
|
4
9
|
1.166.0 (2025-12-11)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.167.0
|
|
@@ -2236,6 +2236,7 @@ module Aws::QuickSight
|
|
|
2236
2236
|
# chat_agent: "DENY", # accepts DENY
|
|
2237
2237
|
# create_chat_agents: "DENY", # accepts DENY
|
|
2238
2238
|
# research: "DENY", # accepts DENY
|
|
2239
|
+
# self_upgrade_user_role: "DENY", # accepts DENY
|
|
2239
2240
|
# },
|
|
2240
2241
|
# tags: [
|
|
2241
2242
|
# {
|
|
@@ -7790,6 +7791,7 @@ module Aws::QuickSight
|
|
|
7790
7791
|
# resp.custom_permissions.capabilities.chat_agent #=> String, one of "DENY"
|
|
7791
7792
|
# resp.custom_permissions.capabilities.create_chat_agents #=> String, one of "DENY"
|
|
7792
7793
|
# resp.custom_permissions.capabilities.research #=> String, one of "DENY"
|
|
7794
|
+
# resp.custom_permissions.capabilities.self_upgrade_user_role #=> String, one of "DENY"
|
|
7793
7795
|
# resp.request_id #=> String
|
|
7794
7796
|
#
|
|
7795
7797
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeCustomPermissions AWS API Documentation
|
|
@@ -9747,6 +9749,44 @@ module Aws::QuickSight
|
|
|
9747
9749
|
req.send_request(options)
|
|
9748
9750
|
end
|
|
9749
9751
|
|
|
9752
|
+
# Describes the self-upgrade configuration for a Quick Suite account.
|
|
9753
|
+
#
|
|
9754
|
+
# @option params [required, String] :aws_account_id
|
|
9755
|
+
# The ID of the Amazon Web Services account that contains the Quick
|
|
9756
|
+
# Suite self-upgrade configuration.
|
|
9757
|
+
#
|
|
9758
|
+
# @option params [required, String] :namespace
|
|
9759
|
+
# The Quick Suite namespace that you want to describe the Quick Suite
|
|
9760
|
+
# self-upgrade configuration for.
|
|
9761
|
+
#
|
|
9762
|
+
# @return [Types::DescribeSelfUpgradeConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
9763
|
+
#
|
|
9764
|
+
# * {Types::DescribeSelfUpgradeConfigurationResponse#self_upgrade_configuration #self_upgrade_configuration} => Types::SelfUpgradeConfiguration
|
|
9765
|
+
# * {Types::DescribeSelfUpgradeConfigurationResponse#request_id #request_id} => String
|
|
9766
|
+
# * {Types::DescribeSelfUpgradeConfigurationResponse#status #status} => Integer
|
|
9767
|
+
#
|
|
9768
|
+
# @example Request syntax with placeholder values
|
|
9769
|
+
#
|
|
9770
|
+
# resp = client.describe_self_upgrade_configuration({
|
|
9771
|
+
# aws_account_id: "AwsAccountId", # required
|
|
9772
|
+
# namespace: "Namespace", # required
|
|
9773
|
+
# })
|
|
9774
|
+
#
|
|
9775
|
+
# @example Response structure
|
|
9776
|
+
#
|
|
9777
|
+
# resp.self_upgrade_configuration.self_upgrade_status #=> String, one of "AUTO_APPROVAL", "ADMIN_APPROVAL"
|
|
9778
|
+
# resp.request_id #=> String
|
|
9779
|
+
# resp.status #=> Integer
|
|
9780
|
+
#
|
|
9781
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeSelfUpgradeConfiguration AWS API Documentation
|
|
9782
|
+
#
|
|
9783
|
+
# @overload describe_self_upgrade_configuration(params = {})
|
|
9784
|
+
# @param [Hash] params ({})
|
|
9785
|
+
def describe_self_upgrade_configuration(params = {}, options = {})
|
|
9786
|
+
req = build_request(:describe_self_upgrade_configuration, params)
|
|
9787
|
+
req.send_request(options)
|
|
9788
|
+
end
|
|
9789
|
+
|
|
9750
9790
|
# Describes a template's metadata.
|
|
9751
9791
|
#
|
|
9752
9792
|
# @option params [required, String] :aws_account_id
|
|
@@ -11946,6 +11986,7 @@ module Aws::QuickSight
|
|
|
11946
11986
|
# resp.custom_permissions_list[0].capabilities.chat_agent #=> String, one of "DENY"
|
|
11947
11987
|
# resp.custom_permissions_list[0].capabilities.create_chat_agents #=> String, one of "DENY"
|
|
11948
11988
|
# resp.custom_permissions_list[0].capabilities.research #=> String, one of "DENY"
|
|
11989
|
+
# resp.custom_permissions_list[0].capabilities.self_upgrade_user_role #=> String, one of "DENY"
|
|
11949
11990
|
# resp.next_token #=> String
|
|
11950
11991
|
# resp.request_id #=> String
|
|
11951
11992
|
#
|
|
@@ -13118,6 +13159,63 @@ module Aws::QuickSight
|
|
|
13118
13159
|
req.send_request(options)
|
|
13119
13160
|
end
|
|
13120
13161
|
|
|
13162
|
+
# Lists all self-upgrade requests for a Quick Suite account.
|
|
13163
|
+
#
|
|
13164
|
+
# @option params [required, String] :aws_account_id
|
|
13165
|
+
# The ID of the Amazon Web Services account that contains the
|
|
13166
|
+
# self-upgrade requests.
|
|
13167
|
+
#
|
|
13168
|
+
# @option params [required, String] :namespace
|
|
13169
|
+
# The Quick Suite namespace for the self-upgrade requests.
|
|
13170
|
+
#
|
|
13171
|
+
# @option params [String] :next_token
|
|
13172
|
+
# The token for the next set of results, or null if there are no more
|
|
13173
|
+
# results.
|
|
13174
|
+
#
|
|
13175
|
+
# @option params [Integer] :max_results
|
|
13176
|
+
# The maximum number of results to return.
|
|
13177
|
+
#
|
|
13178
|
+
# @return [Types::ListSelfUpgradesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
13179
|
+
#
|
|
13180
|
+
# * {Types::ListSelfUpgradesResponse#self_upgrade_request_details #self_upgrade_request_details} => Array<Types::SelfUpgradeRequestDetail>
|
|
13181
|
+
# * {Types::ListSelfUpgradesResponse#next_token #next_token} => String
|
|
13182
|
+
# * {Types::ListSelfUpgradesResponse#request_id #request_id} => String
|
|
13183
|
+
# * {Types::ListSelfUpgradesResponse#status #status} => Integer
|
|
13184
|
+
#
|
|
13185
|
+
# @example Request syntax with placeholder values
|
|
13186
|
+
#
|
|
13187
|
+
# resp = client.list_self_upgrades({
|
|
13188
|
+
# aws_account_id: "AwsAccountId", # required
|
|
13189
|
+
# namespace: "Namespace", # required
|
|
13190
|
+
# next_token: "String",
|
|
13191
|
+
# max_results: 1,
|
|
13192
|
+
# })
|
|
13193
|
+
#
|
|
13194
|
+
# @example Response structure
|
|
13195
|
+
#
|
|
13196
|
+
# resp.self_upgrade_request_details #=> Array
|
|
13197
|
+
# resp.self_upgrade_request_details[0].upgrade_request_id #=> String
|
|
13198
|
+
# resp.self_upgrade_request_details[0].user_name #=> String
|
|
13199
|
+
# resp.self_upgrade_request_details[0].original_role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER", "ADMIN_PRO", "AUTHOR_PRO", "READER_PRO"
|
|
13200
|
+
# resp.self_upgrade_request_details[0].requested_role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER", "ADMIN_PRO", "AUTHOR_PRO", "READER_PRO"
|
|
13201
|
+
# resp.self_upgrade_request_details[0].request_note #=> String
|
|
13202
|
+
# resp.self_upgrade_request_details[0].creation_time #=> Integer
|
|
13203
|
+
# resp.self_upgrade_request_details[0].request_status #=> String, one of "PENDING", "APPROVED", "DENIED", "UPDATE_FAILED", "VERIFY_FAILED"
|
|
13204
|
+
# resp.self_upgrade_request_details[0].last_update_attempt_time #=> Integer
|
|
13205
|
+
# resp.self_upgrade_request_details[0].last_update_failure_reason #=> String
|
|
13206
|
+
# resp.next_token #=> String
|
|
13207
|
+
# resp.request_id #=> String
|
|
13208
|
+
# resp.status #=> Integer
|
|
13209
|
+
#
|
|
13210
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListSelfUpgrades AWS API Documentation
|
|
13211
|
+
#
|
|
13212
|
+
# @overload list_self_upgrades(params = {})
|
|
13213
|
+
# @param [Hash] params ({})
|
|
13214
|
+
def list_self_upgrades(params = {}, options = {})
|
|
13215
|
+
req = build_request(:list_self_upgrades, params)
|
|
13216
|
+
req.send_request(options)
|
|
13217
|
+
end
|
|
13218
|
+
|
|
13121
13219
|
# Lists the tags assigned to a resource.
|
|
13122
13220
|
#
|
|
13123
13221
|
# @option params [required, String] :resource_arn
|
|
@@ -16037,18 +16135,18 @@ module Aws::QuickSight
|
|
|
16037
16135
|
#
|
|
16038
16136
|
# To generate snapshots for registered Quick Sight users, you need to:
|
|
16039
16137
|
#
|
|
16040
|
-
# * Obtain identity-enhanced IAM role session credentials from
|
|
16041
|
-
# Security Token Service (STS).
|
|
16138
|
+
# * Obtain identity-enhanced IAM role session credentials from Amazon
|
|
16139
|
+
# Web Services Security Token Service (STS).
|
|
16042
16140
|
#
|
|
16043
16141
|
# * Use these credentials to call the Snapshot Job APIs.
|
|
16044
16142
|
#
|
|
16045
16143
|
# Identity-enhanced credentials are credentials that contain information
|
|
16046
16144
|
# about the end user (e.g., registered Quick Sight user).
|
|
16047
16145
|
#
|
|
16048
|
-
# If your Quick Sight users are backed by [
|
|
16049
|
-
# you need to set up a [trusted token issuer][4]. Then,
|
|
16050
|
-
# identity-enhanced IAM credentials for a Quick Sight user will
|
|
16051
|
-
# like the following:
|
|
16146
|
+
# If your Quick Sight users are backed by [Amazon Web Services Identity
|
|
16147
|
+
# Center][3], then you need to set up a [trusted token issuer][4]. Then,
|
|
16148
|
+
# getting identity-enhanced IAM credentials for a Quick Sight user will
|
|
16149
|
+
# look like the following:
|
|
16052
16150
|
#
|
|
16053
16151
|
# * Authenticate user with your OIDC compliant Identity Provider. You
|
|
16054
16152
|
# should get auth tokens back.
|
|
@@ -17222,6 +17320,7 @@ module Aws::QuickSight
|
|
|
17222
17320
|
# chat_agent: "DENY", # accepts DENY
|
|
17223
17321
|
# create_chat_agents: "DENY", # accepts DENY
|
|
17224
17322
|
# research: "DENY", # accepts DENY
|
|
17323
|
+
# self_upgrade_user_role: "DENY", # accepts DENY
|
|
17225
17324
|
# },
|
|
17226
17325
|
# })
|
|
17227
17326
|
#
|
|
@@ -19701,6 +19800,102 @@ module Aws::QuickSight
|
|
|
19701
19800
|
req.send_request(options)
|
|
19702
19801
|
end
|
|
19703
19802
|
|
|
19803
|
+
# Updates a self-upgrade request for a Quick Suite user by approving,
|
|
19804
|
+
# denying, or verifying the request.
|
|
19805
|
+
#
|
|
19806
|
+
# @option params [required, String] :aws_account_id
|
|
19807
|
+
# The ID of the Amazon Web Services account that contains the
|
|
19808
|
+
# self-upgrade request.
|
|
19809
|
+
#
|
|
19810
|
+
# @option params [required, String] :namespace
|
|
19811
|
+
# The Quick Suite namespace for the self-upgrade request.
|
|
19812
|
+
#
|
|
19813
|
+
# @option params [required, String] :upgrade_request_id
|
|
19814
|
+
# The ID of the self-upgrade request to update.
|
|
19815
|
+
#
|
|
19816
|
+
# @option params [required, String] :action
|
|
19817
|
+
# The action to perform on the self-upgrade request. Valid values are
|
|
19818
|
+
# `APPROVE`, `DENY`, or `VERIFY`.
|
|
19819
|
+
#
|
|
19820
|
+
# @return [Types::UpdateSelfUpgradeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
19821
|
+
#
|
|
19822
|
+
# * {Types::UpdateSelfUpgradeResponse#self_upgrade_request_detail #self_upgrade_request_detail} => Types::SelfUpgradeRequestDetail
|
|
19823
|
+
# * {Types::UpdateSelfUpgradeResponse#request_id #request_id} => String
|
|
19824
|
+
# * {Types::UpdateSelfUpgradeResponse#status #status} => Integer
|
|
19825
|
+
#
|
|
19826
|
+
# @example Request syntax with placeholder values
|
|
19827
|
+
#
|
|
19828
|
+
# resp = client.update_self_upgrade({
|
|
19829
|
+
# aws_account_id: "AwsAccountId", # required
|
|
19830
|
+
# namespace: "Namespace", # required
|
|
19831
|
+
# upgrade_request_id: "String", # required
|
|
19832
|
+
# action: "APPROVE", # required, accepts APPROVE, DENY, VERIFY
|
|
19833
|
+
# })
|
|
19834
|
+
#
|
|
19835
|
+
# @example Response structure
|
|
19836
|
+
#
|
|
19837
|
+
# resp.self_upgrade_request_detail.upgrade_request_id #=> String
|
|
19838
|
+
# resp.self_upgrade_request_detail.user_name #=> String
|
|
19839
|
+
# resp.self_upgrade_request_detail.original_role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER", "ADMIN_PRO", "AUTHOR_PRO", "READER_PRO"
|
|
19840
|
+
# resp.self_upgrade_request_detail.requested_role #=> String, one of "ADMIN", "AUTHOR", "READER", "RESTRICTED_AUTHOR", "RESTRICTED_READER", "ADMIN_PRO", "AUTHOR_PRO", "READER_PRO"
|
|
19841
|
+
# resp.self_upgrade_request_detail.request_note #=> String
|
|
19842
|
+
# resp.self_upgrade_request_detail.creation_time #=> Integer
|
|
19843
|
+
# resp.self_upgrade_request_detail.request_status #=> String, one of "PENDING", "APPROVED", "DENIED", "UPDATE_FAILED", "VERIFY_FAILED"
|
|
19844
|
+
# resp.self_upgrade_request_detail.last_update_attempt_time #=> Integer
|
|
19845
|
+
# resp.self_upgrade_request_detail.last_update_failure_reason #=> String
|
|
19846
|
+
# resp.request_id #=> String
|
|
19847
|
+
# resp.status #=> Integer
|
|
19848
|
+
#
|
|
19849
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSelfUpgrade AWS API Documentation
|
|
19850
|
+
#
|
|
19851
|
+
# @overload update_self_upgrade(params = {})
|
|
19852
|
+
# @param [Hash] params ({})
|
|
19853
|
+
def update_self_upgrade(params = {}, options = {})
|
|
19854
|
+
req = build_request(:update_self_upgrade, params)
|
|
19855
|
+
req.send_request(options)
|
|
19856
|
+
end
|
|
19857
|
+
|
|
19858
|
+
# Updates the self-upgrade configuration for a Quick Suite account.
|
|
19859
|
+
#
|
|
19860
|
+
# @option params [required, String] :aws_account_id
|
|
19861
|
+
# The ID of the Amazon Web Services account that contains the Quick
|
|
19862
|
+
# Suite self-upgrade configuration that you want to update.
|
|
19863
|
+
#
|
|
19864
|
+
# @option params [required, String] :namespace
|
|
19865
|
+
# The Quick Suite namespace that you want to update the Quick Suite
|
|
19866
|
+
# self-upgrade configuration for.
|
|
19867
|
+
#
|
|
19868
|
+
# @option params [required, String] :self_upgrade_status
|
|
19869
|
+
# The self-upgrade status that you want to set for the Quick Suite
|
|
19870
|
+
# account.
|
|
19871
|
+
#
|
|
19872
|
+
# @return [Types::UpdateSelfUpgradeConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
19873
|
+
#
|
|
19874
|
+
# * {Types::UpdateSelfUpgradeConfigurationResponse#request_id #request_id} => String
|
|
19875
|
+
# * {Types::UpdateSelfUpgradeConfigurationResponse#status #status} => Integer
|
|
19876
|
+
#
|
|
19877
|
+
# @example Request syntax with placeholder values
|
|
19878
|
+
#
|
|
19879
|
+
# resp = client.update_self_upgrade_configuration({
|
|
19880
|
+
# aws_account_id: "AwsAccountId", # required
|
|
19881
|
+
# namespace: "Namespace", # required
|
|
19882
|
+
# self_upgrade_status: "AUTO_APPROVAL", # required, accepts AUTO_APPROVAL, ADMIN_APPROVAL
|
|
19883
|
+
# })
|
|
19884
|
+
#
|
|
19885
|
+
# @example Response structure
|
|
19886
|
+
#
|
|
19887
|
+
# resp.request_id #=> String
|
|
19888
|
+
# resp.status #=> Integer
|
|
19889
|
+
#
|
|
19890
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSelfUpgradeConfiguration AWS API Documentation
|
|
19891
|
+
#
|
|
19892
|
+
# @overload update_self_upgrade_configuration(params = {})
|
|
19893
|
+
# @param [Hash] params ({})
|
|
19894
|
+
def update_self_upgrade_configuration(params = {}, options = {})
|
|
19895
|
+
req = build_request(:update_self_upgrade_configuration, params)
|
|
19896
|
+
req.send_request(options)
|
|
19897
|
+
end
|
|
19898
|
+
|
|
19704
19899
|
# Updates a template from an existing Amazon Quick Sight analysis or
|
|
19705
19900
|
# another template.
|
|
19706
19901
|
#
|
|
@@ -20936,7 +21131,7 @@ module Aws::QuickSight
|
|
|
20936
21131
|
tracer: tracer
|
|
20937
21132
|
)
|
|
20938
21133
|
context[:gem_name] = 'aws-sdk-quicksight'
|
|
20939
|
-
context[:gem_version] = '1.
|
|
21134
|
+
context[:gem_version] = '1.167.0'
|
|
20940
21135
|
Seahorse::Client::Request.new(handlers, context)
|
|
20941
21136
|
end
|
|
20942
21137
|
|
|
@@ -863,6 +863,8 @@ module Aws::QuickSight
|
|
|
863
863
|
DescribeRefreshScheduleResponse = Shapes::StructureShape.new(name: 'DescribeRefreshScheduleResponse')
|
|
864
864
|
DescribeRoleCustomPermissionRequest = Shapes::StructureShape.new(name: 'DescribeRoleCustomPermissionRequest')
|
|
865
865
|
DescribeRoleCustomPermissionResponse = Shapes::StructureShape.new(name: 'DescribeRoleCustomPermissionResponse')
|
|
866
|
+
DescribeSelfUpgradeConfigurationRequest = Shapes::StructureShape.new(name: 'DescribeSelfUpgradeConfigurationRequest')
|
|
867
|
+
DescribeSelfUpgradeConfigurationResponse = Shapes::StructureShape.new(name: 'DescribeSelfUpgradeConfigurationResponse')
|
|
866
868
|
DescribeTemplateAliasRequest = Shapes::StructureShape.new(name: 'DescribeTemplateAliasRequest')
|
|
867
869
|
DescribeTemplateAliasResponse = Shapes::StructureShape.new(name: 'DescribeTemplateAliasResponse')
|
|
868
870
|
DescribeTemplateDefinitionRequest = Shapes::StructureShape.new(name: 'DescribeTemplateDefinitionRequest')
|
|
@@ -1258,6 +1260,7 @@ module Aws::QuickSight
|
|
|
1258
1260
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
|
1259
1261
|
InvalidDataSetParameterValueException = Shapes::StructureShape.new(name: 'InvalidDataSetParameterValueException')
|
|
1260
1262
|
InvalidNextTokenException = Shapes::StructureShape.new(name: 'InvalidNextTokenException')
|
|
1263
|
+
InvalidParameterException = Shapes::StructureShape.new(name: 'InvalidParameterException')
|
|
1261
1264
|
InvalidParameterValueException = Shapes::StructureShape.new(name: 'InvalidParameterValueException')
|
|
1262
1265
|
InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
|
|
1263
1266
|
InvalidTopicReviewedAnswer = Shapes::StructureShape.new(name: 'InvalidTopicReviewedAnswer')
|
|
@@ -1377,6 +1380,8 @@ module Aws::QuickSight
|
|
|
1377
1380
|
ListRefreshSchedulesResponse = Shapes::StructureShape.new(name: 'ListRefreshSchedulesResponse')
|
|
1378
1381
|
ListRoleMembershipsRequest = Shapes::StructureShape.new(name: 'ListRoleMembershipsRequest')
|
|
1379
1382
|
ListRoleMembershipsResponse = Shapes::StructureShape.new(name: 'ListRoleMembershipsResponse')
|
|
1383
|
+
ListSelfUpgradesRequest = Shapes::StructureShape.new(name: 'ListSelfUpgradesRequest')
|
|
1384
|
+
ListSelfUpgradesResponse = Shapes::StructureShape.new(name: 'ListSelfUpgradesResponse')
|
|
1380
1385
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
|
1381
1386
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
|
1382
1387
|
ListTemplateAliasesRequest = Shapes::StructureShape.new(name: 'ListTemplateAliasesRequest')
|
|
@@ -1828,6 +1833,12 @@ module Aws::QuickSight
|
|
|
1828
1833
|
SelectedFieldOptions = Shapes::StringShape.new(name: 'SelectedFieldOptions')
|
|
1829
1834
|
SelectedSheetsFilterScopeConfiguration = Shapes::StructureShape.new(name: 'SelectedSheetsFilterScopeConfiguration')
|
|
1830
1835
|
SelectedTooltipType = Shapes::StringShape.new(name: 'SelectedTooltipType')
|
|
1836
|
+
SelfUpgradeAdminAction = Shapes::StringShape.new(name: 'SelfUpgradeAdminAction')
|
|
1837
|
+
SelfUpgradeConfiguration = Shapes::StructureShape.new(name: 'SelfUpgradeConfiguration')
|
|
1838
|
+
SelfUpgradeRequestDetail = Shapes::StructureShape.new(name: 'SelfUpgradeRequestDetail')
|
|
1839
|
+
SelfUpgradeRequestDetailList = Shapes::ListShape.new(name: 'SelfUpgradeRequestDetailList')
|
|
1840
|
+
SelfUpgradeRequestStatus = Shapes::StringShape.new(name: 'SelfUpgradeRequestStatus')
|
|
1841
|
+
SelfUpgradeStatus = Shapes::StringShape.new(name: 'SelfUpgradeStatus')
|
|
1831
1842
|
SemanticEntityType = Shapes::StructureShape.new(name: 'SemanticEntityType')
|
|
1832
1843
|
SemanticModelConfiguration = Shapes::StructureShape.new(name: 'SemanticModelConfiguration')
|
|
1833
1844
|
SemanticTable = Shapes::StructureShape.new(name: 'SemanticTable')
|
|
@@ -2301,6 +2312,10 @@ module Aws::QuickSight
|
|
|
2301
2312
|
UpdateRoleCustomPermissionResponse = Shapes::StructureShape.new(name: 'UpdateRoleCustomPermissionResponse')
|
|
2302
2313
|
UpdateSPICECapacityConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateSPICECapacityConfigurationRequest')
|
|
2303
2314
|
UpdateSPICECapacityConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateSPICECapacityConfigurationResponse')
|
|
2315
|
+
UpdateSelfUpgradeConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateSelfUpgradeConfigurationRequest')
|
|
2316
|
+
UpdateSelfUpgradeConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateSelfUpgradeConfigurationResponse')
|
|
2317
|
+
UpdateSelfUpgradeRequest = Shapes::StructureShape.new(name: 'UpdateSelfUpgradeRequest')
|
|
2318
|
+
UpdateSelfUpgradeResponse = Shapes::StructureShape.new(name: 'UpdateSelfUpgradeResponse')
|
|
2304
2319
|
UpdateTemplateAliasRequest = Shapes::StructureShape.new(name: 'UpdateTemplateAliasRequest')
|
|
2305
2320
|
UpdateTemplateAliasResponse = Shapes::StructureShape.new(name: 'UpdateTemplateAliasResponse')
|
|
2306
2321
|
UpdateTemplatePermissionsRequest = Shapes::StructureShape.new(name: 'UpdateTemplatePermissionsRequest')
|
|
@@ -3461,6 +3476,7 @@ module Aws::QuickSight
|
|
|
3461
3476
|
Capabilities.add_member(:chat_agent, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "ChatAgent"))
|
|
3462
3477
|
Capabilities.add_member(:create_chat_agents, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "CreateChatAgents"))
|
|
3463
3478
|
Capabilities.add_member(:research, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "Research"))
|
|
3479
|
+
Capabilities.add_member(:self_upgrade_user_role, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "SelfUpgradeUserRole"))
|
|
3464
3480
|
Capabilities.struct_class = Types::Capabilities
|
|
3465
3481
|
|
|
3466
3482
|
CascadingControlConfiguration.add_member(:source_controls, Shapes::ShapeRef.new(shape: CascadingControlSourceList, location_name: "SourceControls"))
|
|
@@ -5780,6 +5796,15 @@ module Aws::QuickSight
|
|
|
5780
5796
|
DescribeRoleCustomPermissionResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location_name: "Status"))
|
|
5781
5797
|
DescribeRoleCustomPermissionResponse.struct_class = Types::DescribeRoleCustomPermissionResponse
|
|
5782
5798
|
|
|
5799
|
+
DescribeSelfUpgradeConfigurationRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
|
5800
|
+
DescribeSelfUpgradeConfigurationRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, required: true, location: "uri", location_name: "Namespace"))
|
|
5801
|
+
DescribeSelfUpgradeConfigurationRequest.struct_class = Types::DescribeSelfUpgradeConfigurationRequest
|
|
5802
|
+
|
|
5803
|
+
DescribeSelfUpgradeConfigurationResponse.add_member(:self_upgrade_configuration, Shapes::ShapeRef.new(shape: SelfUpgradeConfiguration, location_name: "SelfUpgradeConfiguration"))
|
|
5804
|
+
DescribeSelfUpgradeConfigurationResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
|
5805
|
+
DescribeSelfUpgradeConfigurationResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
|
5806
|
+
DescribeSelfUpgradeConfigurationResponse.struct_class = Types::DescribeSelfUpgradeConfigurationResponse
|
|
5807
|
+
|
|
5783
5808
|
DescribeTemplateAliasRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
|
5784
5809
|
DescribeTemplateAliasRequest.add_member(:template_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location: "uri", location_name: "TemplateId"))
|
|
5785
5810
|
DescribeTemplateAliasRequest.add_member(:alias_name, Shapes::ShapeRef.new(shape: AliasName, required: true, location: "uri", location_name: "AliasName"))
|
|
@@ -7202,6 +7227,10 @@ module Aws::QuickSight
|
|
|
7202
7227
|
InvalidNextTokenException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
|
7203
7228
|
InvalidNextTokenException.struct_class = Types::InvalidNextTokenException
|
|
7204
7229
|
|
|
7230
|
+
InvalidParameterException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
|
7231
|
+
InvalidParameterException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
|
7232
|
+
InvalidParameterException.struct_class = Types::InvalidParameterException
|
|
7233
|
+
|
|
7205
7234
|
InvalidParameterValueException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
|
7206
7235
|
InvalidParameterValueException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
|
7207
7236
|
InvalidParameterValueException.struct_class = Types::InvalidParameterValueException
|
|
@@ -7736,6 +7765,18 @@ module Aws::QuickSight
|
|
|
7736
7765
|
ListRoleMembershipsResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
|
7737
7766
|
ListRoleMembershipsResponse.struct_class = Types::ListRoleMembershipsResponse
|
|
7738
7767
|
|
|
7768
|
+
ListSelfUpgradesRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
|
7769
|
+
ListSelfUpgradesRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, required: true, location: "uri", location_name: "Namespace"))
|
|
7770
|
+
ListSelfUpgradesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next-token"))
|
|
7771
|
+
ListSelfUpgradesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "max-results", metadata: {"box" => true}))
|
|
7772
|
+
ListSelfUpgradesRequest.struct_class = Types::ListSelfUpgradesRequest
|
|
7773
|
+
|
|
7774
|
+
ListSelfUpgradesResponse.add_member(:self_upgrade_request_details, Shapes::ShapeRef.new(shape: SelfUpgradeRequestDetailList, location_name: "SelfUpgradeRequestDetails"))
|
|
7775
|
+
ListSelfUpgradesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
|
7776
|
+
ListSelfUpgradesResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
|
7777
|
+
ListSelfUpgradesResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
|
7778
|
+
ListSelfUpgradesResponse.struct_class = Types::ListSelfUpgradesResponse
|
|
7779
|
+
|
|
7739
7780
|
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "ResourceArn"))
|
|
7740
7781
|
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
|
7741
7782
|
|
|
@@ -9303,6 +9344,22 @@ module Aws::QuickSight
|
|
|
9303
9344
|
SelectedSheetsFilterScopeConfiguration.add_member(:sheet_visual_scoping_configurations, Shapes::ShapeRef.new(shape: SheetVisualScopingConfigurations, location_name: "SheetVisualScopingConfigurations"))
|
|
9304
9345
|
SelectedSheetsFilterScopeConfiguration.struct_class = Types::SelectedSheetsFilterScopeConfiguration
|
|
9305
9346
|
|
|
9347
|
+
SelfUpgradeConfiguration.add_member(:self_upgrade_status, Shapes::ShapeRef.new(shape: SelfUpgradeStatus, location_name: "SelfUpgradeStatus"))
|
|
9348
|
+
SelfUpgradeConfiguration.struct_class = Types::SelfUpgradeConfiguration
|
|
9349
|
+
|
|
9350
|
+
SelfUpgradeRequestDetail.add_member(:upgrade_request_id, Shapes::ShapeRef.new(shape: String, location_name: "UpgradeRequestId"))
|
|
9351
|
+
SelfUpgradeRequestDetail.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, location_name: "UserName"))
|
|
9352
|
+
SelfUpgradeRequestDetail.add_member(:original_role, Shapes::ShapeRef.new(shape: UserRole, location_name: "OriginalRole"))
|
|
9353
|
+
SelfUpgradeRequestDetail.add_member(:requested_role, Shapes::ShapeRef.new(shape: UserRole, location_name: "RequestedRole"))
|
|
9354
|
+
SelfUpgradeRequestDetail.add_member(:request_note, Shapes::ShapeRef.new(shape: String, location_name: "RequestNote"))
|
|
9355
|
+
SelfUpgradeRequestDetail.add_member(:creation_time, Shapes::ShapeRef.new(shape: Long, location_name: "CreationTime"))
|
|
9356
|
+
SelfUpgradeRequestDetail.add_member(:request_status, Shapes::ShapeRef.new(shape: SelfUpgradeRequestStatus, location_name: "RequestStatus"))
|
|
9357
|
+
SelfUpgradeRequestDetail.add_member(:last_update_attempt_time, Shapes::ShapeRef.new(shape: Long, location_name: "lastUpdateAttemptTime"))
|
|
9358
|
+
SelfUpgradeRequestDetail.add_member(:last_update_failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "lastUpdateFailureReason"))
|
|
9359
|
+
SelfUpgradeRequestDetail.struct_class = Types::SelfUpgradeRequestDetail
|
|
9360
|
+
|
|
9361
|
+
SelfUpgradeRequestDetailList.member = Shapes::ShapeRef.new(shape: SelfUpgradeRequestDetail)
|
|
9362
|
+
|
|
9306
9363
|
SemanticEntityType.add_member(:type_name, Shapes::ShapeRef.new(shape: LimitedString, location_name: "TypeName"))
|
|
9307
9364
|
SemanticEntityType.add_member(:sub_type_name, Shapes::ShapeRef.new(shape: LimitedString, location_name: "SubTypeName"))
|
|
9308
9365
|
SemanticEntityType.add_member(:type_parameters, Shapes::ShapeRef.new(shape: TypeParameters, location_name: "TypeParameters"))
|
|
@@ -11083,6 +11140,26 @@ module Aws::QuickSight
|
|
|
11083
11140
|
UpdateSPICECapacityConfigurationResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
|
11084
11141
|
UpdateSPICECapacityConfigurationResponse.struct_class = Types::UpdateSPICECapacityConfigurationResponse
|
|
11085
11142
|
|
|
11143
|
+
UpdateSelfUpgradeConfigurationRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
|
11144
|
+
UpdateSelfUpgradeConfigurationRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, required: true, location: "uri", location_name: "Namespace"))
|
|
11145
|
+
UpdateSelfUpgradeConfigurationRequest.add_member(:self_upgrade_status, Shapes::ShapeRef.new(shape: SelfUpgradeStatus, required: true, location_name: "SelfUpgradeStatus"))
|
|
11146
|
+
UpdateSelfUpgradeConfigurationRequest.struct_class = Types::UpdateSelfUpgradeConfigurationRequest
|
|
11147
|
+
|
|
11148
|
+
UpdateSelfUpgradeConfigurationResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
|
11149
|
+
UpdateSelfUpgradeConfigurationResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
|
11150
|
+
UpdateSelfUpgradeConfigurationResponse.struct_class = Types::UpdateSelfUpgradeConfigurationResponse
|
|
11151
|
+
|
|
11152
|
+
UpdateSelfUpgradeRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
|
11153
|
+
UpdateSelfUpgradeRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, required: true, location: "uri", location_name: "Namespace"))
|
|
11154
|
+
UpdateSelfUpgradeRequest.add_member(:upgrade_request_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "UpgradeRequestId"))
|
|
11155
|
+
UpdateSelfUpgradeRequest.add_member(:action, Shapes::ShapeRef.new(shape: SelfUpgradeAdminAction, required: true, location_name: "Action"))
|
|
11156
|
+
UpdateSelfUpgradeRequest.struct_class = Types::UpdateSelfUpgradeRequest
|
|
11157
|
+
|
|
11158
|
+
UpdateSelfUpgradeResponse.add_member(:self_upgrade_request_detail, Shapes::ShapeRef.new(shape: SelfUpgradeRequestDetail, location_name: "SelfUpgradeRequestDetail"))
|
|
11159
|
+
UpdateSelfUpgradeResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
|
11160
|
+
UpdateSelfUpgradeResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
|
11161
|
+
UpdateSelfUpgradeResponse.struct_class = Types::UpdateSelfUpgradeResponse
|
|
11162
|
+
|
|
11086
11163
|
UpdateTemplateAliasRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
|
11087
11164
|
UpdateTemplateAliasRequest.add_member(:template_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location: "uri", location_name: "TemplateId"))
|
|
11088
11165
|
UpdateTemplateAliasRequest.add_member(:alias_name, Shapes::ShapeRef.new(shape: AliasName, required: true, location: "uri", location_name: "AliasName"))
|
|
@@ -13053,6 +13130,22 @@ module Aws::QuickSight
|
|
|
13053
13130
|
o.errors << Shapes::ShapeRef.new(shape: ResourceUnavailableException)
|
|
13054
13131
|
end)
|
|
13055
13132
|
|
|
13133
|
+
api.add_operation(:describe_self_upgrade_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
13134
|
+
o.name = "DescribeSelfUpgradeConfiguration"
|
|
13135
|
+
o.http_method = "GET"
|
|
13136
|
+
o.http_request_uri = "/accounts/{AwsAccountId}/namespaces/{Namespace}/self-upgrade-configuration"
|
|
13137
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeSelfUpgradeConfigurationRequest)
|
|
13138
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeSelfUpgradeConfigurationResponse)
|
|
13139
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
13140
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
13141
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
13142
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
13143
|
+
o.errors << Shapes::ShapeRef.new(shape: PreconditionNotMetException)
|
|
13144
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
13145
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
|
13146
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceUnavailableException)
|
|
13147
|
+
end)
|
|
13148
|
+
|
|
13056
13149
|
api.add_operation(:describe_template, Seahorse::Model::Operation.new.tap do |o|
|
|
13057
13150
|
o.name = "DescribeTemplate"
|
|
13058
13151
|
o.http_method = "GET"
|
|
@@ -13812,6 +13905,23 @@ module Aws::QuickSight
|
|
|
13812
13905
|
)
|
|
13813
13906
|
end)
|
|
13814
13907
|
|
|
13908
|
+
api.add_operation(:list_self_upgrades, Seahorse::Model::Operation.new.tap do |o|
|
|
13909
|
+
o.name = "ListSelfUpgrades"
|
|
13910
|
+
o.http_method = "GET"
|
|
13911
|
+
o.http_request_uri = "/accounts/{AwsAccountId}/namespaces/{Namespace}/self-upgrade-requests"
|
|
13912
|
+
o.input = Shapes::ShapeRef.new(shape: ListSelfUpgradesRequest)
|
|
13913
|
+
o.output = Shapes::ShapeRef.new(shape: ListSelfUpgradesResponse)
|
|
13914
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
13915
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
13916
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
13917
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
|
13918
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
13919
|
+
o.errors << Shapes::ShapeRef.new(shape: PreconditionNotMetException)
|
|
13920
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
13921
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
|
13922
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceUnavailableException)
|
|
13923
|
+
end)
|
|
13924
|
+
|
|
13815
13925
|
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
13816
13926
|
o.name = "ListTagsForResource"
|
|
13817
13927
|
o.http_method = "GET"
|
|
@@ -14902,6 +15012,39 @@ module Aws::QuickSight
|
|
|
14902
15012
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
|
14903
15013
|
end)
|
|
14904
15014
|
|
|
15015
|
+
api.add_operation(:update_self_upgrade, Seahorse::Model::Operation.new.tap do |o|
|
|
15016
|
+
o.name = "UpdateSelfUpgrade"
|
|
15017
|
+
o.http_method = "POST"
|
|
15018
|
+
o.http_request_uri = "/accounts/{AwsAccountId}/namespaces/{Namespace}/update-self-upgrade-request"
|
|
15019
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateSelfUpgradeRequest)
|
|
15020
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateSelfUpgradeResponse)
|
|
15021
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
15022
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
15023
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
15024
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
|
15025
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
15026
|
+
o.errors << Shapes::ShapeRef.new(shape: PreconditionNotMetException)
|
|
15027
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
15028
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
|
15029
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceUnavailableException)
|
|
15030
|
+
end)
|
|
15031
|
+
|
|
15032
|
+
api.add_operation(:update_self_upgrade_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
15033
|
+
o.name = "UpdateSelfUpgradeConfiguration"
|
|
15034
|
+
o.http_method = "PUT"
|
|
15035
|
+
o.http_request_uri = "/accounts/{AwsAccountId}/namespaces/{Namespace}/self-upgrade-configuration"
|
|
15036
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateSelfUpgradeConfigurationRequest)
|
|
15037
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateSelfUpgradeConfigurationResponse)
|
|
15038
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
15039
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
15040
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
15041
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
15042
|
+
o.errors << Shapes::ShapeRef.new(shape: PreconditionNotMetException)
|
|
15043
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
15044
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
|
15045
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceUnavailableException)
|
|
15046
|
+
end)
|
|
15047
|
+
|
|
14905
15048
|
api.add_operation(:update_template, Seahorse::Model::Operation.new.tap do |o|
|
|
14906
15049
|
o.name = "UpdateTemplate"
|
|
14907
15050
|
o.http_method = "PUT"
|
|
@@ -37,6 +37,7 @@ module Aws::QuickSight
|
|
|
37
37
|
# * {InternalServerException}
|
|
38
38
|
# * {InvalidDataSetParameterValueException}
|
|
39
39
|
# * {InvalidNextTokenException}
|
|
40
|
+
# * {InvalidParameterException}
|
|
40
41
|
# * {InvalidParameterValueException}
|
|
41
42
|
# * {InvalidRequestException}
|
|
42
43
|
# * {LimitExceededException}
|
|
@@ -251,6 +252,26 @@ module Aws::QuickSight
|
|
|
251
252
|
end
|
|
252
253
|
end
|
|
253
254
|
|
|
255
|
+
class InvalidParameterException < ServiceError
|
|
256
|
+
|
|
257
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
258
|
+
# @param [String] message
|
|
259
|
+
# @param [Aws::QuickSight::Types::InvalidParameterException] data
|
|
260
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
261
|
+
super(context, message, data)
|
|
262
|
+
end
|
|
263
|
+
|
|
264
|
+
# @return [String]
|
|
265
|
+
def message
|
|
266
|
+
@message || @data[:message]
|
|
267
|
+
end
|
|
268
|
+
|
|
269
|
+
# @return [String]
|
|
270
|
+
def request_id
|
|
271
|
+
@data[:request_id]
|
|
272
|
+
end
|
|
273
|
+
end
|
|
274
|
+
|
|
254
275
|
class InvalidParameterValueException < ServiceError
|
|
255
276
|
|
|
256
277
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -4686,6 +4686,10 @@ module Aws::QuickSight
|
|
|
4686
4686
|
# The ability to perform research-related actions.
|
|
4687
4687
|
# @return [String]
|
|
4688
4688
|
#
|
|
4689
|
+
# @!attribute [rw] self_upgrade_user_role
|
|
4690
|
+
# The ability to enable users to upgrade their user role.
|
|
4691
|
+
# @return [String]
|
|
4692
|
+
#
|
|
4689
4693
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Capabilities AWS API Documentation
|
|
4690
4694
|
#
|
|
4691
4695
|
class Capabilities < Struct.new(
|
|
@@ -4725,7 +4729,8 @@ module Aws::QuickSight
|
|
|
4725
4729
|
:space,
|
|
4726
4730
|
:chat_agent,
|
|
4727
4731
|
:create_chat_agents,
|
|
4728
|
-
:research
|
|
4732
|
+
:research,
|
|
4733
|
+
:self_upgrade_user_role)
|
|
4729
4734
|
SENSITIVE = []
|
|
4730
4735
|
include Aws::Structure
|
|
4731
4736
|
end
|
|
@@ -16344,6 +16349,47 @@ module Aws::QuickSight
|
|
|
16344
16349
|
include Aws::Structure
|
|
16345
16350
|
end
|
|
16346
16351
|
|
|
16352
|
+
# @!attribute [rw] aws_account_id
|
|
16353
|
+
# The ID of the Amazon Web Services account that contains the Quick
|
|
16354
|
+
# Suite self-upgrade configuration.
|
|
16355
|
+
# @return [String]
|
|
16356
|
+
#
|
|
16357
|
+
# @!attribute [rw] namespace
|
|
16358
|
+
# The Quick Suite namespace that you want to describe the Quick Suite
|
|
16359
|
+
# self-upgrade configuration for.
|
|
16360
|
+
# @return [String]
|
|
16361
|
+
#
|
|
16362
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeSelfUpgradeConfigurationRequest AWS API Documentation
|
|
16363
|
+
#
|
|
16364
|
+
class DescribeSelfUpgradeConfigurationRequest < Struct.new(
|
|
16365
|
+
:aws_account_id,
|
|
16366
|
+
:namespace)
|
|
16367
|
+
SENSITIVE = []
|
|
16368
|
+
include Aws::Structure
|
|
16369
|
+
end
|
|
16370
|
+
|
|
16371
|
+
# @!attribute [rw] self_upgrade_configuration
|
|
16372
|
+
# The self-upgrade configuration for the Quick Suite account.
|
|
16373
|
+
# @return [Types::SelfUpgradeConfiguration]
|
|
16374
|
+
#
|
|
16375
|
+
# @!attribute [rw] request_id
|
|
16376
|
+
# The Amazon Web Services request ID for this operation.
|
|
16377
|
+
# @return [String]
|
|
16378
|
+
#
|
|
16379
|
+
# @!attribute [rw] status
|
|
16380
|
+
# The HTTP status of the request.
|
|
16381
|
+
# @return [Integer]
|
|
16382
|
+
#
|
|
16383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeSelfUpgradeConfigurationResponse AWS API Documentation
|
|
16384
|
+
#
|
|
16385
|
+
class DescribeSelfUpgradeConfigurationResponse < Struct.new(
|
|
16386
|
+
:self_upgrade_configuration,
|
|
16387
|
+
:request_id,
|
|
16388
|
+
:status)
|
|
16389
|
+
SENSITIVE = []
|
|
16390
|
+
include Aws::Structure
|
|
16391
|
+
end
|
|
16392
|
+
|
|
16347
16393
|
# @!attribute [rw] aws_account_id
|
|
16348
16394
|
# The ID of the Amazon Web Services account that contains the template
|
|
16349
16395
|
# alias that you're describing.
|
|
@@ -21465,8 +21511,8 @@ module Aws::QuickSight
|
|
|
21465
21511
|
# @!attribute [rw] context
|
|
21466
21512
|
# The identity context information for the user. This is an identity
|
|
21467
21513
|
# token that should be used as the ContextAssertion parameter in the
|
|
21468
|
-
# [STS AssumeRole API][1] call to obtain identity enhanced
|
|
21469
|
-
# credentials.
|
|
21514
|
+
# [STS AssumeRole API][1] call to obtain identity enhanced Amazon Web
|
|
21515
|
+
# Services credentials.
|
|
21470
21516
|
#
|
|
21471
21517
|
#
|
|
21472
21518
|
#
|
|
@@ -23145,6 +23191,24 @@ module Aws::QuickSight
|
|
|
23145
23191
|
include Aws::Structure
|
|
23146
23192
|
end
|
|
23147
23193
|
|
|
23194
|
+
# One or more parameter has a value that isn't valid.
|
|
23195
|
+
#
|
|
23196
|
+
# @!attribute [rw] message
|
|
23197
|
+
# @return [String]
|
|
23198
|
+
#
|
|
23199
|
+
# @!attribute [rw] request_id
|
|
23200
|
+
# The Amazon Web Services request ID for this request.
|
|
23201
|
+
# @return [String]
|
|
23202
|
+
#
|
|
23203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/InvalidParameterException AWS API Documentation
|
|
23204
|
+
#
|
|
23205
|
+
class InvalidParameterException < Struct.new(
|
|
23206
|
+
:message,
|
|
23207
|
+
:request_id)
|
|
23208
|
+
SENSITIVE = []
|
|
23209
|
+
include Aws::Structure
|
|
23210
|
+
end
|
|
23211
|
+
|
|
23148
23212
|
# One or more parameters has a value that isn't valid.
|
|
23149
23213
|
#
|
|
23150
23214
|
# @!attribute [rw] message
|
|
@@ -25760,6 +25824,63 @@ module Aws::QuickSight
|
|
|
25760
25824
|
include Aws::Structure
|
|
25761
25825
|
end
|
|
25762
25826
|
|
|
25827
|
+
# @!attribute [rw] aws_account_id
|
|
25828
|
+
# The ID of the Amazon Web Services account that contains the
|
|
25829
|
+
# self-upgrade requests.
|
|
25830
|
+
# @return [String]
|
|
25831
|
+
#
|
|
25832
|
+
# @!attribute [rw] namespace
|
|
25833
|
+
# The Quick Suite namespace for the self-upgrade requests.
|
|
25834
|
+
# @return [String]
|
|
25835
|
+
#
|
|
25836
|
+
# @!attribute [rw] next_token
|
|
25837
|
+
# The token for the next set of results, or null if there are no more
|
|
25838
|
+
# results.
|
|
25839
|
+
# @return [String]
|
|
25840
|
+
#
|
|
25841
|
+
# @!attribute [rw] max_results
|
|
25842
|
+
# The maximum number of results to return.
|
|
25843
|
+
# @return [Integer]
|
|
25844
|
+
#
|
|
25845
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListSelfUpgradesRequest AWS API Documentation
|
|
25846
|
+
#
|
|
25847
|
+
class ListSelfUpgradesRequest < Struct.new(
|
|
25848
|
+
:aws_account_id,
|
|
25849
|
+
:namespace,
|
|
25850
|
+
:next_token,
|
|
25851
|
+
:max_results)
|
|
25852
|
+
SENSITIVE = []
|
|
25853
|
+
include Aws::Structure
|
|
25854
|
+
end
|
|
25855
|
+
|
|
25856
|
+
# @!attribute [rw] self_upgrade_request_details
|
|
25857
|
+
# A list of self-upgrade request details.
|
|
25858
|
+
# @return [Array<Types::SelfUpgradeRequestDetail>]
|
|
25859
|
+
#
|
|
25860
|
+
# @!attribute [rw] next_token
|
|
25861
|
+
# The token for the next set of results, or null if there are no more
|
|
25862
|
+
# results.
|
|
25863
|
+
# @return [String]
|
|
25864
|
+
#
|
|
25865
|
+
# @!attribute [rw] request_id
|
|
25866
|
+
# The Amazon Web Services request ID for this operation.
|
|
25867
|
+
# @return [String]
|
|
25868
|
+
#
|
|
25869
|
+
# @!attribute [rw] status
|
|
25870
|
+
# The HTTP status of the request.
|
|
25871
|
+
# @return [Integer]
|
|
25872
|
+
#
|
|
25873
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListSelfUpgradesResponse AWS API Documentation
|
|
25874
|
+
#
|
|
25875
|
+
class ListSelfUpgradesResponse < Struct.new(
|
|
25876
|
+
:self_upgrade_request_details,
|
|
25877
|
+
:next_token,
|
|
25878
|
+
:request_id,
|
|
25879
|
+
:status)
|
|
25880
|
+
SENSITIVE = []
|
|
25881
|
+
include Aws::Structure
|
|
25882
|
+
end
|
|
25883
|
+
|
|
25763
25884
|
# @!attribute [rw] resource_arn
|
|
25764
25885
|
# The Amazon Resource Name (ARN) of the resource that you want a list
|
|
25765
25886
|
# of tags for.
|
|
@@ -33630,6 +33751,81 @@ module Aws::QuickSight
|
|
|
33630
33751
|
include Aws::Structure
|
|
33631
33752
|
end
|
|
33632
33753
|
|
|
33754
|
+
# The self-upgrade configuration for the Quick Suite account.
|
|
33755
|
+
#
|
|
33756
|
+
# @!attribute [rw] self_upgrade_status
|
|
33757
|
+
# Status set for the self-upgrade configuration for the Quick Suite
|
|
33758
|
+
# account. It can contain the following values:
|
|
33759
|
+
#
|
|
33760
|
+
# * `AUTO_APPROVAL`: All the self-upgrade requests will be auto
|
|
33761
|
+
# approved.
|
|
33762
|
+
#
|
|
33763
|
+
# * `ADMIN_APPROVAL`: All the self-upgrade requests will require admin
|
|
33764
|
+
# approval.
|
|
33765
|
+
# @return [String]
|
|
33766
|
+
#
|
|
33767
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SelfUpgradeConfiguration AWS API Documentation
|
|
33768
|
+
#
|
|
33769
|
+
class SelfUpgradeConfiguration < Struct.new(
|
|
33770
|
+
:self_upgrade_status)
|
|
33771
|
+
SENSITIVE = []
|
|
33772
|
+
include Aws::Structure
|
|
33773
|
+
end
|
|
33774
|
+
|
|
33775
|
+
# Details of a self-upgrade request.
|
|
33776
|
+
#
|
|
33777
|
+
# @!attribute [rw] upgrade_request_id
|
|
33778
|
+
# The ID of the self-upgrade request.
|
|
33779
|
+
# @return [String]
|
|
33780
|
+
#
|
|
33781
|
+
# @!attribute [rw] user_name
|
|
33782
|
+
# The username of the user who initiated the self-upgrade request.
|
|
33783
|
+
# @return [String]
|
|
33784
|
+
#
|
|
33785
|
+
# @!attribute [rw] original_role
|
|
33786
|
+
# The original role of the user before the upgrade.
|
|
33787
|
+
# @return [String]
|
|
33788
|
+
#
|
|
33789
|
+
# @!attribute [rw] requested_role
|
|
33790
|
+
# The role that the user is requesting to upgrade to.
|
|
33791
|
+
# @return [String]
|
|
33792
|
+
#
|
|
33793
|
+
# @!attribute [rw] request_note
|
|
33794
|
+
# An optional note explaining the reason for the self-upgrade request.
|
|
33795
|
+
# @return [String]
|
|
33796
|
+
#
|
|
33797
|
+
# @!attribute [rw] creation_time
|
|
33798
|
+
# The time when the self-upgrade request was created.
|
|
33799
|
+
# @return [Integer]
|
|
33800
|
+
#
|
|
33801
|
+
# @!attribute [rw] request_status
|
|
33802
|
+
# The status of the self-upgrade request.
|
|
33803
|
+
# @return [String]
|
|
33804
|
+
#
|
|
33805
|
+
# @!attribute [rw] last_update_attempt_time
|
|
33806
|
+
# The time of the last update attempt for the self-upgrade request.
|
|
33807
|
+
# @return [Integer]
|
|
33808
|
+
#
|
|
33809
|
+
# @!attribute [rw] last_update_failure_reason
|
|
33810
|
+
# The reason for the last update failure, if applicable.
|
|
33811
|
+
# @return [String]
|
|
33812
|
+
#
|
|
33813
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SelfUpgradeRequestDetail AWS API Documentation
|
|
33814
|
+
#
|
|
33815
|
+
class SelfUpgradeRequestDetail < Struct.new(
|
|
33816
|
+
:upgrade_request_id,
|
|
33817
|
+
:user_name,
|
|
33818
|
+
:original_role,
|
|
33819
|
+
:requested_role,
|
|
33820
|
+
:request_note,
|
|
33821
|
+
:creation_time,
|
|
33822
|
+
:request_status,
|
|
33823
|
+
:last_update_attempt_time,
|
|
33824
|
+
:last_update_failure_reason)
|
|
33825
|
+
SENSITIVE = []
|
|
33826
|
+
include Aws::Structure
|
|
33827
|
+
end
|
|
33828
|
+
|
|
33633
33829
|
# A structure that represents a semantic entity type.
|
|
33634
33830
|
#
|
|
33635
33831
|
# @!attribute [rw] type_name
|
|
@@ -42031,6 +42227,99 @@ module Aws::QuickSight
|
|
|
42031
42227
|
include Aws::Structure
|
|
42032
42228
|
end
|
|
42033
42229
|
|
|
42230
|
+
# @!attribute [rw] aws_account_id
|
|
42231
|
+
# The ID of the Amazon Web Services account that contains the Quick
|
|
42232
|
+
# Suite self-upgrade configuration that you want to update.
|
|
42233
|
+
# @return [String]
|
|
42234
|
+
#
|
|
42235
|
+
# @!attribute [rw] namespace
|
|
42236
|
+
# The Quick Suite namespace that you want to update the Quick Suite
|
|
42237
|
+
# self-upgrade configuration for.
|
|
42238
|
+
# @return [String]
|
|
42239
|
+
#
|
|
42240
|
+
# @!attribute [rw] self_upgrade_status
|
|
42241
|
+
# The self-upgrade status that you want to set for the Quick Suite
|
|
42242
|
+
# account.
|
|
42243
|
+
# @return [String]
|
|
42244
|
+
#
|
|
42245
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSelfUpgradeConfigurationRequest AWS API Documentation
|
|
42246
|
+
#
|
|
42247
|
+
class UpdateSelfUpgradeConfigurationRequest < Struct.new(
|
|
42248
|
+
:aws_account_id,
|
|
42249
|
+
:namespace,
|
|
42250
|
+
:self_upgrade_status)
|
|
42251
|
+
SENSITIVE = []
|
|
42252
|
+
include Aws::Structure
|
|
42253
|
+
end
|
|
42254
|
+
|
|
42255
|
+
# @!attribute [rw] request_id
|
|
42256
|
+
# The Amazon Web Services request ID for this operation.
|
|
42257
|
+
# @return [String]
|
|
42258
|
+
#
|
|
42259
|
+
# @!attribute [rw] status
|
|
42260
|
+
# The HTTP status of the request.
|
|
42261
|
+
# @return [Integer]
|
|
42262
|
+
#
|
|
42263
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSelfUpgradeConfigurationResponse AWS API Documentation
|
|
42264
|
+
#
|
|
42265
|
+
class UpdateSelfUpgradeConfigurationResponse < Struct.new(
|
|
42266
|
+
:request_id,
|
|
42267
|
+
:status)
|
|
42268
|
+
SENSITIVE = []
|
|
42269
|
+
include Aws::Structure
|
|
42270
|
+
end
|
|
42271
|
+
|
|
42272
|
+
# @!attribute [rw] aws_account_id
|
|
42273
|
+
# The ID of the Amazon Web Services account that contains the
|
|
42274
|
+
# self-upgrade request.
|
|
42275
|
+
# @return [String]
|
|
42276
|
+
#
|
|
42277
|
+
# @!attribute [rw] namespace
|
|
42278
|
+
# The Quick Suite namespace for the self-upgrade request.
|
|
42279
|
+
# @return [String]
|
|
42280
|
+
#
|
|
42281
|
+
# @!attribute [rw] upgrade_request_id
|
|
42282
|
+
# The ID of the self-upgrade request to update.
|
|
42283
|
+
# @return [String]
|
|
42284
|
+
#
|
|
42285
|
+
# @!attribute [rw] action
|
|
42286
|
+
# The action to perform on the self-upgrade request. Valid values are
|
|
42287
|
+
# `APPROVE`, `DENY`, or `VERIFY`.
|
|
42288
|
+
# @return [String]
|
|
42289
|
+
#
|
|
42290
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSelfUpgradeRequest AWS API Documentation
|
|
42291
|
+
#
|
|
42292
|
+
class UpdateSelfUpgradeRequest < Struct.new(
|
|
42293
|
+
:aws_account_id,
|
|
42294
|
+
:namespace,
|
|
42295
|
+
:upgrade_request_id,
|
|
42296
|
+
:action)
|
|
42297
|
+
SENSITIVE = []
|
|
42298
|
+
include Aws::Structure
|
|
42299
|
+
end
|
|
42300
|
+
|
|
42301
|
+
# @!attribute [rw] self_upgrade_request_detail
|
|
42302
|
+
# Details of the updated self-upgrade request.
|
|
42303
|
+
# @return [Types::SelfUpgradeRequestDetail]
|
|
42304
|
+
#
|
|
42305
|
+
# @!attribute [rw] request_id
|
|
42306
|
+
# The Amazon Web Services request ID for this operation.
|
|
42307
|
+
# @return [String]
|
|
42308
|
+
#
|
|
42309
|
+
# @!attribute [rw] status
|
|
42310
|
+
# The HTTP status of the request.
|
|
42311
|
+
# @return [Integer]
|
|
42312
|
+
#
|
|
42313
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSelfUpgradeResponse AWS API Documentation
|
|
42314
|
+
#
|
|
42315
|
+
class UpdateSelfUpgradeResponse < Struct.new(
|
|
42316
|
+
:self_upgrade_request_detail,
|
|
42317
|
+
:request_id,
|
|
42318
|
+
:status)
|
|
42319
|
+
SENSITIVE = []
|
|
42320
|
+
include Aws::Structure
|
|
42321
|
+
end
|
|
42322
|
+
|
|
42034
42323
|
# @!attribute [rw] aws_account_id
|
|
42035
42324
|
# The ID of the Amazon Web Services account that contains the template
|
|
42036
42325
|
# alias that you're updating.
|
data/lib/aws-sdk-quicksight.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -38796,7 +38796,8 @@ module Aws
|
|
|
38796
38796
|
space: ("DENY")?,
|
|
38797
38797
|
chat_agent: ("DENY")?,
|
|
38798
38798
|
create_chat_agents: ("DENY")?,
|
|
38799
|
-
research: ("DENY")
|
|
38799
|
+
research: ("DENY")?,
|
|
38800
|
+
self_upgrade_user_role: ("DENY")?
|
|
38800
38801
|
},
|
|
38801
38802
|
?tags: Array[
|
|
38802
38803
|
{
|
|
@@ -117007,6 +117008,19 @@ module Aws
|
|
|
117007
117008
|
) -> _DescribeRoleCustomPermissionResponseSuccess
|
|
117008
117009
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRoleCustomPermissionResponseSuccess
|
|
117009
117010
|
|
|
117011
|
+
interface _DescribeSelfUpgradeConfigurationResponseSuccess
|
|
117012
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSelfUpgradeConfigurationResponse]
|
|
117013
|
+
def self_upgrade_configuration: () -> Types::SelfUpgradeConfiguration
|
|
117014
|
+
def request_id: () -> ::String
|
|
117015
|
+
def status: () -> ::Integer
|
|
117016
|
+
end
|
|
117017
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#describe_self_upgrade_configuration-instance_method
|
|
117018
|
+
def describe_self_upgrade_configuration: (
|
|
117019
|
+
aws_account_id: ::String,
|
|
117020
|
+
namespace: ::String
|
|
117021
|
+
) -> _DescribeSelfUpgradeConfigurationResponseSuccess
|
|
117022
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSelfUpgradeConfigurationResponseSuccess
|
|
117023
|
+
|
|
117010
117024
|
interface _DescribeTemplateResponseSuccess
|
|
117011
117025
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTemplateResponse]
|
|
117012
117026
|
def template: () -> Types::Template
|
|
@@ -117883,6 +117897,22 @@ module Aws
|
|
|
117883
117897
|
) -> _ListRoleMembershipsResponseSuccess
|
|
117884
117898
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRoleMembershipsResponseSuccess
|
|
117885
117899
|
|
|
117900
|
+
interface _ListSelfUpgradesResponseSuccess
|
|
117901
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSelfUpgradesResponse]
|
|
117902
|
+
def self_upgrade_request_details: () -> ::Array[Types::SelfUpgradeRequestDetail]
|
|
117903
|
+
def next_token: () -> ::String
|
|
117904
|
+
def request_id: () -> ::String
|
|
117905
|
+
def status: () -> ::Integer
|
|
117906
|
+
end
|
|
117907
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#list_self_upgrades-instance_method
|
|
117908
|
+
def list_self_upgrades: (
|
|
117909
|
+
aws_account_id: ::String,
|
|
117910
|
+
namespace: ::String,
|
|
117911
|
+
?next_token: ::String,
|
|
117912
|
+
?max_results: ::Integer
|
|
117913
|
+
) -> _ListSelfUpgradesResponseSuccess
|
|
117914
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSelfUpgradesResponseSuccess
|
|
117915
|
+
|
|
117886
117916
|
interface _ListTagsForResourceResponseSuccess
|
|
117887
117917
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
|
117888
117918
|
def tags: () -> ::Array[Types::Tag]
|
|
@@ -156984,7 +157014,8 @@ module Aws
|
|
|
156984
157014
|
space: ("DENY")?,
|
|
156985
157015
|
chat_agent: ("DENY")?,
|
|
156986
157016
|
create_chat_agents: ("DENY")?,
|
|
156987
|
-
research: ("DENY")
|
|
157017
|
+
research: ("DENY")?,
|
|
157018
|
+
self_upgrade_user_role: ("DENY")?
|
|
156988
157019
|
}
|
|
156989
157020
|
) -> _UpdateCustomPermissionsResponseSuccess
|
|
156990
157021
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCustomPermissionsResponseSuccess
|
|
@@ -196134,6 +196165,34 @@ module Aws
|
|
|
196134
196165
|
) -> _UpdateSPICECapacityConfigurationResponseSuccess
|
|
196135
196166
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSPICECapacityConfigurationResponseSuccess
|
|
196136
196167
|
|
|
196168
|
+
interface _UpdateSelfUpgradeResponseSuccess
|
|
196169
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSelfUpgradeResponse]
|
|
196170
|
+
def self_upgrade_request_detail: () -> Types::SelfUpgradeRequestDetail
|
|
196171
|
+
def request_id: () -> ::String
|
|
196172
|
+
def status: () -> ::Integer
|
|
196173
|
+
end
|
|
196174
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_self_upgrade-instance_method
|
|
196175
|
+
def update_self_upgrade: (
|
|
196176
|
+
aws_account_id: ::String,
|
|
196177
|
+
namespace: ::String,
|
|
196178
|
+
upgrade_request_id: ::String,
|
|
196179
|
+
action: ("APPROVE" | "DENY" | "VERIFY")
|
|
196180
|
+
) -> _UpdateSelfUpgradeResponseSuccess
|
|
196181
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSelfUpgradeResponseSuccess
|
|
196182
|
+
|
|
196183
|
+
interface _UpdateSelfUpgradeConfigurationResponseSuccess
|
|
196184
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSelfUpgradeConfigurationResponse]
|
|
196185
|
+
def request_id: () -> ::String
|
|
196186
|
+
def status: () -> ::Integer
|
|
196187
|
+
end
|
|
196188
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_self_upgrade_configuration-instance_method
|
|
196189
|
+
def update_self_upgrade_configuration: (
|
|
196190
|
+
aws_account_id: ::String,
|
|
196191
|
+
namespace: ::String,
|
|
196192
|
+
self_upgrade_status: ("AUTO_APPROVAL" | "ADMIN_APPROVAL")
|
|
196193
|
+
) -> _UpdateSelfUpgradeConfigurationResponseSuccess
|
|
196194
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSelfUpgradeConfigurationResponseSuccess
|
|
196195
|
+
|
|
196137
196196
|
interface _UpdateTemplateResponseSuccess
|
|
196138
196197
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTemplateResponse]
|
|
196139
196198
|
def template_id: () -> ::String
|
data/sig/errors.rbs
CHANGED
|
@@ -50,6 +50,10 @@ module Aws
|
|
|
50
50
|
def message: () -> ::String
|
|
51
51
|
def request_id: () -> ::String
|
|
52
52
|
end
|
|
53
|
+
class InvalidParameterException < ::Aws::Errors::ServiceError
|
|
54
|
+
def message: () -> ::String
|
|
55
|
+
def request_id: () -> ::String
|
|
56
|
+
end
|
|
53
57
|
class InvalidParameterValueException < ::Aws::Errors::ServiceError
|
|
54
58
|
def message: () -> ::String
|
|
55
59
|
def request_id: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -1220,6 +1220,7 @@ module Aws::QuickSight
|
|
|
1220
1220
|
attr_accessor chat_agent: ("DENY")
|
|
1221
1221
|
attr_accessor create_chat_agents: ("DENY")
|
|
1222
1222
|
attr_accessor research: ("DENY")
|
|
1223
|
+
attr_accessor self_upgrade_user_role: ("DENY")
|
|
1223
1224
|
SENSITIVE: []
|
|
1224
1225
|
end
|
|
1225
1226
|
|
|
@@ -4209,6 +4210,19 @@ module Aws::QuickSight
|
|
|
4209
4210
|
SENSITIVE: []
|
|
4210
4211
|
end
|
|
4211
4212
|
|
|
4213
|
+
class DescribeSelfUpgradeConfigurationRequest
|
|
4214
|
+
attr_accessor aws_account_id: ::String
|
|
4215
|
+
attr_accessor namespace: ::String
|
|
4216
|
+
SENSITIVE: []
|
|
4217
|
+
end
|
|
4218
|
+
|
|
4219
|
+
class DescribeSelfUpgradeConfigurationResponse
|
|
4220
|
+
attr_accessor self_upgrade_configuration: Types::SelfUpgradeConfiguration
|
|
4221
|
+
attr_accessor request_id: ::String
|
|
4222
|
+
attr_accessor status: ::Integer
|
|
4223
|
+
SENSITIVE: []
|
|
4224
|
+
end
|
|
4225
|
+
|
|
4212
4226
|
class DescribeTemplateAliasRequest
|
|
4213
4227
|
attr_accessor aws_account_id: ::String
|
|
4214
4228
|
attr_accessor template_id: ::String
|
|
@@ -5996,6 +6010,12 @@ module Aws::QuickSight
|
|
|
5996
6010
|
SENSITIVE: []
|
|
5997
6011
|
end
|
|
5998
6012
|
|
|
6013
|
+
class InvalidParameterException
|
|
6014
|
+
attr_accessor message: ::String
|
|
6015
|
+
attr_accessor request_id: ::String
|
|
6016
|
+
SENSITIVE: []
|
|
6017
|
+
end
|
|
6018
|
+
|
|
5999
6019
|
class InvalidParameterValueException
|
|
6000
6020
|
attr_accessor message: ::String
|
|
6001
6021
|
attr_accessor request_id: ::String
|
|
@@ -6697,6 +6717,22 @@ module Aws::QuickSight
|
|
|
6697
6717
|
SENSITIVE: []
|
|
6698
6718
|
end
|
|
6699
6719
|
|
|
6720
|
+
class ListSelfUpgradesRequest
|
|
6721
|
+
attr_accessor aws_account_id: ::String
|
|
6722
|
+
attr_accessor namespace: ::String
|
|
6723
|
+
attr_accessor next_token: ::String
|
|
6724
|
+
attr_accessor max_results: ::Integer
|
|
6725
|
+
SENSITIVE: []
|
|
6726
|
+
end
|
|
6727
|
+
|
|
6728
|
+
class ListSelfUpgradesResponse
|
|
6729
|
+
attr_accessor self_upgrade_request_details: ::Array[Types::SelfUpgradeRequestDetail]
|
|
6730
|
+
attr_accessor next_token: ::String
|
|
6731
|
+
attr_accessor request_id: ::String
|
|
6732
|
+
attr_accessor status: ::Integer
|
|
6733
|
+
SENSITIVE: []
|
|
6734
|
+
end
|
|
6735
|
+
|
|
6700
6736
|
class ListTagsForResourceRequest
|
|
6701
6737
|
attr_accessor resource_arn: ::String
|
|
6702
6738
|
SENSITIVE: []
|
|
@@ -8718,6 +8754,24 @@ module Aws::QuickSight
|
|
|
8718
8754
|
SENSITIVE: []
|
|
8719
8755
|
end
|
|
8720
8756
|
|
|
8757
|
+
class SelfUpgradeConfiguration
|
|
8758
|
+
attr_accessor self_upgrade_status: ("AUTO_APPROVAL" | "ADMIN_APPROVAL")
|
|
8759
|
+
SENSITIVE: []
|
|
8760
|
+
end
|
|
8761
|
+
|
|
8762
|
+
class SelfUpgradeRequestDetail
|
|
8763
|
+
attr_accessor upgrade_request_id: ::String
|
|
8764
|
+
attr_accessor user_name: ::String
|
|
8765
|
+
attr_accessor original_role: ("ADMIN" | "AUTHOR" | "READER" | "RESTRICTED_AUTHOR" | "RESTRICTED_READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO")
|
|
8766
|
+
attr_accessor requested_role: ("ADMIN" | "AUTHOR" | "READER" | "RESTRICTED_AUTHOR" | "RESTRICTED_READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO")
|
|
8767
|
+
attr_accessor request_note: ::String
|
|
8768
|
+
attr_accessor creation_time: ::Integer
|
|
8769
|
+
attr_accessor request_status: ("PENDING" | "APPROVED" | "DENIED" | "UPDATE_FAILED" | "VERIFY_FAILED")
|
|
8770
|
+
attr_accessor last_update_attempt_time: ::Integer
|
|
8771
|
+
attr_accessor last_update_failure_reason: ::String
|
|
8772
|
+
SENSITIVE: []
|
|
8773
|
+
end
|
|
8774
|
+
|
|
8721
8775
|
class SemanticEntityType
|
|
8722
8776
|
attr_accessor type_name: ::String
|
|
8723
8777
|
attr_accessor sub_type_name: ::String
|
|
@@ -10896,6 +10950,34 @@ module Aws::QuickSight
|
|
|
10896
10950
|
SENSITIVE: []
|
|
10897
10951
|
end
|
|
10898
10952
|
|
|
10953
|
+
class UpdateSelfUpgradeConfigurationRequest
|
|
10954
|
+
attr_accessor aws_account_id: ::String
|
|
10955
|
+
attr_accessor namespace: ::String
|
|
10956
|
+
attr_accessor self_upgrade_status: ("AUTO_APPROVAL" | "ADMIN_APPROVAL")
|
|
10957
|
+
SENSITIVE: []
|
|
10958
|
+
end
|
|
10959
|
+
|
|
10960
|
+
class UpdateSelfUpgradeConfigurationResponse
|
|
10961
|
+
attr_accessor request_id: ::String
|
|
10962
|
+
attr_accessor status: ::Integer
|
|
10963
|
+
SENSITIVE: []
|
|
10964
|
+
end
|
|
10965
|
+
|
|
10966
|
+
class UpdateSelfUpgradeRequest
|
|
10967
|
+
attr_accessor aws_account_id: ::String
|
|
10968
|
+
attr_accessor namespace: ::String
|
|
10969
|
+
attr_accessor upgrade_request_id: ::String
|
|
10970
|
+
attr_accessor action: ("APPROVE" | "DENY" | "VERIFY")
|
|
10971
|
+
SENSITIVE: []
|
|
10972
|
+
end
|
|
10973
|
+
|
|
10974
|
+
class UpdateSelfUpgradeResponse
|
|
10975
|
+
attr_accessor self_upgrade_request_detail: Types::SelfUpgradeRequestDetail
|
|
10976
|
+
attr_accessor request_id: ::String
|
|
10977
|
+
attr_accessor status: ::Integer
|
|
10978
|
+
SENSITIVE: []
|
|
10979
|
+
end
|
|
10980
|
+
|
|
10899
10981
|
class UpdateTemplateAliasRequest
|
|
10900
10982
|
attr_accessor aws_account_id: ::String
|
|
10901
10983
|
attr_accessor template_id: ::String
|