aws-sdk-qbusiness 1.34.0 → 1.35.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.
@@ -52,6 +52,10 @@ module Aws::QBusiness
52
52
  AppliedOrchestrationConfiguration = Shapes::StructureShape.new(name: 'AppliedOrchestrationConfiguration')
53
53
  AssociatePermissionRequest = Shapes::StructureShape.new(name: 'AssociatePermissionRequest')
54
54
  AssociatePermissionResponse = Shapes::StructureShape.new(name: 'AssociatePermissionResponse')
55
+ AssociatedGroup = Shapes::StructureShape.new(name: 'AssociatedGroup')
56
+ AssociatedGroups = Shapes::ListShape.new(name: 'AssociatedGroups')
57
+ AssociatedUser = Shapes::StructureShape.new(name: 'AssociatedUser')
58
+ AssociatedUsers = Shapes::ListShape.new(name: 'AssociatedUsers')
55
59
  Attachment = Shapes::StructureShape.new(name: 'Attachment')
56
60
  AttachmentId = Shapes::StringShape.new(name: 'AttachmentId')
57
61
  AttachmentInput = Shapes::StructureShape.new(name: 'AttachmentInput')
@@ -106,6 +110,8 @@ module Aws::QBusiness
106
110
  ChatOutputStream = Shapes::StructureShape.new(name: 'ChatOutputStream')
107
111
  ChatSyncInput = Shapes::StructureShape.new(name: 'ChatSyncInput')
108
112
  ChatSyncOutput = Shapes::StructureShape.new(name: 'ChatSyncOutput')
113
+ CheckDocumentAccessRequest = Shapes::StructureShape.new(name: 'CheckDocumentAccessRequest')
114
+ CheckDocumentAccessResponse = Shapes::StructureShape.new(name: 'CheckDocumentAccessResponse')
109
115
  ClientIdForOIDC = Shapes::StringShape.new(name: 'ClientIdForOIDC')
110
116
  ClientIdsForOIDC = Shapes::ListShape.new(name: 'ClientIdsForOIDC')
111
117
  ClientNamespace = Shapes::StringShape.new(name: 'ClientNamespace')
@@ -196,6 +202,14 @@ module Aws::QBusiness
196
202
  DisassociatePermissionRequest = Shapes::StructureShape.new(name: 'DisassociatePermissionRequest')
197
203
  DisassociatePermissionResponse = Shapes::StructureShape.new(name: 'DisassociatePermissionResponse')
198
204
  Document = Shapes::StructureShape.new(name: 'Document')
205
+ DocumentAcl = Shapes::StructureShape.new(name: 'DocumentAcl')
206
+ DocumentAclCondition = Shapes::StructureShape.new(name: 'DocumentAclCondition')
207
+ DocumentAclConditions = Shapes::ListShape.new(name: 'DocumentAclConditions')
208
+ DocumentAclGroup = Shapes::StructureShape.new(name: 'DocumentAclGroup')
209
+ DocumentAclGroups = Shapes::ListShape.new(name: 'DocumentAclGroups')
210
+ DocumentAclMembership = Shapes::StructureShape.new(name: 'DocumentAclMembership')
211
+ DocumentAclUser = Shapes::StructureShape.new(name: 'DocumentAclUser')
212
+ DocumentAclUsers = Shapes::ListShape.new(name: 'DocumentAclUsers')
199
213
  DocumentAttribute = Shapes::StructureShape.new(name: 'DocumentAttribute')
200
214
  DocumentAttributeBoostingConfiguration = Shapes::UnionShape.new(name: 'DocumentAttributeBoostingConfiguration')
201
215
  DocumentAttributeBoostingLevel = Shapes::StringShape.new(name: 'DocumentAttributeBoostingLevel')
@@ -672,6 +686,18 @@ module Aws::QBusiness
672
686
  AssociatePermissionResponse.add_member(:statement, Shapes::ShapeRef.new(shape: String, location_name: "statement"))
673
687
  AssociatePermissionResponse.struct_class = Types::AssociatePermissionResponse
674
688
 
689
+ AssociatedGroup.add_member(:name, Shapes::ShapeRef.new(shape: GroupName, location_name: "name"))
690
+ AssociatedGroup.add_member(:type, Shapes::ShapeRef.new(shape: MembershipType, location_name: "type"))
691
+ AssociatedGroup.struct_class = Types::AssociatedGroup
692
+
693
+ AssociatedGroups.member = Shapes::ShapeRef.new(shape: AssociatedGroup)
694
+
695
+ AssociatedUser.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "id"))
696
+ AssociatedUser.add_member(:type, Shapes::ShapeRef.new(shape: MembershipType, location_name: "type"))
697
+ AssociatedUser.struct_class = Types::AssociatedUser
698
+
699
+ AssociatedUsers.member = Shapes::ShapeRef.new(shape: AssociatedUser)
700
+
675
701
  Attachment.add_member(:attachment_id, Shapes::ShapeRef.new(shape: AttachmentId, location_name: "attachmentId"))
676
702
  Attachment.add_member(:conversation_id, Shapes::ShapeRef.new(shape: ConversationId, location_name: "conversationId"))
677
703
  Attachment.add_member(:name, Shapes::ShapeRef.new(shape: AttachmentName, location_name: "name"))
@@ -861,6 +887,19 @@ module Aws::QBusiness
861
887
  ChatSyncOutput.add_member(:failed_attachments, Shapes::ShapeRef.new(shape: AttachmentsOutput, location_name: "failedAttachments"))
