aws-sdk-qbusiness 1.23.0 → 1.24.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.
@@ -23,7 +23,7 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:qbusiness)
23
23
  # structure.
24
24
  #
25
25
  # q_business = Aws::QBusiness::Client.new
26
- # resp = q_business.batch_delete_document(params)
26
+ # resp = q_business.associate_permission(params)
27
27
  #
28
28
  # See {Client} for more information.
29
29
  #
@@ -57,7 +57,7 @@ module Aws::QBusiness
57
57
  autoload :AsyncClient, 'aws-sdk-qbusiness/async_client'
58
58
  autoload :EventStreams, 'aws-sdk-qbusiness/event_streams'
59
59
 
60
- GEM_VERSION = '1.23.0'
60
+ GEM_VERSION = '1.24.0'
61
61
 
62
62
  end
63
63
 
data/sig/client.rbs CHANGED
@@ -78,6 +78,19 @@ module Aws
78
78
  | (?Hash[Symbol, untyped]) -> instance
79
79
 
80
80
 
81
+ interface _AssociatePermissionResponseSuccess
82
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociatePermissionResponse]
83
+ def statement: () -> ::String
84
+ end
85
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#associate_permission-instance_method
86
+ def associate_permission: (
87
+ application_id: ::String,
88
+ statement_id: ::String,
89
+ actions: Array[::String],
90
+ principal: ::String
91
+ ) -> _AssociatePermissionResponseSuccess
92
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociatePermissionResponseSuccess
93
+
81
94
  interface _BatchDeleteDocumentResponseSuccess
82
95
  include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteDocumentResponse]
83
96
  def failed_documents: () -> ::Array[Types::FailedDocument]
@@ -366,7 +379,7 @@ module Aws
366
379
  def create_application: (
367
380
  display_name: ::String,
368
381
  ?role_arn: ::String,
369
- ?identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC"),
382
+ ?identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC" | "AWS_QUICKSIGHT_IDP"),
370
383
  ?iam_identity_provider_arn: ::String,
371
384
  ?identity_center_instance_arn: ::String,
372
385
  ?client_ids_for_oidc: Array[::String],
@@ -389,10 +402,113 @@ module Aws
389
402
  },
390
403
  ?personalization_configuration: {
391
404
  personalization_control_mode: ("ENABLED" | "DISABLED")
405
+ },
406
+ ?quick_sight_configuration: {
407
+ client_namespace: ::String
392
408
  }
393
409
  ) -> _CreateApplicationResponseSuccess
394
410
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
395
411
 
412
+ interface _CreateDataAccessorResponseSuccess
413
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataAccessorResponse]
414
+ def data_accessor_id: () -> ::String
415
+ def idc_application_arn: () -> ::String
416
+ def data_accessor_arn: () -> ::String
417
+ end
418
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#create_data_accessor-instance_method
419
+ def create_data_accessor: (
420
+ application_id: ::String,
421
+ principal: ::String,
422
+ action_configurations: Array[
423
+ {
424
+ action: ::String,
425
+ filter_configuration: {
426
+ document_attribute_filter: {
427
+ and_all_filters: Array[
428
+ untyped,
429
+ ]?,
430
+ or_all_filters: Array[
431
+ untyped,
432
+ ]?,
433
+ not_filter: untyped?,
434
+ equals_to: {
435
+ name: ::String,
436
+ value: {
437
+ string_value: ::String?,
438
+ string_list_value: Array[::String]?,
439
+ long_value: ::Integer?,
440
+ date_value: ::Time?
441
+ }
442
+ }?,
443
+ contains_all: {
444
+ name: ::String,
445
+ value: {
446
+ string_value: ::String?,
447
+ string_list_value: Array[::String]?,
448
+ long_value: ::Integer?,
449
+ date_value: ::Time?
450
+ }
451
+ }?,
452
+ contains_any: {
453
+ name: ::String,
454
+ value: {
455
+ string_value: ::String?,
456
+ string_list_value: Array[::String]?,
457
+ long_value: ::Integer?,
458
+ date_value: ::Time?
459
+ }
460
+ }?,
461
+ greater_than: {
462
+ name: ::String,
463
+ value: {
464
+ string_value: ::String?,
465
+ string_list_value: Array[::String]?,
466
+ long_value: ::Integer?,
467
+ date_value: ::Time?
468
+ }
469
+ }?,
470
+ greater_than_or_equals: {
471
+ name: ::String,
472
+ value: {
473
+ string_value: ::String?,
474
+ string_list_value: Array[::String]?,
475
+ long_value: ::Integer?,
476
+ date_value: ::Time?
477
+ }
478
+ }?,
479
+ less_than: {
480
+ name: ::String,
481
+ value: {
482
+ string_value: ::String?,
483
+ string_list_value: Array[::String]?,
484
+ long_value: ::Integer?,
485
+ date_value: ::Time?
486
+ }
487
+ }?,
488
+ less_than_or_equals: {
489
+ name: ::String,
490
+ value: {
491
+ string_value: ::String?,
492
+ string_list_value: Array[::String]?,
493
+ long_value: ::Integer?,
494
+ date_value: ::Time?
495
+ }
496
+ }?
497
+ }
498
+ }?
499
+ },
500
+ ],
501
+ ?client_token: ::String,
502
+ display_name: ::String,
503
+ ?tags: Array[
504
+ {
505
+ key: ::String,
506
+ value: ::String
507
+ },
508
+ ]
509
+ ) -> _CreateDataAccessorResponseSuccess
510
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataAccessorResponseSuccess
511
+
396
512
  interface _CreateDataSourceResponseSuccess
