aws-sdk-quicksight 1.185.0 → 1.186.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: 9318d5f0713e2e44e579fc320c0d794de36f7b660e7fdcb0aef08d16f9487640
4
- data.tar.gz: 96ec34bc4440f87714fa7beb27897af44fdbf670cd29c323c458e9ff350d14f4
3
+ metadata.gz: 50d094e2424898426f8372642488b708ab82ffacb6e0384a79e33ed9aea0f49d
4
+ data.tar.gz: 2ef06620d486e1877087908a85086d996e937d193ff431d364b08939560ab872
5
5
  SHA512:
6
- metadata.gz: ecf62c4c85982d6b8de1ef5448ac08a1d284c087c5f2f1897f19dca44dd40ad0a5d12538495530296e6122d4684b61185e83514960eb062198eddacf9ff61b0c
7
- data.tar.gz: e6c95bd65f7687f82dba55b84c63084636ae2246b6ccadf77f236c5e9ab5bd5a9ec0eaf6c94fda251df7d5883515c06a820b48f7abc2a344dce4b6d7635a437c
6
+ metadata.gz: 284b115332074cc74733d492c908cd532d6d571b5f592b72fa7aa491d344bf0f3923b9eee32e697199080d56b9fd86b10b8be17f57b6ea3e3c34bc6e67588583
7
+ data.tar.gz: f004e0a08d35c10e39f3c141d1cc5be1149c71d33719f534d76fc1aa8ee7da26e5a86f743eab6011d4a55eab9dcc6d14f68f1ebb47ab396e28c3dfdd26b7c519
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.186.0 (2026-06-05)
5
+ ------------------
6
+
7
+ * Feature - Adds support for Knowledge Base APIs and Index Capacity API
8
+
4
9
  1.185.0 (2026-06-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.185.0
1
+ 1.186.0
@@ -1286,6 +1286,50 @@ module Aws::QuickSight
1286
1286
  req.send_request(options)
1287
1287
  end
1288
1288
 
1289
+ # Deletes one or more knowledge bases.
1290
+ #
1291
+ # @option params [required, String] :aws_account_id
1292
+ # The ID of the Amazon Web Services account that contains the knowledge
1293
+ # base.
1294
+ #
1295
+ # @option params [required, Array<String>] :knowledge_base_ids
1296
+ # A list of knowledge base identifiers to delete.
1297
+ #
1298
+ # @return [Types::BatchDeleteKnowledgeBaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1299
+ #
1300
+ # * {Types::BatchDeleteKnowledgeBaseResponse#deleted #deleted} => Array&lt;Types::BatchDeleteKnowledgeBaseSuccess&gt;
1301
+ # * {Types::BatchDeleteKnowledgeBaseResponse#errors #errors} => Array&lt;Types::BatchDeleteKnowledgeBaseFailure&gt;
1302
+ # * {Types::BatchDeleteKnowledgeBaseResponse#request_id #request_id} => String
1303
+ # * {Types::BatchDeleteKnowledgeBaseResponse#status #status} => Integer
1304
+ #
1305
+ # @example Request syntax with placeholder values
1306
+ #
1307
+ # resp = client.batch_delete_knowledge_base({
1308
+ # aws_account_id: "KbAwsAccountId", # required
1309
+ # knowledge_base_ids: ["KnowledgeBaseId"], # required
1310
+ # })
1311
+ #
1312
+ # @example Response structure
1313
+ #
1314
+ # resp.deleted #=> Array
1315
+ # resp.deleted[0].knowledge_base_id #=> String
1316
+ # resp.deleted[0].knowledge_base_arn #=> String
1317
+ # resp.errors #=> Array
1318
+ # resp.errors[0].knowledge_base_id #=> String
1319
+ # resp.errors[0].error_code #=> String
1320
+ # resp.errors[0].error_message #=> String
1321
+ # resp.request_id #=> String
1322
+ # resp.status #=> Integer
1323
+ #
1324
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BatchDeleteKnowledgeBase AWS API Documentation
1325
+ #
1326
+ # @overload batch_delete_knowledge_base(params = {})
1327
+ # @param [Hash] params ({})
1328
+ def batch_delete_knowledge_base(params = {}, options = {})
1329
+ req = build_request(:batch_delete_knowledge_base, params)
1330
+ req.send_request(options)
1331
+ end
1332
+
1289
1333
  # Deletes reviewed answers for Q Topic.
1290
1334
  #
1291
1335
  # @option params [required, String] :aws_account_id
@@ -6593,6 +6637,45 @@ module Aws::QuickSight
6593
6637
  req.send_request(options)
6594
6638
  end
6595
6639
 
6640
+ # Deletes a knowledge base.
6641
+ #
6642
+ # @option params [required, String] :aws_account_id
6643
+ # The ID of the Amazon Web Services account that contains the knowledge
6644
+ # base.
6645
+ #
6646
+ # @option params [required, String] :knowledge_base_id
6647
+ # The unique identifier for the knowledge base.
6648
+ #
6649
+ # @return [Types::DeleteKnowledgeBaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6650
+ #
6651
+ # * {Types::DeleteKnowledgeBaseResponse#knowledge_base_arn #knowledge_base_arn} => String
6652
+ # * {Types::DeleteKnowledgeBaseResponse#knowledge_base_id #knowledge_base_id} => String
6653
+ # * {Types::DeleteKnowledgeBaseResponse#request_id #request_id} => String
6654
+ # * {Types::DeleteKnowledgeBaseResponse#status #status} => Integer
6655
+ #
6656
+ # @example Request syntax with placeholder values
6657
+ #
6658
+ # resp = client.delete_knowledge_base({
6659
+ # aws_account_id: "KbAwsAccountId", # required
6660
+ # knowledge_base_id: "KnowledgeBaseId", # required
6661
+ # })
6662
+ #
6663
+ # @example Response structure
6664
+ #
6665
+ # resp.knowledge_base_arn #=> String
6666
+ # resp.knowledge_base_id #=> String
6667
+ # resp.request_id #=> String
6668
+ # resp.status #=> Integer
6669
+ #
6670
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteKnowledgeBase AWS API Documentation
6671
+ #
6672
+ # @overload delete_knowledge_base(params = {})
6673
+ # @param [Hash] params ({})
6674
+ def delete_knowledge_base(params = {}, options = {})
6675
+ req = build_request(:delete_knowledge_base, params)
6676
+ req.send_request(options)
6677
+ end
6678
+
6596
6679
  # Deletes a namespace and the users and groups that are associated with
6597
6680
  # the namespace. This is an asynchronous process. Assets including
6598
6681
  # dashboards, analyses, datasets and data sources are not deleted. To
@@ -10702,6 +10785,117 @@ module Aws::QuickSight
10702
10785
  req.send_request(options)
10703
10786
  end
10704
10787
 
10788
+ # Describes a knowledge base.
10789
+ #
10790
+ # @option params [required, String] :aws_account_id
10791
+ # The ID of the Amazon Web Services account that contains the knowledge
10792
+ # base.
10793
+ #
10794
+ # @option params [required, String] :knowledge_base_id
10795
+ # The unique identifier for the knowledge base.
10796
+ #
10797
+ # @return [Types::DescribeKnowledgeBaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10798
+ #
10799
+ # * {Types::DescribeKnowledgeBaseResponse#knowledge_base #knowledge_base} => Types::KnowledgeBase
10800
+ # * {Types::DescribeKnowledgeBaseResponse#request_id #request_id} => String
10801
+ # * {Types::DescribeKnowledgeBaseResponse#status #status} => Integer
10802
+ #
10803
+ # @example Request syntax with placeholder values
10804
+ #
10805
+ # resp = client.describe_knowledge_base({
10806
+ # aws_account_id: "KbAwsAccountId", # required
10807
+ # knowledge_base_id: "KnowledgeBaseId", # required
10808
+ # })
10809
+ #
10810
+ # @example Response structure
10811
+ #
10812
+ # resp.knowledge_base.knowledge_base_arn #=> String
10813
+ # resp.knowledge_base.knowledge_base_id #=> String
10814
+ # resp.knowledge_base.name #=> String
10815
+ # resp.knowledge_base.status #=> String, one of "CREATING", "UPDATING", "ACTIVE", "FAILED", "DELETING"
10816
+ # resp.knowledge_base.data_source_arn #=> String
10817
+ # resp.knowledge_base.knowledge_base_configuration.event_enabled #=> Boolean
10818
+ # resp.knowledge_base.media_extraction_configuration.image_extraction_configuration.image_extraction_status #=> String, one of "ENABLED", "DISABLED"
10819
+ # resp.knowledge_base.media_extraction_configuration.audio_extraction_configuration.audio_extraction_status #=> String, one of "ENABLED", "DISABLED"
10820
+ # resp.knowledge_base.media_extraction_configuration.video_extraction_configuration.video_extraction_status #=> String, one of "ENABLED", "DISABLED"
10821
+ # resp.knowledge_base.media_extraction_configuration.video_extraction_configuration.video_extraction_type #=> String, one of "AUDIO_TRANSCRIPTION_ONLY", "VISUAL_CONTENT_AND_AUDIO_TRANSCRIPTION"
10822
+ # resp.knowledge_base.type #=> String
10823
+ # resp.knowledge_base.created_at #=> Time
10824
+ # resp.knowledge_base.updated_at #=> Time
10825
+ # resp.knowledge_base.description #=> String
10826
+ # resp.knowledge_base.is_email_notification_opted_for_ingestion_failures #=> Boolean
10827
+ # resp.knowledge_base.first_completed_ingestion_summary.ingestion_id #=> String
10828
+ # resp.knowledge_base.first_completed_ingestion_summary.ingestion_status #=> String, one of "QUEUED", "RUNNING", "FAILED", "COMPLETED", "INCOMPLETE", "CANCELLED", "CANCELLING", "TIMEOUT"
10829
+ # resp.knowledge_base.first_completed_ingestion_summary.start_time #=> Time
10830
+ # resp.knowledge_base.first_completed_ingestion_summary.end_time #=> Time
10831
+ # resp.knowledge_base.first_incomplete_ingestion_summary.ingestion_id #=> String
10832
+ # resp.knowledge_base.first_incomplete_ingestion_summary.ingestion_status #=> String, one of "QUEUED", "RUNNING", "FAILED", "COMPLETED", "INCOMPLETE", "CANCELLED", "CANCELLING", "TIMEOUT"
10833
+ # resp.knowledge_base.first_incomplete_ingestion_summary.start_time #=> Time
10834
+ # resp.knowledge_base.first_incomplete_ingestion_summary.end_time #=> Time
10835
+ # resp.knowledge_base.latest_ingestion_summary.ingestion_id #=> String
10836
+ # resp.knowledge_base.latest_ingestion_summary.ingestion_status #=> String, one of "QUEUED", "RUNNING", "FAILED", "COMPLETED", "INCOMPLETE", "CANCELLED", "CANCELLING", "TIMEOUT"
10837
+ # resp.knowledge_base.latest_ingestion_summary.start_time #=> Time
10838
+ # resp.knowledge_base.latest_ingestion_summary.end_time #=> Time
10839
+ # resp.knowledge_base.knowledge_base_size_bytes #=> Integer
10840
+ # resp.knowledge_base.document_count #=> Integer
10841
+ # resp.knowledge_base.primary_owner_arn #=> String
10842
+ # resp.knowledge_base.primary_owner_username #=> String
10843
+ # resp.request_id #=> String
10844
+ # resp.status #=> Integer
10845
+ #
10846
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeKnowledgeBase AWS API Documentation
10847
+ #
10848
+ # @overload describe_knowledge_base(params = {})
10849
+ # @param [Hash] params ({})
10850
+ def describe_knowledge_base(params = {}, options = {})
10851
+ req = build_request(:describe_knowledge_base, params)
10852
+ req.send_request(options)
10853
+ end
10854
+
10855
+ # Describes the resource permissions for a knowledge base.
10856
+ #
10857
+ # @option params [required, String] :aws_account_id
10858
+ # The ID of the Amazon Web Services account that contains the knowledge
10859
+ # base.
10860
+ #
10861
+ # @option params [required, String] :knowledge_base_id
10862
+ # The unique identifier for the knowledge base.
10863
+ #
10864
+ # @return [Types::DescribeKnowledgeBasePermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10865
+ #
10866
+ # * {Types::DescribeKnowledgeBasePermissionsResponse#knowledge_base_arn #knowledge_base_arn} => String
10867
+ # * {Types::DescribeKnowledgeBasePermissionsResponse#knowledge_base_id #knowledge_base_id} => String
10868
+ # * {Types::DescribeKnowledgeBasePermissionsResponse#permissions #permissions} => Array&lt;Types::ResourcePermission&gt;
10869
+ # * {Types::DescribeKnowledgeBasePermissionsResponse#request_id #request_id} => String
10870
+ # * {Types::DescribeKnowledgeBasePermissionsResponse#status #status} => Integer
10871
+ #
10872
+ # @example Request syntax with placeholder values
10873
+ #
10874
+ # resp = client.describe_knowledge_base_permissions({
10875
+ # aws_account_id: "KbAwsAccountId", # required
10876
+ # knowledge_base_id: "KnowledgeBaseId", # required
10877
+ # })
10878
+ #
10879
+ # @example Response structure
10880
+ #
10881
+ # resp.knowledge_base_arn #=> String
10882
+ # resp.knowledge_base_id #=> String
10883
+ # resp.permissions #=> Array
10884
+ # resp.permissions[0].principal #=> String
10885
+ # resp.permissions[0].actions #=> Array
10886
+ # resp.permissions[0].actions[0] #=> String
10887
+ # resp.request_id #=> String
10888
+ # resp.status #=> Integer
10889
+ #
10890
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeKnowledgeBasePermissions AWS API Documentation
10891
+ #
10892
+ # @overload describe_knowledge_base_permissions(params = {})
10893
+ # @param [Hash] params ({})
10894
+ def describe_knowledge_base_permissions(params = {}, options = {})
10895
+ req = build_request(:describe_knowledge_base_permissions, params)
10896
+ req.send_request(options)
10897
+ end
10898
+
10705
10899
  # Describes the current namespace.
10706
10900
  #
10707
10901
  # @option params [required, String] :aws_account_id
@@ -14620,6 +14814,64 @@ module Aws::QuickSight
14620
14814
  req.send_request(options)
14621
14815
  end
14622
14816
 
14817
+ # Lists all knowledge bases in an Amazon QuickSight account.
14818
+ #
14819
+ # @option params [required, String] :aws_account_id
14820
+ # The ID of the Amazon Web Services account that contains the knowledge
14821
+ # base.
14822
+ #
14823
+ # @option params [Integer] :max_results
14824
+ # The maximum number of results to return.
14825
+ #
14826
+ # @option params [String] :next_token
14827
+ # The token for the next set of results, or null if there are no more
14828
+ # results.
14829
+ #
14830
+ # @return [Types::ListKnowledgeBasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14831
+ #
14832
+ # * {Types::ListKnowledgeBasesResponse#knowledge_base_summaries #knowledge_base_summaries} => Array&lt;Types::KnowledgeBaseSummary&gt;
14833
+ # * {Types::ListKnowledgeBasesResponse#next_token #next_token} => String
14834
+ # * {Types::ListKnowledgeBasesResponse#request_id #request_id} => String
14835
+ # * {Types::ListKnowledgeBasesResponse#status #status} => Integer
14836
+ #
14837
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14838
+ #
14839
+ # @example Request syntax with placeholder values
14840
+ #
14841
+ # resp = client.list_knowledge_bases({
14842
+ # aws_account_id: "KbAwsAccountId", # required
14843
+ # max_results: 1,
14844
+ # next_token: "NextToken",
14845
+ # })
14846
+ #
14847
+ # @example Response structure
14848
+ #
14849
+ # resp.knowledge_base_summaries #=> Array
14850
+ # resp.knowledge_base_summaries[0].knowledge_base_arn #=> String
14851
+ # resp.knowledge_base_summaries[0].knowledge_base_id #=> String
14852
+ # resp.knowledge_base_summaries[0].name #=> String
14853
+ # resp.knowledge_base_summaries[0].status #=> String, one of "CREATING", "UPDATING", "ACTIVE", "FAILED", "DELETING"
14854
+ # resp.knowledge_base_summaries[0].data_source_arn #=> String
14855
+ # resp.knowledge_base_summaries[0].type #=> String
14856
+ # resp.knowledge_base_summaries[0].created_at #=> Time
14857
+ # resp.knowledge_base_summaries[0].updated_at #=> Time
14858
+ # resp.knowledge_base_summaries[0].knowledge_base_size_bytes #=> Integer
14859
+ # resp.knowledge_base_summaries[0].document_count #=> Integer
14860
+ # resp.knowledge_base_summaries[0].primary_owner_arn #=> String
14861
+ # resp.knowledge_base_summaries[0].primary_owner_username #=> String
14862
+ # resp.next_token #=> String
14863
+ # resp.request_id #=> String
14864
+ # resp.status #=> Integer
14865
+ #
14866
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListKnowledgeBases AWS API Documentation
14867
+ #
14868
+ # @overload list_knowledge_bases(params = {})
14869
+ # @param [Hash] params ({})
14870
+ def list_knowledge_bases(params = {}, options = {})
14871
+ req = build_request(:list_knowledge_bases, params)
14872
+ req.send_request(options)
14873
+ end
14874
+
14623
14875
  # Lists the namespaces for the specified Amazon Web Services account.
14624
14876
  # This operation doesn't list deleted namespaces.
14625
14877
  #
@@ -16056,6 +16308,84 @@ module Aws::QuickSight
16056
16308
  req.send_request(options)
16057
16309
  end
16058
16310
 
16311
+ # Lists per-user index capacity consumption for an account.
16312
+ #
16313
+ # @option params [required, String] :aws_account_id
16314
+ # The ID of the Amazon Web Services account that contains the index
16315
+ # capacity data.
16316
+ #
16317
+ # @option params [String] :namespace
16318
+ # The namespace to scope the user search to. Required when the
16319
+ # userNameOrEmail filter is present.
16320
+ #
16321
+ # @option params [Array<Types::UserIndexCapacityFilter>] :filters
16322
+ # Filters to apply. Only one filter is supported per request. The
16323
+ # userNameOrEmail and totalCapacityBytes filters are mutually exclusive.
16324
+ #
16325
+ # @option params [String] :sort_by
16326
+ # The field to sort results by.
16327
+ #
16328
+ # @option params [String] :sort_order
16329
+ # The sort order for results. Defaults to DESC if not specified.
16330
+ #
16331
+ # @option params [Integer] :max_results
16332
+ # The maximum number of results to return per page.
16333
+ #
16334
+ # @option params [String] :next_token
16335
+ # The token for the next set of results, received from a previous call.
16336
+ #
16337
+ # @return [Types::ListUsersIndexCapacityResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
16338
+ #
16339
+ # * {Types::ListUsersIndexCapacityResponse#users #users} => Array&lt;Types::UserIndexCapacity&gt;
16340
+ # * {Types::ListUsersIndexCapacityResponse#next_token #next_token} => String
16341
+ # * {Types::ListUsersIndexCapacityResponse#request_id #request_id} => String
16342
+ #
16343
+ # @example Request syntax with placeholder values
16344
+ #
16345
+ # resp = client.list_users_index_capacity({
16346
+ # aws_account_id: "AwsAccountId", # required
16347
+ # namespace: "Namespace",
16348
+ # filters: [
16349
+ # {
16350
+ # user_name_or_email: {
16351
+ # prefix: "FilterValue", # required
16352
+ # },
16353
+ # total_capacity_bytes: {
16354
+ # min_bytes: 1,
16355
+ # max_bytes: 1,
16356
+ # },
16357
+ # },
16358
+ # ],
16359
+ # sort_by: "TOTAL_CAPACITY_BYTES", # accepts TOTAL_CAPACITY_BYTES
16360
+ # sort_order: "ASC", # accepts ASC, DESC
16361
+ # max_results: 1,
16362
+ # next_token: "String",
16363
+ # })
16364
+ #
16365
+ # @example Response structure
16366
+ #
16367
+ # resp.users #=> Array
16368
+ # resp.users[0].user_arn #=> String
16369
+ # resp.users[0].user_name #=> String
16370
+ # resp.users[0].email #=> String
16371
+ # resp.users[0].role #=> String
16372
+ # resp.users[0].total_capacity_bytes #=> Integer
16373
+ # resp.users[0].total_kb_capacity_bytes #=> Integer
16374
+ # resp.users[0].total_space_capacity_bytes #=> Integer
16375
+ # resp.users[0].kb_count #=> Integer
16376
+ # resp.users[0].space_count #=> Integer
16377
+ # resp.next_token #=> String
16378
+ # resp.request_id #=> String
16379
+ #
16380
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListUsersIndexCapacity AWS API Documentation
16381
+ #
16382
+ # @overload list_users_index_capacity(params = {})
16383
+ # @param [Hash] params ({})
16384
+ def list_users_index_capacity(params = {}, options = {})
16385
+ req = build_request(:list_users_index_capacity, params)
16386
+ req.send_request(options)
16387
+ end
16388
+
16059
16389
  # Lists all of the VPC connections in the current set Amazon Web
16060
16390
  # Services Region of an Amazon Web Services account.
16061
16391
  #
@@ -17130,6 +17460,81 @@ module Aws::QuickSight
17130
17460
  req.send_request(options)
17131
17461
  end
17132
17462
 
17463
+ # Searches for a subset of knowledge bases based on specified filters.
17464
+ #
17465
+ # @option params [required, String] :aws_account_id
17466
+ # The ID of the Amazon Web Services account that contains the knowledge
17467
+ # base.
17468
+ #
17469
+ # @option params [String] :next_token
17470
+ # The token for the next set of results, or null if there are no more
17471
+ # results.
17472
+ #
17473
+ # @option params [Integer] :max_results
17474
+ # The maximum number of results to return.
17475
+ #
17476
+ # @option params [Array<Types::KnowledgeBaseSearchFilter>] :filters
17477
+ # The filters to apply when searching knowledge bases.
17478
+ #
17479
+ # @option params [Types::KnowledgeBaseSortBy] :sort_by
17480
+ # The sort configuration for the search results.
17481
+ #
17482
+ # @return [Types::SearchKnowledgeBasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
17483
+ #
17484
+ # * {Types::SearchKnowledgeBasesResponse#knowledge_base_summaries #knowledge_base_summaries} => Array&lt;Types::KnowledgeBaseSummary&gt;
17485
+ # * {Types::SearchKnowledgeBasesResponse#next_token #next_token} => String
17486
+ # * {Types::SearchKnowledgeBasesResponse#request_id #request_id} => String
17487
+ # * {Types::SearchKnowledgeBasesResponse#status #status} => Integer
17488
+ #
17489
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
17490
+ #
17491
+ # @example Request syntax with placeholder values
17492
+ #
17493
+ # resp = client.search_knowledge_bases({
17494
+ # aws_account_id: "KbAwsAccountId", # required
17495
+ # next_token: "NextToken",
17496
+ # max_results: 1,
17497
+ # filters: [
17498
+ # {
17499
+ # name: "KNOWLEDGE_BASE_ID", # required, accepts KNOWLEDGE_BASE_ID, KNOWLEDGE_BASE_NAME, DIRECT_QUICKSIGHT_OWNER, DIRECT_QUICKSIGHT_VIEWER_OR_OWNER, DIRECT_QUICKSIGHT_SOLE_OWNER, KNOWLEDGE_BASE_SIZE_BYTES, PRIMARY_OWNER
17500
+ # operator: "STRING_EQUALS", # required, accepts STRING_EQUALS, STRING_LIKE, GREATER_THAN_OR_EQUALS, LESS_THAN_OR_EQUALS
17501
+ # value: "String", # required
17502
+ # },
17503
+ # ],
17504
+ # sort_by: {
17505
+ # sort_by_field: "KNOWLEDGE_BASE_SIZE_BYTES", # required, accepts KNOWLEDGE_BASE_SIZE_BYTES, CREATED_AT
17506
+ # sort_order: "ASC", # required, accepts ASC, DESC
17507
+ # },
17508
+ # })
17509
+ #
17510
+ # @example Response structure
17511
+ #
17512
+ # resp.knowledge_base_summaries #=> Array
17513
+ # resp.knowledge_base_summaries[0].knowledge_base_arn #=> String
17514
+ # resp.knowledge_base_summaries[0].knowledge_base_id #=> String
17515
+ # resp.knowledge_base_summaries[0].name #=> String
17516
+ # resp.knowledge_base_summaries[0].status #=> String, one of "CREATING", "UPDATING", "ACTIVE", "FAILED", "DELETING"
17517
+ # resp.knowledge_base_summaries[0].data_source_arn #=> String
17518
+ # resp.knowledge_base_summaries[0].type #=> String
17519
+ # resp.knowledge_base_summaries[0].created_at #=> Time
17520
+ # resp.knowledge_base_summaries[0].updated_at #=> Time
17521
+ # resp.knowledge_base_summaries[0].knowledge_base_size_bytes #=> Integer
17522
+ # resp.knowledge_base_summaries[0].document_count #=> Integer
17523
+ # resp.knowledge_base_summaries[0].primary_owner_arn #=> String
17524
+ # resp.knowledge_base_summaries[0].primary_owner_username #=> String
17525
+ # resp.next_token #=> String
17526
+ # resp.request_id #=> String
17527
+ # resp.status #=> Integer
17528
+ #
17529
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchKnowledgeBases AWS API Documentation
17530
+ #
17531
+ # @overload search_knowledge_bases(params = {})
17532
+ # @param [Hash] params ({})
17533
+ def search_knowledge_bases(params = {}, options = {})
17534
+ req = build_request(:search_knowledge_bases, params)
17535
+ req.send_request(options)
17536
+ end
17537
+
17133
17538
  # Searches for Amazon QuickSight spaces that match the specified
17134
17539
  # filters.
17135
17540
  #
@@ -21971,6 +22376,69 @@ module Aws::QuickSight
21971
22376
  req.send_request(options)
21972
22377
  end
21973
22378
 
22379
+ # Updates the resource permissions for a knowledge base.
22380
+ #
22381
+ # @option params [required, String] :aws_account_id
22382
+ # The ID of the Amazon Web Services account that contains the knowledge
22383
+ # base.
22384
+ #
22385
+ # @option params [required, String] :knowledge_base_id
22386
+ # The unique identifier for the knowledge base.
22387
+ #
22388
+ # @option params [Array<Types::ResourcePermission>] :grant_permissions
22389
+ # The resource permissions that you want to grant on the knowledge base.
22390
+ #
22391
+ # @option params [Array<Types::ResourcePermission>] :revoke_permissions
22392
+ # The resource permissions that you want to revoke from the knowledge
22393
+ # base.
22394
+ #
22395
+ # @return [Types::UpdateKnowledgeBasePermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
22396
+ #
22397
+ # * {Types::UpdateKnowledgeBasePermissionsResponse#knowledge_base_arn #knowledge_base_arn} => String
22398
+ # * {Types::UpdateKnowledgeBasePermissionsResponse#knowledge_base_id #knowledge_base_id} => String
22399
+ # * {Types::UpdateKnowledgeBasePermissionsResponse#permissions #permissions} => Array&lt;Types::ResourcePermission&gt;
22400
+ # * {Types::UpdateKnowledgeBasePermissionsResponse#request_id #request_id} => String
22401
+ # * {Types::UpdateKnowledgeBasePermissionsResponse#status #status} => Integer
22402
+ #
22403
+ # @example Request syntax with placeholder values
22404
+ #
22405
+ # resp = client.update_knowledge_base_permissions({
22406
+ # aws_account_id: "KbAwsAccountId", # required
22407
+ # knowledge_base_id: "KnowledgeBaseId", # required
22408
+ # grant_permissions: [
22409
+ # {
22410
+ # principal: "Principal", # required
22411
+ # actions: ["String"], # required
22412
+ # },
22413
+ # ],
22414
+ # revoke_permissions: [
22415
+ # {
22416
+ # principal: "Principal", # required
22417
+ # actions: ["String"], # required
22418
+ # },
22419
+ # ],
22420
+ # })
22421
+ #
22422
+ # @example Response structure
22423
+ #
22424
+ # resp.knowledge_base_arn #=> String
22425
+ # resp.knowledge_base_id #=> String
22426
+ # resp.permissions #=> Array
22427
+ # resp.permissions[0].principal #=> String
22428
+ # resp.permissions[0].actions #=> Array
22429
+ # resp.permissions[0].actions[0] #=> String
22430
+ # resp.request_id #=> String
22431
+ # resp.status #=> Integer
22432
+ #
22433
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateKnowledgeBasePermissions AWS API Documentation
22434
+ #
22435
+ # @overload update_knowledge_base_permissions(params = {})
22436
+ # @param [Hash] params ({})
22437
+ def update_knowledge_base_permissions(params = {}, options = {})
22438
+ req = build_request(:update_knowledge_base_permissions, params)
22439
+ req.send_request(options)
22440
+ end
22441
+
21974
22442
  # Updates an OAuthClientApplication.
21975
22443
  #
21976
22444
  # @option params [required, String] :aws_account_id
@@ -23847,7 +24315,7 @@ module Aws::QuickSight
23847
24315
  tracer: tracer
23848
24316
  )
23849
24317
  context[:gem_name] = 'aws-sdk-quicksight'
23850
- context[:gem_version] = '1.185.0'
24318
+ context[:gem_version] = '1.186.0'
23851
24319
  Seahorse::Client::Request.new(handlers, context)
23852
24320
  end
23853
24321