aws-sdk-quicksight 1.62.0 → 1.65.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 75538650adcbc68a5491cfff5149522686273d67ed816d42ee38fcd3fee4ea91
4
- data.tar.gz: 1f988505ac9cee650c095cbbe42d34f006ffec53d914dd06c7b30bee2df70386
3
+ metadata.gz: 0b81f5694dc0a7869f05dd7d296d6cca3717cb9a848afa9f0e11497ddac06359
4
+ data.tar.gz: f49125ab632487a552682c98770e7c07401e852e612ca4c939820a45f0ba61f9
5
5
  SHA512:
6
- metadata.gz: 19157ed7f049478c993efca51cdfd3a9106f85458aeba95fb6c2ca131363894761357743f3d8d3ad0ea1bb90d82202276a9d19e870dbcb99f8ee4df79090e10e
7
- data.tar.gz: 35aceaff9e536b4d151f15510861ae47544d1206e160d334c9ba0e64c2543381b5dd14455e8dfa21666185cad64cca0c79c991177bc13d6e3c5875bac5c51aca
6
+ metadata.gz: a6adc2474ef542cc7ee0d708cafa3d78765a6c6d8954904f343c445640c81e8d9d4adf643167b0107c61c512c84b1590d2baf63a18a0baf4b02eec73e98f7c7f
7
+ data.tar.gz: e44c55e1b84c01444bb760cc4eef91bec8a898bddb635c6c46bf4aadd3e9146917fded07ca2beaa9a96904fa10e226a750765ffbff6653476dba03e54663a6de
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.65.0 (2022-05-18)
5
+ ------------------
6
+
7
+ * Feature - API UpdatePublicSharingSettings enables IAM admins to enable/disable account level setting for public access of dashboards. When enabled, owners/co-owners for dashboards can enable public access on their dashboards. These dashboards can only be accessed through share link or embedding.
8
+
9
+ 1.64.0 (2022-03-21)
10
+ ------------------
11
+
12
+ * Feature - AWS QuickSight Service Features - Expand public API support for group management.
13
+
14
+ 1.63.0 (2022-02-24)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.62.0 (2022-02-03)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.65.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
31
32
  require 'aws-sdk-core/plugins/recursion_detection.rb'
32
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
@@ -75,6 +76,7 @@ module Aws::QuickSight
75
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
76
77
  add_plugin(Aws::Plugins::TransferEncoding)
77
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
78
80
  add_plugin(Aws::Plugins::DefaultsMode)
79
81
  add_plugin(Aws::Plugins::RecursionDetection)
80
82
  add_plugin(Aws::Plugins::SignatureV4)
@@ -1465,7 +1467,7 @@ module Aws::QuickSight
1465
1467
  # Creates an Amazon QuickSight group.
1466
1468
  #
1467
1469
  # The permissions resource is
1468
- # `arn:aws:quicksight:us-east-1:<relevant-aws-account-id>:group/default/<group-name>
1470
+ # `arn:aws:quicksight:<your-region>:<relevant-aws-account-id>:group/default/<group-name>
1469
1471
  # `.
1470
1472
  #
1471
1473
  # The response is a group object.
@@ -1482,7 +1484,7 @@ module Aws::QuickSight
1482
1484
  # contains your Amazon QuickSight account.
1483
1485
  #
1484
1486
  # @option params [required, String] :namespace
1485
- # The namespace. Currently, you should set this to `default`.
1487
+ # The namespace that you want the group to be a part of.
1486
1488
  #
1487
1489
  # @return [Types::CreateGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1488
1490
  #
@@ -1531,7 +1533,7 @@ module Aws::QuickSight
1531
1533
  # contains your Amazon QuickSight account.
1532
1534
  #
1533
1535
  # @option params [required, String] :namespace
1534
- # The namespace. Currently, you should set this to `default`.
1536
+ # The namespace that you want the user to be a part of.
1535
1537
  #
1536
1538
  # @return [Types::CreateGroupMembershipResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1537
1539
  #
@@ -2450,7 +2452,7 @@ module Aws::QuickSight
2450
2452
  # contains your Amazon QuickSight account.
2451
2453
  #
2452
2454
  # @option params [required, String] :namespace
2453
- # The namespace. Currently, you should set this to `default`.
2455
+ # The namespace of the group that you want to delete.
2454
2456
  #
2455
2457
  # @return [Types::DeleteGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2456
2458
  #
@@ -2495,7 +2497,7 @@ module Aws::QuickSight
2495
2497
  # contains your Amazon QuickSight account.
2496
2498
  #
2497
2499
  # @option params [required, String] :namespace
2498
- # The namespace. Currently, you should set this to `default`.
2500
+ # The namespace of the group that you want to remove a user from.
2499
2501
  #
2500
2502
  # @return [Types::DeleteGroupMembershipResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2501
2503
  #
@@ -3013,6 +3015,7 @@ module Aws::QuickSight
3013
3015
  # resp.account_settings.edition #=> String, one of "STANDARD", "ENTERPRISE"
3014
3016
  # resp.account_settings.default_namespace #=> String
3015
3017
  # resp.account_settings.notification_email #=> String
3018
+ # resp.account_settings.public_sharing_enabled #=> Boolean
3016
3019
  # resp.request_id #=> String
3017
3020
  # resp.status #=> Integer
3018
3021
  #
@@ -3749,7 +3752,7 @@ module Aws::QuickSight
3749
3752
  # contains your Amazon QuickSight account.
3750
3753
  #
3751
3754
  # @option params [required, String] :namespace
3752
- # The namespace. Currently, you should set this to `default`.
3755
+ # The namespace of the group that you want described.
3753
3756
  #
3754
3757
  # @return [Types::DescribeGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3755
3758
  #
@@ -3783,6 +3786,55 @@ module Aws::QuickSight
3783
3786
  req.send_request(options)
3784
3787
  end
3785
3788
 