862
888
  ChatSyncOutput.struct_class = Types::ChatSyncOutput
863
889
 
890
+ CheckDocumentAccessRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location: "uri", location_name: "applicationId"))
891
+ CheckDocumentAccessRequest.add_member(:index_id, Shapes::ShapeRef.new(shape: IndexId, required: true, location: "uri", location_name: "indexId"))
892
+ CheckDocumentAccessRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "userId"))
893
+ CheckDocumentAccessRequest.add_member(:document_id, Shapes::ShapeRef.new(shape: DocumentId, required: true, location: "uri", location_name: "documentId"))
894
+ CheckDocumentAccessRequest.add_member(:data_source_id, Shapes::ShapeRef.new(shape: DataSourceId, location: "querystring", location_name: "dataSourceId"))
895
+ CheckDocumentAccessRequest.struct_class = Types::CheckDocumentAccessRequest
896
+
897
+ CheckDocumentAccessResponse.add_member(:user_groups, Shapes::ShapeRef.new(shape: AssociatedGroups, location_name: "userGroups"))
898
+ CheckDocumentAccessResponse.add_member(:user_aliases, Shapes::ShapeRef.new(shape: AssociatedUsers, location_name: "userAliases"))
899
+ CheckDocumentAccessResponse.add_member(:has_access, Shapes::ShapeRef.new(shape: Boolean, location_name: "hasAccess"))
900
+ CheckDocumentAccessResponse.add_member(:document_acl, Shapes::ShapeRef.new(shape: DocumentAcl, location_name: "documentAcl"))
901
+ CheckDocumentAccessResponse.struct_class = Types::CheckDocumentAccessResponse
902
+
864
903
  ClientIdsForOIDC.member = Shapes::ShapeRef.new(shape: ClientIdForOIDC)
865
904
 
866
905
  ConfigurationEvent.add_member(:chat_mode, Shapes::ShapeRef.new(shape: ChatMode, location_name: "chatMode"))
@@ -1194,6 +1233,33 @@ module Aws::QBusiness
1194
1233
  Document.add_member(:media_extraction_configuration, Shapes::ShapeRef.new(shape: MediaExtractionConfiguration, location_name: "mediaExtractionConfiguration"))
1195
1234
  Document.struct_class = Types::Document
1196
1235
 
1236
+ DocumentAcl.add_member(:allowlist, Shapes::ShapeRef.new(shape: DocumentAclMembership, location_name: "allowlist"))
1237
+ DocumentAcl.add_member(:deny_list, Shapes::ShapeRef.new(shape: DocumentAclMembership, location_name: "denyList"))
1238
+ DocumentAcl.struct_class = Types::DocumentAcl
1239
+
1240
+ DocumentAclCondition.add_member(:member_relation, Shapes::ShapeRef.new(shape: MemberRelation, location_name: "memberRelation"))
1241
+ DocumentAclCondition.add_member(:users, Shapes::ShapeRef.new(shape: DocumentAclUsers, location_name: "users"))
1242
+ DocumentAclCondition.add_member(:groups, Shapes::ShapeRef.new(shape: DocumentAclGroups, location_name: "groups"))
1243
+ DocumentAclCondition.struct_class = Types::DocumentAclCondition
1244
+
1245
+ DocumentAclConditions.member = Shapes::ShapeRef.new(shape: DocumentAclCondition)
1246
+
1247
+ DocumentAclGroup.add_member(:name, Shapes::ShapeRef.new(shape: GroupName, location_name: "name"))
1248
+ DocumentAclGroup.add_member(:type, Shapes::ShapeRef.new(shape: MembershipType, location_name: "type"))
1249
+ DocumentAclGroup.struct_class = Types::DocumentAclGroup
1250
+
1251
+ DocumentAclGroups.member = Shapes::ShapeRef.new(shape: DocumentAclGroup)
1252
+
1253
+ DocumentAclMembership.add_member(:member_relation, Shapes::ShapeRef.new(shape: MemberRelation, location_name: "memberRelation"))
1254
+ DocumentAclMembership.add_member(:conditions, Shapes::ShapeRef.new(shape: DocumentAclConditions, location_name: "conditions"))
1255
+ DocumentAclMembership.struct_class = Types::DocumentAclMembership
1256
+
1257
+ DocumentAclUser.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "id"))
1258
+ DocumentAclUser.add_member(:type, Shapes::ShapeRef.new(shape: MembershipType, location_name: "type"))
1259
+ DocumentAclUser.struct_class = Types::DocumentAclUser
1260
+
1261
+ DocumentAclUsers.member = Shapes::ShapeRef.new(shape: DocumentAclUser)
1262
+
1197
1263
  DocumentAttribute.add_member(:name, Shapes::ShapeRef.new(shape: DocumentAttributeKey, required: true, location_name: "name"))
1198
1264
  DocumentAttribute.add_member(:value, Shapes::ShapeRef.new(shape: DocumentAttributeValue, required: true, location_name: "value"))
1199
1265
  DocumentAttribute.struct_class = Types::DocumentAttribute
@@ -2298,8 +2364,8 @@ module Aws::QBusiness
2298
2364
  o.http_request_uri = "/applications/{applicationId}/policy"
2299
2365
  o.input = Shapes::ShapeRef.new(shape: AssociatePermissionRequest)
2300
2366
  o.output = Shapes::ShapeRef.new(shape: AssociatePermissionResponse)