397
513
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataSourceResponse]
398
514
  def data_source_id: () -> ::String
@@ -518,7 +634,7 @@ module Aws
518
634
  def create_plugin: (
519
635
  application_id: ::String,
520
636
  display_name: ::String,
521
- type: ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM"),
637
+ type: ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM" | "QUICKSIGHT" | "SERVICENOW_NOW_PLATFORM" | "JIRA_CLOUD" | "SALESFORCE_CRM" | "ZENDESK_SUITE" | "ATLASSIAN_CONFLUENCE" | "GOOGLE_CALENDAR" | "MICROSOFT_TEAMS" | "MICROSOFT_EXCHANGE" | "PAGERDUTY_ADVANCE" | "SMARTSHEET" | "ASANA"),
522
638
  auth_configuration: {
523
639
  basic_auth_configuration: {
524
640
  secret_arn: ::String,
@@ -526,9 +642,15 @@ module Aws
526
642
  }?,
527
643
  o_auth_2_client_credential_configuration: {
528
644
  secret_arn: ::String,
529
- role_arn: ::String
645
+ role_arn: ::String,
646
+ authorization_url: ::String?,
647
+ token_url: ::String?
530
648
  }?,
531
649
  no_auth_configuration: {
650
+ }?,
651
+ idc_auth_configuration: {
652
+ idc_application_arn: ::String,
653
+ role_arn: ::String
532
654
  }?
533
655
  },
534
656
  ?server_url: ::String,
@@ -649,6 +771,12 @@ module Aws
649
771
  },
650
772
  ?browser_extension_configuration: {
651
773
  enabled_browser_extensions: Array[("FIREFOX" | "CHROME")]
774
+ },
775
+ ?customization_configuration: {
776
+ custom_css_url: ::String?,
777
+ logo_url: ::String?,
778
+ font_url: ::String?,
779
+ favicon_url: ::String?
652
780
  }
653
781
  ) -> _CreateWebExperienceResponseSuccess
654
782
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWebExperienceResponseSuccess
@@ -682,6 +810,16 @@ module Aws
682
810
  ) -> _DeleteConversationResponseSuccess
683
811
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConversationResponseSuccess
684
812
 
813
+ interface _DeleteDataAccessorResponseSuccess
814
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataAccessorResponse]
815
+ end
816
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#delete_data_accessor-instance_method
817
+ def delete_data_accessor: (
818
+ application_id: ::String,
819
+ data_accessor_id: ::String
820
+ ) -> _DeleteDataAccessorResponseSuccess
821
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataAccessorResponseSuccess
822
+
685
823
  interface _DeleteDataSourceResponseSuccess
686
824
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataSourceResponse]
687
825
  end
@@ -755,12 +893,22 @@ module Aws
755
893
  ) -> _DeleteWebExperienceResponseSuccess
