aws-sdk-qbusiness 1.33.0 → 1.37.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/sig/types.rbs CHANGED
@@ -123,7 +123,7 @@ module Aws::QBusiness
123
123
  attr_accessor created_at: ::Time
124
124
  attr_accessor updated_at: ::Time
125
125
  attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
126
- attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC" | "AWS_QUICKSIGHT_IDP")
126
+ attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC" | "AWS_QUICKSIGHT_IDP" | "ANONYMOUS")
127
127
  attr_accessor quick_sight_configuration: Types::QuickSightConfiguration
128
128
  SENSITIVE: []
129
129
  end
@@ -156,6 +156,18 @@ module Aws::QBusiness
156
156
  SENSITIVE: []
157
157
  end
158
158
 
159
+ class AssociatedGroup
160
+ attr_accessor name: ::String
161
+ attr_accessor type: ("INDEX" | "DATASOURCE")
162
+ SENSITIVE: []
163
+ end
164
+
165
+ class AssociatedUser
166
+ attr_accessor id: ::String
167
+ attr_accessor type: ("INDEX" | "DATASOURCE")
168
+ SENSITIVE: []
169
+ end
170
+
159
171
  class Attachment
160
172
  attr_accessor attachment_id: ::String
161
173
  attr_accessor conversation_id: ::String
@@ -373,6 +385,23 @@ module Aws::QBusiness
373
385
  SENSITIVE: []
374
386
  end
375
387
 
388
+ class CheckDocumentAccessRequest
389
+ attr_accessor application_id: ::String
390
+ attr_accessor index_id: ::String
391
+ attr_accessor user_id: ::String
392
+ attr_accessor document_id: ::String
393
+ attr_accessor data_source_id: ::String
394
+ SENSITIVE: []
395
+ end
396
+
397
+ class CheckDocumentAccessResponse
398
+ attr_accessor user_groups: ::Array[Types::AssociatedGroup]
399
+ attr_accessor user_aliases: ::Array[Types::AssociatedUser]
400
+ attr_accessor has_access: bool
401
+ attr_accessor document_acl: Types::DocumentAcl
402
+ SENSITIVE: []
403
+ end
404
+
376
405
  class ConfigurationEvent
377
406
  attr_accessor chat_mode: ("RETRIEVAL_MODE" | "CREATOR_MODE" | "PLUGIN_MODE")
378
407
  attr_accessor chat_mode_configuration: Types::ChatModeConfiguration
@@ -433,10 +462,22 @@ module Aws::QBusiness
433
462
  end
434
463
  end
435
464
 
465
+ class CreateAnonymousWebExperienceUrlRequest
466
+ attr_accessor application_id: ::String
467
+ attr_accessor web_experience_id: ::String
468
+ attr_accessor session_duration_in_minutes: ::Integer
469
+ SENSITIVE: []
470
+ end
471
+
472
+ class CreateAnonymousWebExperienceUrlResponse
473
+ attr_accessor anonymous_url: ::String
474
+ SENSITIVE: []
475
+ end
476
+
436
477
  class CreateApplicationRequest
437
478
  attr_accessor display_name: ::String
438
479
  attr_accessor role_arn: ::String
439
- attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC" | "AWS_QUICKSIGHT_IDP")
480
+ attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC" | "AWS_QUICKSIGHT_IDP" | "ANONYMOUS")
440
481
  attr_accessor iam_identity_provider_arn: ::String
441
482
  attr_accessor identity_center_instance_arn: ::String
442
483
  attr_accessor client_ids_for_oidc: ::Array[::String]
@@ -809,6 +850,37 @@ module Aws::QBusiness
809
850
  SENSITIVE: []
810
851
  end
811
852
 