2301
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2302
2367
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2368
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2303
2369
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2304
2370
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2305
2371
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2313,8 +2379,8 @@ module Aws::QBusiness
2313
2379
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}/documents/delete"
2314
2380
  o.input = Shapes::ShapeRef.new(shape: BatchDeleteDocumentRequest)
2315
2381
  o.output = Shapes::ShapeRef.new(shape: BatchDeleteDocumentResponse)
2316
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2317
2382
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2383
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2318
2384
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2319
2385
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2320
2386
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2327,8 +2393,8 @@ module Aws::QBusiness
2327
2393
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}/documents"
2328
2394
  o.input = Shapes::ShapeRef.new(shape: BatchPutDocumentRequest)
2329
2395
  o.output = Shapes::ShapeRef.new(shape: BatchPutDocumentResponse)
2330
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2331
2396
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2397
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2332
2398
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2333
2399
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2334
2400
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2342,8 +2408,8 @@ module Aws::QBusiness
2342
2408
  o.http_request_uri = "/applications/{applicationId}/subscriptions/{subscriptionId}"
2343
2409
  o.input = Shapes::ShapeRef.new(shape: CancelSubscriptionRequest)
2344
2410
  o.output = Shapes::ShapeRef.new(shape: CancelSubscriptionResponse)
2345
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2346
2411
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2412
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2347
2413
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2348
2414
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2349
2415
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -2355,10 +2421,10 @@ module Aws::QBusiness
2355
2421
  o.http_request_uri = "/applications/{applicationId}/conversations"
2356
2422
  o.input = Shapes::ShapeRef.new(shape: ChatInput)
2357
2423
  o.output = Shapes::ShapeRef.new(shape: ChatOutput)
2358
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2359
2424
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2360
- o.errors << Shapes::ShapeRef.new(shape: LicenseNotFoundException)
2425
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2361
2426
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2427
+ o.errors << Shapes::ShapeRef.new(shape: LicenseNotFoundException)
2362
2428
  o.errors << Shapes::ShapeRef.new(shape: ExternalResourceException)
2363
2429
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2364
2430
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2372,24 +2438,37 @@ module Aws::QBusiness
2372
2438
  o.http_request_uri = "/applications/{applicationId}/conversations?sync"
2373
2439
  o.input = Shapes::ShapeRef.new(shape: ChatSyncInput)
2374
2440
  o.output = Shapes::ShapeRef.new(shape: ChatSyncOutput)
2375
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2376
2441
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2377
- o.errors << Shapes::ShapeRef.new(shape: LicenseNotFoundException)
2442
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2378
2443
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2444
+ o.errors << Shapes::ShapeRef.new(shape: LicenseNotFoundException)
2379
2445
  o.errors << Shapes::ShapeRef.new(shape: ExternalResourceException)
2380
2446
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2381
2447
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2382
2448
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2383
2449
  end)
2384
2450
 
2451
+ api.add_operation(:check_document_access, Seahorse::Model::Operation.new.tap do |o|
2452
+ o.name = "CheckDocumentAccess"
2453
+ o.http_method = "GET"
2454
+ o.http_request_uri = "/applications/{applicationId}/index/{indexId}/users/{userId}/documents/{documentId}/check-document-access"
2455
+ o.input = Shapes::ShapeRef.new(shape: CheckDocumentAccessRequest)
2456
+ o.output = Shapes::ShapeRef.new(shape: CheckDocumentAccessResponse)
2457
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2458
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2459
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2460
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2461
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2462
+ end)
2463
+
2385
2464
  api.add_operation(:create_application, Seahorse::Model::Operation.new.tap do |o|
2386
2465
  o.name = "CreateApplication"
2387
2466
  o.http_method = "POST"
2388
2467
  o.http_request_uri = "/applications"
2389
2468
  o.input = Shapes::ShapeRef.new(shape: CreateApplicationRequest)
2390
2469
  o.output = Shapes::ShapeRef.new(shape: CreateApplicationResponse)
2391
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2392
2470
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2471
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2393
2472
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2394
2473
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2395
2474
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2403,8 +2482,8 @@ module Aws::QBusiness
2403
2482
  o.http_request_uri = "/applications/{applicationId}/dataaccessors"
2404
2483
  o.input = Shapes::ShapeRef.new(shape: CreateDataAccessorRequest)
2405
2484
  o.output = Shapes::ShapeRef.new(shape: CreateDataAccessorResponse)
2406
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2407
2485
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2486
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2408
2487
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2409
2488
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2410
2489
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2418,8 +2497,8 @@ module Aws::QBusiness
2418
2497
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}/datasources"
2419
2498
  o.input = Shapes::ShapeRef.new(shape: CreateDataSourceRequest)
2420
2499
  o.output = Shapes::ShapeRef.new(shape: CreateDataSourceResponse)
2421
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2422
2500
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2501
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2423
2502
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2424
2503
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2425
2504
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2433,8 +2512,8 @@ module Aws::QBusiness
2433
2512
  o.http_request_uri = "/applications/{applicationId}/indices"
2434
2513
  o.input = Shapes::ShapeRef.new(shape: CreateIndexRequest)
2435
2514
  o.output = Shapes::ShapeRef.new(shape: CreateIndexResponse)
2436
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2437
2515
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2516
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2438
2517
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2439
2518
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2440
2519
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2448,8 +2527,8 @@ module Aws::QBusiness
2448
2527
  o.http_request_uri = "/applications/{applicationId}/plugins"
2449
2528
  o.input = Shapes::ShapeRef.new(shape: CreatePluginRequest)
