aws-sdk-qbusiness 1.26.0 → 1.28.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-qbusiness/async_client.rb +1 -1
- data/lib/aws-sdk-qbusiness/client.rb +277 -57
- data/lib/aws-sdk-qbusiness/client_api.rb +149 -0
- data/lib/aws-sdk-qbusiness/types.rb +383 -22
- data/lib/aws-sdk-qbusiness.rb +1 -1
- data/sig/client.rbs +63 -0
- data/sig/types.rbs +96 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -138,6 +138,11 @@ module Aws::QBusiness
|
|
138
138
|
SENSITIVE: []
|
139
139
|
end
|
140
140
|
|
141
|
+
class AppliedOrchestrationConfiguration
|
142
|
+
attr_accessor control: ("ENABLED" | "DISABLED")
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
141
146
|
class AssociatePermissionRequest
|
142
147
|
attr_accessor application_id: ::String
|
143
148
|
attr_accessor statement_id: ::String
|
@@ -285,6 +290,19 @@ module Aws::QBusiness
|
|
285
290
|
SENSITIVE: []
|
286
291
|
end
|
287
292
|
|
293
|
+
class CancelSubscriptionRequest
|
294
|
+
attr_accessor application_id: ::String
|
295
|
+
attr_accessor subscription_id: ::String
|
296
|
+
SENSITIVE: []
|
297
|
+
end
|
298
|
+
|
299
|
+
class CancelSubscriptionResponse
|
300
|
+
attr_accessor subscription_arn: ::String
|
301
|
+
attr_accessor current_subscription: Types::SubscriptionDetails
|
302
|
+
attr_accessor next_subscription: Types::SubscriptionDetails
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
288
306
|
class ChatInput
|
289
307
|
attr_accessor application_id: ::String
|
290
308
|
attr_accessor user_id: ::String
|
@@ -517,6 +535,22 @@ module Aws::QBusiness
|
|
517
535
|
SENSITIVE: []
|
518
536
|
end
|
519
537
|
|
538
|
+
class CreateSubscriptionRequest
|
539
|
+
attr_accessor application_id: ::String
|
540
|
+
attr_accessor principal: Types::SubscriptionPrincipal
|
541
|
+
attr_accessor type: ("Q_LITE" | "Q_BUSINESS")
|
542
|
+
attr_accessor client_token: ::String
|
543
|
+
SENSITIVE: []
|
544
|
+
end
|
545
|
+
|
546
|
+
class CreateSubscriptionResponse
|
547
|
+
attr_accessor subscription_id: ::String
|
548
|
+
attr_accessor subscription_arn: ::String
|
549
|
+
attr_accessor current_subscription: Types::SubscriptionDetails
|
550
|
+
attr_accessor next_subscription: Types::SubscriptionDetails
|
551
|
+
SENSITIVE: []
|
552
|
+
end
|
553
|
+
|
520
554
|
class CreateUserRequest
|
521
555
|
attr_accessor application_id: ::String
|
522
556
|
attr_accessor user_id: ::String
|
@@ -927,6 +961,7 @@ module Aws::QBusiness
|
|
927
961
|
|
928
962
|
class GetChatControlsConfigurationResponse
|
929
963
|
attr_accessor response_scope: ("ENTERPRISE_CONTENT_ONLY" | "EXTENDED_KNOWLEDGE_ENABLED")
|
964
|
+
attr_accessor orchestration_configuration: Types::AppliedOrchestrationConfiguration
|
930
965
|
attr_accessor blocked_phrases: Types::BlockedPhrasesConfiguration
|
931
966
|
attr_accessor topic_configurations: ::Array[Types::TopicConfiguration]
|
932
967
|
attr_accessor creator_mode_configuration: Types::AppliedCreatorModeConfiguration
|
@@ -1426,6 +1461,19 @@ module Aws::QBusiness
|
|
1426
1461
|
SENSITIVE: []
|
1427
1462
|
end
|
1428
1463
|
|
1464
|
+
class ListSubscriptionsRequest
|
1465
|
+
attr_accessor application_id: ::String
|
1466
|
+
attr_accessor next_token: ::String
|
1467
|
+
attr_accessor max_results: ::Integer
|
1468
|
+
SENSITIVE: []
|
1469
|
+
end
|
1470
|
+
|
1471
|
+
class ListSubscriptionsResponse
|
1472
|
+
attr_accessor next_token: ::String
|
1473
|
+
attr_accessor subscriptions: ::Array[Types::Subscription]
|
1474
|
+
SENSITIVE: []
|
1475
|
+
end
|
1476
|
+
|
1429
1477
|
class ListTagsForResourceRequest
|
1430
1478
|
attr_accessor resource_arn: ::String
|
1431
1479
|
SENSITIVE: []
|
@@ -1530,6 +1578,11 @@ module Aws::QBusiness
|
|
1530
1578
|
SENSITIVE: []
|
1531
1579
|
end
|
1532
1580
|
|
1581
|
+
class OrchestrationConfiguration
|
1582
|
+
attr_accessor control: ("ENABLED" | "DISABLED")
|
1583
|
+
SENSITIVE: []
|
1584
|
+
end
|
1585
|
+
|
1533
1586
|
class PersonalizationConfiguration
|
1534
1587
|
attr_accessor personalization_control_mode: ("ENABLED" | "DISABLED")
|
1535
1588
|
SENSITIVE: []
|
@@ -1803,6 +1856,34 @@ module Aws::QBusiness
|
|
1803
1856
|
SENSITIVE: []
|
1804
1857
|
end
|
1805
1858
|
|
1859
|
+
class Subscription
|
1860
|
+
attr_accessor subscription_id: ::String
|
1861
|
+
attr_accessor subscription_arn: ::String
|
1862
|
+
attr_accessor principal: Types::SubscriptionPrincipal
|
1863
|
+
attr_accessor current_subscription: Types::SubscriptionDetails
|
1864
|
+
attr_accessor next_subscription: Types::SubscriptionDetails
|
1865
|
+
SENSITIVE: []
|
1866
|
+
end
|
1867
|
+
|
1868
|
+
class SubscriptionDetails
|
1869
|
+
attr_accessor type: ("Q_LITE" | "Q_BUSINESS")
|
1870
|
+
SENSITIVE: []
|
1871
|
+
end
|
1872
|
+
|
1873
|
+
class SubscriptionPrincipal
|
1874
|
+
attr_accessor user: ::String
|
1875
|
+
attr_accessor group: ::String
|
1876
|
+
attr_accessor unknown: untyped
|
1877
|
+
SENSITIVE: []
|
1878
|
+
|
1879
|
+
class User < SubscriptionPrincipal
|
1880
|
+
end
|
1881
|
+
class Group < SubscriptionPrincipal
|
1882
|
+
end
|
1883
|
+
class Unknown < SubscriptionPrincipal
|
1884
|
+
end
|
1885
|
+
end
|
1886
|
+
|
1806
1887
|
class Tag
|
1807
1888
|
attr_accessor key: ::String
|
1808
1889
|
attr_accessor value: ::String
|
@@ -1890,6 +1971,7 @@ module Aws::QBusiness
|
|
1890
1971
|
attr_accessor application_id: ::String
|
1891
1972
|
attr_accessor client_token: ::String
|
1892
1973
|
attr_accessor response_scope: ("ENTERPRISE_CONTENT_ONLY" | "EXTENDED_KNOWLEDGE_ENABLED")
|
1974
|
+
attr_accessor orchestration_configuration: Types::OrchestrationConfiguration
|
1893
1975
|
attr_accessor blocked_phrases_configuration_update: Types::BlockedPhrasesConfigurationUpdate
|
1894
1976
|
attr_accessor topic_configurations_to_create_or_update: ::Array[Types::TopicConfiguration]
|
1895
1977
|
attr_accessor topic_configurations_to_delete: ::Array[Types::TopicConfiguration]
|
@@ -1968,6 +2050,20 @@ module Aws::QBusiness
|
|
1968
2050
|
class UpdateRetrieverResponse < Aws::EmptyStructure
|
1969
2051
|
end
|
1970
2052
|
|
2053
|
+
class UpdateSubscriptionRequest
|
2054
|
+
attr_accessor application_id: ::String
|
2055
|
+
attr_accessor subscription_id: ::String
|
2056
|
+
attr_accessor type: ("Q_LITE" | "Q_BUSINESS")
|
2057
|
+
SENSITIVE: []
|
2058
|
+
end
|
2059
|
+
|
2060
|
+
class UpdateSubscriptionResponse
|
2061
|
+
attr_accessor subscription_arn: ::String
|
2062
|
+
attr_accessor current_subscription: Types::SubscriptionDetails
|
2063
|
+
attr_accessor next_subscription: Types::SubscriptionDetails
|
2064
|
+
SENSITIVE: []
|
2065
|
+
end
|
2066
|
+
|
1971
2067
|
class UpdateUserRequest
|
1972
2068
|
attr_accessor application_id: ::String
|
1973
2069
|
attr_accessor user_id: ::String
|
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.
|
4
|
+
version: 1.28.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-
|
11
|
+
date: 2025-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|