756
894
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWebExperienceResponseSuccess
757
895
 
896
+ interface _DisassociatePermissionResponseSuccess
897
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociatePermissionResponse]
898
+ end
899
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#disassociate_permission-instance_method
900
+ def disassociate_permission: (
901
+ application_id: ::String,
902
+ statement_id: ::String
903
+ ) -> _DisassociatePermissionResponseSuccess
904
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociatePermissionResponseSuccess
905
+
758
906
  interface _GetApplicationResponseSuccess
759
907
  include ::Seahorse::Client::_ResponseSuccess[Types::GetApplicationResponse]
760
908
  def display_name: () -> ::String
761
909
  def application_id: () -> ::String
762
910
  def application_arn: () -> ::String
763
- def identity_type: () -> ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC")
911
+ def identity_type: () -> ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC" | "AWS_QUICKSIGHT_IDP")
764
912
  def iam_identity_provider_arn: () -> ::String
765
913
  def identity_center_application_arn: () -> ::String
766
914
  def role_arn: () -> ::String
@@ -774,6 +922,7 @@ module Aws
774
922
  def personalization_configuration: () -> Types::PersonalizationConfiguration
775
923
  def auto_subscription_configuration: () -> Types::AutoSubscriptionConfiguration
776
924
  def client_ids_for_oidc: () -> ::Array[::String]
925
+ def quick_sight_configuration: () -> Types::QuickSightConfiguration
777
926
  end
778
927
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#get_application-instance_method
779
928
  def get_application: (
@@ -797,6 +946,25 @@ module Aws
797
946
  ) -> _GetChatControlsConfigurationResponseSuccess
798
947
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetChatControlsConfigurationResponseSuccess
799
948
 
949
+ interface _GetDataAccessorResponseSuccess
950
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDataAccessorResponse]
951
+ def display_name: () -> ::String
952
+ def data_accessor_id: () -> ::String
953
+ def data_accessor_arn: () -> ::String
954
+ def application_id: () -> ::String
955
+ def idc_application_arn: () -> ::String
956
+ def principal: () -> ::String
957
+ def action_configurations: () -> ::Array[Types::ActionConfiguration]
958
+ def created_at: () -> ::Time
959
+ def updated_at: () -> ::Time
960
+ end
961
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#get_data_accessor-instance_method
962
+ def get_data_accessor: (
963
+ application_id: ::String,
964
+ data_accessor_id: ::String
965
+ ) -> _GetDataAccessorResponseSuccess
966
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataAccessorResponseSuccess
967
+
800
968
  interface _GetDataSourceResponseSuccess
801
969
  include ::Seahorse::Client::_ResponseSuccess[Types::GetDataSourceResponse]
802
970
  def application_id: () -> ::String
@@ -879,7 +1047,7 @@ module Aws
879
1047
  def application_id: () -> ::String
880
1048
  def plugin_id: () -> ::String
881
1049
  def display_name: () -> ::String
882
- def type: () -> ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM")
1050
+ def type: () -> ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM" | "QUICKSIGHT" | "SERVICENOW_NOW_PLATFORM" | "JIRA_CLOUD" | "SALESFORCE_CRM" | "ZENDESK_SUITE" | "ATLASSIAN_CONFLUENCE" | "GOOGLE_CALENDAR" | "MICROSOFT_TEAMS" | "MICROSOFT_EXCHANGE" | "PAGERDUTY_ADVANCE" | "SMARTSHEET" | "ASANA")
883
1051
  def server_url: () -> ::String
884
1052
  def auth_configuration: () -> Types::PluginAuthConfiguration
885
1053
  def custom_plugin_configuration: () -> Types::CustomPluginConfiguration
@@ -896,6 +1064,16 @@ module Aws
896
1064
  ) -> _GetPluginResponseSuccess
897
1065
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPluginResponseSuccess
898
1066
 
1067
+ interface _GetPolicyResponseSuccess
1068
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicyResponse]
1069
+ def policy: () -> ::String
1070
+ end
1071
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#get_policy-instance_method
1072
+ def get_policy: (
1073
+ application_id: ::String
1074
+ ) -> _GetPolicyResponseSuccess
1075
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicyResponseSuccess
1076
+
899
1077
  interface _GetRetrieverResponseSuccess