2450
2529
  o.output = Shapes::ShapeRef.new(shape: CreatePluginResponse)
2451
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2452
2530
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2531
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2453
2532
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2454
2533
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2455
2534
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2463,8 +2542,8 @@ module Aws::QBusiness
2463
2542
  o.http_request_uri = "/applications/{applicationId}/retrievers"
2464
2543
  o.input = Shapes::ShapeRef.new(shape: CreateRetrieverRequest)
2465
2544
  o.output = Shapes::ShapeRef.new(shape: CreateRetrieverResponse)
2466
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2467
2545
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2546
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2468
2547
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2469
2548
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2470
2549
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2478,8 +2557,8 @@ module Aws::QBusiness
2478
2557
  o.http_request_uri = "/applications/{applicationId}/subscriptions"
2479
2558
  o.input = Shapes::ShapeRef.new(shape: CreateSubscriptionRequest)
2480
2559
  o.output = Shapes::ShapeRef.new(shape: CreateSubscriptionResponse)
2481
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2482
2560
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2561
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2483
2562
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2484
2563
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2485
2564
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2492,8 +2571,8 @@ module Aws::QBusiness
2492
2571
  o.http_request_uri = "/applications/{applicationId}/users"
2493
2572
  o.input = Shapes::ShapeRef.new(shape: CreateUserRequest)
2494
2573
  o.output = Shapes::ShapeRef.new(shape: CreateUserResponse)
2495
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2496
2574
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2575
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2497
2576
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2498
2577
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2499
2578
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2507,8 +2586,8 @@ module Aws::QBusiness
2507
2586
  o.http_request_uri = "/applications/{applicationId}/experiences"
2508
2587
  o.input = Shapes::ShapeRef.new(shape: CreateWebExperienceRequest)
2509
2588
  o.output = Shapes::ShapeRef.new(shape: CreateWebExperienceResponse)
2510
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2511
2589
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2590
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2512
2591
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2513
2592
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2514
2593
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2522,8 +2601,8 @@ module Aws::QBusiness
2522
2601
  o.http_request_uri = "/applications/{applicationId}"
2523
2602
  o.input = Shapes::ShapeRef.new(shape: DeleteApplicationRequest)
2524
2603
  o.output = Shapes::ShapeRef.new(shape: DeleteApplicationResponse)
2525
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2526
2604
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2605
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2527
2606
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2528
2607
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2529
2608
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2536,8 +2615,8 @@ module Aws::QBusiness
2536
2615
  o.http_request_uri = "/applications/{applicationId}/conversations/{conversationId}/attachments/{attachmentId}"
2537
2616
  o.input = Shapes::ShapeRef.new(shape: DeleteAttachmentRequest)
2538
2617
  o.output = Shapes::ShapeRef.new(shape: DeleteAttachmentResponse)
2539
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2540
2618
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2619
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2541
2620
  o.errors << Shapes::ShapeRef.new(shape: LicenseNotFoundException)
2542
2621
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2543
2622
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2550,8 +2629,8 @@ module Aws::QBusiness
2550
2629
  o.http_request_uri = "/applications/{applicationId}/chatcontrols"
2551
2630
  o.input = Shapes::ShapeRef.new(shape: DeleteChatControlsConfigurationRequest)
2552
2631
  o.output = Shapes::ShapeRef.new(shape: DeleteChatControlsConfigurationResponse)
2553
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2554
2632
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2633
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2555
2634
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2556
2635
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2557
2636
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -2563,8 +2642,8 @@ module Aws::QBusiness
2563
2642
  o.http_request_uri = "/applications/{applicationId}/conversations/{conversationId}"
2564
2643
  o.input = Shapes::ShapeRef.new(shape: DeleteConversationRequest)
2565
2644
  o.output = Shapes::ShapeRef.new(shape: DeleteConversationResponse)
2566
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2567
2645
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2646
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2568
2647
  o.errors << Shapes::ShapeRef.new(shape: LicenseNotFoundException)
2569
2648
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2570
2649
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2577,8 +2656,8 @@ module Aws::QBusiness
2577
2656
  o.http_request_uri = "/applications/{applicationId}/dataaccessors/{dataAccessorId}"
2578
2657
  o.input = Shapes::ShapeRef.new(shape: DeleteDataAccessorRequest)
2579
2658
  o.output = Shapes::ShapeRef.new(shape: DeleteDataAccessorResponse)
2580
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2581
2659
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2660
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2582
2661
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2583
2662
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2584
2663
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2591,8 +2670,8 @@ module Aws::QBusiness
2591
2670
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}/datasources/{dataSourceId}"
2592
2671
  o.input = Shapes::ShapeRef.new(shape: DeleteDataSourceRequest)
2593
2672
  o.output = Shapes::ShapeRef.new(shape: DeleteDataSourceResponse)
2594
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2595
2673
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2674
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2596
2675
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2597
2676
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2598
2677
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2605,8 +2684,8 @@ module Aws::QBusiness
2605
2684
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}/groups/{groupName}"
2606
2685
  o.input = Shapes::ShapeRef.new(shape: DeleteGroupRequest)
2607
2686
  o.output = Shapes::ShapeRef.new(shape: DeleteGroupResponse)
2608
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2609
2687
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2688
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2610
2689
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2611
2690
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2612
2691
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2619,8 +2698,8 @@ module Aws::QBusiness
2619
2698
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}"
2620
2699
  o.input = Shapes::ShapeRef.new(shape: DeleteIndexRequest)