3789
+ # Use the `DescribeGroupMembership` operation to determine if a user is
3790
+ # a member of the specified group. If the user exists and is a member of
3791
+ # the specified group, an associated `GroupMember` object is returned.
3792
+ #
3793
+ # @option params [required, String] :member_name
3794
+ # The user name of the user that you want to search for.
3795
+ #
3796
+ # @option params [required, String] :group_name
3797
+ # The name of the group that you want to search.
3798
+ #
3799
+ # @option params [required, String] :aws_account_id
3800
+ # The ID for the Amazon Web Services account that the group is in.
3801
+ # Currently, you use the ID for the Amazon Web Services account that
3802
+ # contains your Amazon QuickSight account.
3803
+ #
3804
+ # @option params [required, String] :namespace
3805
+ # The namespace that includes the group you are searching within.
3806
+ #
3807
+ # @return [Types::DescribeGroupMembershipResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3808
+ #
3809
+ # * {Types::DescribeGroupMembershipResponse#group_member #group_member} => Types::GroupMember
3810
+ # * {Types::DescribeGroupMembershipResponse#request_id #request_id} => String
3811
+ # * {Types::DescribeGroupMembershipResponse#status #status} => Integer
3812
+ #
3813
+ # @example Request syntax with placeholder values
3814
+ #
3815
+ # resp = client.describe_group_membership({
3816
+ # member_name: "GroupMemberName", # required
3817
+ # group_name: "GroupName", # required
3818
+ # aws_account_id: "AwsAccountId", # required
3819
+ # namespace: "Namespace", # required
3820
+ # })
3821
+ #
3822
+ # @example Response structure
3823
+ #
3824
+ # resp.group_member.arn #=> String
3825
+ # resp.group_member.member_name #=> String
3826
+ # resp.request_id #=> String
3827
+ # resp.status #=> Integer
3828
+ #
3829
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeGroupMembership AWS API Documentation
3830
+ #
3831
+ # @overload describe_group_membership(params = {})
3832
+ # @param [Hash] params ({})
3833
+ def describe_group_membership(params = {}, options = {})
3834
+ req = build_request(:describe_group_membership, params)
3835
+ req.send_request(options)
3836
+ end
3837
+
3786
3838
  # Describes an existing IAM policy assignment, as specified by the
3787
3839
  # assignment name.
3788
3840
  #
@@ -4377,8 +4429,8 @@ module Aws::QuickSight
4377
4429
  # session lifetime that can be customized using the `
4378
4430
  # SessionLifetimeInMinutes ` parameter.
4379
4431
  #
4380
- # The resulting user session is valid for 15 minutes (default) to 10
4381
- # hours (maximum).
4432
+ # The resulting user session is valid for 15 minutes (minimum) to 10
4433
+ # hours (maximum). The default session duration is 10 hours.
4382
4434
  #
4383
4435
  # * You are charged only when the URL is used or there is interaction
4384
4436
  # with Amazon QuickSight.
@@ -4427,7 +4479,8 @@ module Aws::QuickSight
4427
4479
  # user is authorized to access during the lifetime of the session. If
4428
4480
  # you choose `Dashboard` embedding experience, pass the list of
4429
4481
  # dashboard ARNs in the account that you want the user to be able to
4430
- # view.
4482
+ # view. Currently, you can pass up to 25 dashboard ARNs in each API
4483
+ # call.
4431
4484
  #
4432
4485
  # @option params [required, Types::AnonymousUserEmbeddingExperienceConfiguration] :experience_configuration
4433
4486
  # The configuration of the experience you are embedding.
@@ -4489,8 +4542,8 @@ module Aws::QuickSight
4489
4542
  # session lifetime that can be customized using the `
4490
4543
  # SessionLifetimeInMinutes ` parameter.
4491
4544
  #
4492
- # The resulting user session is valid for 15 minutes (default) to 10
4493
- # hours (maximum).
4545
+ # The resulting user session is valid for 15 minutes (minimum) to 10
4546
+ # hours (maximum). The default session duration is 10 hours.
4494
4547
  #
4495
4548
  # * You are charged only when the URL is used or there is interaction
4496
4549
  # with Amazon QuickSight.
@@ -5281,7 +5334,7 @@ module Aws::QuickSight
5281
5334
  # contains your Amazon QuickSight account.
5282
5335
  #
5283
5336
  # @option params [required, String] :namespace
5284
- # The namespace. Currently, you should set this to `default`.
5337
+ # The namespace of the group that you want a list of users from.
5285
5338
  #
5286
5339
  # @return [Types::ListGroupMembershipsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5287
5340
  #
@@ -5332,7 +5385,7 @@ module Aws::QuickSight
5332
5385
  # The maximum number of results to return.
5333
5386
  #
5334
5387
  # @option params [required, String] :namespace
5335
- # The namespace. Currently, you should set this to `default`.
5388
+ # The namespace that you want a list of groups from.
5336
5389
  #
5337
5390
  # @return [Types::ListGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5338
5391
  #
@@ -6164,7 +6217,7 @@ module Aws::QuickSight
6164
6217
  # restrictions. Currently, you need to create the profile names for
6165
6218
  # custom permission sets by using the Amazon QuickSight console. Then,
6166
6219
  # you use the `RegisterUser` API operation to assign the named set of
6167
- # permissions to a QuickSight user.
6220
+ # permissions to a Amazon QuickSight user.
6168
6221
  #
6169
6222
  # Amazon QuickSight custom permissions are applied through IAM policies.
6170
6223
  # Therefore, they override the permissions typically granted by
@@ -6487,6 +6540,70 @@ module Aws::QuickSight
6487
6540
  req.send_request(options)
6488
6541
  end
6489
6542
 