853
+ class DocumentAcl
854
+ attr_accessor allowlist: Types::DocumentAclMembership
855
+ attr_accessor deny_list: Types::DocumentAclMembership
856
+ SENSITIVE: []
857
+ end
858
+
859
+ class DocumentAclCondition
860
+ attr_accessor member_relation: ("AND" | "OR")
861
+ attr_accessor users: ::Array[Types::DocumentAclUser]
862
+ attr_accessor groups: ::Array[Types::DocumentAclGroup]
863
+ SENSITIVE: []
864
+ end
865
+
866
+ class DocumentAclGroup
867
+ attr_accessor name: ::String
868
+ attr_accessor type: ("INDEX" | "DATASOURCE")
869
+ SENSITIVE: []
870
+ end
871
+
872
+ class DocumentAclMembership
873
+ attr_accessor member_relation: ("AND" | "OR")
874
+ attr_accessor conditions: ::Array[Types::DocumentAclCondition]
875
+ SENSITIVE: []
876
+ end
877
+
878
+ class DocumentAclUser
879
+ attr_accessor id: ::String
880
+ attr_accessor type: ("INDEX" | "DATASOURCE")
881
+ SENSITIVE: []
882
+ end
883
+
812
884
  class DocumentAttribute
813
885
  attr_accessor name: ::String
814
886
  attr_accessor value: Types::DocumentAttributeValue
@@ -958,7 +1030,7 @@ module Aws::QBusiness
958
1030
  attr_accessor display_name: ::String
959
1031
  attr_accessor application_id: ::String
960
1032
  attr_accessor application_arn: ::String
961
- attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC" | "AWS_QUICKSIGHT_IDP")
1033
+ attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC" | "AWS_QUICKSIGHT_IDP" | "ANONYMOUS")
962
1034
  attr_accessor iam_identity_provider_arn: ::String
963
1035
  attr_accessor identity_center_application_arn: ::String
964
1036
  attr_accessor role_arn: ::String
@@ -991,6 +1063,7 @@ module Aws::QBusiness
991
1063
  attr_accessor topic_configurations: ::Array[Types::TopicConfiguration]
992
1064
  attr_accessor creator_mode_configuration: Types::AppliedCreatorModeConfiguration
993
1065
  attr_accessor next_token: ::String
1066
+ attr_accessor hallucination_reduction_configuration: Types::HallucinationReductionConfiguration
994
1067
  SENSITIVE: []
995
1068
  end
996
1069
 
@@ -1202,6 +1275,11 @@ module Aws::QBusiness
1202
1275
  SENSITIVE: []
1203
1276
  end
1204
1277
 
1278
+ class HallucinationReductionConfiguration
1279
+ attr_accessor hallucination_reduction_control: ("ENABLED" | "DISABLED")
1280
+ SENSITIVE: []
1281
+ end
1282
+
1205
1283
  class HookConfiguration
1206
1284
  attr_accessor invocation_condition: Types::DocumentAttributeCondition
1207
1285
  attr_accessor lambda_arn: ::String
@@ -1962,6 +2040,7 @@ module Aws::QBusiness
1962
2040
  end
1963
2041
 
1964
2042
  class TextOutputEvent
2043
+ attr_accessor system_message_type: ("RESPONSE" | "GROUNDED_RESPONSE")
1965
2044
  attr_accessor conversation_id: ::String
1966
2045
  attr_accessor user_message_id: ::String
1967
2046
  attr_accessor system_message_id: ::String
@@ -2027,6 +2106,7 @@ module Aws::QBusiness
2027
2106
  attr_accessor topic_configurations_to_create_or_update: ::Array[Types::TopicConfiguration]
2028
2107
  attr_accessor topic_configurations_to_delete: ::Array[Types::TopicConfiguration]
2029
2108
  attr_accessor creator_mode_configuration: Types::CreatorModeConfiguration
2109
+ attr_accessor hallucination_reduction_configuration: Types::HallucinationReductionConfiguration
2030
2110
  SENSITIVE: []
2031
2111
  end
2032
2112
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-qbusiness
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.33.0
4
+ version: 1.37.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-21 00:00:00.000000000 Z
11
+ date: 2025-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -69,6 +69,7 @@ files:
69
69
  - lib/aws-sdk-qbusiness/resource.rb
70
70
  - lib/aws-sdk-qbusiness/types.rb
71
71
  - lib/aws-sdk-qbusiness/waiters.rb
72
+ - sig/async_client.rbs
72
73
  - sig/client.rbs
73
74
  - sig/errors.rbs
74
75
  - sig/resource.rbs