2621
2700
  o.output = Shapes::ShapeRef.new(shape: DeleteIndexResponse)
2622
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2623
2701
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2702
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2624
2703
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2625
2704
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2626
2705
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2633,8 +2712,8 @@ module Aws::QBusiness
2633
2712
  o.http_request_uri = "/applications/{applicationId}/plugins/{pluginId}"
2634
2713
  o.input = Shapes::ShapeRef.new(shape: DeletePluginRequest)
2635
2714
  o.output = Shapes::ShapeRef.new(shape: DeletePluginResponse)
2636
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2637
2715
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2716
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2638
2717
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2639
2718
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2640
2719
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2647,8 +2726,8 @@ module Aws::QBusiness
2647
2726
  o.http_request_uri = "/applications/{applicationId}/retrievers/{retrieverId}"
2648
2727
  o.input = Shapes::ShapeRef.new(shape: DeleteRetrieverRequest)
2649
2728
  o.output = Shapes::ShapeRef.new(shape: DeleteRetrieverResponse)
2650
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2651
2729
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2730
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2652
2731
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2653
2732
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2654
2733
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2661,8 +2740,8 @@ module Aws::QBusiness
2661
2740
  o.http_request_uri = "/applications/{applicationId}/users/{userId}"
2662
2741
  o.input = Shapes::ShapeRef.new(shape: DeleteUserRequest)
2663
2742
  o.output = Shapes::ShapeRef.new(shape: DeleteUserResponse)
2664
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2665
2743
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2744
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2666
2745
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2667
2746
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2668
2747
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2675,8 +2754,8 @@ module Aws::QBusiness
2675
2754
  o.http_request_uri = "/applications/{applicationId}/experiences/{webExperienceId}"
2676
2755
  o.input = Shapes::ShapeRef.new(shape: DeleteWebExperienceRequest)
2677
2756
  o.output = Shapes::ShapeRef.new(shape: DeleteWebExperienceResponse)
2678
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2679
2757
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2758
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2680
2759
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2681
2760
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2682
2761
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2689,8 +2768,8 @@ module Aws::QBusiness
2689
2768
  o.http_request_uri = "/applications/{applicationId}/policy/{statementId}"
2690
2769
  o.input = Shapes::ShapeRef.new(shape: DisassociatePermissionRequest)
2691
2770
  o.output = Shapes::ShapeRef.new(shape: DisassociatePermissionResponse)
2692
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2693
2771
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2772
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2694
2773
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2695
2774
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2696
2775
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2703,8 +2782,8 @@ module Aws::QBusiness
2703
2782
  o.http_request_uri = "/applications/{applicationId}"
2704
2783
  o.input = Shapes::ShapeRef.new(shape: GetApplicationRequest)
2705
2784
  o.output = Shapes::ShapeRef.new(shape: GetApplicationResponse)
2706
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2707
2785
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2786
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2708
2787
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2709
2788
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2710
2789
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -2716,8 +2795,8 @@ module Aws::QBusiness
2716
2795
  o.http_request_uri = "/applications/{applicationId}/chatcontrols"
2717
2796
  o.input = Shapes::ShapeRef.new(shape: GetChatControlsConfigurationRequest)
2718
2797
  o.output = Shapes::ShapeRef.new(shape: GetChatControlsConfigurationResponse)
2719
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2720
2798
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2799
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2721
2800
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2722
2801
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2723
2802
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -2735,8 +2814,8 @@ module Aws::QBusiness
2735
2814
  o.http_request_uri = "/applications/{applicationId}/dataaccessors/{dataAccessorId}"
2736
2815
  o.input = Shapes::ShapeRef.new(shape: GetDataAccessorRequest)
2737
2816
  o.output = Shapes::ShapeRef.new(shape: GetDataAccessorResponse)
2738
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2739
2817
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2818
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2740
2819
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2741
2820
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2742
2821
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -2748,8 +2827,8 @@ module Aws::QBusiness
2748
2827
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}/datasources/{dataSourceId}"
2749
2828
  o.input = Shapes::ShapeRef.new(shape: GetDataSourceRequest)
2750
2829
  o.output = Shapes::ShapeRef.new(shape: GetDataSourceResponse)
2751
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2752
2830
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2831
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2753
2832
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2754
2833
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2755
2834
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -2761,8 +2840,8 @@ module Aws::QBusiness
2761
2840
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}/groups/{groupName}"
2762
2841
  o.input = Shapes::ShapeRef.new(shape: GetGroupRequest)
2763
2842
  o.output = Shapes::ShapeRef.new(shape: GetGroupResponse)
2764
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2765
2843
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2844
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2766
2845
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2767
2846
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2768
2847
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2775,8 +2854,8 @@ module Aws::QBusiness
2775
2854
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}"
2776
2855
  o.input = Shapes::ShapeRef.new(shape: GetIndexRequest)
2777
2856
  o.output = Shapes::ShapeRef.new(shape: GetIndexResponse)
2778
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2779
2857
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2858
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2780
2859
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2781
2860
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2782
2861
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -2788,8 +2867,8 @@ module Aws::QBusiness
2788
2867
  o.http_request_uri = "/applications/{applicationId}/conversations/{conversationId}/messages/{messageId}/media/{mediaId}"
2789
2868
  o.input = Shapes::ShapeRef.new(shape: GetMediaRequest)
2790
2869
  o.output = Shapes::ShapeRef.new(shape: GetMediaResponse)
2791
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2792
2870
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2871
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2793
2872
  o.errors << Shapes::ShapeRef.new(shape: LicenseNotFoundException)