6543
+ # Use the `SearchGroups` operation to search groups in a specified
6544
+ # Amazon QuickSight namespace using the supplied filters.
6545
+ #
6546
+ # @option params [required, String] :aws_account_id
6547
+ # The ID for the Amazon Web Services account that the group is in.
6548
+ # Currently, you use the ID for the Amazon Web Services account that
6549
+ # contains your Amazon QuickSight account.
6550
+ #
6551
+ # @option params [String] :next_token
6552
+ # A pagination token that can be used in a subsequent request.
6553
+ #
6554
+ # @option params [Integer] :max_results
6555
+ # The maximum number of results to return from this request.
6556
+ #
6557
+ # @option params [required, String] :namespace
6558
+ # The namespace that you want to search.
6559
+ #
6560
+ # @option params [required, Array<Types::GroupSearchFilter>] :filters
6561
+ # The structure for the search filters that you want to apply to your
6562
+ # search.
6563
+ #
6564
+ # @return [Types::SearchGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6565
+ #
6566
+ # * {Types::SearchGroupsResponse#group_list #group_list} => Array&lt;Types::Group&gt;
6567
+ # * {Types::SearchGroupsResponse#next_token #next_token} => String
6568
+ # * {Types::SearchGroupsResponse#request_id #request_id} => String
6569
+ # * {Types::SearchGroupsResponse#status #status} => Integer
6570
+ #
6571
+ # @example Request syntax with placeholder values
6572
+ #
6573
+ # resp = client.search_groups({
6574
+ # aws_account_id: "AwsAccountId", # required
6575
+ # next_token: "String",
6576
+ # max_results: 1,
6577
+ # namespace: "Namespace", # required
6578
+ # filters: [ # required
6579
+ # {
6580
+ # operator: "StartsWith", # required, accepts StartsWith
6581
+ # name: "GROUP_NAME", # required, accepts GROUP_NAME
6582
+ # value: "String", # required
6583
+ # },
6584
+ # ],
6585
+ # })
6586
+ #
6587
+ # @example Response structure
6588
+ #
6589
+ # resp.group_list #=> Array
6590
+ # resp.group_list[0].arn #=> String
6591
+ # resp.group_list[0].group_name #=> String
6592
+ # resp.group_list[0].description #=> String
6593
+ # resp.group_list[0].principal_id #=> String
6594
+ # resp.next_token #=> String
6595
+ # resp.request_id #=> String
6596
+ # resp.status #=> Integer
6597
+ #
6598
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchGroups AWS API Documentation
6599
+ #
6600
+ # @overload search_groups(params = {})
6601
+ # @param [Hash] params ({})
6602
+ def search_groups(params = {}, options = {})
6603
+ req = build_request(:search_groups, params)
6604
+ req.send_request(options)
6605
+ end
6606
+
6490
6607
  # Assigns one or more tags (key-value pairs) to the specified Amazon
6491
6608
  # QuickSight resource.
6492
6609
  #
@@ -7885,7 +8002,7 @@ module Aws::QuickSight
7885
8002
  # contains your Amazon QuickSight account.
7886
8003
  #
7887
8004
  # @option params [required, String] :namespace
7888
- # The namespace. Currently, you should set this to `default`.
8005
+ # The namespace of the group that you want to update.
7889
8006
  #
7890
8007
  # @return [Types::UpdateGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7891
8008
  #
@@ -8044,6 +8161,55 @@ module Aws::QuickSight
8044
8161
  req.send_request(options)
8045
8162
  end
8046
8163
 
8164
+ # Use the UpdatePublicSharingSettings operation to enable or disable the
8165
+ # public sharing settings of an Amazon QuickSight dashboard.
8166
+ #
8167
+ # To use this operation, enable session capacity pricing on your Amazon
8168
+ # QuickSight account.
8169
+ #
8170
+ # Before you can enable public sharing on your account, you need to
8171
+ # allow public sharing permissions to an administrative user in the IAM
8172
+ # console. For more information on using IAM with Amazon QuickSight, see
8173
+ # [Using Amazon QuickSight with IAM][1].
8174
+ #
8175
+ #
8176
+ #
8177
+ # [1]: https://docs.aws.amazon.com/quicksight/latest/user/security_iam_service-with-iam.html
8178
+ #
8179
+ # @option params [required, String] :aws_account_id
8180
+ # The Amazon Web Services account ID associated with your Amazon
8181
+ # QuickSight subscription.
8182
+ #
8183
+ # @option params [Boolean] :public_sharing_enabled
8184
+ # A boolean that indicates whether or not public sharing is enabled on a
8185
+ # Amazon QuickSight account.
8186
+ #
8187
+ # @return [Types::UpdatePublicSharingSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8188
+ #
8189
+ # * {Types::UpdatePublicSharingSettingsResponse#request_id #request_id} => String
8190
+ # * {Types::UpdatePublicSharingSettingsResponse#status #status} => Integer
8191
+ #
8192
+ # @example Request syntax with placeholder values
8193
+ #
8194
+ # resp = client.update_public_sharing_settings({
8195
+ # aws_account_id: "AwsAccountId", # required
8196
+ # public_sharing_enabled: false,
8197
+ # })
8198
+ #
8199
+ # @example Response structure
8200
+ #
8201
+ # resp.request_id #=> String
8202
+ # resp.status #=> Integer
8203
+ #
8204
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdatePublicSharingSettings AWS API Documentation
8205
+ #
8206
+ # @overload update_public_sharing_settings(params = {})
8207
+ # @param [Hash] params ({})
8208
+ def update_public_sharing_settings(params = {}, options = {})
8209
+ req = build_request(:update_public_sharing_settings, params)
8210
+ req.send_request(options)
8211
+ end
8212
+
8047
8213
  # Updates a template from an existing Amazon QuickSight analysis or
8048
8214
  # another template.
8049
8215
  #
@@ -8542,7 +8708,7 @@ module Aws::QuickSight
8542
8708
  # restrictions. Currently, you need to create the profile names for
8543
8709
  # custom permission sets by using the Amazon QuickSight console. Then,
8544
8710
  # you use the `RegisterUser` API operation to assign the named set of
8545
- # permissions to a QuickSight user.
8711
+ # permissions to a Amazon QuickSight user.
8546
8712
  #
8547
8713
  # Amazon QuickSight custom permissions are applied through IAM policies.
8548
8714
  # Therefore, they override the permissions typically granted by
@@ -8647,7 +8813,7 @@ module Aws::QuickSight
8647
8813
  params: params,
8648
8814
  config: config)
8649
8815
  context[:gem_name] = 'aws-sdk-quicksight'
