aws-sdk-quicksight 1.195.0 → 1.196.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: 544715d999b92a8e5efb254b7a41272474d8a40b76d66836b4201fc56ab61a5d
4
- data.tar.gz: 0b57e4afb8df599d5ad899e8aa788e1f4cd836de5a141fb928250962e30ef264
3
+ metadata.gz: 4087c54795f69ccaf3186ac1c584d041ee392dfa1b96f0f13a93d9559aa0a804
4
+ data.tar.gz: 2610b4ee59b8b0aed04536ab1dbe935d4418c6e51e6eb8471042bd7c77d33f84
5
5
  SHA512:
6
- metadata.gz: f3cbf64138a9f6e3be71adbd253eddea1c48ccb5d4c4e54467cbefebef8dad13c4a85625f66db2f38e42e0445a7fa4ce66ae22d5598325d8dfd5ab53ccc098df
7
- data.tar.gz: 64c58ff0722a1c9d8d4d7d801407fab7508acf04fcc5d877024fe5a29b54256edf2fa065bb745dec4fff70a0f5ffd8ea81322ebc907cfbd76482ac7c380fa7c7
6
+ metadata.gz: d67937dc586529fe95d65b7807b06c6dcbf4ebfed452b868d9008816de0fd9d769b493a9ba37347bb601956b1192df0cafcc328cef4a7e31bf3fe943b95ca765
7
+ data.tar.gz: a61e729da2416beb036b4092084387fe91513e38a70f275ccf9f8dcc2e5ab3cfc31847282d2036e79e290c269f6fb556ae0a12e5202b38c8634c4d71b480873e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.196.0 (2026-08-31)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for managing apps in Amazon QuickSight with ListApps, SearchApps, DescribeApp, DescribeAppPermissions, UpdateAppPermissions, and DeleteApp
8
+
4
9
  1.195.0 (2026-08-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.195.0
1
+ 1.196.0
@@ -2934,8 +2934,7 @@ module Aws::QuickSight
2934
2934
  req.send_request(options)
2935
2935
  end
2936
2936
 
2937
- # Creates a dataset. This operation doesn't support datasets that
2938
- # include uploaded files as a source.
2937
+ # Creates a dataset.
2939
2938
  #
2940
2939
  # @option params [required, String] :aws_account_id
2941
2940
  # The Amazon Web Services account ID.
@@ -4934,10 +4933,22 @@ module Aws::QuickSight
4934
4933
  # specify this parameter, document-level ACLs are disabled.
4935
4934
  #
4936
4935
  # @option params [String] :primary_owner_arn
4937
- # The Amazon Resource Name (ARN) of the primary owner for the knowledge
4938
- # base. The specified user is always granted owner access, regardless of
4939
- # what is specified in the `Permissions` field. If you don't specify a
4940
- # primary owner, the knowledge base is created without one.
4936
+ # The Amazon Resource Name (ARN) of the Amazon QuickSight user or group
4937
+ # to set as the primary owner of the knowledge base. The specified
4938
+ # principal is always granted owner access, regardless of what is
4939
+ # specified in the `Permissions` field.
4940
+ #
4941
+ # This must be an Amazon QuickSight principal ARN, not an IAM user or
4942
+ # role ARN. The API caller is never assigned as the owner automatically.
4943
+ # If you don't specify a primary owner and don't grant owner access in
4944
+ # `Permissions`, the knowledge base is created without an owner, even
4945
+ # when you call the operation as an Amazon QuickSight user.
4946
+ #
4947
+ # When you call `CreateKnowledgeBase` as an IAM user or an assumed IAM
4948
+ # role, specify `PrimaryOwnerArn` (as an Amazon QuickSight principal
4949
+ # ARN) or an owner entry in `Permissions` so that the knowledge base has
4950
+ # an owner. Although optional, specifying a primary owner is
4951
+ # recommended.
4941
4952
  #
4942
4953
  # @option params [Array<Types::Tag>] :tags
4943
4954
  # The tags to assign to the knowledge base. If you don't specify tags,
@@ -6683,6 +6694,38 @@ module Aws::QuickSight
6683
6694
  req.send_request(options)
6684
6695
  end
6685
6696
 
6697
+ # Deletes an app.
6698
+ #
6699
+ # @option params [required, String] :aws_account_id
6700
+ # The ID of the Amazon Web Services account that contains the app.
6701
+ #
6702
+ # @option params [required, String] :app_id
6703
+ # The ID of the app that you want to delete.
6704
+ #
6705
+ # @return [Types::DeleteAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6706
+ #
6707
+ # * {Types::DeleteAppResponse#request_id #request_id} => String
6708
+ #
6709
+ # @example Request syntax with placeholder values
6710
+ #
6711
+ # resp = client.delete_app({
6712
+ # aws_account_id: "AwsAccountId", # required
6713
+ # app_id: "AppId", # required
6714
+ # })
6715
+ #
6716
+ # @example Response structure
6717
+ #
6718
+ # resp.request_id #=> String
6719
+ #
6720
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteApp AWS API Documentation
6721
+ #
6722
+ # @overload delete_app(params = {})
6723
+ # @param [Hash] params ({})
6724
+ def delete_app(params = {}, options = {})
6725
+ req = build_request(:delete_app, params)
6726
+ req.send_request(options)
6727
+ end
6728
+
6686
6729
  # Deletes an approval policy in Quick Sight.
6687
6730
  #
6688
6731
  # @option params [required, String] :policy_id
@@ -8747,6 +8790,86 @@ module Aws::QuickSight
8747
8790
  req.send_request(options)
8748
8791
  end
8749
8792
 
8793
+ # Describes an app.
8794
+ #
8795
+ # @option params [required, String] :aws_account_id
8796
+ # The ID of the Amazon Web Services account that contains the app.
8797
+ #
8798
+ # @option params [required, String] :app_id
8799
+ # The ID of the app that you want to describe.
8800
+ #
8801
+ # @return [Types::DescribeAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8802
+ #
8803
+ # * {Types::DescribeAppResponse#app #app} => Types::AppSummary
8804
+ # * {Types::DescribeAppResponse#request_id #request_id} => String
8805
+ #
8806
+ # @example Request syntax with placeholder values
8807
+ #
8808
+ # resp = client.describe_app({
8809
+ # aws_account_id: "AwsAccountId", # required
8810
+ # app_id: "AppId", # required
8811
+ # })
8812
+ #
8813
+ # @example Response structure
8814
+ #
8815
+ # resp.app.app_id #=> String
8816
+ # resp.app.arn #=> String
8817
+ # resp.app.name #=> String
8818
+ # resp.app.created_time #=> Time
8819
+ # resp.app.last_updated_time #=> Time
8820
+ # resp.app.visibility #=> String, one of "PRIVATE", "PUBLIC"
8821
+ # resp.request_id #=> String
8822
+ #
8823
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeApp AWS API Documentation
8824
+ #
8825
+ # @overload describe_app(params = {})
8826
+ # @param [Hash] params ({})
8827
+ def describe_app(params = {}, options = {})
8828
+ req = build_request(:describe_app, params)
8829
+ req.send_request(options)
8830
+ end
8831
+
8832
+ # Describes the resource permissions for an app.
8833
+ #
8834
+ # @option params [required, String] :aws_account_id
8835
+ # The ID of the Amazon Web Services account that contains the app.
8836
+ #
8837
+ # @option params [required, String] :app_id
8838
+ # The ID of the app.
8839
+ #
8840
+ # @return [Types::DescribeAppPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8841
+ #
8842
+ # * {Types::DescribeAppPermissionsResponse#app_id #app_id} => String
8843
+ # * {Types::DescribeAppPermissionsResponse#arn #arn} => String
8844
+ # * {Types::DescribeAppPermissionsResponse#permissions #permissions} => Array&lt;Types::ResourcePermission&gt;
8845
+ # * {Types::DescribeAppPermissionsResponse#request_id #request_id} => String
8846
+ #
8847
+ # @example Request syntax with placeholder values
8848
+ #
8849
+ # resp = client.describe_app_permissions({
8850
+ # aws_account_id: "AwsAccountId", # required
8851
+ # app_id: "AppId", # required
8852
+ # })
8853
+ #
8854
+ # @example Response structure
8855
+ #
8856
+ # resp.app_id #=> String
8857
+ # resp.arn #=> String
8858
+ # resp.permissions #=> Array
8859
+ # resp.permissions[0].principal #=> String
8860
+ # resp.permissions[0].actions #=> Array
8861
+ # resp.permissions[0].actions[0] #=> String
8862
+ # resp.request_id #=> String
8863
+ #
8864
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAppPermissions AWS API Documentation
8865
+ #
8866
+ # @overload describe_app_permissions(params = {})
8867
+ # @param [Hash] params ({})
8868
+ def describe_app_permissions(params = {}, options = {})
8869
+ req = build_request(:describe_app_permissions, params)
8870
+ req.send_request(options)
8871
+ end
8872
+
8750
8873
  # Describes an approval policy in Quick Sight.
8751
8874
  #
8752
8875
  # @option params [required, String] :policy_id
@@ -10357,8 +10480,7 @@ module Aws::QuickSight
10357
10480
  req.send_request(options)
10358
10481
  end
10359
10482
 
10360
- # Describes a dataset. This operation doesn't support datasets that
10361
- # include uploaded files as a source.
10483
+ # Describes a dataset.
10362
10484
  #
10363
10485
  # @option params [required, String] :aws_account_id
10364
10486
  # The Amazon Web Services account ID.
@@ -14587,6 +14709,58 @@ module Aws::QuickSight
14587
14709
  req.send_request(options)
14588
14710
  end
14589
14711
 
14712
+ # Lists the apps in an Amazon Web Services account. Results are
14713
+ # paginated; use the `NextToken` parameter to retrieve additional
14714
+ # results.
14715
+ #
14716
+ # @option params [required, String] :aws_account_id
14717
+ # The ID of the Amazon Web Services account that contains the apps.
14718
+ #
14719
+ # @option params [Integer] :max_results
14720
+ # The maximum number of results to return in a single request. Valid
14721
+ # range is 1 to 100. If you don't specify a value, the default is 20.
14722
+ #
14723
+ # @option params [String] :next_token
14724
+ # The token for the next set of results, or null if there are no more
14725
+ # results.
14726
+ #
14727
+ # @return [Types::ListAppsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14728
+ #
14729
+ # * {Types::ListAppsResponse#app_summary_list #app_summary_list} => Array&lt;Types::AppSummary&gt;
14730
+ # * {Types::ListAppsResponse#next_token #next_token} => String
14731
+ # * {Types::ListAppsResponse#request_id #request_id} => String
14732
+ #
14733
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14734
+ #
14735
+ # @example Request syntax with placeholder values
14736
+ #
14737
+ # resp = client.list_apps({
14738
+ # aws_account_id: "AwsAccountId", # required
14739
+ # max_results: 1,
14740
+ # next_token: "NextToken",
14741
+ # })
14742
+ #
14743
+ # @example Response structure
14744
+ #
14745
+ # resp.app_summary_list #=> Array
14746
+ # resp.app_summary_list[0].app_id #=> String
14747
+ # resp.app_summary_list[0].arn #=> String
14748
+ # resp.app_summary_list[0].name #=> String
14749
+ # resp.app_summary_list[0].created_time #=> Time
14750
+ # resp.app_summary_list[0].last_updated_time #=> Time
14751
+ # resp.app_summary_list[0].visibility #=> String, one of "PRIVATE", "PUBLIC"
14752
+ # resp.next_token #=> String
14753
+ # resp.request_id #=> String
14754
+ #
14755
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListApps AWS API Documentation
14756
+ #
14757
+ # @overload list_apps(params = {})
14758
+ # @param [Hash] params ({})
14759
+ def list_apps(params = {}, options = {})
14760
+ req = build_request(:list_apps, params)
14761
+ req.send_request(options)
14762
+ end
14763
+
14590
14764
  # Lists all asset bundle export jobs that have been taken place in the
14591
14765
  # last 14 days. Jobs created more than 14 days ago are deleted forever
14592
14766
  # and are not returned. If you are using the same job ID for multiple
@@ -18507,6 +18681,70 @@ module Aws::QuickSight
18507
18681
  req.send_request(options)
18508
18682
  end
18509
18683
 
18684
+ # Searches for apps in an Amazon Web Services account using the
18685
+ # specified filters. This operation is eventually consistent; the
18686
+ # results might not reflect very recent updates. Results are paginated;
18687
+ # use the `NextToken` parameter to retrieve additional results.
18688
+ #
18689
+ # @option params [required, String] :aws_account_id
18690
+ # The ID of the Amazon Web Services account that contains the apps to
18691
+ # search.
18692
+ #
18693
+ # @option params [required, Array<Types::SearchAppsFilter>] :filters
18694
+ # The filters to apply to the search.
18695
+ #
18696
+ # @option params [Integer] :max_results
18697
+ # The maximum number of results to return in a single request. Valid
18698
+ # range is 1 to 100. If you don't specify a value, the default is 20.
18699
+ #
18700
+ # @option params [String] :next_token
18701
+ # The token for the next set of results, or null if there are no more
18702
+ # results.
18703
+ #
18704
+ # @return [Types::SearchAppsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
18705
+ #
18706
+ # * {Types::SearchAppsResponse#app_summary_list #app_summary_list} => Array&lt;Types::AppSummary&gt;
18707
+ # * {Types::SearchAppsResponse#next_token #next_token} => String
18708
+ # * {Types::SearchAppsResponse#request_id #request_id} => String
18709
+ #
18710
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
18711
+ #
18712
+ # @example Request syntax with placeholder values
18713
+ #
18714
+ # resp = client.search_apps({
18715
+ # aws_account_id: "AwsAccountId", # required
18716
+ # filters: [ # required
18717
+ # {
18718
+ # name: "APP_ID", # required, accepts APP_ID, APP_NAME, DIRECT_QUICKSIGHT_SOLE_OWNER, DIRECT_QUICKSIGHT_OWNER, DIRECT_QUICKSIGHT_VIEWER_OR_OWNER
18719
+ # operator: "StringEquals", # required, accepts StringEquals, StringLike
18720
+ # value: "String", # required
18721
+ # },
18722
+ # ],
18723
+ # max_results: 1,
18724
+ # next_token: "NextToken",
18725
+ # })
18726
+ #
18727
+ # @example Response structure
18728
+ #
18729
+ # resp.app_summary_list #=> Array
18730
+ # resp.app_summary_list[0].app_id #=> String
18731
+ # resp.app_summary_list[0].arn #=> String
18732
+ # resp.app_summary_list[0].name #=> String
18733
+ # resp.app_summary_list[0].created_time #=> Time
18734
+ # resp.app_summary_list[0].last_updated_time #=> Time
18735
+ # resp.app_summary_list[0].visibility #=> String, one of "PRIVATE", "PUBLIC"
18736
+ # resp.next_token #=> String
18737
+ # resp.request_id #=> String
18738
+ #
18739
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchApps AWS API Documentation
18740
+ #
18741
+ # @overload search_apps(params = {})
18742
+ # @param [Hash] params ({})
18743
+ def search_apps(params = {}, options = {})
18744
+ req = build_request(:search_apps, params)
18745
+ req.send_request(options)
18746
+ end
18747
+
18510
18748
  # Searches for dashboards that belong to a user.
18511
18749
  #
18512
18750
  # <note markdown="1"> This operation is eventually consistent. The results are best effort
@@ -21058,6 +21296,75 @@ module Aws::QuickSight
21058
21296
  req.send_request(options)
21059
21297
  end
21060
21298
 
21299
+ # Updates the resource permissions for an app. You can grant or revoke
21300
+ # permissions and, optionally, change the app's visibility.
21301
+ #
21302
+ # @option params [required, String] :aws_account_id
21303
+ # The ID of the Amazon Web Services account that contains the app.
21304
+ #
21305
+ # @option params [required, String] :app_id
21306
+ # The ID of the app.
21307
+ #
21308
+ # @option params [Array<Types::ResourcePermission>] :grant_permissions
21309
+ # The permissions that you want to grant on the app.
21310
+ #
21311
+ # @option params [Array<Types::ResourcePermission>] :revoke_permissions
21312
+ # The permissions that you want to revoke from the app.
21313
+ #
21314
+ # @option params [String] :visibility
21315
+ # The visibility to set for the app. Currently, only `PRIVATE` is
21316
+ # accepted, which removes public (anonymous) access from the app. If you
21317
+ # don't specify a value, the app's visibility is unchanged. Setting an
21318
+ # app to `PUBLIC` through this operation is not supported.
21319
+ #
21320
+ # @return [Types::UpdateAppPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
21321
+ #
21322
+ # * {Types::UpdateAppPermissionsResponse#arn #arn} => String
21323
+ # * {Types::UpdateAppPermissionsResponse#app_id #app_id} => String
21324
+ # * {Types::UpdateAppPermissionsResponse#permissions #permissions} => Array&lt;Types::ResourcePermission&gt;
21325
+ # * {Types::UpdateAppPermissionsResponse#visibility #visibility} => String
21326
+ # * {Types::UpdateAppPermissionsResponse#request_id #request_id} => String
21327
+ #
21328
+ # @example Request syntax with placeholder values
21329
+ #
21330
+ # resp = client.update_app_permissions({
21331
+ # aws_account_id: "AwsAccountId", # required
21332
+ # app_id: "AppId", # required
21333
+ # grant_permissions: [
21334
+ # {
21335
+ # principal: "Principal", # required
21336
+ # actions: ["String"], # required
21337
+ # },
21338
+ # ],
21339
+ # revoke_permissions: [
21340
+ # {
21341
+ # principal: "Principal", # required
21342
+ # actions: ["String"], # required
21343
+ # },
21344
+ # ],
21345
+ # visibility: "PRIVATE", # accepts PRIVATE, PUBLIC
21346
+ # })
21347
+ #
21348
+ # @example Response structure
21349
+ #
21350
+ # resp.arn #=> String
21351
+ # resp.app_id #=> String
21352
+ # resp.permissions #=> Array
21353
+ # resp.permissions[0].principal #=> String
21354
+ # resp.permissions[0].actions #=> Array
21355
+ # resp.permissions[0].actions[0] #=> String
21356
+ # resp.visibility #=> String, one of "PRIVATE", "PUBLIC"
21357
+ # resp.request_id #=> String
21358
+ #
21359
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateAppPermissions AWS API Documentation
21360
+ #
21361
+ # @overload update_app_permissions(params = {})
21362
+ # @param [Hash] params ({})
21363
+ def update_app_permissions(params = {}, options = {})
21364
+ req = build_request(:update_app_permissions, params)
21365
+ req.send_request(options)
21366
+ end
21367
+
21061
21368
  # Updates an Quick application with a token exchange grant. This
21062
21369
  # operation only supports Quick applications that are registered with
21063
21370
  # IAM Identity Center.
@@ -22101,9 +22408,8 @@ module Aws::QuickSight
22101
22408
  req.send_request(options)
22102
22409
  end
22103
22410
 
22104
- # Updates a dataset. This operation doesn't support datasets that
22105
- # include uploaded files as a source. Partial updates are not supported
22106
- # by this operation.
22411
+ # Updates a dataset. Partial updates are not supported by this
22412
+ # operation.
22107
22413
  #
22108
22414
  # @option params [required, String] :aws_account_id
22109
22415
  # The Amazon Web Services account ID.
@@ -26445,7 +26751,7 @@ module Aws::QuickSight
26445
26751
  tracer: tracer
26446
26752
  )
26447
26753
  context[:gem_name] = 'aws-sdk-quicksight'
26448
- context[:gem_version] = '1.195.0'
26754
+ context[:gem_version] = '1.196.0'
26449
26755
  Seahorse::Client::Request.new(handlers, context)
26450
26756
  end
26451
26757