2794
2873
  o.errors << Shapes::ShapeRef.new(shape: MediaTooLargeException)
2795
2874
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
@@ -2803,8 +2882,8 @@ module Aws::QBusiness
2803
2882
  o.http_request_uri = "/applications/{applicationId}/plugins/{pluginId}"
2804
2883
  o.input = Shapes::ShapeRef.new(shape: GetPluginRequest)
2805
2884
  o.output = Shapes::ShapeRef.new(shape: GetPluginResponse)
2806
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2807
2885
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2886
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2808
2887
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2809
2888
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2810
2889
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -2816,8 +2895,8 @@ module Aws::QBusiness
2816
2895
  o.http_request_uri = "/applications/{applicationId}/policy"
2817
2896
  o.input = Shapes::ShapeRef.new(shape: GetPolicyRequest)
2818
2897
  o.output = Shapes::ShapeRef.new(shape: GetPolicyResponse)
2819
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2820
2898
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2899
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2821
2900
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2822
2901
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2823
2902
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -2829,8 +2908,8 @@ module Aws::QBusiness
2829
2908
  o.http_request_uri = "/applications/{applicationId}/retrievers/{retrieverId}"
2830
2909
  o.input = Shapes::ShapeRef.new(shape: GetRetrieverRequest)
2831
2910
  o.output = Shapes::ShapeRef.new(shape: GetRetrieverResponse)
2832
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2833
2911
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2912
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2834
2913
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2835
2914
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2836
2915
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -2842,8 +2921,8 @@ module Aws::QBusiness
2842
2921
  o.http_request_uri = "/applications/{applicationId}/users/{userId}"
2843
2922
  o.input = Shapes::ShapeRef.new(shape: GetUserRequest)
2844
2923
  o.output = Shapes::ShapeRef.new(shape: GetUserResponse)
2845
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2846
2924
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2925
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2847
2926
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2848
2927
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2849
2928
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2856,8 +2935,8 @@ module Aws::QBusiness
2856
2935
  o.http_request_uri = "/applications/{applicationId}/experiences/{webExperienceId}"
2857
2936
  o.input = Shapes::ShapeRef.new(shape: GetWebExperienceRequest)
2858
2937
  o.output = Shapes::ShapeRef.new(shape: GetWebExperienceResponse)
2859
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2860
2938
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2939
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2861
2940
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2862
2941
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2863
2942
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -2887,8 +2966,8 @@ module Aws::QBusiness
2887
2966
  o.http_request_uri = "/applications/{applicationId}/attachments"
2888
2967
  o.input = Shapes::ShapeRef.new(shape: ListAttachmentsRequest)
2889
2968
  o.output = Shapes::ShapeRef.new(shape: ListAttachmentsResponse)
2890
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2891
2969
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2970
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2892
2971
  o.errors << Shapes::ShapeRef.new(shape: LicenseNotFoundException)
2893
2972
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2894
2973
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2907,8 +2986,8 @@ module Aws::QBusiness
2907
2986
  o.http_request_uri = "/applications/{applicationId}/conversations"
2908
2987
  o.input = Shapes::ShapeRef.new(shape: ListConversationsRequest)
2909
2988
  o.output = Shapes::ShapeRef.new(shape: ListConversationsResponse)
2910
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2911
2989
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2990
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2912
2991
  o.errors << Shapes::ShapeRef.new(shape: LicenseNotFoundException)
2913
2992
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2914
2993
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2927,8 +3006,8 @@ module Aws::QBusiness
2927
3006
  o.http_request_uri = "/applications/{applicationId}/dataaccessors"
2928
3007
  o.input = Shapes::ShapeRef.new(shape: ListDataAccessorsRequest)
2929
3008
  o.output = Shapes::ShapeRef.new(shape: ListDataAccessorsResponse)
2930
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2931
3009
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3010
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2932
3011
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2933
3012
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2934
3013
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -2946,8 +3025,8 @@ module Aws::QBusiness
2946
3025
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}/datasources/{dataSourceId}/syncjobs"
2947
3026
  o.input = Shapes::ShapeRef.new(shape: ListDataSourceSyncJobsRequest)
2948
3027
  o.output = Shapes::ShapeRef.new(shape: ListDataSourceSyncJobsResponse)
2949
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2950
3028
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3029
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2951
3030
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2952
3031
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2953
3032
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -2966,8 +3045,8 @@ module Aws::QBusiness
2966
3045
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}/datasources"
2967
3046
  o.input = Shapes::ShapeRef.new(shape: ListDataSourcesRequest)
2968
3047
  o.output = Shapes::ShapeRef.new(shape: ListDataSourcesResponse)
2969
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2970
3048
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3049
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2971
3050
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2972
3051
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2973
3052
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -2985,8 +3064,8 @@ module Aws::QBusiness
2985
3064
  o.http_request_uri = "/applications/{applicationId}/index/{indexId}/documents"
2986
3065
  o.input = Shapes::ShapeRef.new(shape: ListDocumentsRequest)
2987
3066
  o.output = Shapes::ShapeRef.new(shape: ListDocumentsResponse)
2988
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2989
3067
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3068
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2990
3069
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2991
3070
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2992
3071
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -3004,8 +3083,8 @@ module Aws::QBusiness
3004
3083
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}/groups"
3005
3084
  o.input = Shapes::ShapeRef.new(shape: ListGroupsRequest)
3006
3085
  o.output = Shapes::ShapeRef.new(shape: ListGroupsResponse)