8650
- context[:gem_version] = '1.62.0'
8816
+ context[:gem_version] = '1.65.0'
8651
8817
  Seahorse::Client::Request.new(handlers, context)
8652
8818
  end
8653
8819
 
@@ -224,6 +224,8 @@ module Aws::QuickSight
224
224
  DescribeFolderResolvedPermissionsRequest = Shapes::StructureShape.new(name: 'DescribeFolderResolvedPermissionsRequest')
225
225
  DescribeFolderResolvedPermissionsResponse = Shapes::StructureShape.new(name: 'DescribeFolderResolvedPermissionsResponse')
226
226
  DescribeFolderResponse = Shapes::StructureShape.new(name: 'DescribeFolderResponse')
227
+ DescribeGroupMembershipRequest = Shapes::StructureShape.new(name: 'DescribeGroupMembershipRequest')
228
+ DescribeGroupMembershipResponse = Shapes::StructureShape.new(name: 'DescribeGroupMembershipResponse')
227
229
  DescribeGroupRequest = Shapes::StructureShape.new(name: 'DescribeGroupRequest')
228
230
  DescribeGroupResponse = Shapes::StructureShape.new(name: 'DescribeGroupResponse')
229
231
  DescribeIAMPolicyAssignmentRequest = Shapes::StructureShape.new(name: 'DescribeIAMPolicyAssignmentRequest')
@@ -293,11 +295,15 @@ module Aws::QuickSight
293
295
  GetSessionEmbedUrlResponse = Shapes::StructureShape.new(name: 'GetSessionEmbedUrlResponse')
294
296
  Group = Shapes::StructureShape.new(name: 'Group')
295
297
  GroupDescription = Shapes::StringShape.new(name: 'GroupDescription')
298
+ GroupFilterAttribute = Shapes::StringShape.new(name: 'GroupFilterAttribute')
299
+ GroupFilterOperator = Shapes::StringShape.new(name: 'GroupFilterOperator')
296
300
  GroupList = Shapes::ListShape.new(name: 'GroupList')
297
301
  GroupMember = Shapes::StructureShape.new(name: 'GroupMember')
298
302
  GroupMemberList = Shapes::ListShape.new(name: 'GroupMemberList')
299
303
  GroupMemberName = Shapes::StringShape.new(name: 'GroupMemberName')
300
304
  GroupName = Shapes::StringShape.new(name: 'GroupName')
305
+ GroupSearchFilter = Shapes::StructureShape.new(name: 'GroupSearchFilter')
306
+ GroupSearchFilterList = Shapes::ListShape.new(name: 'GroupSearchFilterList')
301
307
  GutterStyle = Shapes::StructureShape.new(name: 'GutterStyle')
302
308
  HexColor = Shapes::StringShape.new(name: 'HexColor')
303
309
  Host = Shapes::StringShape.new(name: 'Host')
@@ -471,6 +477,8 @@ module Aws::QuickSight
471
477
  SearchDashboardsResponse = Shapes::StructureShape.new(name: 'SearchDashboardsResponse')
472
478
  SearchFoldersRequest = Shapes::StructureShape.new(name: 'SearchFoldersRequest')
473
479
  SearchFoldersResponse = Shapes::StructureShape.new(name: 'SearchFoldersResponse')
480
+ SearchGroupsRequest = Shapes::StructureShape.new(name: 'SearchGroupsRequest')
481
+ SearchGroupsResponse = Shapes::StructureShape.new(name: 'SearchGroupsResponse')
474
482
  ServiceNowParameters = Shapes::StructureShape.new(name: 'ServiceNowParameters')
475
483
  SessionLifetimeInMinutes = Shapes::IntegerShape.new(name: 'SessionLifetimeInMinutes')
476
484
  SessionLifetimeInMinutesInvalidException = Shapes::StructureShape.new(name: 'SessionLifetimeInMinutesInvalidException')
@@ -581,6 +589,8 @@ module Aws::QuickSight
581
589
  UpdateIpRestrictionRequest = Shapes::StructureShape.new(name: 'UpdateIpRestrictionRequest')
582
590
  UpdateIpRestrictionResponse = Shapes::StructureShape.new(name: 'UpdateIpRestrictionResponse')
583
591
  UpdateLinkPermissionList = Shapes::ListShape.new(name: 'UpdateLinkPermissionList')
592
+ UpdatePublicSharingSettingsRequest = Shapes::StructureShape.new(name: 'UpdatePublicSharingSettingsRequest')
593
+ UpdatePublicSharingSettingsResponse = Shapes::StructureShape.new(name: 'UpdatePublicSharingSettingsResponse')
584
594
  UpdateResourcePermissionList = Shapes::ListShape.new(name: 'UpdateResourcePermissionList')
585
595
  UpdateTemplateAliasRequest = Shapes::StructureShape.new(name: 'UpdateTemplateAliasRequest')
586
596
  UpdateTemplateAliasResponse = Shapes::StructureShape.new(name: 'UpdateTemplateAliasResponse')
@@ -621,6 +631,7 @@ module Aws::QuickSight
621
631
  AccountSettings.add_member(:edition, Shapes::ShapeRef.new(shape: Edition, location_name: "Edition"))
622
632
  AccountSettings.add_member(:default_namespace, Shapes::ShapeRef.new(shape: Namespace, location_name: "DefaultNamespace"))
623
633
  AccountSettings.add_member(:notification_email, Shapes::ShapeRef.new(shape: String, location_name: "NotificationEmail"))
