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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1cb9ee07ebc249a457a30697cc9bdc03ffef87bd98443772d9002d439a963f66
4
- data.tar.gz: ed98467c27fb12f55f7c78c562e8cb878fe9b8a9525a67463702c0364019912b
3
+ metadata.gz: d111c9e27666794cce84fc16b3c8ca849c243f674a52802749bbe3375ff22c5b
4
+ data.tar.gz: a665c469b1e5bd82cdb5a1817ea2fdd5cc43cade1b0b5575449d3287bfea04ff
5
5
  SHA512:
6
- metadata.gz: 621c632dd181a33accc3ab9a3803c7882bc77fc3591517c9402e5dbcf5ccebac2b8d9940ed85b2affa31620f671a61e8547ea870a073b2dd7dff0cc1f27bfc50
7
- data.tar.gz: 2fd81a79dacb444f723f5e33355ac5d7052d888015bcc9d108274095f2630fea9e65703e658410812f16510da69e68195197c4ccb9f0e6d387b74008d638b533
6
+ metadata.gz: ff6853c0cdde4041cd68e1f220372eabaea8a2ea4a465b1510030217fe68ff77b3ed46bbfdc58e74da4bc777529dc35bfb11eeb9f7c607bb180bd3cb83a64b20
7
+ data.tar.gz: f6557d0277e825dfe5958074c40463ea40c59de041320ba7cea913e5d2dc69f69686c31e6f00dfdac4e05061fd8a8bd1c673f176bfc1f951688bc271c228ca29
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.24.0 (2024-12-03)
5
+ ------------------
6
+
7
+ * Feature - Amazon Q Business now supports customization options for your web experience, 11 new Plugins, and QuickSight support. Amazon Q index allows software providers to enrich their native generative AI experiences with their customer's enterprise knowledge and user context spanning multiple applications.
8
+
9
+ 1.23.0 (2024-12-02)
10
+ ------------------
11
+
12
+ * Feature - Amazon Q Business now supports capabilities to extract insights and answer questions from visual elements embedded within documents, a browser extension for Google Chrome, Mozilla Firefox, and Microsoft Edge, and attachments across conversations.
13
+
4
14
  1.22.0 (2024-11-08)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.24.0
@@ -525,6 +525,8 @@ module Aws::QBusiness
525
525
  # event.source_attributions[0].text_message_segments[0].begin_offset #=> Integer
526
526
  # event.source_attributions[0].text_message_segments[0].end_offset #=> Integer
527
527
  # event.source_attributions[0].text_message_segments[0].snippet_excerpt.text #=> String
528
+ # event.source_attributions[0].text_message_segments[0].media_id #=> String
529
+ # event.source_attributions[0].text_message_segments[0].media_mime_type #=> String
528
530
  # event.final_text_message #=> String
529
531
  #
530
532
  # For :action_review_event event available at #on_action_review_event_event callback and response eventstream enumerator:
@@ -532,7 +534,7 @@ module Aws::QBusiness
532
534
  # event.user_message_id #=> String
533
535
  # event.system_message_id #=> String
534
536
  # event.plugin_id #=> String
535
- # event.plugin_type #=> String, one of "SERVICE_NOW", "SALESFORCE", "JIRA", "ZENDESK", "CUSTOM"
537
+ # event.plugin_type #=> String, one of "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"
536
538
  # event.payload #=> Hash
537
539
  # event.payload["ActionPayloadFieldKey"].display_name #=> String
538
540
  # event.payload["ActionPayloadFieldKey"].display_order #=> Integer
@@ -548,9 +550,11 @@ module Aws::QBusiness
548
550
  # event.user_message_id #=> String
549
551
  # event.system_message_id #=> String
550
552
  # event.attachment.name #=> String
551
- # event.attachment.status #=> String, one of "FAILED", "SUCCEEDED"
553
+ # event.attachment.status #=> String, one of "FAILED", "SUCCESS"
552
554
  # event.attachment.error.error_message #=> String
553
555
  # event.attachment.error.error_code #=> String, one of "InternalError", "InvalidRequest", "ResourceInactive", "ResourceNotFound"
556
+ # event.attachment.attachment_id #=> String
557
+ # event.attachment.conversation_id #=> String
554
558
  #
555
559
  # For :auth_challenge_request_event event available at #on_auth_challenge_request_event_event callback and response eventstream enumerator:
556
560
  # event.authorization_url #=> String
@@ -603,7 +607,7 @@ module Aws::QBusiness
603
607
  tracer: tracer
604
608
  )
605
609
  context[:gem_name] = 'aws-sdk-qbusiness'
606
- context[:gem_version] = '1.22.0'
610
+ context[:gem_version] = '1.24.0'
607
611
  Seahorse::Client::Request.new(handlers, context)
608
612
  end
609
613