3007
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3008
3086
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3087
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3009
3088
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3010
3089
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3011
3090
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3024,8 +3103,8 @@ module Aws::QBusiness
3024
3103
  o.http_request_uri = "/applications/{applicationId}/indices"
3025
3104
  o.input = Shapes::ShapeRef.new(shape: ListIndicesRequest)
3026
3105
  o.output = Shapes::ShapeRef.new(shape: ListIndicesResponse)
3027
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3028
3106
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3107
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3029
3108
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3030
3109
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
3031
3110
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -3043,8 +3122,8 @@ module Aws::QBusiness
3043
3122
  o.http_request_uri = "/applications/{applicationId}/conversations/{conversationId}"
3044
3123
  o.input = Shapes::ShapeRef.new(shape: ListMessagesRequest)
3045
3124
  o.output = Shapes::ShapeRef.new(shape: ListMessagesResponse)
3046
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3047
3125
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3126
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3048
3127
  o.errors << Shapes::ShapeRef.new(shape: LicenseNotFoundException)
3049
3128
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3050
3129
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3063,8 +3142,8 @@ module Aws::QBusiness
3063
3142
  o.http_request_uri = "/applications/{applicationId}/plugins/{pluginId}/actions"
3064
3143
  o.input = Shapes::ShapeRef.new(shape: ListPluginActionsRequest)
3065
3144
  o.output = Shapes::ShapeRef.new(shape: ListPluginActionsResponse)
3066
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3067
3145
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3146
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3068
3147
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3069
3148
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
3070
3149
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -3118,8 +3197,8 @@ module Aws::QBusiness
3118
3197
  o.http_request_uri = "/applications/{applicationId}/plugins"
3119
3198
  o.input = Shapes::ShapeRef.new(shape: ListPluginsRequest)
3120
3199
  o.output = Shapes::ShapeRef.new(shape: ListPluginsResponse)
3121
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3122
3200
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3201
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3123
3202
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3124
3203
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
3125
3204
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -3137,8 +3216,8 @@ module Aws::QBusiness
3137
3216
  o.http_request_uri = "/applications/{applicationId}/retrievers"
3138
3217
  o.input = Shapes::ShapeRef.new(shape: ListRetrieversRequest)
3139
3218
  o.output = Shapes::ShapeRef.new(shape: ListRetrieversResponse)
3140
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3141
3219
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3220
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3142
3221
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3143
3222
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
3144
3223
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -3156,8 +3235,8 @@ module Aws::QBusiness
3156
3235
  o.http_request_uri = "/applications/{applicationId}/subscriptions"
3157
3236
  o.input = Shapes::ShapeRef.new(shape: ListSubscriptionsRequest)
3158
3237
  o.output = Shapes::ShapeRef.new(shape: ListSubscriptionsResponse)
3159
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3160
3238
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3239
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3161
3240
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3162
3241
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3163
3242
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3176,8 +3255,8 @@ module Aws::QBusiness
3176
3255
  o.http_request_uri = "/v1/tags/{resourceARN}"
3177
3256
  o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
3178
3257
  o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
3179
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3180
3258
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3259
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3181
3260
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3182
3261
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
3183
3262
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -3189,8 +3268,8 @@ module Aws::QBusiness
3189
3268
  o.http_request_uri = "/applications/{applicationId}/experiences"
3190
3269
  o.input = Shapes::ShapeRef.new(shape: ListWebExperiencesRequest)
3191
3270
  o.output = Shapes::ShapeRef.new(shape: ListWebExperiencesResponse)
3192
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3193
3271
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3272
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3194
3273
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3195
3274
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
3196
3275
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -3208,8 +3287,8 @@ module Aws::QBusiness
3208
3287
  o.http_request_uri = "/applications/{applicationId}/conversations/{conversationId}/messages/{messageId}/feedback"
3209
3288
  o.input = Shapes::ShapeRef.new(shape: PutFeedbackRequest)
3210
3289
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
3211
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3212
3290
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3291
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3213
3292
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3214
3293
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
3215
3294
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -3221,8 +3300,8 @@ module Aws::QBusiness
3221
3300
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}/groups"
3222
3301
  o.input = Shapes::ShapeRef.new(shape: PutGroupRequest)
3223
3302
  o.output = Shapes::ShapeRef.new(shape: PutGroupResponse)
3224
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3225
3303
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3304
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3226
3305
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3227
3306
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3228
3307
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3236,8 +3315,8 @@ module Aws::QBusiness
3236
3315
  o.http_request_uri = "/applications/{applicationId}/relevant-content"
3237
3316
  o.input = Shapes::ShapeRef.new(shape: SearchRelevantContentRequest)
3238
3317
  o.output = Shapes::ShapeRef.new(shape: SearchRelevantContentResponse)
3239
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3240
3318
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3319
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3241
3320
  o.errors << Shapes::ShapeRef.new(shape: LicenseNotFoundException)
3242
3321
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3243
3322
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3256,8 +3335,8 @@ module Aws::QBusiness
3256
3335
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}/datasources/{dataSourceId}/startsync"
3257
3336
  o.input = Shapes::ShapeRef.new(shape: StartDataSourceSyncJobRequest)
3258
3337
  o.output = Shapes::ShapeRef.new(shape: StartDataSourceSyncJobResponse)
3259
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3260
3338
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3339
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3261
3340
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3262
3341
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3263
3342
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3271,8 +3350,8 @@ module Aws::QBusiness
3271
3350
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}/datasources/{dataSourceId}/stopsync"
3272
3351
  o.input = Shapes::ShapeRef.new(shape: StopDataSourceSyncJobRequest)