634
+ AccountSettings.add_member(:public_sharing_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PublicSharingEnabled"))
624
635
  AccountSettings.struct_class = Types::AccountSettings
625
636
 
626
637
  ActionList.member = Shapes::ShapeRef.new(shape: String)
@@ -1541,6 +1552,17 @@ module Aws::QuickSight
1541
1552
  DescribeFolderResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
1542
1553
  DescribeFolderResponse.struct_class = Types::DescribeFolderResponse
1543
1554
 
1555
+ DescribeGroupMembershipRequest.add_member(:member_name, Shapes::ShapeRef.new(shape: GroupMemberName, required: true, location: "uri", location_name: "MemberName"))
1556
+ DescribeGroupMembershipRequest.add_member(:group_name, Shapes::ShapeRef.new(shape: GroupName, required: true, location: "uri", location_name: "GroupName"))
1557
+ DescribeGroupMembershipRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
1558
+ DescribeGroupMembershipRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, required: true, location: "uri", location_name: "Namespace"))
1559
+ DescribeGroupMembershipRequest.struct_class = Types::DescribeGroupMembershipRequest
1560
+
1561
+ DescribeGroupMembershipResponse.add_member(:group_member, Shapes::ShapeRef.new(shape: GroupMember, location_name: "GroupMember"))
1562
+ DescribeGroupMembershipResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
1563
+ DescribeGroupMembershipResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
1564
+ DescribeGroupMembershipResponse.struct_class = Types::DescribeGroupMembershipResponse
1565
+
1544
1566
  DescribeGroupRequest.add_member(:group_name, Shapes::ShapeRef.new(shape: GroupName, required: true, location: "uri", location_name: "GroupName"))
1545
1567
  DescribeGroupRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
1546
1568
  DescribeGroupRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, required: true, location: "uri", location_name: "Namespace"))
@@ -1796,6 +1818,13 @@ module Aws::QuickSight
1796
1818
 
1797
1819
  GroupMemberList.member = Shapes::ShapeRef.new(shape: GroupMember)
1798
1820
 
1821
+ GroupSearchFilter.add_member(:operator, Shapes::ShapeRef.new(shape: GroupFilterOperator, required: true, location_name: "Operator"))
1822
+ GroupSearchFilter.add_member(:name, Shapes::ShapeRef.new(shape: GroupFilterAttribute, required: true, location_name: "Name"))
1823
+ GroupSearchFilter.add_member(:value, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Value"))
1824
+ GroupSearchFilter.struct_class = Types::GroupSearchFilter
1825
+
1826
+ GroupSearchFilterList.member = Shapes::ShapeRef.new(shape: GroupSearchFilter)
1827
+
1799
1828
  GutterStyle.add_member(:show, Shapes::ShapeRef.new(shape: boolean, location_name: "Show", metadata: {"box"=>true}))
1800
1829
  GutterStyle.struct_class = Types::GutterStyle
1801
1830
 
@@ -2404,6 +2433,19 @@ module Aws::QuickSight
2404
2433
  SearchFoldersResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
2405
2434
  SearchFoldersResponse.struct_class = Types::SearchFoldersResponse
2406
2435
 
2436
+ SearchGroupsRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
2437
+ SearchGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next-token"))
2438
+ SearchGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "max-results", metadata: {"box"=>true}))
2439
+ SearchGroupsRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, required: true, location: "uri", location_name: "Namespace"))
2440
+ SearchGroupsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: GroupSearchFilterList, required: true, location_name: "Filters"))
2441
+ SearchGroupsRequest.struct_class = Types::SearchGroupsRequest
2442
+
2443
+ SearchGroupsResponse.add_member(:group_list, Shapes::ShapeRef.new(shape: GroupList, location_name: "GroupList"))
2444
+ SearchGroupsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
2445
+ SearchGroupsResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
2446
+ SearchGroupsResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
2447
+ SearchGroupsResponse.struct_class = Types::SearchGroupsResponse
2448
+
2407
2449
  ServiceNowParameters.add_member(:site_base_url, Shapes::ShapeRef.new(shape: SiteBaseUrl, required: true, location_name: "SiteBaseUrl"))
2408
2450
  ServiceNowParameters.struct_class = Types::ServiceNowParameters
2409
2451
 
@@ -2885,6 +2927,14 @@ module Aws::QuickSight
2885
2927
 
2886
2928
  UpdateLinkPermissionList.member = Shapes::ShapeRef.new(shape: ResourcePermission)
2887
2929
 
2930
+ UpdatePublicSharingSettingsRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
2931
+ UpdatePublicSharingSettingsRequest.add_member(:public_sharing_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PublicSharingEnabled"))
2932
+ UpdatePublicSharingSettingsRequest.struct_class = Types::UpdatePublicSharingSettingsRequest
2933
+
2934
+ UpdatePublicSharingSettingsResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
2935
+ UpdatePublicSharingSettingsResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
2936
+ UpdatePublicSharingSettingsResponse.struct_class = Types::UpdatePublicSharingSettingsResponse
2937
+
2888
2938
  UpdateResourcePermissionList.member = Shapes::ShapeRef.new(shape: ResourcePermission)
2889
2939
 
2890
2940
  UpdateTemplateAliasRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
@@ -3733,6 +3783,21 @@ module Aws::QuickSight
3733
3783
  o.errors << Shapes::ShapeRef.new(shape: ResourceUnavailableException)
3734
3784
  end)
3735
3785
 
3786
+ api.add_operation(:describe_group_membership, Seahorse::Model::Operation.new.tap do |o|
3787
+ o.name = "DescribeGroupMembership"
3788
+ o.http_method = "GET"
3789
+ o.http_request_uri = "/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}/members/{MemberName}"
3790
+ o.input = Shapes::ShapeRef.new(shape: DescribeGroupMembershipRequest)
3791
+ o.output = Shapes::ShapeRef.new(shape: DescribeGroupMembershipResponse)
3792
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
3793
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
3794
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3795
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3796
+ o.errors << Shapes::ShapeRef.new(shape: PreconditionNotMetException)
3797
+ o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
3798
+ o.errors << Shapes::ShapeRef.new(shape: ResourceUnavailableException)
3799
+ end)
3800
+
3736
3801
  api.add_operation(:describe_iam_policy_assignment, Seahorse::Model::Operation.new.tap do |o|
3737
3802
  o.name = "DescribeIAMPolicyAssignment"
3738
3803
  o.http_method = "GET"
@@ -4432,6 +4497,22 @@ module Aws::QuickSight
4432
4497
  o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
4433
4498
  end)
4434
4499
 
