Skip to content

Commit 1d9691b

Browse files
author
AWS
committed
QBusiness Update: Allow enable/disable Q Apps when creating/updating a Q application; Return the Q Apps enablement information when getting a Q application.
1 parent 7d04209 commit 1d9691b

File tree

2 files changed

+41
-4
lines changed

2 files changed

+41
-4
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "QBusiness",
4+
"contributor": "",
5+
"description": "Allow enable/disable Q Apps when creating/updating a Q application; Return the Q Apps enablement information when getting a Q application."
6+
}

services/qbusiness/src/main/resources/codegen-resources/service-2.json

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"version":"2.0",
33
"metadata":{
44
"apiVersion":"2023-11-27",
5+
"auth":["aws.auth#sigv4"],
56
"endpointPrefix":"qbusiness",
67
"protocol":"rest-json",
78
"protocolSettings":{"h2":"eventstream"},
@@ -110,7 +111,7 @@
110111
{"shape":"AccessDeniedException"},
111112
{"shape":"ServiceQuotaExceededException"}
112113
],
113-
"documentation":"<p>Creates an Amazon Q Business application.</p> <note> <p>There are new tiers for Amazon Q Business. Not all features in Amazon Q Business Pro are also available in Amazon Q Business Lite. For information on what's included in Amazon Q Business Lite and what's included in Amazon Q Business Pro, see <a href=\"https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/what-is.html#tiers\">Amazon Q Business tiers</a>. You must use the Amazon Q Business console to assign subscription tiers to users.</p> </note>",
114+
"documentation":"<p>Creates an Amazon Q Business application.</p> <note> <p>There are new tiers for Amazon Q Business. Not all features in Amazon Q Business Pro are also available in Amazon Q Business Lite. For information on what's included in Amazon Q Business Lite and what's included in Amazon Q Business Pro, see <a href=\"https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/tiers.html#user-sub-tiers\">Amazon Q Business tiers</a>. You must use the Amazon Q Business console to assign subscription tiers to users.</p> </note>",
114115
"idempotent":true
115116
},
116117
"CreateDataSource":{
@@ -1562,7 +1563,7 @@
15621563
},
15631564
"containsAny":{
15641565
"shape":"DocumentAttribute",
1565-
"documentation":"<p>Returns <code>true</code> when a document contains any of the specified document attributes or metadata fields. Supported for the following <a href=\"https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html\">document attribute value types</a>: <code>dateValue</code>, <code>longValue</code>, <code>stringListValue</code> and <code>stringValue</code>.</p>"
1566+
"documentation":"<p>Returns <code>true</code> when a document contains any of the specified document attributes or metadata fields. Supported for the following <a href=\"https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html\">document attribute value types</a>: <code>stringListValue</code>.</p>"
15661567
},
15671568
"greaterThan":{
15681569
"shape":"DocumentAttribute",
@@ -1995,7 +1996,7 @@
19951996
},
19961997
"parentMessageId":{
19971998
"shape":"MessageId",
1998-
"documentation":"<p>The identifier of the previous end user text input message in a conversation.</p>"
1999+
"documentation":"<p>The identifier of the previous system message in a conversation.</p>"
19992000
},
20002001
"attributeFilter":{
20012002
"shape":"AttributeFilter",
@@ -2201,6 +2202,10 @@
22012202
"attachmentsConfiguration":{
22022203
"shape":"AttachmentsConfiguration",
22032204
"documentation":"<p>An option to allow end users to upload files directly during chat.</p>"
2205+
},
2206+
"qAppsConfiguration":{
2207+
"shape":"QAppsConfiguration",
2208+
"documentation":"<p>An option to allow end users to create and use Amazon Q Apps in the web experience.</p>"
22042209
}
22052210
}
22062211
},
@@ -2306,7 +2311,7 @@
23062311
},
23072312
"type":{
23082313
"shape":"IndexType",
2309-
"documentation":"<p>The index type that's suitable for your needs. For more information on what's included in each type of index or index tier, see <a href=\"https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/what-is.html#tiers\">Amazon Q Business tiers</a>.</p>"
2314+
"documentation":"<p>The index type that's suitable for your needs. For more information on what's included in each type of index, see <a href=\"https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/tiers.html#index-tiers\">Amazon Q Business tiers</a>.</p>"
23102315
},
23112316
"description":{
23122317
"shape":"Description",
@@ -3557,6 +3562,10 @@
35573562
"attachmentsConfiguration":{
35583563
"shape":"AppliedAttachmentsConfiguration",
35593564
"documentation":"<p>Settings for whether end users can upload files directly during chat.</p>"
3565+
},
3566+
"qAppsConfiguration":{
3567+
"shape":"QAppsConfiguration",
3568+
"documentation":"<p>Settings for whether end users can create and use Amazon Q Apps in the web experience.</p>"
35603569
}
35613570
}
35623571
},
@@ -5482,6 +5491,24 @@
54825491
"members":{
54835492
}
54845493
},
5494+
"QAppsConfiguration":{
5495+
"type":"structure",
5496+
"required":["qAppsControlMode"],
5497+
"members":{
5498+
"qAppsControlMode":{
5499+
"shape":"QAppsControlMode",
5500+
"documentation":"<p>Status information about whether end users can create and use Amazon Q Apps in the web experience.</p>"
5501+
}
5502+
},
5503+
"documentation":"<p>Configuration information about Amazon Q Apps. (preview feature)</p>"
5504+
},
5505+
"QAppsControlMode":{
5506+
"type":"string",
5507+
"enum":[
5508+
"ENABLED",
5509+
"DISABLED"
5510+
]
5511+
},
54855512
"ReadAccessType":{
54865513
"type":"string",
54875514
"enum":[
@@ -6219,6 +6246,10 @@
62196246
"attachmentsConfiguration":{
62206247
"shape":"AttachmentsConfiguration",
62216248
"documentation":"<p>An option to allow end users to upload files directly during chat.</p>"
6249+
},
6250+
"qAppsConfiguration":{
6251+
"shape":"QAppsConfiguration",
6252+
"documentation":"<p>An option to allow end users to create and use Amazon Q Apps in the web experience.</p>"
62226253
}
62236254
}
62246255
},

0 commit comments

Comments
 (0)