900
1078
  include ::Seahorse::Client::_ResponseSuccess[Types::GetRetrieverResponse]
901
1079
  def application_id: () -> ::String
@@ -945,6 +1123,7 @@ module Aws
945
1123
  def identity_provider_configuration: () -> Types::IdentityProviderConfiguration
946
1124
  def authentication_configuration: () -> Types::WebExperienceAuthConfiguration
947
1125
  def browser_extension_configuration: () -> Types::BrowserExtensionConfiguration
1126
+ def customization_configuration: () -> Types::CustomizationConfiguration
948
1127
  end
949
1128
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#get_web_experience-instance_method
950
1129
  def get_web_experience: (
@@ -994,6 +1173,19 @@ module Aws
994
1173
  ) -> _ListConversationsResponseSuccess
995
1174
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConversationsResponseSuccess
996
1175
 
1176
+ interface _ListDataAccessorsResponseSuccess
1177
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDataAccessorsResponse]
1178
+ def data_accessors: () -> ::Array[Types::DataAccessor]
1179
+ def next_token: () -> ::String
1180
+ end
1181
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#list_data_accessors-instance_method
1182
+ def list_data_accessors: (
1183
+ application_id: ::String,
1184
+ ?next_token: ::String,
1185
+ ?max_results: ::Integer
1186
+ ) -> _ListDataAccessorsResponseSuccess
1187
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataAccessorsResponseSuccess
1188
+
997
1189
  interface _ListDataSourceSyncJobsResponseSuccess
998
1190
  include ::Seahorse::Client::_ResponseSuccess[Types::ListDataSourceSyncJobsResponse]
999
1191
  def history: () -> ::Array[Types::DataSourceSyncJob]
@@ -1085,6 +1277,45 @@ module Aws
1085
1277
  ) -> _ListMessagesResponseSuccess
1086
1278
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMessagesResponseSuccess
1087
1279
 
1280
+ interface _ListPluginActionsResponseSuccess
1281
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPluginActionsResponse]
1282
+ def next_token: () -> ::String
1283
+ def items: () -> ::Array[Types::ActionSummary]
1284
+ end
1285
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#list_plugin_actions-instance_method
1286
+ def list_plugin_actions: (
1287
+ application_id: ::String,
1288
+ plugin_id: ::String,
1289
+ ?next_token: ::String,
1290
+ ?max_results: ::Integer
1291
+ ) -> _ListPluginActionsResponseSuccess
1292
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPluginActionsResponseSuccess
1293
+
1294
+ interface _ListPluginTypeActionsResponseSuccess
1295
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPluginTypeActionsResponse]
1296
+ def next_token: () -> ::String
1297
+ def items: () -> ::Array[Types::ActionSummary]
1298
+ end
1299
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#list_plugin_type_actions-instance_method
1300
+ def list_plugin_type_actions: (
1301
+ plugin_type: ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM" | "QUICKSIGHT" | "SERVICENOW_NOW_PLATFORM" | "JIRA_CLOUD" | "SALESFORCE_CRM" | "ZENDESK_SUITE" | "ATLASSIAN_CONFLUENCE" | "GOOGLE_CALENDAR" | "MICROSOFT_TEAMS" | "MICROSOFT_EXCHANGE" | "PAGERDUTY_ADVANCE" | "SMARTSHEET" | "ASANA"),
1302
+ ?next_token: ::String,
1303
+ ?max_results: ::Integer
1304
+ ) -> _ListPluginTypeActionsResponseSuccess
1305
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPluginTypeActionsResponseSuccess
1306
+
1307
+ interface _ListPluginTypeMetadataResponseSuccess
1308
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPluginTypeMetadataResponse]
1309
+ def next_token: () -> ::String
1310
+ def items: () -> ::Array[Types::PluginTypeMetadataSummary]
1311
+ end
1312
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#list_plugin_type_metadata-instance_method
1313
+ def list_plugin_type_metadata: (
1314
+ ?next_token: ::String,
1315
+ ?max_results: ::Integer
1316
+ ) -> _ListPluginTypeMetadataResponseSuccess
1317
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPluginTypeMetadataResponseSuccess
1318
+
1088
1319
  interface _ListPluginsResponseSuccess