4500
+ api.add_operation(:search_groups, Seahorse::Model::Operation.new.tap do |o|
4501
+ o.name = "SearchGroups"
4502
+ o.http_method = "POST"
4503
+ o.http_request_uri = "/accounts/{AwsAccountId}/namespaces/{Namespace}/groups-search"
4504
+ o.input = Shapes::ShapeRef.new(shape: SearchGroupsRequest)
4505
+ o.output = Shapes::ShapeRef.new(shape: SearchGroupsResponse)
4506
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
4507
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
4508
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
4509
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
4510
+ o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
4511
+ o.errors << Shapes::ShapeRef.new(shape: PreconditionNotMetException)
4512
+ o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
4513
+ o.errors << Shapes::ShapeRef.new(shape: ResourceUnavailableException)
4514
+ end)
4515
+
4435
4516
  api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
4436
4517
  o.name = "TagResource"
4437
4518
  o.http_method = "POST"
@@ -4693,6 +4774,20 @@ module Aws::QuickSight
4693
4774
  o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
4694
4775
  end)
4695
4776
 
4777
+ api.add_operation(:update_public_sharing_settings, Seahorse::Model::Operation.new.tap do |o|
4778
+ o.name = "UpdatePublicSharingSettings"
4779
+ o.http_method = "PUT"
4780
+ o.http_request_uri = "/accounts/{AwsAccountId}/public-sharing-settings"
4781
+ o.input = Shapes::ShapeRef.new(shape: UpdatePublicSharingSettingsRequest)
4782
+ o.output = Shapes::ShapeRef.new(shape: UpdatePublicSharingSettingsResponse)
4783
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
4784
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
4785
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
4786
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
4787
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedPricingPlanException)
4788
+ o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
4789
+ end)
4790
+
4696
4791
  api.add_operation(:update_template, Seahorse::Model::Operation.new.tap do |o|
4697
4792
  o.name = "UpdateTemplate"
4698
4793
  o.http_method = "PUT"
@@ -85,13 +85,24 @@ module Aws::QuickSight
85
85
  # The main notification email for your Amazon QuickSight subscription.
86
86
  # @return [String]
87
87
  #
88
+ # @!attribute [rw] public_sharing_enabled
89
+ # A boolean that indicates whether or not public sharing is enabled on
90
+ # an Amazon QuickSight account. For more information about enabling
91
+ # public sharing, see [UpdatePublicSharingSettings][1].
92
+ #
93
+ #
94
+ #
95
+ # [1]: https://docs.aws.amazon.com/quicksight/latest/APIReference/API_UpdatePublicSharingSettings.html
96
+ # @return [Boolean]
97
+ #
88
98
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AccountSettings AWS API Documentation
89
99
  #
90
100
  class AccountSettings < Struct.new(
91
101
  :account_name,
92
102
  :edition,
93
103
  :default_namespace,
94
- :notification_email)
104
+ :notification_email,
105
+ :public_sharing_enabled)
95
106
  SENSITIVE = []
96
107
  include Aws::Structure
97
108
  end
@@ -2211,7 +2222,7 @@ module Aws::QuickSight
2211
2222
  # @return [String]
2212
2223
  #
2213
2224
  # @!attribute [rw] namespace
2214
- # The namespace. Currently, you should set this to `default`.
2225
+ # The namespace that you want the user to be a part of.
2215
2226
  # @return [String]
2216
2227
  #
2217
2228
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateGroupMembershipRequest AWS API Documentation
@@ -2274,7 +2285,7 @@ module Aws::QuickSight
2274
2285
  # @return [String]
2275
2286
  #
2276
2287
  # @!attribute [rw] namespace
2277
- # The namespace. Currently, you should set this to `default`.
2288
+ # The namespace that you want the group to be a part of.
2278
2289
  # @return [String]
2279
2290
  #
2280
2291
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateGroupRequest AWS API Documentation
@@ -4768,7 +4779,7 @@ module Aws::QuickSight
4768
4779
  # @return [String]
4769
4780
  #
4770
4781
  # @!attribute [rw] namespace
4771
- # The namespace. Currently, you should set this to `default`.
4782
+ # The namespace of the group that you want to remove a user from.
4772
4783
  # @return [String]
4773
4784
  #
4774
4785
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteGroupMembershipRequest AWS API Documentation
@@ -4819,7 +4830,7 @@ module Aws::QuickSight
4819
4830
  # @return [String]
4820
4831
  #
4821
4832
  # @!attribute [rw] namespace
4822
- # The namespace. Currently, you should set this to `default`.
4833
+ # The namespace of the group that you want to delete.
4823
4834
  # @return [String]
4824
4835
  #
4825
4836
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteGroupRequest AWS API Documentation
@@ -6049,6 +6060,68 @@ module Aws::QuickSight
6049
6060
  include Aws::Structure
6050
6061
  end
6051
6062
 
6063
+ # @note When making an API call, you may pass DescribeGroupMembershipRequest
6064
+ # data as a hash:
6065
+ #
6066
+ # {
6067
+ # member_name: "GroupMemberName", # required
6068
+ # group_name: "GroupName", # required
6069
+ # aws_account_id: "AwsAccountId", # required
6070
+ # namespace: "Namespace", # required
6071
+ # }
6072
+ #
6073
+ # @!attribute [rw] member_name
6074
+ # The user name of the user that you want to search for.
6075
+ # @return [String]
6076
+ #
6077
+ # @!attribute [rw] group_name
6078
+ # The name of the group that you want to search.
6079
+ # @return [String]
6080
+ #
6081
+ # @!attribute [rw] aws_account_id
6082
+ # The ID for the Amazon Web Services account that the group is in.
6083
+ # Currently, you use the ID for the Amazon Web Services account that
6084
+ # contains your Amazon QuickSight account.
6085
+ # @return [String]
6086
+ #
6087
+ # @!attribute [rw] namespace
6088
+ # The namespace that includes the group you are searching within.
6089
+ # @return [String]
6090
+ #
6091
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeGroupMembershipRequest AWS API Documentation
6092
+ #
6093
+ class DescribeGroupMembershipRequest < Struct.new(
6094
+ :member_name,
6095
+ :group_name,
6096
+ :aws_account_id,
6097
+ :namespace)
6098
+ SENSITIVE = []
6099
+ include Aws::Structure
6100
+ end
6101
+
6102
+ # @!attribute [rw] group_member
6103
+ # A member of an Amazon QuickSight group. Currently, group members
6104
+ # must be users. Groups can't be members of another group. .
6105
+ # @return [Types::GroupMember]
6106
+ #
6107
+ # @!attribute [rw] request_id
6108
+ # The Amazon Web Services request ID for this operation.
6109
+ # @return [String]
6110
+ #
6111
+ # @!attribute [rw] status
6112
+ # The HTTP status of the request.
6113
+ # @return [Integer]
6114
+ #
6115
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeGroupMembershipResponse AWS API Documentation
6116
+ #
6117
+ class DescribeGroupMembershipResponse < Struct.new(
6118
+ :group_member,
6119
+ :request_id,
6120
+ :status)
6121
+ SENSITIVE = []
6122
+ include Aws::Structure
6123
+ end
6124
+
6052
6125
  # @note When making an API call, you may pass DescribeGroupRequest
