aws-sdk-qbusiness 1.22.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.
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]
@@ -204,6 +217,11 @@ module Aws
204
217
  s3_bucket_name: ::String?,
205
218
  role_arn: ::String?
206
219
  }?
220
+ }?,
221
+ media_extraction_configuration: {
222
+ image_extraction_configuration: {
223
+ image_extraction_status: ("ENABLED" | "DISABLED")
224
+ }?
207
225
  }?
208
226
  },
209
227
  ],
@@ -247,8 +265,14 @@ module Aws
247
265
  ?user_message: ::String,
248
266
  ?attachments: Array[
249
267
  {
250
- name: ::String,
251
- data: ::String
268
+ data: ::String?,
269
+ name: ::String?,
270
+ copy_from: {
271
+ conversation: {
272
+ conversation_id: ::String,
273
+ attachment_id: ::String
274
+ }?
275
+ }?
252
276
  },
253
277
  ],
254
278
  ?action_execution: {
@@ -355,7 +379,7 @@ module Aws
355
379
  def create_application: (
356
380
  display_name: ::String,
357
381
  ?role_arn: ::String,
358
- ?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"),
359
383
  ?iam_identity_provider_arn: ::String,
360
384
  ?identity_center_instance_arn: ::String,
361
385
  ?client_ids_for_oidc: Array[::String],
@@ -378,10 +402,113 @@ module Aws
378
402
  },
379
403
  ?personalization_configuration: {
380
404
  personalization_control_mode: ("ENABLED" | "DISABLED")
405
+ },
406
+ ?quick_sight_configuration: {
407
+ client_namespace: ::String
381
408
  }
382
409
  ) -> _CreateApplicationResponseSuccess
383
410
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
384
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
+
385
512
  interface _CreateDataSourceResponseSuccess
386
513
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataSourceResponse]
387
514
  def data_source_id: () -> ::String
@@ -464,6 +591,11 @@ module Aws
464
591
  s3_bucket_name: ::String?,
465
592
  role_arn: ::String?
466
593
  }?
594
+ },
595
+ ?media_extraction_configuration: {
596
+ image_extraction_configuration: {
597
+ image_extraction_status: ("ENABLED" | "DISABLED")
598
+ }?
467
599
  }
468
600
  ) -> _CreateDataSourceResponseSuccess
469
601
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataSourceResponseSuccess
@@ -477,8 +609,8 @@ module Aws
477
609
  def create_index: (
478
610
  application_id: ::String,
479
611
  display_name: ::String,
480
- ?type: ("ENTERPRISE" | "STARTER"),
481
612
  ?description: ::String,
613
+ ?type: ("ENTERPRISE" | "STARTER"),
482
614
  ?tags: Array[
483
615
  {
484
616
  key: ::String,
@@ -502,7 +634,7 @@ module Aws
502
634
  def create_plugin: (
503
635
  application_id: ::String,
504
636
  display_name: ::String,
505
- 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"),
506
638
  auth_configuration: {
507
639
  basic_auth_configuration: {
508
640
  secret_arn: ::String,
@@ -510,9 +642,15 @@ module Aws
510
642
  }?,
511
643
  o_auth_2_client_credential_configuration: {
512
644
  secret_arn: ::String,
513
- role_arn: ::String
645
+ role_arn: ::String,
646
+ authorization_url: ::String?,
647
+ token_url: ::String?
514
648
  }?,
515
649
  no_auth_configuration: {
650
+ }?,
651
+ idc_auth_configuration: {
652
+ idc_application_arn: ::String,
653
+ role_arn: ::String
516
654
  }?
517
655
  },
518
656
  ?server_url: ::String,
@@ -630,6 +768,15 @@ module Aws
630
768
  secrets_arn: ::String,
631
769
  secrets_role: ::String
632
770
  }?
771
+ },
772
+ ?browser_extension_configuration: {
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?
633
780
  }
634
781
  ) -> _CreateWebExperienceResponseSuccess
635
782
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWebExperienceResponseSuccess
@@ -663,6 +810,16 @@ module Aws
663
810
  ) -> _DeleteConversationResponseSuccess
664
811
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConversationResponseSuccess
665
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
+
666
823
  interface _DeleteDataSourceResponseSuccess
667
824
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataSourceResponse]
668
825
  end
@@ -736,12 +893,22 @@ module Aws
736
893
  ) -> _DeleteWebExperienceResponseSuccess