1089
1320
  include ::Seahorse::Client::_ResponseSuccess[Types::ListPluginsResponse]
1090
1321
  def next_token: () -> ::String
@@ -1182,6 +1413,99 @@ module Aws
1182
1413
  ) -> _PutGroupResponseSuccess
1183
1414
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutGroupResponseSuccess
1184
1415
 
1416
+ interface _SearchRelevantContentResponseSuccess
1417
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchRelevantContentResponse]
1418
+ def relevant_content: () -> ::Array[Types::RelevantContent]
1419
+ def next_token: () -> ::String
1420
+ end
1421
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#search_relevant_content-instance_method
1422
+ def search_relevant_content: (
1423
+ application_id: ::String,
1424
+ ?user_id: ::String,
1425
+ ?user_groups: Array[::String],
1426
+ query_text: ::String,
1427
+ content_source: {
1428
+ retriever: {
1429
+ retriever_id: ::String
1430
+ }?
1431
+ },
1432
+ ?attribute_filter: {
1433
+ and_all_filters: Array[
1434
+ untyped,
1435
+ ]?,
1436
+ or_all_filters: Array[
1437
+ untyped,
1438
+ ]?,
1439
+ not_filter: untyped?,
1440
+ equals_to: {
1441
+ name: ::String,
1442
+ value: {
1443
+ string_value: ::String?,
1444
+ string_list_value: Array[::String]?,
1445
+ long_value: ::Integer?,
1446
+ date_value: ::Time?
1447
+ }
1448
+ }?,
1449
+ contains_all: {
1450
+ name: ::String,
1451
+ value: {
1452
+ string_value: ::String?,
1453
+ string_list_value: Array[::String]?,
1454
+ long_value: ::Integer?,
1455
+ date_value: ::Time?
1456
+ }
1457
+ }?,
1458
+ contains_any: {
1459
+ name: ::String,
1460
+ value: {
1461
+ string_value: ::String?,
1462
+ string_list_value: Array[::String]?,
1463
+ long_value: ::Integer?,
1464
+ date_value: ::Time?
1465
+ }
1466
+ }?,
1467
+ greater_than: {
1468
+ name: ::String,
1469
+ value: {
1470
+ string_value: ::String?,
1471
+ string_list_value: Array[::String]?,
1472
+ long_value: ::Integer?,
1473
+ date_value: ::Time?
1474
+ }
1475
+ }?,
1476
+ greater_than_or_equals: {
1477
+ name: ::String,
1478
+ value: {
1479
+ string_value: ::String?,
1480
+ string_list_value: Array[::String]?,
1481
+ long_value: ::Integer?,
1482
+ date_value: ::Time?
1483
+ }
1484
+ }?,
1485
+ less_than: {
1486
+ name: ::String,
1487
+ value: {
1488
+ string_value: ::String?,
1489
+ string_list_value: Array[::String]?,
1490
+ long_value: ::Integer?,
1491
+ date_value: ::Time?
1492
+ }
1493
+ }?,
1494
+ less_than_or_equals: {
1495
+ name: ::String,
1496
+ value: {
1497
+ string_value: ::String?,
1498
+ string_list_value: Array[::String]?,
1499
+ long_value: ::Integer?,
1500
+ date_value: ::Time?
1501
+ }
1502
+ }?
1503
+ },
1504
+ ?max_results: ::Integer,
1505
+ ?next_token: ::String
1506
+ ) -> _SearchRelevantContentResponseSuccess
1507
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchRelevantContentResponseSuccess
1508
+
1185
1509
  interface _StartDataSourceSyncJobResponseSuccess
1186
1510
  include ::Seahorse::Client::_ResponseSuccess[Types::StartDataSourceSyncJobResponse]
1187
1511
  def execution_id: () -> ::String
@@ -1341,6 +1665,96 @@ module Aws
1341
1665
  ) -> _UpdateChatControlsConfigurationResponseSuccess
1342
1666
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChatControlsConfigurationResponseSuccess
1343
1667
 
1668
+ interface _UpdateDataAccessorResponseSuccess
1669
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataAccessorResponse]
1670
+ end
1671
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#update_data_accessor-instance_method
1672
+ def update_data_accessor: (
1673
+ application_id: ::String,
1674
+ data_accessor_id: ::String,
1675
+ action_configurations: Array[
1676
+ {
1677
+ action: ::String,
1678
+ filter_configuration: {
1679
+ document_attribute_filter: {
1680
+ and_all_filters: Array[
1681
+ untyped,
1682
+ ]?,
1683
+ or_all_filters: Array[
1684
+ untyped,
1685
+ ]?,
1686
+ not_filter: untyped?,
1687
+ equals_to: {
1688
+ name: ::String,
1689
+ value: {
1690
+ string_value: ::String?,
1691
+ string_list_value: Array[::String]?,
1692
+ long_value: ::Integer?,
1693
+ date_value: ::Time?
1694
+ }
1695
+ }?,
1696
+ contains_all: {
1697
+ name: ::String,
1698
+ value: {
1699
+ string_value: ::String?,
1700
+ string_list_value: Array[::String]?,
1701
+ long_value: ::Integer?,
1702
+ date_value: ::Time?
1703
+ }
1704
+ }?,
1705
+ contains_any: {
1706
+ name: ::String,
1707
+ value: {
1708
+ string_value: ::String?,
1709
+ string_list_value: Array[::String]?,
1710
+ long_value: ::Integer?,
1711
+ date_value: ::Time?
1712
+ }
1713
+ }?,
1714
+ greater_than: {
1715
+ name: ::String,
1716
+ value: {
1717
+ string_value: ::String?,
1718
+ string_list_value: Array[::String]?,
1719
+ long_value: ::Integer?,
1720
+ date_value: ::Time?
1721
+ }
1722
+ }?,
1723
+ greater_than_or_equals: {
1724
+ name: ::String,
1725
+ value: {
1726
+ string_value: ::String?,
1727
+ string_list_value: Array[::String]?,
1728
+ long_value: ::Integer?,
1729
+ date_value: ::Time?
1730
+ }
1731
+ }?,
1732
+ less_than: {
1733
+ name: ::String,
1734
+ value: {
1735
+ string_value: ::String?,
1736
+ string_list_value: Array[::String]?,
1737
+ long_value: ::Integer?,
1738
+ date_value: ::Time?
1739
+ }
1740
+ }?,
1741
+ less_than_or_equals: {
1742
+ name: ::String,
1743
+ value: {
1744
+ string_value: ::String?,
1745
+ string_list_value: Array[::String]?,
1746
+ long_value: ::Integer?,
1747
+ date_value: ::Time?
1748
+ }
1749
+ }?
1750
+ }
1751
+ }?
1752
+ },
1753
+ ],
1754
+ ?display_name: ::String
1755
+ ) -> _UpdateDataAccessorResponseSuccess
1756
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataAccessorResponseSuccess
1757
+
1344
1758
  interface _UpdateDataSourceResponseSuccess
1345
1759
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataSourceResponse]
1346
1760
  end
@@ -1474,9 +1888,15 @@ module Aws
1474
1888
  }?,
1475
1889
  o_auth_2_client_credential_configuration: {
1476
1890
  secret_arn: ::String,
1477
- role_arn: ::String
1891
+ role_arn: ::String,
1892
+ authorization_url: ::String?,
1893
+ token_url: ::String?
1478
1894
  }?,
1479
1895
  no_auth_configuration: {
1896
+ }?,
1897
+ idc_auth_configuration: {
1898
+ idc_application_arn: ::String,
1899
+ role_arn: ::String
1480
1900
  }?
1481
1901
  }
1482
1902
  ) -> _UpdatePluginResponseSuccess
@@ -1578,6 +1998,12 @@ module Aws
1578
1998
  ?origins: Array[::String],
1579
1999
  ?browser_extension_configuration: {
1580
2000
  enabled_browser_extensions: Array[("FIREFOX" | "CHROME")]
2001
+ },
2002
+ ?customization_configuration: {
2003
+ custom_css_url: ::String?,
2004
+ logo_url: ::String?,
2005
+ font_url: ::String?,
2006
+ favicon_url: ::String?
1581
2007
  }
1582
2008
  ) -> _UpdateWebExperienceResponseSuccess
1583
2009
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWebExperienceResponseSuccess