aws-sdk-quicksight 1.96.0 → 1.98.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +158 -1
- data/lib/aws-sdk-quicksight/client_api.rb +91 -0
- data/lib/aws-sdk-quicksight/endpoints.rb +42 -0
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-quicksight/types.rb +176 -1
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dba8c8ea74a7265c7cf673fdb27fb250471101932d2cbc77f4a2c13354a422e4
|
4
|
+
data.tar.gz: 522a1b7453dec270e7c984bdb0b21c5e5f66daac49870bb018a1118adcbc37f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e37022a7f2a9a2a584488230685bd52103dcfa9024300ea92688b95b069909839ce9de455654ed2e688293f43aba0a02273d77c933aff915e4fd08ddebcb5f17
|
7
|
+
data.tar.gz: 02ac0b767fed7da095aee67159bda1b10c678dc616ab016c30efcad6baaabfb6b988cda090729e6f9a7a036db1707f84446856ca1cca4a40dc2d12fbd26f9084
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.98.0 (2023-11-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release launches new APIs for trusted identity propagation setup and supports creating datasources using trusted identity propagation as authentication method for QuickSight accounts configured with IAM Identity Center.
|
8
|
+
|
9
|
+
1.97.0 (2023-11-22)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.96.0 (2023-11-16)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.98.0
|
@@ -1400,6 +1400,9 @@ module Aws::QuickSight
|
|
1400
1400
|
# database_groups: ["DatabaseGroup"],
|
1401
1401
|
# auto_create_database_user: false,
|
1402
1402
|
# },
|
1403
|
+
# identity_center_configuration: {
|
1404
|
+
# enable_identity_propagation: false,
|
1405
|
+
# },
|
1403
1406
|
# },
|
1404
1407
|
# s3_parameters: {
|
1405
1408
|
# manifest_file_location: { # required
|
@@ -1531,6 +1534,9 @@ module Aws::QuickSight
|
|
1531
1534
|
# database_groups: ["DatabaseGroup"],
|
1532
1535
|
# auto_create_database_user: false,
|
1533
1536
|
# },
|
1537
|
+
# identity_center_configuration: {
|
1538
|
+
# enable_identity_propagation: false,
|
1539
|
+
# },
|
1534
1540
|
# },
|
1535
1541
|
# s3_parameters: {
|
1536
1542
|
# manifest_file_location: { # required
|
@@ -3443,6 +3449,47 @@ module Aws::QuickSight
|
|
3443
3449
|
req.send_request(options)
|
3444
3450
|
end
|
3445
3451
|
|
3452
|
+
# Deletes all access scopes and authorized targets that are associated
|
3453
|
+
# with a service from the Amazon QuickSight IAM Identity Center
|
3454
|
+
# application.
|
3455
|
+
#
|
3456
|
+
# This operation is only supported for Amazon QuickSight accounts that
|
3457
|
+
# use IAM Identity Center.
|
3458
|
+
#
|
3459
|
+
# @option params [required, String] :aws_account_id
|
3460
|
+
# The ID of the Amazon Web Services account that you want to delete an
|
3461
|
+
# identity propagation configuration from.
|
3462
|
+
#
|
3463
|
+
# @option params [required, String] :service
|
3464
|
+
# The name of the Amazon Web Services service that you want to delete
|
3465
|
+
# the associated access scopes and authorized targets from.
|
3466
|
+
#
|
3467
|
+
# @return [Types::DeleteIdentityPropagationConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3468
|
+
#
|
3469
|
+
# * {Types::DeleteIdentityPropagationConfigResponse#request_id #request_id} => String
|
3470
|
+
# * {Types::DeleteIdentityPropagationConfigResponse#status #status} => Integer
|
3471
|
+
#
|
3472
|
+
# @example Request syntax with placeholder values
|
3473
|
+
#
|
3474
|
+
# resp = client.delete_identity_propagation_config({
|
3475
|
+
# aws_account_id: "AwsAccountId", # required
|
3476
|
+
# service: "REDSHIFT", # required, accepts REDSHIFT
|
3477
|
+
# })
|
3478
|
+
#
|
3479
|
+
# @example Response structure
|
3480
|
+
#
|
3481
|
+
# resp.request_id #=> String
|
3482
|
+
# resp.status #=> Integer
|
3483
|
+
#
|
3484
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteIdentityPropagationConfig AWS API Documentation
|
3485
|
+
#
|
3486
|
+
# @overload delete_identity_propagation_config(params = {})
|
3487
|
+
# @param [Hash] params ({})
|
3488
|
+
def delete_identity_propagation_config(params = {}, options = {})
|
3489
|
+
req = build_request(:delete_identity_propagation_config, params)
|
3490
|
+
req.send_request(options)
|
3491
|
+
end
|
3492
|
+
|
3446
3493
|
# Deletes a namespace and the users and groups that are associated with
|
3447
3494
|
# the namespace. This is an asynchronous process. Assets including
|
3448
3495
|
# dashboards, analyses, datasets and data sources are not deleted. To
|
@@ -4571,6 +4618,7 @@ module Aws::QuickSight
|
|
4571
4618
|
# resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.database_groups #=> Array
|
4572
4619
|
# resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.database_groups[0] #=> String
|
4573
4620
|
# resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.auto_create_database_user #=> Boolean
|
4621
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.identity_center_configuration.enable_identity_propagation #=> Boolean
|
4574
4622
|
# resp.override_parameters.data_sources[0].data_source_parameters.s3_parameters.manifest_file_location.bucket #=> String
|
4575
4623
|
# resp.override_parameters.data_sources[0].data_source_parameters.s3_parameters.manifest_file_location.key #=> String
|
4576
4624
|
# resp.override_parameters.data_sources[0].data_source_parameters.s3_parameters.role_arn #=> String
|
@@ -5371,6 +5419,7 @@ module Aws::QuickSight
|
|
5371
5419
|
# resp.data_source.data_source_parameters.redshift_parameters.iam_parameters.database_groups #=> Array
|
5372
5420
|
# resp.data_source.data_source_parameters.redshift_parameters.iam_parameters.database_groups[0] #=> String
|
5373
5421
|
# resp.data_source.data_source_parameters.redshift_parameters.iam_parameters.auto_create_database_user #=> Boolean
|
5422
|
+
# resp.data_source.data_source_parameters.redshift_parameters.identity_center_configuration.enable_identity_propagation #=> Boolean
|
5374
5423
|
# resp.data_source.data_source_parameters.s3_parameters.manifest_file_location.bucket #=> String
|
5375
5424
|
# resp.data_source.data_source_parameters.s3_parameters.manifest_file_location.key #=> String
|
5376
5425
|
# resp.data_source.data_source_parameters.s3_parameters.role_arn #=> String
|
@@ -5441,6 +5490,7 @@ module Aws::QuickSight
|
|
5441
5490
|
# resp.data_source.alternate_data_source_parameters[0].redshift_parameters.iam_parameters.database_groups #=> Array
|
5442
5491
|
# resp.data_source.alternate_data_source_parameters[0].redshift_parameters.iam_parameters.database_groups[0] #=> String
|
5443
5492
|
# resp.data_source.alternate_data_source_parameters[0].redshift_parameters.iam_parameters.auto_create_database_user #=> Boolean
|
5493
|
+
# resp.data_source.alternate_data_source_parameters[0].redshift_parameters.identity_center_configuration.enable_identity_propagation #=> Boolean
|
5444
5494
|
# resp.data_source.alternate_data_source_parameters[0].s3_parameters.manifest_file_location.bucket #=> String
|
5445
5495
|
# resp.data_source.alternate_data_source_parameters[0].s3_parameters.manifest_file_location.key #=> String
|
5446
5496
|
# resp.data_source.alternate_data_source_parameters[0].s3_parameters.role_arn #=> String
|
@@ -7823,6 +7873,7 @@ module Aws::QuickSight
|
|
7823
7873
|
# resp.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.database_groups #=> Array
|
7824
7874
|
# resp.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.database_groups[0] #=> String
|
7825
7875
|
# resp.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.auto_create_database_user #=> Boolean
|
7876
|
+
# resp.data_sources[0].data_source_parameters.redshift_parameters.identity_center_configuration.enable_identity_propagation #=> Boolean
|
7826
7877
|
# resp.data_sources[0].data_source_parameters.s3_parameters.manifest_file_location.bucket #=> String
|
7827
7878
|
# resp.data_sources[0].data_source_parameters.s3_parameters.manifest_file_location.key #=> String
|
7828
7879
|
# resp.data_sources[0].data_source_parameters.s3_parameters.role_arn #=> String
|
@@ -7893,6 +7944,7 @@ module Aws::QuickSight
|
|
7893
7944
|
# resp.data_sources[0].alternate_data_source_parameters[0].redshift_parameters.iam_parameters.database_groups #=> Array
|
7894
7945
|
# resp.data_sources[0].alternate_data_source_parameters[0].redshift_parameters.iam_parameters.database_groups[0] #=> String
|
7895
7946
|
# resp.data_sources[0].alternate_data_source_parameters[0].redshift_parameters.iam_parameters.auto_create_database_user #=> Boolean
|
7947
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].redshift_parameters.identity_center_configuration.enable_identity_propagation #=> Boolean
|
7896
7948
|
# resp.data_sources[0].alternate_data_source_parameters[0].s3_parameters.manifest_file_location.bucket #=> String
|
7897
7949
|
# resp.data_sources[0].alternate_data_source_parameters[0].s3_parameters.manifest_file_location.key #=> String
|
7898
7950
|
# resp.data_sources[0].alternate_data_source_parameters[0].s3_parameters.role_arn #=> String
|
@@ -8271,6 +8323,57 @@ module Aws::QuickSight
|
|
8271
8323
|
req.send_request(options)
|
8272
8324
|
end
|
8273
8325
|
|
8326
|
+
# Lists all services and authorized targets that the Amazon QuickSight
|
8327
|
+
# IAM Identity Center application can access.
|
8328
|
+
#
|
8329
|
+
# This operation is only supported for Amazon QuickSight accounts that
|
8330
|
+
# use IAM Identity Center.
|
8331
|
+
#
|
8332
|
+
# @option params [required, String] :aws_account_id
|
8333
|
+
# The ID of the Amazon Web Services account that contain the identity
|
8334
|
+
# propagation configurations of.
|
8335
|
+
#
|
8336
|
+
# @option params [Integer] :max_results
|
8337
|
+
# The maximum number of results to be returned.
|
8338
|
+
#
|
8339
|
+
# @option params [String] :next_token
|
8340
|
+
# The token for the next set of results, or null if there are no more
|
8341
|
+
# results.
|
8342
|
+
#
|
8343
|
+
# @return [Types::ListIdentityPropagationConfigsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8344
|
+
#
|
8345
|
+
# * {Types::ListIdentityPropagationConfigsResponse#services #services} => Array<Types::AuthorizedTargetsByService>
|
8346
|
+
# * {Types::ListIdentityPropagationConfigsResponse#next_token #next_token} => String
|
8347
|
+
# * {Types::ListIdentityPropagationConfigsResponse#status #status} => Integer
|
8348
|
+
# * {Types::ListIdentityPropagationConfigsResponse#request_id #request_id} => String
|
8349
|
+
#
|
8350
|
+
# @example Request syntax with placeholder values
|
8351
|
+
#
|
8352
|
+
# resp = client.list_identity_propagation_configs({
|
8353
|
+
# aws_account_id: "AwsAccountId", # required
|
8354
|
+
# max_results: 1,
|
8355
|
+
# next_token: "String",
|
8356
|
+
# })
|
8357
|
+
#
|
8358
|
+
# @example Response structure
|
8359
|
+
#
|
8360
|
+
# resp.services #=> Array
|
8361
|
+
# resp.services[0].service #=> String, one of "REDSHIFT"
|
8362
|
+
# resp.services[0].authorized_targets #=> Array
|
8363
|
+
# resp.services[0].authorized_targets[0] #=> String
|
8364
|
+
# resp.next_token #=> String
|
8365
|
+
# resp.status #=> Integer
|
8366
|
+
# resp.request_id #=> String
|
8367
|
+
#
|
8368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListIdentityPropagationConfigs AWS API Documentation
|
8369
|
+
#
|
8370
|
+
# @overload list_identity_propagation_configs(params = {})
|
8371
|
+
# @param [Hash] params ({})
|
8372
|
+
def list_identity_propagation_configs(params = {}, options = {})
|
8373
|
+
req = build_request(:list_identity_propagation_configs, params)
|
8374
|
+
req.send_request(options)
|
8375
|
+
end
|
8376
|
+
|
8274
8377
|
# Lists the history of SPICE ingestions for a dataset.
|
8275
8378
|
#
|
8276
8379
|
# @option params [required, String] :data_set_id
|
@@ -10148,6 +10251,9 @@ module Aws::QuickSight
|
|
10148
10251
|
# database_groups: ["DatabaseGroup"],
|
10149
10252
|
# auto_create_database_user: false,
|
10150
10253
|
# },
|
10254
|
+
# identity_center_configuration: {
|
10255
|
+
# enable_identity_propagation: false,
|
10256
|
+
# },
|
10151
10257
|
# },
|
10152
10258
|
# s3_parameters: {
|
10153
10259
|
# manifest_file_location: { # required
|
@@ -11565,6 +11671,9 @@ module Aws::QuickSight
|
|
11565
11671
|
# database_groups: ["DatabaseGroup"],
|
11566
11672
|
# auto_create_database_user: false,
|
11567
11673
|
# },
|
11674
|
+
# identity_center_configuration: {
|
11675
|
+
# enable_identity_propagation: false,
|
11676
|
+
# },
|
11568
11677
|
# },
|
11569
11678
|
# s3_parameters: {
|
11570
11679
|
# manifest_file_location: { # required
|
@@ -11696,6 +11805,9 @@ module Aws::QuickSight
|
|
11696
11805
|
# database_groups: ["DatabaseGroup"],
|
11697
11806
|
# auto_create_database_user: false,
|
11698
11807
|
# },
|
11808
|
+
# identity_center_configuration: {
|
11809
|
+
# enable_identity_propagation: false,
|
11810
|
+
# },
|
11699
11811
|
# },
|
11700
11812
|
# s3_parameters: {
|
11701
11813
|
# manifest_file_location: { # required
|
@@ -12080,6 +12192,51 @@ module Aws::QuickSight
|
|
12080
12192
|
req.send_request(options)
|
12081
12193
|
end
|
12082
12194
|
|
12195
|
+
# Adds or updates services and authorized targets to configure what the
|
12196
|
+
# Amazon QuickSight IAM Identity Center application can access.
|
12197
|
+
#
|
12198
|
+
# This operation is only supported for Amazon QuickSight accounts using
|
12199
|
+
# IAM Identity Center
|
12200
|
+
#
|
12201
|
+
# @option params [required, String] :aws_account_id
|
12202
|
+
# The ID of the Amazon Web Services account that contains the identity
|
12203
|
+
# propagation configuration that you want to update.
|
12204
|
+
#
|
12205
|
+
# @option params [required, String] :service
|
12206
|
+
# The name of the Amazon Web Services service that contains the
|
12207
|
+
# authorized targets that you want to add or update.
|
12208
|
+
#
|
12209
|
+
# @option params [Array<String>] :authorized_targets
|
12210
|
+
# Specifies a list of application ARNs that represent the authorized
|
12211
|
+
# targets for a service.
|
12212
|
+
#
|
12213
|
+
# @return [Types::UpdateIdentityPropagationConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12214
|
+
#
|
12215
|
+
# * {Types::UpdateIdentityPropagationConfigResponse#request_id #request_id} => String
|
12216
|
+
# * {Types::UpdateIdentityPropagationConfigResponse#status #status} => Integer
|
12217
|
+
#
|
12218
|
+
# @example Request syntax with placeholder values
|
12219
|
+
#
|
12220
|
+
# resp = client.update_identity_propagation_config({
|
12221
|
+
# aws_account_id: "AwsAccountId", # required
|
12222
|
+
# service: "REDSHIFT", # required, accepts REDSHIFT
|
12223
|
+
# authorized_targets: ["String"],
|
12224
|
+
# })
|
12225
|
+
#
|
12226
|
+
# @example Response structure
|
12227
|
+
#
|
12228
|
+
# resp.request_id #=> String
|
12229
|
+
# resp.status #=> Integer
|
12230
|
+
#
|
12231
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateIdentityPropagationConfig AWS API Documentation
|
12232
|
+
#
|
12233
|
+
# @overload update_identity_propagation_config(params = {})
|
12234
|
+
# @param [Hash] params ({})
|
12235
|
+
def update_identity_propagation_config(params = {}, options = {})
|
12236
|
+
req = build_request(:update_identity_propagation_config, params)
|
12237
|
+
req.send_request(options)
|
12238
|
+
end
|
12239
|
+
|
12083
12240
|
# Updates the content and status of IP rules. To use this operation, you
|
12084
12241
|
# must provide the entire map of rules. You can use the
|
12085
12242
|
# `DescribeIpRestriction` operation to get the current rule map.
|
@@ -13325,7 +13482,7 @@ module Aws::QuickSight
|
|
13325
13482
|
params: params,
|
13326
13483
|
config: config)
|
13327
13484
|
context[:gem_name] = 'aws-sdk-quicksight'
|
13328
|
-
context[:gem_version] = '1.
|
13485
|
+
context[:gem_version] = '1.98.0'
|
13329
13486
|
Seahorse::Client::Request.new(handlers, context)
|
13330
13487
|
end
|
13331
13488
|
|
@@ -167,6 +167,9 @@ module Aws::QuickSight
|
|
167
167
|
AuthenticationMethodOption = Shapes::StringShape.new(name: 'AuthenticationMethodOption')
|
168
168
|
AuthorSpecifiedAggregation = Shapes::StringShape.new(name: 'AuthorSpecifiedAggregation')
|
169
169
|
AuthorSpecifiedAggregations = Shapes::ListShape.new(name: 'AuthorSpecifiedAggregations')
|
170
|
+
AuthorizedTargetsByService = Shapes::StructureShape.new(name: 'AuthorizedTargetsByService')
|
171
|
+
AuthorizedTargetsByServices = Shapes::ListShape.new(name: 'AuthorizedTargetsByServices')
|
172
|
+
AuthorizedTargetsList = Shapes::ListShape.new(name: 'AuthorizedTargetsList')
|
170
173
|
AwsAccountId = Shapes::StringShape.new(name: 'AwsAccountId')
|
171
174
|
AwsAndAccountId = Shapes::StringShape.new(name: 'AwsAndAccountId')
|
172
175
|
AwsIotAnalyticsParameters = Shapes::StructureShape.new(name: 'AwsIotAnalyticsParameters')
|
@@ -534,6 +537,8 @@ module Aws::QuickSight
|
|
534
537
|
DeleteGroupResponse = Shapes::StructureShape.new(name: 'DeleteGroupResponse')
|
535
538
|
DeleteIAMPolicyAssignmentRequest = Shapes::StructureShape.new(name: 'DeleteIAMPolicyAssignmentRequest')
|
536
539
|
DeleteIAMPolicyAssignmentResponse = Shapes::StructureShape.new(name: 'DeleteIAMPolicyAssignmentResponse')
|
540
|
+
DeleteIdentityPropagationConfigRequest = Shapes::StructureShape.new(name: 'DeleteIdentityPropagationConfigRequest')
|
541
|
+
DeleteIdentityPropagationConfigResponse = Shapes::StructureShape.new(name: 'DeleteIdentityPropagationConfigResponse')
|
537
542
|
DeleteNamespaceRequest = Shapes::StructureShape.new(name: 'DeleteNamespaceRequest')
|
538
543
|
DeleteNamespaceResponse = Shapes::StructureShape.new(name: 'DeleteNamespaceResponse')
|
539
544
|
DeleteRefreshScheduleRequest = Shapes::StructureShape.new(name: 'DeleteRefreshScheduleRequest')
|
@@ -860,6 +865,7 @@ module Aws::QuickSight
|
|
860
865
|
IAMPolicyAssignmentSummaryList = Shapes::ListShape.new(name: 'IAMPolicyAssignmentSummaryList')
|
861
866
|
IPv4Address = Shapes::StringShape.new(name: 'IPv4Address')
|
862
867
|
Icon = Shapes::StringShape.new(name: 'Icon')
|
868
|
+
IdentityCenterConfiguration = Shapes::StructureShape.new(name: 'IdentityCenterConfiguration')
|
863
869
|
IdentityMap = Shapes::MapShape.new(name: 'IdentityMap')
|
864
870
|
IdentityName = Shapes::StringShape.new(name: 'IdentityName')
|
865
871
|
IdentityNameList = Shapes::ListShape.new(name: 'IdentityNameList')
|
@@ -976,6 +982,9 @@ module Aws::QuickSight
|
|
976
982
|
ListIAMPolicyAssignmentsForUserResponse = Shapes::StructureShape.new(name: 'ListIAMPolicyAssignmentsForUserResponse')
|
977
983
|
ListIAMPolicyAssignmentsRequest = Shapes::StructureShape.new(name: 'ListIAMPolicyAssignmentsRequest')
|
978
984
|
ListIAMPolicyAssignmentsResponse = Shapes::StructureShape.new(name: 'ListIAMPolicyAssignmentsResponse')
|
985
|
+
ListIdentityPropagationConfigsRequest = Shapes::StructureShape.new(name: 'ListIdentityPropagationConfigsRequest')
|
986
|
+
ListIdentityPropagationConfigsResponse = Shapes::StructureShape.new(name: 'ListIdentityPropagationConfigsResponse')
|
987
|
+
ListIdentityPropagationMaxResults = Shapes::IntegerShape.new(name: 'ListIdentityPropagationMaxResults')
|
979
988
|
ListIngestionsRequest = Shapes::StructureShape.new(name: 'ListIngestionsRequest')
|
980
989
|
ListIngestionsResponse = Shapes::StructureShape.new(name: 'ListIngestionsResponse')
|
981
990
|
ListNamespacesRequest = Shapes::StructureShape.new(name: 'ListNamespacesRequest')
|
@@ -1346,6 +1355,7 @@ module Aws::QuickSight
|
|
1346
1355
|
SeriesItem = Shapes::StructureShape.new(name: 'SeriesItem')
|
1347
1356
|
SeriesItemList = Shapes::ListShape.new(name: 'SeriesItemList')
|
1348
1357
|
ServiceNowParameters = Shapes::StructureShape.new(name: 'ServiceNowParameters')
|
1358
|
+
ServiceType = Shapes::StringShape.new(name: 'ServiceType')
|
1349
1359
|
SessionLifetimeInMinutes = Shapes::IntegerShape.new(name: 'SessionLifetimeInMinutes')
|
1350
1360
|
SessionLifetimeInMinutesInvalidException = Shapes::StructureShape.new(name: 'SessionLifetimeInMinutesInvalidException')
|
1351
1361
|
SessionTag = Shapes::StructureShape.new(name: 'SessionTag')
|
@@ -1671,6 +1681,8 @@ module Aws::QuickSight
|
|
1671
1681
|
UpdateGroupResponse = Shapes::StructureShape.new(name: 'UpdateGroupResponse')
|
1672
1682
|
UpdateIAMPolicyAssignmentRequest = Shapes::StructureShape.new(name: 'UpdateIAMPolicyAssignmentRequest')
|
1673
1683
|
UpdateIAMPolicyAssignmentResponse = Shapes::StructureShape.new(name: 'UpdateIAMPolicyAssignmentResponse')
|
1684
|
+
UpdateIdentityPropagationConfigRequest = Shapes::StructureShape.new(name: 'UpdateIdentityPropagationConfigRequest')
|
1685
|
+
UpdateIdentityPropagationConfigResponse = Shapes::StructureShape.new(name: 'UpdateIdentityPropagationConfigResponse')
|
1674
1686
|
UpdateIpRestrictionRequest = Shapes::StructureShape.new(name: 'UpdateIpRestrictionRequest')
|
1675
1687
|
UpdateIpRestrictionResponse = Shapes::StructureShape.new(name: 'UpdateIpRestrictionResponse')
|
1676
1688
|
UpdateLinkPermissionList = Shapes::ListShape.new(name: 'UpdateLinkPermissionList')
|
@@ -2238,6 +2250,14 @@ module Aws::QuickSight
|
|
2238
2250
|
|
2239
2251
|
AuthorSpecifiedAggregations.member = Shapes::ShapeRef.new(shape: AuthorSpecifiedAggregation)
|
2240
2252
|
|
2253
|
+
AuthorizedTargetsByService.add_member(:service, Shapes::ShapeRef.new(shape: ServiceType, location_name: "Service"))
|
2254
|
+
AuthorizedTargetsByService.add_member(:authorized_targets, Shapes::ShapeRef.new(shape: AuthorizedTargetsList, location_name: "AuthorizedTargets"))
|
2255
|
+
AuthorizedTargetsByService.struct_class = Types::AuthorizedTargetsByService
|
2256
|
+
|
2257
|
+
AuthorizedTargetsByServices.member = Shapes::ShapeRef.new(shape: AuthorizedTargetsByService)
|
2258
|
+
|
2259
|
+
AuthorizedTargetsList.member = Shapes::ShapeRef.new(shape: String)
|
2260
|
+
|
2241
2261
|
AwsIotAnalyticsParameters.add_member(:data_set_name, Shapes::ShapeRef.new(shape: DataSetName, required: true, location_name: "DataSetName"))
|
2242
2262
|
AwsIotAnalyticsParameters.struct_class = Types::AwsIotAnalyticsParameters
|
2243
2263
|
|
@@ -3718,6 +3738,14 @@ module Aws::QuickSight
|
|
3718
3738
|
DeleteIAMPolicyAssignmentResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
3719
3739
|
DeleteIAMPolicyAssignmentResponse.struct_class = Types::DeleteIAMPolicyAssignmentResponse
|
3720
3740
|
|
3741
|
+
DeleteIdentityPropagationConfigRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
3742
|
+
DeleteIdentityPropagationConfigRequest.add_member(:service, Shapes::ShapeRef.new(shape: ServiceType, required: true, location: "uri", location_name: "Service"))
|
3743
|
+
DeleteIdentityPropagationConfigRequest.struct_class = Types::DeleteIdentityPropagationConfigRequest
|
3744
|
+
|
3745
|
+
DeleteIdentityPropagationConfigResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
3746
|
+
DeleteIdentityPropagationConfigResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
3747
|
+
DeleteIdentityPropagationConfigResponse.struct_class = Types::DeleteIdentityPropagationConfigResponse
|
3748
|
+
|
3721
3749
|
DeleteNamespaceRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
3722
3750
|
DeleteNamespaceRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, required: true, location: "uri", location_name: "Namespace"))
|
3723
3751
|
DeleteNamespaceRequest.struct_class = Types::DeleteNamespaceRequest
|
@@ -5110,6 +5138,9 @@ module Aws::QuickSight
|
|
5110
5138
|
|
5111
5139
|
IAMPolicyAssignmentSummaryList.member = Shapes::ShapeRef.new(shape: IAMPolicyAssignmentSummary)
|
5112
5140
|
|
5141
|
+
IdentityCenterConfiguration.add_member(:enable_identity_propagation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableIdentityPropagation", metadata: {"box"=>true}))
|
5142
|
+
IdentityCenterConfiguration.struct_class = Types::IdentityCenterConfiguration
|
5143
|
+
|
5113
5144
|
IdentityMap.key = Shapes::ShapeRef.new(shape: String)
|
5114
5145
|
IdentityMap.value = Shapes::ShapeRef.new(shape: IdentityNameList)
|
5115
5146
|
|
@@ -5562,6 +5593,17 @@ module Aws::QuickSight
|
|
5562
5593
|
ListIAMPolicyAssignmentsResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
5563
5594
|
ListIAMPolicyAssignmentsResponse.struct_class = Types::ListIAMPolicyAssignmentsResponse
|
5564
5595
|
|
5596
|
+
ListIdentityPropagationConfigsRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
5597
|
+
ListIdentityPropagationConfigsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListIdentityPropagationMaxResults, location: "querystring", location_name: "max-results", metadata: {"box"=>true}))
|
5598
|
+
ListIdentityPropagationConfigsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next-token"))
|
5599
|
+
ListIdentityPropagationConfigsRequest.struct_class = Types::ListIdentityPropagationConfigsRequest
|
5600
|
+
|
5601
|
+
ListIdentityPropagationConfigsResponse.add_member(:services, Shapes::ShapeRef.new(shape: AuthorizedTargetsByServices, location_name: "Services"))
|
5602
|
+
ListIdentityPropagationConfigsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
5603
|
+
ListIdentityPropagationConfigsResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
5604
|
+
ListIdentityPropagationConfigsResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
5605
|
+
ListIdentityPropagationConfigsResponse.struct_class = Types::ListIdentityPropagationConfigsResponse
|
5606
|
+
|
5565
5607
|
ListIngestionsRequest.add_member(:data_set_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "DataSetId"))
|
5566
5608
|
ListIngestionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next-token"))
|
5567
5609
|
ListIngestionsRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
@@ -6395,6 +6437,7 @@ module Aws::QuickSight
|
|
6395
6437
|
RedshiftParameters.add_member(:database, Shapes::ShapeRef.new(shape: Database, required: true, location_name: "Database"))
|
6396
6438
|
RedshiftParameters.add_member(:cluster_id, Shapes::ShapeRef.new(shape: ClusterId, location_name: "ClusterId"))
|
6397
6439
|
RedshiftParameters.add_member(:iam_parameters, Shapes::ShapeRef.new(shape: RedshiftIAMParameters, location_name: "IAMParameters"))
|
6440
|
+
RedshiftParameters.add_member(:identity_center_configuration, Shapes::ShapeRef.new(shape: IdentityCenterConfiguration, location_name: "IdentityCenterConfiguration"))
|
6398
6441
|
RedshiftParameters.struct_class = Types::RedshiftParameters
|
6399
6442
|
|
6400
6443
|
ReferenceLine.add_member(:status, Shapes::ShapeRef.new(shape: WidgetStatus, location_name: "Status"))
|
@@ -8046,6 +8089,15 @@ module Aws::QuickSight
|
|
8046
8089
|
UpdateIAMPolicyAssignmentResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
8047
8090
|
UpdateIAMPolicyAssignmentResponse.struct_class = Types::UpdateIAMPolicyAssignmentResponse
|
8048
8091
|
|
8092
|
+
UpdateIdentityPropagationConfigRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
8093
|
+
UpdateIdentityPropagationConfigRequest.add_member(:service, Shapes::ShapeRef.new(shape: ServiceType, required: true, location: "uri", location_name: "Service"))
|
8094
|
+
UpdateIdentityPropagationConfigRequest.add_member(:authorized_targets, Shapes::ShapeRef.new(shape: AuthorizedTargetsList, location_name: "AuthorizedTargets"))
|
8095
|
+
UpdateIdentityPropagationConfigRequest.struct_class = Types::UpdateIdentityPropagationConfigRequest
|
8096
|
+
|
8097
|
+
UpdateIdentityPropagationConfigResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
8098
|
+
UpdateIdentityPropagationConfigResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
8099
|
+
UpdateIdentityPropagationConfigResponse.struct_class = Types::UpdateIdentityPropagationConfigResponse
|
8100
|
+
|
8049
8101
|
UpdateIpRestrictionRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
8050
8102
|
UpdateIpRestrictionRequest.add_member(:ip_restriction_rule_map, Shapes::ShapeRef.new(shape: IpRestrictionRuleMap, location_name: "IpRestrictionRuleMap"))
|
8051
8103
|
UpdateIpRestrictionRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "Enabled"))
|
@@ -9008,6 +9060,19 @@ module Aws::QuickSight
|
|
9008
9060
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
9009
9061
|
end)
|
9010
9062
|
|
9063
|
+
api.add_operation(:delete_identity_propagation_config, Seahorse::Model::Operation.new.tap do |o|
|
9064
|
+
o.name = "DeleteIdentityPropagationConfig"
|
9065
|
+
o.http_method = "DELETE"
|
9066
|
+
o.http_request_uri = "/accounts/{AwsAccountId}/identity-propagation-config/{Service}"
|
9067
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteIdentityPropagationConfigRequest)
|
9068
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteIdentityPropagationConfigResponse)
|
9069
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
9070
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
9071
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
9072
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
9073
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
9074
|
+
end)
|
9075
|
+
|
9011
9076
|
api.add_operation(:delete_namespace, Seahorse::Model::Operation.new.tap do |o|
|
9012
9077
|
o.name = "DeleteNamespace"
|
9013
9078
|
o.http_method = "DELETE"
|
@@ -10128,6 +10193,19 @@ module Aws::QuickSight
|
|
10128
10193
|
)
|
10129
10194
|
end)
|
10130
10195
|
|
10196
|
+
api.add_operation(:list_identity_propagation_configs, Seahorse::Model::Operation.new.tap do |o|
|
10197
|
+
o.name = "ListIdentityPropagationConfigs"
|
10198
|
+
o.http_method = "GET"
|
10199
|
+
o.http_request_uri = "/accounts/{AwsAccountId}/identity-propagation-config"
|
10200
|
+
o.input = Shapes::ShapeRef.new(shape: ListIdentityPropagationConfigsRequest)
|
10201
|
+
o.output = Shapes::ShapeRef.new(shape: ListIdentityPropagationConfigsResponse)
|
10202
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
10203
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
10204
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
10205
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
10206
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
10207
|
+
end)
|
10208
|
+
|
10131
10209
|
api.add_operation(:list_ingestions, Seahorse::Model::Operation.new.tap do |o|
|
10132
10210
|
o.name = "ListIngestions"
|
10133
10211
|
o.http_method = "GET"
|
@@ -10902,6 +10980,19 @@ module Aws::QuickSight
|
|
10902
10980
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
10903
10981
|
end)
|
10904
10982
|
|
10983
|
+
api.add_operation(:update_identity_propagation_config, Seahorse::Model::Operation.new.tap do |o|
|
10984
|
+
o.name = "UpdateIdentityPropagationConfig"
|
10985
|
+
o.http_method = "POST"
|
10986
|
+
o.http_request_uri = "/accounts/{AwsAccountId}/identity-propagation-config/{Service}"
|
10987
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateIdentityPropagationConfigRequest)
|
10988
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateIdentityPropagationConfigResponse)
|
10989
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
10990
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
10991
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
10992
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
10993
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
10994
|
+
end)
|
10995
|
+
|
10905
10996
|
api.add_operation(:update_ip_restriction, Seahorse::Model::Operation.new.tap do |o|
|
10906
10997
|
o.name = "UpdateIpRestriction"
|
10907
10998
|
o.http_method = "POST"
|
@@ -502,6 +502,20 @@ module Aws::QuickSight
|
|
502
502
|
end
|
503
503
|
end
|
504
504
|
|
505
|
+
class DeleteIdentityPropagationConfig
|
506
|
+
def self.build(context)
|
507
|
+
unless context.config.regional_endpoint
|
508
|
+
endpoint = context.config.endpoint.to_s
|
509
|
+
end
|
510
|
+
Aws::QuickSight::EndpointParameters.new(
|
511
|
+
region: context.config.region,
|
512
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
513
|
+
use_fips: context.config.use_fips_endpoint,
|
514
|
+
endpoint: endpoint,
|
515
|
+
)
|
516
|
+
end
|
517
|
+
end
|
518
|
+
|
505
519
|
class DeleteNamespace
|
506
520
|
def self.build(context)
|
507
521
|
unless context.config.regional_endpoint
|
@@ -1510,6 +1524,20 @@ module Aws::QuickSight
|
|
1510
1524
|
end
|
1511
1525
|
end
|
1512
1526
|
|
1527
|
+
class ListIdentityPropagationConfigs
|
1528
|
+
def self.build(context)
|
1529
|
+
unless context.config.regional_endpoint
|
1530
|
+
endpoint = context.config.endpoint.to_s
|
1531
|
+
end
|
1532
|
+
Aws::QuickSight::EndpointParameters.new(
|
1533
|
+
region: context.config.region,
|
1534
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1535
|
+
use_fips: context.config.use_fips_endpoint,
|
1536
|
+
endpoint: endpoint,
|
1537
|
+
)
|
1538
|
+
end
|
1539
|
+
end
|
1540
|
+
|
1513
1541
|
class ListIngestions
|
1514
1542
|
def self.build(context)
|
1515
1543
|
unless context.config.regional_endpoint
|
@@ -2140,6 +2168,20 @@ module Aws::QuickSight
|
|
2140
2168
|
end
|
2141
2169
|
end
|
2142
2170
|
|
2171
|
+
class UpdateIdentityPropagationConfig
|
2172
|
+
def self.build(context)
|
2173
|
+
unless context.config.regional_endpoint
|
2174
|
+
endpoint = context.config.endpoint.to_s
|
2175
|
+
end
|
2176
|
+
Aws::QuickSight::EndpointParameters.new(
|
2177
|
+
region: context.config.region,
|
2178
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2179
|
+
use_fips: context.config.use_fips_endpoint,
|
2180
|
+
endpoint: endpoint,
|
2181
|
+
)
|
2182
|
+
end
|
2183
|
+
end
|
2184
|
+
|
2143
2185
|
class UpdateIpRestriction
|
2144
2186
|
def self.build(context)
|
2145
2187
|
unless context.config.regional_endpoint
|
@@ -126,6 +126,8 @@ module Aws::QuickSight
|
|
126
126
|
Aws::QuickSight::Endpoints::DeleteGroupMembership.build(context)
|
127
127
|
when :delete_iam_policy_assignment
|
128
128
|
Aws::QuickSight::Endpoints::DeleteIAMPolicyAssignment.build(context)
|
129
|
+
when :delete_identity_propagation_config
|
130
|
+
Aws::QuickSight::Endpoints::DeleteIdentityPropagationConfig.build(context)
|
129
131
|
when :delete_namespace
|
130
132
|
Aws::QuickSight::Endpoints::DeleteNamespace.build(context)
|
131
133
|
when :delete_refresh_schedule
|
@@ -270,6 +272,8 @@ module Aws::QuickSight
|
|
270
272
|
Aws::QuickSight::Endpoints::ListIAMPolicyAssignments.build(context)
|
271
273
|
when :list_iam_policy_assignments_for_user
|
272
274
|
Aws::QuickSight::Endpoints::ListIAMPolicyAssignmentsForUser.build(context)
|
275
|
+
when :list_identity_propagation_configs
|
276
|
+
Aws::QuickSight::Endpoints::ListIdentityPropagationConfigs.build(context)
|
273
277
|
when :list_ingestions
|
274
278
|
Aws::QuickSight::Endpoints::ListIngestions.build(context)
|
275
279
|
when :list_namespaces
|
@@ -360,6 +364,8 @@ module Aws::QuickSight
|
|
360
364
|
Aws::QuickSight::Endpoints::UpdateGroup.build(context)
|
361
365
|
when :update_iam_policy_assignment
|
362
366
|
Aws::QuickSight::Endpoints::UpdateIAMPolicyAssignment.build(context)
|
367
|
+
when :update_identity_propagation_config
|
368
|
+
Aws::QuickSight::Endpoints::UpdateIdentityPropagationConfig.build(context)
|
363
369
|
when :update_ip_restriction
|
364
370
|
Aws::QuickSight::Endpoints::UpdateIpRestriction.build(context)
|
365
371
|
when :update_public_sharing_settings
|
@@ -2110,6 +2110,26 @@ module Aws::QuickSight
|
|
2110
2110
|
include Aws::Structure
|
2111
2111
|
end
|
2112
2112
|
|
2113
|
+
# The authorized targets that are associated with a service.
|
2114
|
+
#
|
2115
|
+
# @!attribute [rw] service
|
2116
|
+
# The name of the Amazon Web Services service.
|
2117
|
+
# @return [String]
|
2118
|
+
#
|
2119
|
+
# @!attribute [rw] authorized_targets
|
2120
|
+
# Aist of authorized targets that are represented by IAM Identity
|
2121
|
+
# Center application ARNs.
|
2122
|
+
# @return [Array<String>]
|
2123
|
+
#
|
2124
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AuthorizedTargetsByService AWS API Documentation
|
2125
|
+
#
|
2126
|
+
class AuthorizedTargetsByService < Struct.new(
|
2127
|
+
:service,
|
2128
|
+
:authorized_targets)
|
2129
|
+
SENSITIVE = []
|
2130
|
+
include Aws::Structure
|
2131
|
+
end
|
2132
|
+
|
2113
2133
|
# The parameters for IoT Analytics.
|
2114
2134
|
#
|
2115
2135
|
# @!attribute [rw] data_set_name
|
@@ -9533,6 +9553,42 @@ module Aws::QuickSight
|
|
9533
9553
|
include Aws::Structure
|
9534
9554
|
end
|
9535
9555
|
|
9556
|
+
# @!attribute [rw] aws_account_id
|
9557
|
+
# The ID of the Amazon Web Services account that you want to delete an
|
9558
|
+
# identity propagation configuration from.
|
9559
|
+
# @return [String]
|
9560
|
+
#
|
9561
|
+
# @!attribute [rw] service
|
9562
|
+
# The name of the Amazon Web Services service that you want to delete
|
9563
|
+
# the associated access scopes and authorized targets from.
|
9564
|
+
# @return [String]
|
9565
|
+
#
|
9566
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteIdentityPropagationConfigRequest AWS API Documentation
|
9567
|
+
#
|
9568
|
+
class DeleteIdentityPropagationConfigRequest < Struct.new(
|
9569
|
+
:aws_account_id,
|
9570
|
+
:service)
|
9571
|
+
SENSITIVE = []
|
9572
|
+
include Aws::Structure
|
9573
|
+
end
|
9574
|
+
|
9575
|
+
# @!attribute [rw] request_id
|
9576
|
+
# The Amazon Web Services request ID for this operation.
|
9577
|
+
# @return [String]
|
9578
|
+
#
|
9579
|
+
# @!attribute [rw] status
|
9580
|
+
# The HTTP status of the request.
|
9581
|
+
# @return [Integer]
|
9582
|
+
#
|
9583
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteIdentityPropagationConfigResponse AWS API Documentation
|
9584
|
+
#
|
9585
|
+
class DeleteIdentityPropagationConfigResponse < Struct.new(
|
9586
|
+
:request_id,
|
9587
|
+
:status)
|
9588
|
+
SENSITIVE = []
|
9589
|
+
include Aws::Structure
|
9590
|
+
end
|
9591
|
+
|
9536
9592
|
# @!attribute [rw] aws_account_id
|
9537
9593
|
# The ID for the Amazon Web Services account that you want to delete
|
9538
9594
|
# the Amazon QuickSight namespace from.
|
@@ -16423,6 +16479,21 @@ module Aws::QuickSight
|
|
16423
16479
|
include Aws::Structure
|
16424
16480
|
end
|
16425
16481
|
|
16482
|
+
# The parameters for an IAM Identity Center configuration.
|
16483
|
+
#
|
16484
|
+
# @!attribute [rw] enable_identity_propagation
|
16485
|
+
# A Boolean option that controls whether Trusted Identity Propagation
|
16486
|
+
# should be used.
|
16487
|
+
# @return [Boolean]
|
16488
|
+
#
|
16489
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/IdentityCenterConfiguration AWS API Documentation
|
16490
|
+
#
|
16491
|
+
class IdentityCenterConfiguration < Struct.new(
|
16492
|
+
:enable_identity_propagation)
|
16493
|
+
SENSITIVE = []
|
16494
|
+
include Aws::Structure
|
16495
|
+
end
|
16496
|
+
|
16426
16497
|
# The identity type specified isn't supported. Supported identity types
|
16427
16498
|
# include `IAM` and `QUICKSIGHT`.
|
16428
16499
|
#
|
@@ -18605,6 +18676,59 @@ module Aws::QuickSight
|
|
18605
18676
|
include Aws::Structure
|
18606
18677
|
end
|
18607
18678
|
|
18679
|
+
# @!attribute [rw] aws_account_id
|
18680
|
+
# The ID of the Amazon Web Services account that contain the identity
|
18681
|
+
# propagation configurations of.
|
18682
|
+
# @return [String]
|
18683
|
+
#
|
18684
|
+
# @!attribute [rw] max_results
|
18685
|
+
# The maximum number of results to be returned.
|
18686
|
+
# @return [Integer]
|
18687
|
+
#
|
18688
|
+
# @!attribute [rw] next_token
|
18689
|
+
# The token for the next set of results, or null if there are no more
|
18690
|
+
# results.
|
18691
|
+
# @return [String]
|
18692
|
+
#
|
18693
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListIdentityPropagationConfigsRequest AWS API Documentation
|
18694
|
+
#
|
18695
|
+
class ListIdentityPropagationConfigsRequest < Struct.new(
|
18696
|
+
:aws_account_id,
|
18697
|
+
:max_results,
|
18698
|
+
:next_token)
|
18699
|
+
SENSITIVE = []
|
18700
|
+
include Aws::Structure
|
18701
|
+
end
|
18702
|
+
|
18703
|
+
# @!attribute [rw] services
|
18704
|
+
# A list of services and their authorized targets that the Amazon
|
18705
|
+
# QuickSight IAM Identity Center application can access.
|
18706
|
+
# @return [Array<Types::AuthorizedTargetsByService>]
|
18707
|
+
#
|
18708
|
+
# @!attribute [rw] next_token
|
18709
|
+
# The token for the next set of results, or null if there are no more
|
18710
|
+
# results.
|
18711
|
+
# @return [String]
|
18712
|
+
#
|
18713
|
+
# @!attribute [rw] status
|
18714
|
+
# The HTTP status of the request.
|
18715
|
+
# @return [Integer]
|
18716
|
+
#
|
18717
|
+
# @!attribute [rw] request_id
|
18718
|
+
# The Amazon Web Services request ID for this operation.
|
18719
|
+
# @return [String]
|
18720
|
+
#
|
18721
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListIdentityPropagationConfigsResponse AWS API Documentation
|
18722
|
+
#
|
18723
|
+
class ListIdentityPropagationConfigsResponse < Struct.new(
|
18724
|
+
:services,
|
18725
|
+
:next_token,
|
18726
|
+
:status,
|
18727
|
+
:request_id)
|
18728
|
+
SENSITIVE = []
|
18729
|
+
include Aws::Structure
|
18730
|
+
end
|
18731
|
+
|
18608
18732
|
# @!attribute [rw] data_set_id
|
18609
18733
|
# The ID of the dataset used in the ingestion.
|
18610
18734
|
# @return [String]
|
@@ -22596,6 +22720,14 @@ module Aws::QuickSight
|
|
22596
22720
|
# [1]: https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DataSourceCredentials.html
|
22597
22721
|
# @return [Types::RedshiftIAMParameters]
|
22598
22722
|
#
|
22723
|
+
# @!attribute [rw] identity_center_configuration
|
22724
|
+
# An optional parameter that configures IAM Identity Center
|
22725
|
+
# authentication to grant Amazon QuickSight access to your cluster.
|
22726
|
+
#
|
22727
|
+
# This parameter can only be specified if your Amazon QuickSight
|
22728
|
+
# account is configured with IAM Identity Center.
|
22729
|
+
# @return [Types::IdentityCenterConfiguration]
|
22730
|
+
#
|
22599
22731
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RedshiftParameters AWS API Documentation
|
22600
22732
|
#
|
22601
22733
|
class RedshiftParameters < Struct.new(
|
@@ -22603,7 +22735,8 @@ module Aws::QuickSight
|
|
22603
22735
|
:port,
|
22604
22736
|
:database,
|
22605
22737
|
:cluster_id,
|
22606
|
-
:iam_parameters
|
22738
|
+
:iam_parameters,
|
22739
|
+
:identity_center_configuration)
|
22607
22740
|
SENSITIVE = []
|
22608
22741
|
include Aws::Structure
|
22609
22742
|
end
|
@@ -30829,6 +30962,48 @@ module Aws::QuickSight
|
|
30829
30962
|
include Aws::Structure
|
30830
30963
|
end
|
30831
30964
|
|
30965
|
+
# @!attribute [rw] aws_account_id
|
30966
|
+
# The ID of the Amazon Web Services account that contains the identity
|
30967
|
+
# propagation configuration that you want to update.
|
30968
|
+
# @return [String]
|
30969
|
+
#
|
30970
|
+
# @!attribute [rw] service
|
30971
|
+
# The name of the Amazon Web Services service that contains the
|
30972
|
+
# authorized targets that you want to add or update.
|
30973
|
+
# @return [String]
|
30974
|
+
#
|
30975
|
+
# @!attribute [rw] authorized_targets
|
30976
|
+
# Specifies a list of application ARNs that represent the authorized
|
30977
|
+
# targets for a service.
|
30978
|
+
# @return [Array<String>]
|
30979
|
+
#
|
30980
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateIdentityPropagationConfigRequest AWS API Documentation
|
30981
|
+
#
|
30982
|
+
class UpdateIdentityPropagationConfigRequest < Struct.new(
|
30983
|
+
:aws_account_id,
|
30984
|
+
:service,
|
30985
|
+
:authorized_targets)
|
30986
|
+
SENSITIVE = []
|
30987
|
+
include Aws::Structure
|
30988
|
+
end
|
30989
|
+
|
30990
|
+
# @!attribute [rw] request_id
|
30991
|
+
# The Amazon Web Services request ID for this operation.
|
30992
|
+
# @return [String]
|
30993
|
+
#
|
30994
|
+
# @!attribute [rw] status
|
30995
|
+
# The HTTP status of the request.
|
30996
|
+
# @return [Integer]
|
30997
|
+
#
|
30998
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateIdentityPropagationConfigResponse AWS API Documentation
|
30999
|
+
#
|
31000
|
+
class UpdateIdentityPropagationConfigResponse < Struct.new(
|
31001
|
+
:request_id,
|
31002
|
+
:status)
|
31003
|
+
SENSITIVE = []
|
31004
|
+
include Aws::Structure
|
31005
|
+
end
|
31006
|
+
|
30832
31007
|
# @!attribute [rw] aws_account_id
|
30833
31008
|
# The ID of the Amazon Web Services account that contains the IP
|
30834
31009
|
# rules.
|
data/lib/aws-sdk-quicksight.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-quicksight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.98.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.188.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.188.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,7 +80,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
80
80
|
requirements:
|
81
81
|
- - ">="
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version: '2.
|
83
|
+
version: '2.5'
|
84
84
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
85
|
requirements:
|
86
86
|
- - ">="
|