3273
3352
  o.output = Shapes::ShapeRef.new(shape: StopDataSourceSyncJobResponse)
3274
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3275
3353
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3354
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3276
3355
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3277
3356
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3278
3357
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3285,8 +3364,8 @@ module Aws::QBusiness
3285
3364
  o.http_request_uri = "/v1/tags/{resourceARN}"
3286
3365
  o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
3287
3366
  o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
3288
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3289
3367
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3368
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3290
3369
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3291
3370
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3292
3371
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3299,8 +3378,8 @@ module Aws::QBusiness
3299
3378
  o.http_request_uri = "/v1/tags/{resourceARN}"
3300
3379
  o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
3301
3380
  o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
3302
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3303
3381
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3382
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3304
3383
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3305
3384
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
3306
3385
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -3312,8 +3391,8 @@ module Aws::QBusiness
3312
3391
  o.http_request_uri = "/applications/{applicationId}"
3313
3392
  o.input = Shapes::ShapeRef.new(shape: UpdateApplicationRequest)
3314
3393
  o.output = Shapes::ShapeRef.new(shape: UpdateApplicationResponse)
3315
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3316
3394
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3395
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3317
3396
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3318
3397
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3319
3398
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3326,8 +3405,8 @@ module Aws::QBusiness
3326
3405
  o.http_request_uri = "/applications/{applicationId}/chatcontrols"
3327
3406
  o.input = Shapes::ShapeRef.new(shape: UpdateChatControlsConfigurationRequest)
3328
3407
  o.output = Shapes::ShapeRef.new(shape: UpdateChatControlsConfigurationResponse)
3329
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3330
3408
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3409
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3331
3410
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3332
3411
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3333
3412
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3341,8 +3420,8 @@ module Aws::QBusiness
3341
3420
  o.http_request_uri = "/applications/{applicationId}/dataaccessors/{dataAccessorId}"
3342
3421
  o.input = Shapes::ShapeRef.new(shape: UpdateDataAccessorRequest)
3343
3422
  o.output = Shapes::ShapeRef.new(shape: UpdateDataAccessorResponse)
3344
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3345
3423
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3424
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3346
3425
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3347
3426
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3348
3427
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3355,8 +3434,8 @@ module Aws::QBusiness
3355
3434
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}/datasources/{dataSourceId}"
3356
3435
  o.input = Shapes::ShapeRef.new(shape: UpdateDataSourceRequest)
3357
3436
  o.output = Shapes::ShapeRef.new(shape: UpdateDataSourceResponse)
3358
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3359
3437
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3438
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3360
3439
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3361
3440
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3362
3441
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3369,8 +3448,8 @@ module Aws::QBusiness
3369
3448
  o.http_request_uri = "/applications/{applicationId}/indices/{indexId}"
3370
3449
  o.input = Shapes::ShapeRef.new(shape: UpdateIndexRequest)
3371
3450
  o.output = Shapes::ShapeRef.new(shape: UpdateIndexResponse)
3372
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3373
3451
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3452
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3374
3453
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3375
3454
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3376
3455
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3384,8 +3463,8 @@ module Aws::QBusiness
3384
3463
  o.http_request_uri = "/applications/{applicationId}/plugins/{pluginId}"
3385
3464
  o.input = Shapes::ShapeRef.new(shape: UpdatePluginRequest)
3386
3465
  o.output = Shapes::ShapeRef.new(shape: UpdatePluginResponse)
3387
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3388
3466
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3467
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3389
3468
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3390
3469
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3391
3470
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3399,8 +3478,8 @@ module Aws::QBusiness
3399
3478
  o.http_request_uri = "/applications/{applicationId}/retrievers/{retrieverId}"
3400
3479
  o.input = Shapes::ShapeRef.new(shape: UpdateRetrieverRequest)
3401
3480
  o.output = Shapes::ShapeRef.new(shape: UpdateRetrieverResponse)
3402
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3403
3481
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3482
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3404
3483
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3405
3484
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3406
3485
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3414,8 +3493,8 @@ module Aws::QBusiness
3414
3493
  o.http_request_uri = "/applications/{applicationId}/subscriptions/{subscriptionId}"
3415
3494
  o.input = Shapes::ShapeRef.new(shape: UpdateSubscriptionRequest)
3416
3495
  o.output = Shapes::ShapeRef.new(shape: UpdateSubscriptionResponse)
3417
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3418
3496
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3497
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3419
3498
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3420
3499
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3421
3500
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3428,8 +3507,8 @@ module Aws::QBusiness
3428
3507
  o.http_request_uri = "/applications/{applicationId}/users/{userId}"
3429
3508
  o.input = Shapes::ShapeRef.new(shape: UpdateUserRequest)
3430
3509
  o.output = Shapes::ShapeRef.new(shape: UpdateUserResponse)
3431
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3432
3510
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3511
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3433
3512
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3434
3513
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3435
3514
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -3443,8 +3522,8 @@ module Aws::QBusiness
3443
3522
  o.http_request_uri = "/applications/{applicationId}/experiences/{webExperienceId}"
3444
3523
  o.input = Shapes::ShapeRef.new(shape: UpdateWebExperienceRequest)
3445
3524
  o.output = Shapes::ShapeRef.new(shape: UpdateWebExperienceResponse)
3446
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3447
3525
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
3526
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3448
3527
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3449
3528
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3450
3529
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)