aws-sdk-qbusiness 1.22.0 → 1.24.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-qbusiness/async_client.rb +7 -3
- data/lib/aws-sdk-qbusiness/client.rb +1206 -45
- data/lib/aws-sdk-qbusiness/client_api.rb +589 -7
- data/lib/aws-sdk-qbusiness/errors.rb +32 -0
- data/lib/aws-sdk-qbusiness/event_streams.rb +3 -1
- data/lib/aws-sdk-qbusiness/types.rb +1437 -133
- data/lib/aws-sdk-qbusiness.rb +2 -2
- data/sig/client.rbs +495 -11
- data/sig/errors.rbs +6 -0
- data/sig/types.rbs +365 -12
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -39,6 +39,12 @@ module Aws::QBusiness
|
|
39
39
|
SENSITIVE: []
|
40
40
|
end
|
41
41
|
|
42
|
+
class ActionConfiguration
|
43
|
+
attr_accessor action: ::String
|
44
|
+
attr_accessor filter_configuration: Types::ActionFilterConfiguration
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
42
48
|
class ActionExecution
|
43
49
|
attr_accessor plugin_id: ::String
|
44
50
|
attr_accessor payload: ::Hash[::String, Types::ActionExecutionPayloadField]
|
@@ -59,9 +65,14 @@ module Aws::QBusiness
|
|
59
65
|
SENSITIVE: []
|
60
66
|
end
|
61
67
|
|
68
|
+
class ActionFilterConfiguration
|
69
|
+
attr_accessor document_attribute_filter: Types::AttributeFilter
|
70
|
+
SENSITIVE: []
|
71
|
+
end
|
72
|
+
|
62
73
|
class ActionReview
|
63
74
|
attr_accessor plugin_id: ::String
|
64
|
-
attr_accessor plugin_type: ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM")
|
75
|
+
attr_accessor 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")
|
65
76
|
attr_accessor payload: ::Hash[::String, Types::ActionReviewPayloadField]
|
66
77
|
attr_accessor payload_field_name_separator: ::String
|
67
78
|
SENSITIVE: []
|
@@ -72,7 +83,7 @@ module Aws::QBusiness
|
|
72
83
|
attr_accessor user_message_id: ::String
|
73
84
|
attr_accessor system_message_id: ::String
|
74
85
|
attr_accessor plugin_id: ::String
|
75
|
-
attr_accessor plugin_type: ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM")
|
86
|
+
attr_accessor 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")
|
76
87
|
attr_accessor payload: ::Hash[::String, Types::ActionReviewPayloadField]
|
77
88
|
attr_accessor payload_field_name_separator: ::String
|
78
89
|
attr_accessor event_type: untyped
|
@@ -98,13 +109,22 @@ module Aws::QBusiness
|
|
98
109
|
SENSITIVE: []
|
99
110
|
end
|
100
111
|
|
112
|
+
class ActionSummary
|
113
|
+
attr_accessor action_identifier: ::String
|
114
|
+
attr_accessor display_name: ::String
|
115
|
+
attr_accessor instruction_example: ::String
|
116
|
+
attr_accessor description: ::String
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
101
120
|
class Application
|
102
121
|
attr_accessor display_name: ::String
|
103
122
|
attr_accessor application_id: ::String
|
104
123
|
attr_accessor created_at: ::Time
|
105
124
|
attr_accessor updated_at: ::Time
|
106
125
|
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
|
107
|
-
attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC")
|
126
|
+
attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC" | "AWS_QUICKSIGHT_IDP")
|
127
|
+
attr_accessor quick_sight_configuration: Types::QuickSightConfiguration
|
108
128
|
SENSITIVE: []
|
109
129
|
end
|
110
130
|
|
@@ -118,9 +138,37 @@ module Aws::QBusiness
|
|
118
138
|
SENSITIVE: []
|
119
139
|
end
|
120
140
|
|
121
|
-
class
|
141
|
+
class AssociatePermissionRequest
|
142
|
+
attr_accessor application_id: ::String
|
143
|
+
attr_accessor statement_id: ::String
|
144
|
+
attr_accessor actions: ::Array[::String]
|
145
|
+
attr_accessor principal: ::String
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class AssociatePermissionResponse
|
150
|
+
attr_accessor statement: ::String
|
151
|
+
SENSITIVE: []
|
152
|
+
end
|
153
|
+
|
154
|
+
class Attachment
|
155
|
+
attr_accessor attachment_id: ::String
|
156
|
+
attr_accessor conversation_id: ::String
|
122
157
|
attr_accessor name: ::String
|
158
|
+
attr_accessor copy_from: Types::CopyFromSource
|
159
|
+
attr_accessor file_type: ::String
|
160
|
+
attr_accessor file_size: ::Integer
|
161
|
+
attr_accessor md5chksum: ::String
|
162
|
+
attr_accessor created_at: ::Time
|
163
|
+
attr_accessor status: ("FAILED" | "SUCCESS")
|
164
|
+
attr_accessor error: Types::ErrorDetail
|
165
|
+
SENSITIVE: []
|
166
|
+
end
|
167
|
+
|
168
|
+
class AttachmentInput
|
123
169
|
attr_accessor data: ::String
|
170
|
+
attr_accessor name: ::String
|
171
|
+
attr_accessor copy_from: Types::CopyFromSource
|
124
172
|
SENSITIVE: []
|
125
173
|
end
|
126
174
|
|
@@ -132,8 +180,10 @@ module Aws::QBusiness
|
|
132
180
|
|
133
181
|
class AttachmentOutput
|
134
182
|
attr_accessor name: ::String
|
135
|
-
attr_accessor status: ("FAILED" | "
|
183
|
+
attr_accessor status: ("FAILED" | "SUCCESS")
|
136
184
|
attr_accessor error: Types::ErrorDetail
|
185
|
+
attr_accessor attachment_id: ::String
|
186
|
+
attr_accessor conversation_id: ::String
|
137
187
|
SENSITIVE: []
|
138
188
|
end
|
139
189
|
|
@@ -230,6 +280,11 @@ module Aws::QBusiness
|
|
230
280
|
SENSITIVE: []
|
231
281
|
end
|
232
282
|
|
283
|
+
class BrowserExtensionConfiguration
|
284
|
+
attr_accessor enabled_browser_extensions: ::Array[("FIREFOX" | "CHROME")]
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
233
288
|
class ChatInput
|
234
289
|
attr_accessor application_id: ::String
|
235
290
|
attr_accessor user_id: ::String
|
@@ -311,6 +366,17 @@ module Aws::QBusiness
|
|
311
366
|
SENSITIVE: []
|
312
367
|
end
|
313
368
|
|
369
|
+
class ContentSource
|
370
|
+
attr_accessor retriever: Types::RetrieverContentSource
|
371
|
+
attr_accessor unknown: untyped
|
372
|
+
SENSITIVE: []
|
373
|
+
|
374
|
+
class Retriever < ContentSource
|
375
|
+
end
|
376
|
+
class Unknown < ContentSource
|
377
|
+
end
|
378
|
+
end
|
379
|
+
|
314
380
|
class Conversation
|
315
381
|
attr_accessor conversation_id: ::String
|
316
382
|
attr_accessor title: ::String
|
@@ -318,10 +384,27 @@ module Aws::QBusiness
|
|
318
384
|
SENSITIVE: []
|
319
385
|
end
|
320
386
|
|
387
|
+
class ConversationSource
|
388
|
+
attr_accessor conversation_id: ::String
|
389
|
+
attr_accessor attachment_id: ::String
|
390
|
+
SENSITIVE: []
|
391
|
+
end
|
392
|
+
|
393
|
+
class CopyFromSource
|
394
|
+
attr_accessor conversation: Types::ConversationSource
|
395
|
+
attr_accessor unknown: untyped
|
396
|
+
SENSITIVE: []
|
397
|
+
|
398
|
+
class Conversation < CopyFromSource
|
399
|
+
end
|
400
|
+
class Unknown < CopyFromSource
|
401
|
+
end
|
402
|
+
end
|
403
|
+
|
321
404
|
class CreateApplicationRequest
|
322
405
|
attr_accessor display_name: ::String
|
323
406
|
attr_accessor role_arn: ::String
|
324
|
-
attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC")
|
407
|
+
attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC" | "AWS_QUICKSIGHT_IDP")
|
325
408
|
attr_accessor iam_identity_provider_arn: ::String
|
326
409
|
attr_accessor identity_center_instance_arn: ::String
|
327
410
|
attr_accessor client_ids_for_oidc: ::Array[::String]
|
@@ -332,6 +415,7 @@ module Aws::QBusiness
|
|
332
415
|
attr_accessor attachments_configuration: Types::AttachmentsConfiguration
|
333
416
|
attr_accessor q_apps_configuration: Types::QAppsConfiguration
|
334
417
|
attr_accessor personalization_configuration: Types::PersonalizationConfiguration
|
418
|
+
attr_accessor quick_sight_configuration: Types::QuickSightConfiguration
|
335
419
|
SENSITIVE: []
|
336
420
|
end
|
337
421
|
|
@@ -341,6 +425,23 @@ module Aws::QBusiness
|
|
341
425
|
SENSITIVE: []
|
342
426
|
end
|
343
427
|
|
428
|
+
class CreateDataAccessorRequest
|
429
|
+
attr_accessor application_id: ::String
|
430
|
+
attr_accessor principal: ::String
|
431
|
+
attr_accessor action_configurations: ::Array[Types::ActionConfiguration]
|
432
|
+
attr_accessor client_token: ::String
|
433
|
+
attr_accessor display_name: ::String
|
434
|
+
attr_accessor tags: ::Array[Types::Tag]
|
435
|
+
SENSITIVE: [:display_name]
|
436
|
+
end
|
437
|
+
|
438
|
+
class CreateDataAccessorResponse
|
439
|
+
attr_accessor data_accessor_id: ::String
|
440
|
+
attr_accessor idc_application_arn: ::String
|
441
|
+
attr_accessor data_accessor_arn: ::String
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
344
445
|
class CreateDataSourceRequest
|
345
446
|
attr_accessor application_id: ::String
|
346
447
|
attr_accessor index_id: ::String
|
@@ -353,6 +454,7 @@ module Aws::QBusiness
|
|
353
454
|
attr_accessor role_arn: ::String
|
354
455
|
attr_accessor client_token: ::String
|
355
456
|
attr_accessor document_enrichment_configuration: Types::DocumentEnrichmentConfiguration
|
457
|
+
attr_accessor media_extraction_configuration: Types::MediaExtractionConfiguration
|
356
458
|
SENSITIVE: []
|
357
459
|
end
|
358
460
|
|
@@ -365,8 +467,8 @@ module Aws::QBusiness
|
|
365
467
|
class CreateIndexRequest
|
366
468
|
attr_accessor application_id: ::String
|
367
469
|
attr_accessor display_name: ::String
|
368
|
-
attr_accessor type: ("ENTERPRISE" | "STARTER")
|
369
470
|
attr_accessor description: ::String
|
471
|
+
attr_accessor type: ("ENTERPRISE" | "STARTER")
|
370
472
|
attr_accessor tags: ::Array[Types::Tag]
|
371
473
|
attr_accessor capacity_configuration: Types::IndexCapacityConfiguration
|
372
474
|
attr_accessor client_token: ::String
|
@@ -382,7 +484,7 @@ module Aws::QBusiness
|
|
382
484
|
class CreatePluginRequest
|
383
485
|
attr_accessor application_id: ::String
|
384
486
|
attr_accessor display_name: ::String
|
385
|
-
attr_accessor type: ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM")
|
487
|
+
attr_accessor 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")
|
386
488
|
attr_accessor auth_configuration: Types::PluginAuthConfiguration
|
387
489
|
attr_accessor server_url: ::String
|
388
490
|
attr_accessor custom_plugin_configuration: Types::CustomPluginConfiguration
|
@@ -437,6 +539,8 @@ module Aws::QBusiness
|
|
437
539
|
attr_accessor tags: ::Array[Types::Tag]
|
438
540
|
attr_accessor client_token: ::String
|
439
541
|
attr_accessor identity_provider_configuration: Types::IdentityProviderConfiguration
|
542
|
+
attr_accessor browser_extension_configuration: Types::BrowserExtensionConfiguration
|
543
|
+
attr_accessor customization_configuration: Types::CustomizationConfiguration
|
440
544
|
SENSITIVE: []
|
441
545
|
end
|
442
546
|
|
@@ -458,6 +562,25 @@ module Aws::QBusiness
|
|
458
562
|
SENSITIVE: []
|
459
563
|
end
|
460
564
|
|
565
|
+
class CustomizationConfiguration
|
566
|
+
attr_accessor custom_css_url: ::String
|
567
|
+
attr_accessor logo_url: ::String
|
568
|
+
attr_accessor font_url: ::String
|
569
|
+
attr_accessor favicon_url: ::String
|
570
|
+
SENSITIVE: []
|
571
|
+
end
|
572
|
+
|
573
|
+
class DataAccessor
|
574
|
+
attr_accessor display_name: ::String
|
575
|
+
attr_accessor data_accessor_id: ::String
|
576
|
+
attr_accessor data_accessor_arn: ::String
|
577
|
+
attr_accessor idc_application_arn: ::String
|
578
|
+
attr_accessor principal: ::String
|
579
|
+
attr_accessor created_at: ::Time
|
580
|
+
attr_accessor updated_at: ::Time
|
581
|
+
SENSITIVE: [:display_name]
|
582
|
+
end
|
583
|
+
|
461
584
|
class DataSource
|
462
585
|
attr_accessor display_name: ::String
|
463
586
|
attr_accessor data_source_id: ::String
|
@@ -526,6 +649,15 @@ module Aws::QBusiness
|
|
526
649
|
class DeleteConversationResponse < Aws::EmptyStructure
|
527
650
|
end
|
528
651
|
|
652
|
+
class DeleteDataAccessorRequest
|
653
|
+
attr_accessor application_id: ::String
|
654
|
+
attr_accessor data_accessor_id: ::String
|
655
|
+
SENSITIVE: []
|
656
|
+
end
|
657
|
+
|
658
|
+
class DeleteDataAccessorResponse < Aws::EmptyStructure
|
659
|
+
end
|
660
|
+
|
529
661
|
class DeleteDataSourceRequest
|
530
662
|
attr_accessor application_id: ::String
|
531
663
|
attr_accessor index_id: ::String
|
@@ -597,6 +729,15 @@ module Aws::QBusiness
|
|
597
729
|
class DeleteWebExperienceResponse < Aws::EmptyStructure
|
598
730
|
end
|
599
731
|
|
732
|
+
class DisassociatePermissionRequest
|
733
|
+
attr_accessor application_id: ::String
|
734
|
+
attr_accessor statement_id: ::String
|
735
|
+
SENSITIVE: []
|
736
|
+
end
|
737
|
+
|
738
|
+
class DisassociatePermissionResponse < Aws::EmptyStructure
|
739
|
+
end
|
740
|
+
|
600
741
|
class Document
|
601
742
|
attr_accessor id: ::String
|
602
743
|
attr_accessor attributes: ::Array[Types::DocumentAttribute]
|
@@ -605,6 +746,7 @@ module Aws::QBusiness
|
|
605
746
|
attr_accessor title: ::String
|
606
747
|
attr_accessor access_configuration: Types::AccessConfiguration
|
607
748
|
attr_accessor document_enrichment_configuration: Types::DocumentEnrichmentConfiguration
|
749
|
+
attr_accessor media_extraction_configuration: Types::MediaExtractionConfiguration
|
608
750
|
SENSITIVE: []
|
609
751
|
end
|
610
752
|
|
@@ -727,6 +869,11 @@ module Aws::QBusiness
|
|
727
869
|
SENSITIVE: []
|
728
870
|
end
|
729
871
|
|
872
|
+
class ExternalResourceException
|
873
|
+
attr_accessor message: ::String
|
874
|
+
SENSITIVE: []
|
875
|
+
end
|
876
|
+
|
730
877
|
class FailedAttachmentEvent
|
731
878
|
attr_accessor conversation_id: ::String
|
732
879
|
attr_accessor user_message_id: ::String
|
@@ -752,7 +899,7 @@ module Aws::QBusiness
|
|
752
899
|
attr_accessor display_name: ::String
|
753
900
|
attr_accessor application_id: ::String
|
754
901
|
attr_accessor application_arn: ::String
|
755
|
-
attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC")
|
902
|
+
attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC" | "AWS_QUICKSIGHT_IDP")
|
756
903
|
attr_accessor iam_identity_provider_arn: ::String
|
757
904
|
attr_accessor identity_center_application_arn: ::String
|
758
905
|
attr_accessor role_arn: ::String
|
@@ -767,6 +914,7 @@ module Aws::QBusiness
|
|
767
914
|
attr_accessor personalization_configuration: Types::PersonalizationConfiguration
|
768
915
|
attr_accessor auto_subscription_configuration: Types::AutoSubscriptionConfiguration
|
769
916
|
attr_accessor client_ids_for_oidc: ::Array[::String]
|
917
|
+
attr_accessor quick_sight_configuration: Types::QuickSightConfiguration
|
770
918
|
SENSITIVE: []
|
771
919
|
end
|
772
920
|
|
@@ -786,6 +934,25 @@ module Aws::QBusiness
|
|
786
934
|
SENSITIVE: []
|
787
935
|
end
|
788
936
|
|
937
|
+
class GetDataAccessorRequest
|
938
|
+
attr_accessor application_id: ::String
|
939
|
+
attr_accessor data_accessor_id: ::String
|
940
|
+
SENSITIVE: []
|
941
|
+
end
|
942
|
+
|
943
|
+
class GetDataAccessorResponse
|
944
|
+
attr_accessor display_name: ::String
|
945
|
+
attr_accessor data_accessor_id: ::String
|
946
|
+
attr_accessor data_accessor_arn: ::String
|
947
|
+
attr_accessor application_id: ::String
|
948
|
+
attr_accessor idc_application_arn: ::String
|
949
|
+
attr_accessor principal: ::String
|
950
|
+
attr_accessor action_configurations: ::Array[Types::ActionConfiguration]
|
951
|
+
attr_accessor created_at: ::Time
|
952
|
+
attr_accessor updated_at: ::Time
|
953
|
+
SENSITIVE: [:display_name]
|
954
|
+
end
|
955
|
+
|
789
956
|
class GetDataSourceRequest
|
790
957
|
attr_accessor application_id: ::String
|
791
958
|
attr_accessor index_id: ::String
|
@@ -810,6 +977,7 @@ module Aws::QBusiness
|
|
810
977
|
attr_accessor role_arn: ::String
|
811
978
|
attr_accessor error: Types::ErrorDetail
|
812
979
|
attr_accessor document_enrichment_configuration: Types::DocumentEnrichmentConfiguration
|
980
|
+
attr_accessor media_extraction_configuration: Types::MediaExtractionConfiguration
|
813
981
|
SENSITIVE: []
|
814
982
|
end
|
815
983
|
|
@@ -837,9 +1005,9 @@ module Aws::QBusiness
|
|
837
1005
|
attr_accessor application_id: ::String
|
838
1006
|
attr_accessor index_id: ::String
|
839
1007
|
attr_accessor display_name: ::String
|
840
|
-
attr_accessor type: ("ENTERPRISE" | "STARTER")
|
841
1008
|
attr_accessor index_arn: ::String
|
842
1009
|
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
|
1010
|
+
attr_accessor type: ("ENTERPRISE" | "STARTER")
|
843
1011
|
attr_accessor description: ::String
|
844
1012
|
attr_accessor created_at: ::Time
|
845
1013
|
attr_accessor updated_at: ::Time
|
@@ -850,6 +1018,20 @@ module Aws::QBusiness
|
|
850
1018
|
SENSITIVE: []
|
851
1019
|
end
|
852
1020
|
|
1021
|
+
class GetMediaRequest
|
1022
|
+
attr_accessor application_id: ::String
|
1023
|
+
attr_accessor conversation_id: ::String
|
1024
|
+
attr_accessor message_id: ::String
|
1025
|
+
attr_accessor media_id: ::String
|
1026
|
+
SENSITIVE: []
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
class GetMediaResponse
|
1030
|
+
attr_accessor media_bytes: ::String
|
1031
|
+
attr_accessor media_mime_type: ::String
|
1032
|
+
SENSITIVE: []
|
1033
|
+
end
|
1034
|
+
|
853
1035
|
class GetPluginRequest
|
854
1036
|
attr_accessor application_id: ::String
|
855
1037
|
attr_accessor plugin_id: ::String
|
@@ -860,7 +1042,7 @@ module Aws::QBusiness
|
|
860
1042
|
attr_accessor application_id: ::String
|
861
1043
|
attr_accessor plugin_id: ::String
|
862
1044
|
attr_accessor display_name: ::String
|
863
|
-
attr_accessor type: ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM")
|
1045
|
+
attr_accessor 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")
|
864
1046
|
attr_accessor server_url: ::String
|
865
1047
|
attr_accessor auth_configuration: Types::PluginAuthConfiguration
|
866
1048
|
attr_accessor custom_plugin_configuration: Types::CustomPluginConfiguration
|
@@ -872,6 +1054,16 @@ module Aws::QBusiness
|
|
872
1054
|
SENSITIVE: []
|
873
1055
|
end
|
874
1056
|
|
1057
|
+
class GetPolicyRequest
|
1058
|
+
attr_accessor application_id: ::String
|
1059
|
+
SENSITIVE: []
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
class GetPolicyResponse
|
1063
|
+
attr_accessor policy: ::String
|
1064
|
+
SENSITIVE: []
|
1065
|
+
end
|
1066
|
+
|
875
1067
|
class GetRetrieverRequest
|
876
1068
|
attr_accessor application_id: ::String
|
877
1069
|
attr_accessor retriever_id: ::String
|
@@ -926,6 +1118,8 @@ module Aws::QBusiness
|
|
926
1118
|
attr_accessor identity_provider_configuration: Types::IdentityProviderConfiguration
|
927
1119
|
attr_accessor authentication_configuration: Types::WebExperienceAuthConfiguration
|
928
1120
|
attr_accessor error: Types::ErrorDetail
|
1121
|
+
attr_accessor browser_extension_configuration: Types::BrowserExtensionConfiguration
|
1122
|
+
attr_accessor customization_configuration: Types::CustomizationConfiguration
|
929
1123
|
SENSITIVE: []
|
930
1124
|
end
|
931
1125
|
|
@@ -956,6 +1150,12 @@ module Aws::QBusiness
|
|
956
1150
|
SENSITIVE: []
|
957
1151
|
end
|
958
1152
|
|
1153
|
+
class IdcAuthConfiguration
|
1154
|
+
attr_accessor idc_application_arn: ::String
|
1155
|
+
attr_accessor role_arn: ::String
|
1156
|
+
SENSITIVE: []
|
1157
|
+
end
|
1158
|
+
|
959
1159
|
class IdentityProviderConfiguration
|
960
1160
|
attr_accessor saml_configuration: Types::SamlProviderConfiguration
|
961
1161
|
attr_accessor open_id_connect_configuration: Types::OpenIDConnectProviderConfiguration
|
@@ -970,6 +1170,11 @@ module Aws::QBusiness
|
|
970
1170
|
end
|
971
1171
|
end
|
972
1172
|
|
1173
|
+
class ImageExtractionConfiguration
|
1174
|
+
attr_accessor image_extraction_status: ("ENABLED" | "DISABLED")
|
1175
|
+
SENSITIVE: []
|
1176
|
+
end
|
1177
|
+
|
973
1178
|
class Index
|
974
1179
|
attr_accessor display_name: ::String
|
975
1180
|
attr_accessor index_id: ::String
|
@@ -1023,6 +1228,21 @@ module Aws::QBusiness
|
|
1023
1228
|
SENSITIVE: []
|
1024
1229
|
end
|
1025
1230
|
|
1231
|
+
class ListAttachmentsRequest
|
1232
|
+
attr_accessor application_id: ::String
|
1233
|
+
attr_accessor conversation_id: ::String
|
1234
|
+
attr_accessor user_id: ::String
|
1235
|
+
attr_accessor next_token: ::String
|
1236
|
+
attr_accessor max_results: ::Integer
|
1237
|
+
SENSITIVE: []
|
1238
|
+
end
|
1239
|
+
|
1240
|
+
class ListAttachmentsResponse
|
1241
|
+
attr_accessor attachments: ::Array[Types::Attachment]
|
1242
|
+
attr_accessor next_token: ::String
|
1243
|
+
SENSITIVE: []
|
1244
|
+
end
|
1245
|
+
|
1026
1246
|
class ListConversationsRequest
|
1027
1247
|
attr_accessor application_id: ::String
|
1028
1248
|
attr_accessor user_id: ::String
|
@@ -1037,6 +1257,19 @@ module Aws::QBusiness
|
|
1037
1257
|
SENSITIVE: []
|
1038
1258
|
end
|
1039
1259
|
|
1260
|
+
class ListDataAccessorsRequest
|
1261
|
+
attr_accessor application_id: ::String
|
1262
|
+
attr_accessor next_token: ::String
|
1263
|
+
attr_accessor max_results: ::Integer
|
1264
|
+
SENSITIVE: []
|
1265
|
+
end
|
1266
|
+
|
1267
|
+
class ListDataAccessorsResponse
|
1268
|
+
attr_accessor data_accessors: ::Array[Types::DataAccessor]
|
1269
|
+
attr_accessor next_token: ::String
|
1270
|
+
SENSITIVE: []
|
1271
|
+
end
|
1272
|
+
|
1040
1273
|
class ListDataSourceSyncJobsRequest
|
1041
1274
|
attr_accessor data_source_id: ::String
|
1042
1275
|
attr_accessor application_id: ::String
|
@@ -1128,6 +1361,45 @@ module Aws::QBusiness
|
|
1128
1361
|
SENSITIVE: []
|
1129
1362
|
end
|
1130
1363
|
|
1364
|
+
class ListPluginActionsRequest
|
1365
|
+
attr_accessor application_id: ::String
|
1366
|
+
attr_accessor plugin_id: ::String
|
1367
|
+
attr_accessor next_token: ::String
|
1368
|
+
attr_accessor max_results: ::Integer
|
1369
|
+
SENSITIVE: []
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
class ListPluginActionsResponse
|
1373
|
+
attr_accessor next_token: ::String
|
1374
|
+
attr_accessor items: ::Array[Types::ActionSummary]
|
1375
|
+
SENSITIVE: []
|
1376
|
+
end
|
1377
|
+
|
1378
|
+
class ListPluginTypeActionsRequest
|
1379
|
+
attr_accessor 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")
|
1380
|
+
attr_accessor next_token: ::String
|
1381
|
+
attr_accessor max_results: ::Integer
|
1382
|
+
SENSITIVE: []
|
1383
|
+
end
|
1384
|
+
|
1385
|
+
class ListPluginTypeActionsResponse
|
1386
|
+
attr_accessor next_token: ::String
|
1387
|
+
attr_accessor items: ::Array[Types::ActionSummary]
|
1388
|
+
SENSITIVE: []
|
1389
|
+
end
|
1390
|
+
|
1391
|
+
class ListPluginTypeMetadataRequest
|
1392
|
+
attr_accessor next_token: ::String
|
1393
|
+
attr_accessor max_results: ::Integer
|
1394
|
+
SENSITIVE: []
|
1395
|
+
end
|
1396
|
+
|
1397
|
+
class ListPluginTypeMetadataResponse
|
1398
|
+
attr_accessor next_token: ::String
|
1399
|
+
attr_accessor items: ::Array[Types::PluginTypeMetadataSummary]
|
1400
|
+
SENSITIVE: []
|
1401
|
+
end
|
1402
|
+
|
1131
1403
|
class ListPluginsRequest
|
1132
1404
|
attr_accessor application_id: ::String
|
1133
1405
|
attr_accessor next_token: ::String
|
@@ -1177,6 +1449,16 @@ module Aws::QBusiness
|
|
1177
1449
|
SENSITIVE: []
|
1178
1450
|
end
|
1179
1451
|
|
1452
|
+
class MediaExtractionConfiguration
|
1453
|
+
attr_accessor image_extraction_configuration: Types::ImageExtractionConfiguration
|
1454
|
+
SENSITIVE: []
|
1455
|
+
end
|
1456
|
+
|
1457
|
+
class MediaTooLargeException
|
1458
|
+
attr_accessor message: ::String
|
1459
|
+
SENSITIVE: []
|
1460
|
+
end
|
1461
|
+
|
1180
1462
|
class MemberGroup
|
1181
1463
|
attr_accessor group_name: ::String
|
1182
1464
|
attr_accessor type: ("INDEX" | "DATASOURCE")
|
@@ -1237,6 +1519,8 @@ module Aws::QBusiness
|
|
1237
1519
|
class OAuth2ClientCredentialConfiguration
|
1238
1520
|
attr_accessor secret_arn: ::String
|
1239
1521
|
attr_accessor role_arn: ::String
|
1522
|
+
attr_accessor authorization_url: ::String
|
1523
|
+
attr_accessor token_url: ::String
|
1240
1524
|
SENSITIVE: []
|
1241
1525
|
end
|
1242
1526
|
|
@@ -1254,7 +1538,7 @@ module Aws::QBusiness
|
|
1254
1538
|
class Plugin
|
1255
1539
|
attr_accessor plugin_id: ::String
|
1256
1540
|
attr_accessor display_name: ::String
|
1257
|
-
attr_accessor type: ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM")
|
1541
|
+
attr_accessor 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")
|
1258
1542
|
attr_accessor server_url: ::String
|
1259
1543
|
attr_accessor state: ("ENABLED" | "DISABLED")
|
1260
1544
|
attr_accessor build_status: ("READY" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
|
@@ -1267,6 +1551,7 @@ module Aws::QBusiness
|
|
1267
1551
|
attr_accessor basic_auth_configuration: Types::BasicAuthConfiguration
|
1268
1552
|
attr_accessor o_auth_2_client_credential_configuration: Types::OAuth2ClientCredentialConfiguration
|
1269
1553
|
attr_accessor no_auth_configuration: Types::NoAuthConfiguration
|
1554
|
+
attr_accessor idc_auth_configuration: Types::IdcAuthConfiguration
|
1270
1555
|
attr_accessor unknown: untyped
|
1271
1556
|
SENSITIVE: []
|
1272
1557
|
|
@@ -1276,6 +1561,8 @@ module Aws::QBusiness
|
|
1276
1561
|
end
|
1277
1562
|
class NoAuthConfiguration < PluginAuthConfiguration
|
1278
1563
|
end
|
1564
|
+
class IdcAuthConfiguration < PluginAuthConfiguration
|
1565
|
+
end
|
1279
1566
|
class Unknown < PluginAuthConfiguration
|
1280
1567
|
end
|
1281
1568
|
end
|
@@ -1285,6 +1572,13 @@ module Aws::QBusiness
|
|
1285
1572
|
SENSITIVE: []
|
1286
1573
|
end
|
1287
1574
|
|
1575
|
+
class PluginTypeMetadataSummary
|
1576
|
+
attr_accessor 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")
|
1577
|
+
attr_accessor category: ("Customer relationship management (CRM)" | "Project management" | "Communication" | "Productivity" | "Ticketing and incident management")
|
1578
|
+
attr_accessor description: ::String
|
1579
|
+
SENSITIVE: []
|
1580
|
+
end
|
1581
|
+
|
1288
1582
|
class Principal
|
1289
1583
|
attr_accessor user: Types::PrincipalUser
|
1290
1584
|
attr_accessor group: Types::PrincipalGroup
|
@@ -1342,6 +1636,21 @@ module Aws::QBusiness
|
|
1342
1636
|
SENSITIVE: []
|
1343
1637
|
end
|
1344
1638
|
|
1639
|
+
class QuickSightConfiguration
|
1640
|
+
attr_accessor client_namespace: ::String
|
1641
|
+
SENSITIVE: []
|
1642
|
+
end
|
1643
|
+
|
1644
|
+
class RelevantContent
|
1645
|
+
attr_accessor content: ::String
|
1646
|
+
attr_accessor document_id: ::String
|
1647
|
+
attr_accessor document_title: ::String
|
1648
|
+
attr_accessor document_uri: ::String
|
1649
|
+
attr_accessor document_attributes: ::Array[Types::DocumentAttribute]
|
1650
|
+
attr_accessor score_attributes: Types::ScoreAttributes
|
1651
|
+
SENSITIVE: []
|
1652
|
+
end
|
1653
|
+
|
1345
1654
|
class ResourceNotFoundException
|
1346
1655
|
attr_accessor message: ::String
|
1347
1656
|
attr_accessor resource_id: ::String
|
@@ -1372,6 +1681,11 @@ module Aws::QBusiness
|
|
1372
1681
|
end
|
1373
1682
|
end
|
1374
1683
|
|
1684
|
+
class RetrieverContentSource
|
1685
|
+
attr_accessor retriever_id: ::String
|
1686
|
+
SENSITIVE: []
|
1687
|
+
end
|
1688
|
+
|
1375
1689
|
class Rule
|
1376
1690
|
attr_accessor included_users_and_groups: Types::UsersAndGroups
|
1377
1691
|
attr_accessor excluded_users_and_groups: Types::UsersAndGroups
|
@@ -1413,6 +1727,29 @@ module Aws::QBusiness
|
|
1413
1727
|
SENSITIVE: []
|
1414
1728
|
end
|
1415
1729
|
|
1730
|
+
class ScoreAttributes
|
1731
|
+
attr_accessor score_confidence: ("VERY_HIGH" | "HIGH" | "MEDIUM" | "LOW" | "NOT_AVAILABLE")
|
1732
|
+
SENSITIVE: []
|
1733
|
+
end
|
1734
|
+
|
1735
|
+
class SearchRelevantContentRequest
|
1736
|
+
attr_accessor application_id: ::String
|
1737
|
+
attr_accessor user_id: ::String
|
1738
|
+
attr_accessor user_groups: ::Array[::String]
|
1739
|
+
attr_accessor query_text: ::String
|
1740
|
+
attr_accessor content_source: Types::ContentSource
|
1741
|
+
attr_accessor attribute_filter: Types::AttributeFilter
|
1742
|
+
attr_accessor max_results: ::Integer
|
1743
|
+
attr_accessor next_token: ::String
|
1744
|
+
SENSITIVE: []
|
1745
|
+
end
|
1746
|
+
|
1747
|
+
class SearchRelevantContentResponse
|
1748
|
+
attr_accessor relevant_content: ::Array[Types::RelevantContent]
|
1749
|
+
attr_accessor next_token: ::String
|
1750
|
+
SENSITIVE: []
|
1751
|
+
end
|
1752
|
+
|
1416
1753
|
class ServiceQuotaExceededException
|
1417
1754
|
attr_accessor message: ::String
|
1418
1755
|
attr_accessor resource_id: ::String
|
@@ -1508,6 +1845,8 @@ module Aws::QBusiness
|
|
1508
1845
|
attr_accessor begin_offset: ::Integer
|
1509
1846
|
attr_accessor end_offset: ::Integer
|
1510
1847
|
attr_accessor snippet_excerpt: Types::SnippetExcerpt
|
1848
|
+
attr_accessor media_id: ::String
|
1849
|
+
attr_accessor media_mime_type: ::String
|
1511
1850
|
SENSITIVE: []
|
1512
1851
|
end
|
1513
1852
|
|
@@ -1563,6 +1902,17 @@ module Aws::QBusiness
|
|
1563
1902
|
class UpdateChatControlsConfigurationResponse < Aws::EmptyStructure
|
1564
1903
|
end
|
1565
1904
|
|
1905
|
+
class UpdateDataAccessorRequest
|
1906
|
+
attr_accessor application_id: ::String
|
1907
|
+
attr_accessor data_accessor_id: ::String
|
1908
|
+
attr_accessor action_configurations: ::Array[Types::ActionConfiguration]
|
1909
|
+
attr_accessor display_name: ::String
|
1910
|
+
SENSITIVE: [:display_name]
|
1911
|
+
end
|
1912
|
+
|
1913
|
+
class UpdateDataAccessorResponse < Aws::EmptyStructure
|
1914
|
+
end
|
1915
|
+
|
1566
1916
|
class UpdateDataSourceRequest
|
1567
1917
|
attr_accessor application_id: ::String
|
1568
1918
|
attr_accessor index_id: ::String
|
@@ -1574,6 +1924,7 @@ module Aws::QBusiness
|
|
1574
1924
|
attr_accessor sync_schedule: ::String
|
1575
1925
|
attr_accessor role_arn: ::String
|
1576
1926
|
attr_accessor document_enrichment_configuration: Types::DocumentEnrichmentConfiguration
|
1927
|
+
attr_accessor media_extraction_configuration: Types::MediaExtractionConfiguration
|
1577
1928
|
SENSITIVE: []
|
1578
1929
|
end
|
1579
1930
|
|
@@ -1645,6 +1996,8 @@ module Aws::QBusiness
|
|
1645
1996
|
attr_accessor sample_prompts_control_mode: ("ENABLED" | "DISABLED")
|
1646
1997
|
attr_accessor identity_provider_configuration: Types::IdentityProviderConfiguration
|
1647
1998
|
attr_accessor origins: ::Array[::String]
|
1999
|
+
attr_accessor browser_extension_configuration: Types::BrowserExtensionConfiguration
|
2000
|
+
attr_accessor customization_configuration: Types::CustomizationConfiguration
|
1648
2001
|
SENSITIVE: []
|
1649
2002
|
end
|
1650
2003
|
|