6053
6126
  # data as a hash:
6054
6127
  #
@@ -6069,7 +6142,7 @@ module Aws::QuickSight
6069
6142
  # @return [String]
6070
6143
  #
6071
6144
  # @!attribute [rw] namespace
6072
- # The namespace. Currently, you should set this to `default`.
6145
+ # The namespace of the group that you want described.
6073
6146
  # @return [String]
6074
6147
  #
6075
6148
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeGroupRequest AWS API Documentation
@@ -7066,7 +7139,8 @@ module Aws::QuickSight
7066
7139
  # the user is authorized to access during the lifetime of the session.
7067
7140
  # If you choose `Dashboard` embedding experience, pass the list of
7068
7141
  # dashboard ARNs in the account that you want the user to be able to
7069
- # view.
7142
+ # view. Currently, you can pass up to 25 dashboard ARNs in each API
7143
+ # call.
7070
7144
  # @return [Array<String>]
7071
7145
  #
7072
7146
  # @!attribute [rw] experience_configuration
@@ -7493,6 +7567,44 @@ module Aws::QuickSight
7493
7567
  include Aws::Structure
7494
7568
  end
7495
7569
 
7570
+ # A `GroupSearchFilter` object that you want to apply to your search.
7571
+ #
7572
+ # @note When making an API call, you may pass GroupSearchFilter
7573
+ # data as a hash:
7574
+ #
7575
+ # {
7576
+ # operator: "StartsWith", # required, accepts StartsWith
7577
+ # name: "GROUP_NAME", # required, accepts GROUP_NAME
7578
+ # value: "String", # required
7579
+ # }
7580
+ #
7581
+ # @!attribute [rw] operator
7582
+ # The comparison operator that you want to use as a filter, for
7583
+ # example `"Operator": "StartsWith"`. Currently, the only supported
7584
+ # operator is `StartsWith`.
7585
+ # @return [String]
7586
+ #
7587
+ # @!attribute [rw] name
7588
+ # The name of the value that you want to use as a filter, for example
7589
+ # `"Name": "GROUP_NAME"`. Currently, the only supported name is
7590
+ # `GROUP_NAME`.
7591
+ # @return [String]
7592
+ #
7593
+ # @!attribute [rw] value
7594
+ # The value of the named item, in this case `GROUP_NAME`, that you
7595
+ # want to use as a filter.
7596
+ # @return [String]
7597
+ #
7598
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GroupSearchFilter AWS API Documentation
7599
+ #
7600
+ class GroupSearchFilter < Struct.new(
7601
+ :operator,
7602
+ :name,
7603
+ :value)
7604
+ SENSITIVE = []
7605
+ include Aws::Structure
7606
+ end
7607
+
7496
7608
  # The display options for gutter spacing between tiles on a sheet.
7497
7609
  #
7498
7610
  # @note When making an API call, you may pass GutterStyle
@@ -8371,7 +8483,7 @@ module Aws::QuickSight
8371
8483
  # @return [String]
8372
8484
  #
8373
8485
  # @!attribute [rw] namespace
8374
- # The namespace. Currently, you should set this to `default`.
8486
+ # The namespace of the group that you want a list of users from.
8375
8487
  # @return [String]
8376
8488
  #
8377
8489
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListGroupMembershipsRequest AWS API Documentation
@@ -8438,7 +8550,7 @@ module Aws::QuickSight
8438
8550
  # @return [Integer]
8439
8551
  #
8440
8552
  # @!attribute [rw] namespace
8441
- # The namespace. Currently, you should set this to `default`.
8553
+ # The namespace that you want a list of groups from.
8442
8554
  # @return [String]
8443
8555
  #
8444
8556
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListGroupsRequest AWS API Documentation
@@ -10187,7 +10299,7 @@ module Aws::QuickSight
10187
10299
  # restrictions. Currently, you need to create the profile names for
10188
10300
  # custom permission sets by using the Amazon QuickSight console. Then,
10189
10301
  # you use the `RegisterUser` API operation to assign the named set of
10190
- # permissions to a QuickSight user.
10302
+ # permissions to a Amazon QuickSight user.
10191
10303
  #
10192
10304
  # Amazon QuickSight custom permissions are applied through IAM
10193
10305
  # policies. Therefore, they override the permissions typically granted
@@ -11165,6 +11277,86 @@ module Aws::QuickSight
11165
11277
  include Aws::Structure
11166
11278
  end
11167
11279
 