737
894
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWebExperienceResponseSuccess
738
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
+
739
906
  interface _GetApplicationResponseSuccess
740
907
  include ::Seahorse::Client::_ResponseSuccess[Types::GetApplicationResponse]
741
908
  def display_name: () -> ::String
742
909
  def application_id: () -> ::String
743
910
  def application_arn: () -> ::String
744
- 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")
745
912
  def iam_identity_provider_arn: () -> ::String
746
913
  def identity_center_application_arn: () -> ::String
747
914
  def role_arn: () -> ::String
@@ -755,6 +922,7 @@ module Aws
755
922
  def personalization_configuration: () -> Types::PersonalizationConfiguration
756
923
  def auto_subscription_configuration: () -> Types::AutoSubscriptionConfiguration
757
924
  def client_ids_for_oidc: () -> ::Array[::String]
925
+ def quick_sight_configuration: () -> Types::QuickSightConfiguration
758
926
  end
759
927
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#get_application-instance_method
760
928
  def get_application: (
@@ -778,6 +946,25 @@ module Aws
778
946
  ) -> _GetChatControlsConfigurationResponseSuccess
779
947
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetChatControlsConfigurationResponseSuccess
780
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
+
781
968
  interface _GetDataSourceResponseSuccess
782
969
  include ::Seahorse::Client::_ResponseSuccess[Types::GetDataSourceResponse]
783
970
  def application_id: () -> ::String
@@ -795,6 +982,7 @@ module Aws
795
982
  def sync_schedule: () -> ::String
796
983
  def role_arn: () -> ::String
797
984
  def document_enrichment_configuration: () -> Types::DocumentEnrichmentConfiguration
985
+ def media_extraction_configuration: () -> Types::MediaExtractionConfiguration
798
986
  end
799
987
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#get_data_source-instance_method
800
988
  def get_data_source: (
@@ -823,9 +1011,9 @@ module Aws
823
1011
  def application_id: () -> ::String
824
1012
  def index_id: () -> ::String
825
1013
  def display_name: () -> ::String
826
- def type: () -> ("ENTERPRISE" | "STARTER")
827
1014
  def index_arn: () -> ::String
828
1015
  def status: () -> ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
1016
+ def type: () -> ("ENTERPRISE" | "STARTER")
829
1017
  def description: () -> ::String
830
1018
  def created_at: () -> ::Time
831
1019
  def updated_at: () -> ::Time
@@ -840,12 +1028,26 @@ module Aws
840
1028
  ) -> _GetIndexResponseSuccess
841
1029
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIndexResponseSuccess
842
1030
 
1031
+ interface _GetMediaResponseSuccess
1032
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMediaResponse]
1033
+ def media_bytes: () -> ::String
1034
+ def media_mime_type: () -> ::String
1035
+ end
1036
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#get_media-instance_method
1037
+ def get_media: (
1038
+ application_id: ::String,
1039
+ conversation_id: ::String,
1040
+ message_id: ::String,
1041
+ media_id: ::String
1042
+ ) -> _GetMediaResponseSuccess
1043
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMediaResponseSuccess
1044
+
843
1045
  interface _GetPluginResponseSuccess
844
1046
  include ::Seahorse::Client::_ResponseSuccess[Types::GetPluginResponse]
845
1047
  def application_id: () -> ::String
846
1048
  def plugin_id: () -> ::String
847
1049
  def display_name: () -> ::String
848
- 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")
849
1051
  def server_url: () -> ::String
850
1052
  def auth_configuration: () -> Types::PluginAuthConfiguration
851
1053
  def custom_plugin_configuration: () -> Types::CustomPluginConfiguration
@@ -862,6 +1064,16 @@ module Aws
862
1064
  ) -> _GetPluginResponseSuccess
863
1065
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPluginResponseSuccess
864
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
+
865
1077
  interface _GetRetrieverResponseSuccess
866
1078
  include ::Seahorse::Client::_ResponseSuccess[Types::GetRetrieverResponse]
867
1079
  def application_id: () -> ::String
@@ -910,6 +1122,8 @@ module Aws
910
1122
  def role_arn: () -> ::String
911
1123
  def identity_provider_configuration: () -> Types::IdentityProviderConfiguration
912
1124
  def authentication_configuration: () -> Types::WebExperienceAuthConfiguration
1125
+ def browser_extension_configuration: () -> Types::BrowserExtensionConfiguration
1126
+ def customization_configuration: () -> Types::CustomizationConfiguration
913
1127
  end
914
1128
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#get_web_experience-instance_method
915
1129
  def get_web_experience: (
@@ -930,6 +1144,21 @@ module Aws
930
1144
  ) -> _ListApplicationsResponseSuccess
931
1145
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationsResponseSuccess
932
1146
 
1147
+ interface _ListAttachmentsResponseSuccess
1148
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAttachmentsResponse]
1149
+ def attachments: () -> ::Array[Types::Attachment]
1150
+ def next_token: () -> ::String
1151
+ end
1152
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#list_attachments-instance_method
1153
+ def list_attachments: (
1154
+ application_id: ::String,
1155
+ ?conversation_id: ::String,
1156
+ ?user_id: ::String,
1157
+ ?next_token: ::String,
1158
+ ?max_results: ::Integer
1159
+ ) -> _ListAttachmentsResponseSuccess
1160
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAttachmentsResponseSuccess
1161
+
933
1162
  interface _ListConversationsResponseSuccess
934
1163
  include ::Seahorse::Client::_ResponseSuccess[Types::ListConversationsResponse]
935
1164
  def next_token: () -> ::String
@@ -944,6 +1173,19 @@ module Aws
944
1173
  ) -> _ListConversationsResponseSuccess
945
1174
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConversationsResponseSuccess
946
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
+
947
1189
  interface _ListDataSourceSyncJobsResponseSuccess
948
1190
  include ::Seahorse::Client::_ResponseSuccess[Types::ListDataSourceSyncJobsResponse]
949
1191
  def history: () -> ::Array[Types::DataSourceSyncJob]
@@ -1035,6 +1277,45 @@ module Aws
1035
1277
  ) -> _ListMessagesResponseSuccess
1036
1278
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMessagesResponseSuccess
1037
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
+
1038
1319
  interface _ListPluginsResponseSuccess
1039
1320
  include ::Seahorse::Client::_ResponseSuccess[Types::ListPluginsResponse]
1040
1321
  def next_token: () -> ::String
@@ -1132,6 +1413,99 @@ module Aws
1132
1413
  ) -> _PutGroupResponseSuccess
1133
1414
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutGroupResponseSuccess
1134
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
+
1135
1509
  interface _StartDataSourceSyncJobResponseSuccess
1136
1510
  include ::Seahorse::Client::_ResponseSuccess[Types::StartDataSourceSyncJobResponse]
1137
1511
  def execution_id: () -> ::String
@@ -1291,6 +1665,96 @@ module Aws
1291
1665
  ) -> _UpdateChatControlsConfigurationResponseSuccess
1292
1666
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChatControlsConfigurationResponseSuccess
1293
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
+
1294
1758
  interface _UpdateDataSourceResponseSuccess
1295
1759
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataSourceResponse]
1296
1760
  end
@@ -1365,6 +1829,11 @@ module Aws
1365
1829
  s3_bucket_name: ::String?,
1366
1830
  role_arn: ::String?
1367
1831
  }?
1832
+ },
1833
+ ?media_extraction_configuration: {
1834
+ image_extraction_configuration: {
1835
+ image_extraction_status: ("ENABLED" | "DISABLED")
1836
+ }?
1368
1837
  }
1369
1838
  ) -> _UpdateDataSourceResponseSuccess
1370
1839
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataSourceResponseSuccess
@@ -1419,9 +1888,15 @@ module Aws
1419
1888
  }?,
1420
1889
  o_auth_2_client_credential_configuration: {
1421
1890
  secret_arn: ::String,
1422
- role_arn: ::String
1891
+ role_arn: ::String,
1892
+ authorization_url: ::String?,
1893
+ token_url: ::String?
1423
1894
  }?,
1424
1895
  no_auth_configuration: {
1896
+ }?,
1897
+ idc_auth_configuration: {
1898
+ idc_application_arn: ::String,
1899
+ role_arn: ::String
1425
1900
  }?
1426
1901
  }
1427
1902
  ) -> _UpdatePluginResponseSuccess
@@ -1520,7 +1995,16 @@ module Aws
1520
1995
  secrets_role: ::String
1521
1996
  }?
1522
1997
  },
1523
- ?origins: Array[::String]
1998
+ ?origins: Array[::String],
1999
+ ?browser_extension_configuration: {
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?
2007
+ }
1524
2008
  ) -> _UpdateWebExperienceResponseSuccess
1525
2009
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWebExperienceResponseSuccess
1526
2010
  end