11280
+ # @note When making an API call, you may pass SearchGroupsRequest
11281
+ # data as a hash:
11282
+ #
11283
+ # {
11284
+ # aws_account_id: "AwsAccountId", # required
11285
+ # next_token: "String",
11286
+ # max_results: 1,
11287
+ # namespace: "Namespace", # required
11288
+ # filters: [ # required
11289
+ # {
11290
+ # operator: "StartsWith", # required, accepts StartsWith
11291
+ # name: "GROUP_NAME", # required, accepts GROUP_NAME
11292
+ # value: "String", # required
11293
+ # },
11294
+ # ],
11295
+ # }
11296
+ #
11297
+ # @!attribute [rw] aws_account_id
11298
+ # The ID for the Amazon Web Services account that the group is in.
11299
+ # Currently, you use the ID for the Amazon Web Services account that
11300
+ # contains your Amazon QuickSight account.
11301
+ # @return [String]
11302
+ #
11303
+ # @!attribute [rw] next_token
11304
+ # A pagination token that can be used in a subsequent request.
11305
+ # @return [String]
11306
+ #
11307
+ # @!attribute [rw] max_results
11308
+ # The maximum number of results to return from this request.
11309
+ # @return [Integer]
11310
+ #
11311
+ # @!attribute [rw] namespace
11312
+ # The namespace that you want to search.
11313
+ # @return [String]
11314
+ #
11315
+ # @!attribute [rw] filters
11316
+ # The structure for the search filters that you want to apply to your
11317
+ # search.
11318
+ # @return [Array<Types::GroupSearchFilter>]
11319
+ #
11320
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchGroupsRequest AWS API Documentation
11321
+ #
11322
+ class SearchGroupsRequest < Struct.new(
11323
+ :aws_account_id,
11324
+ :next_token,
11325
+ :max_results,
11326
+ :namespace,
11327
+ :filters)
11328
+ SENSITIVE = []
11329
+ include Aws::Structure
11330
+ end
11331
+
11332
+ # @!attribute [rw] group_list
11333
+ # A list of groups in a specified namespace that match the filters you
11334
+ # set in your `SearchGroups` request.
11335
+ # @return [Array<Types::Group>]
11336
+ #
11337
+ # @!attribute [rw] next_token
11338
+ # A pagination token that can be used in a subsequent request.
11339
+ # @return [String]
11340
+ #
11341
+ # @!attribute [rw] request_id
11342
+ # The Amazon Web Services request ID for this operation.
11343
+ # @return [String]
11344
+ #
11345
+ # @!attribute [rw] status
11346
+ # The HTTP status of the request.
11347
+ # @return [Integer]
11348
+ #
11349
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchGroupsResponse AWS API Documentation
11350
+ #
11351
+ class SearchGroupsResponse < Struct.new(
11352
+ :group_list,
11353
+ :next_token,
11354
+ :request_id,
11355
+ :status)
11356
+ SENSITIVE = []
11357
+ include Aws::Structure
11358
+ end
11359
+
11168
11360
  # The parameters for ServiceNow.
11169
11361
  #
11170
11362
  # @note When making an API call, you may pass ServiceNowParameters
@@ -14235,7 +14427,7 @@ module Aws::QuickSight
14235
14427
  # @return [String]
14236
14428
  #
14237
14429
  # @!attribute [rw] namespace
14238
- # The namespace. Currently, you should set this to `default`.
14430
+ # The namespace of the group that you want to update.
14239
14431
  # @return [String]
14240
14432
  #
14241
14433
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateGroupRequest AWS API Documentation
@@ -14446,6 +14638,50 @@ module Aws::QuickSight
14446
14638
  include Aws::Structure
14447
14639
  end
14448
14640
 
14641
+ # @note When making an API call, you may pass UpdatePublicSharingSettingsRequest
14642
+ # data as a hash:
14643
+ #
14644
+ # {
14645
+ # aws_account_id: "AwsAccountId", # required
14646
+ # public_sharing_enabled: false,
14647
+ # }
14648
+ #
14649
+ # @!attribute [rw] aws_account_id
14650
+ # The Amazon Web Services account ID associated with your Amazon
14651
+ # QuickSight subscription.
14652
+ # @return [String]
14653
+ #
14654
+ # @!attribute [rw] public_sharing_enabled
14655
+ # A boolean that indicates whether or not public sharing is enabled on
14656
+ # a Amazon QuickSight account.
14657
+ # @return [Boolean]
14658
+ #
14659
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdatePublicSharingSettingsRequest AWS API Documentation
14660
+ #
14661
+ class UpdatePublicSharingSettingsRequest < Struct.new(
14662
+ :aws_account_id,
14663
+ :public_sharing_enabled)
14664
+ SENSITIVE = []
14665
+ include Aws::Structure
14666
+ end
14667
+
14668
+ # @!attribute [rw] request_id
14669
+ # The Amazon Web Services request ID for this operation.
14670
+ # @return [String]
14671
+ #
14672
+ # @!attribute [rw] status
14673
+ # The HTTP status of the request.
14674
+ # @return [Integer]
14675
+ #
14676
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdatePublicSharingSettingsResponse AWS API Documentation
14677
+ #
14678
+ class UpdatePublicSharingSettingsResponse < Struct.new(
14679
+ :request_id,
14680
+ :status)
14681
+ SENSITIVE = []
14682
+ include Aws::Structure
14683
+ end
14684
+
14449
14685
  # @note When making an API call, you may pass UpdateTemplateAliasRequest
14450
14686
  # data as a hash:
14451
14687
  #
@@ -15039,7 +15275,7 @@ module Aws::QuickSight
15039
15275
  # restrictions. Currently, you need to create the profile names for
15040
15276
  # custom permission sets by using the Amazon QuickSight console. Then,
15041
15277
  # you use the `RegisterUser` API operation to assign the named set of
15042
- # permissions to a QuickSight user.
15278
+ # permissions to a Amazon QuickSight user.
15043
15279
  #
15044
15280
  # Amazon QuickSight custom permissions are applied through IAM
15045
15281
  # policies. Therefore, they override the permissions typically granted
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-quicksight/customizations'
48
48
  # @!group service
49
49
  module Aws::QuickSight
50
50
 
51
- GEM_VERSION = '1.62.0'
51
+ GEM_VERSION = '1.65.0'
52
52
 
53
53
  end
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.62.0
4
+ version: 1.65.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: 2022-02-03 00:00:00.000000000 Z
11
+ date: 2022-05-18 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.126.0
22
+ version: 3.127.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.126.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement