aws-sdk-qbusiness 1.25.0 → 1.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-qbusiness/async_client.rb +24 -1
- data/lib/aws-sdk-qbusiness/client.rb +289 -54
- data/lib/aws-sdk-qbusiness/client_api.rb +138 -0
- data/lib/aws-sdk-qbusiness/types.rb +313 -22
- data/lib/aws-sdk-qbusiness.rb +1 -1
- data/sig/client.rbs +61 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +84 -0
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -285,6 +285,19 @@ module Aws::QBusiness
|
|
285
285
|
SENSITIVE: []
|
286
286
|
end
|
287
287
|
|
288
|
+
class CancelSubscriptionRequest
|
289
|
+
attr_accessor application_id: ::String
|
290
|
+
attr_accessor subscription_id: ::String
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
294
|
+
class CancelSubscriptionResponse
|
295
|
+
attr_accessor subscription_arn: ::String
|
296
|
+
attr_accessor current_subscription: Types::SubscriptionDetails
|
297
|
+
attr_accessor next_subscription: Types::SubscriptionDetails
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
288
301
|
class ChatInput
|
289
302
|
attr_accessor application_id: ::String
|
290
303
|
attr_accessor user_id: ::String
|
@@ -517,6 +530,22 @@ module Aws::QBusiness
|
|
517
530
|
SENSITIVE: []
|
518
531
|
end
|
519
532
|
|
533
|
+
class CreateSubscriptionRequest
|
534
|
+
attr_accessor application_id: ::String
|
535
|
+
attr_accessor principal: Types::SubscriptionPrincipal
|
536
|
+
attr_accessor type: ("Q_LITE" | "Q_BUSINESS")
|
537
|
+
attr_accessor client_token: ::String
|
538
|
+
SENSITIVE: []
|
539
|
+
end
|
540
|
+
|
541
|
+
class CreateSubscriptionResponse
|
542
|
+
attr_accessor subscription_id: ::String
|
543
|
+
attr_accessor subscription_arn: ::String
|
544
|
+
attr_accessor current_subscription: Types::SubscriptionDetails
|
545
|
+
attr_accessor next_subscription: Types::SubscriptionDetails
|
546
|
+
SENSITIVE: []
|
547
|
+
end
|
548
|
+
|
520
549
|
class CreateUserRequest
|
521
550
|
attr_accessor application_id: ::String
|
522
551
|
attr_accessor user_id: ::String
|
@@ -1426,6 +1455,19 @@ module Aws::QBusiness
|
|
1426
1455
|
SENSITIVE: []
|
1427
1456
|
end
|
1428
1457
|
|
1458
|
+
class ListSubscriptionsRequest
|
1459
|
+
attr_accessor application_id: ::String
|
1460
|
+
attr_accessor next_token: ::String
|
1461
|
+
attr_accessor max_results: ::Integer
|
1462
|
+
SENSITIVE: []
|
1463
|
+
end
|
1464
|
+
|
1465
|
+
class ListSubscriptionsResponse
|
1466
|
+
attr_accessor next_token: ::String
|
1467
|
+
attr_accessor subscriptions: ::Array[Types::Subscription]
|
1468
|
+
SENSITIVE: []
|
1469
|
+
end
|
1470
|
+
|
1429
1471
|
class ListTagsForResourceRequest
|
1430
1472
|
attr_accessor resource_arn: ::String
|
1431
1473
|
SENSITIVE: []
|
@@ -1803,6 +1845,34 @@ module Aws::QBusiness
|
|
1803
1845
|
SENSITIVE: []
|
1804
1846
|
end
|
1805
1847
|
|
1848
|
+
class Subscription
|
1849
|
+
attr_accessor subscription_id: ::String
|
1850
|
+
attr_accessor subscription_arn: ::String
|
1851
|
+
attr_accessor principal: Types::SubscriptionPrincipal
|
1852
|
+
attr_accessor current_subscription: Types::SubscriptionDetails
|
1853
|
+
attr_accessor next_subscription: Types::SubscriptionDetails
|
1854
|
+
SENSITIVE: []
|
1855
|
+
end
|
1856
|
+
|
1857
|
+
class SubscriptionDetails
|
1858
|
+
attr_accessor type: ("Q_LITE" | "Q_BUSINESS")
|
1859
|
+
SENSITIVE: []
|
1860
|
+
end
|
1861
|
+
|
1862
|
+
class SubscriptionPrincipal
|
1863
|
+
attr_accessor user: ::String
|
1864
|
+
attr_accessor group: ::String
|
1865
|
+
attr_accessor unknown: untyped
|
1866
|
+
SENSITIVE: []
|
1867
|
+
|
1868
|
+
class User < SubscriptionPrincipal
|
1869
|
+
end
|
1870
|
+
class Group < SubscriptionPrincipal
|
1871
|
+
end
|
1872
|
+
class Unknown < SubscriptionPrincipal
|
1873
|
+
end
|
1874
|
+
end
|
1875
|
+
|
1806
1876
|
class Tag
|
1807
1877
|
attr_accessor key: ::String
|
1808
1878
|
attr_accessor value: ::String
|
@@ -1968,6 +2038,20 @@ module Aws::QBusiness
|
|
1968
2038
|
class UpdateRetrieverResponse < Aws::EmptyStructure
|
1969
2039
|
end
|
1970
2040
|
|
2041
|
+
class UpdateSubscriptionRequest
|
2042
|
+
attr_accessor application_id: ::String
|
2043
|
+
attr_accessor subscription_id: ::String
|
2044
|
+
attr_accessor type: ("Q_LITE" | "Q_BUSINESS")
|
2045
|
+
SENSITIVE: []
|
2046
|
+
end
|
2047
|
+
|
2048
|
+
class UpdateSubscriptionResponse
|
2049
|
+
attr_accessor subscription_arn: ::String
|
2050
|
+
attr_accessor current_subscription: Types::SubscriptionDetails
|
2051
|
+
attr_accessor next_subscription: Types::SubscriptionDetails
|
2052
|
+
SENSITIVE: []
|
2053
|
+
end
|
2054
|
+
|
1971
2055
|
class UpdateUserRequest
|
1972
2056
|
attr_accessor application_id: ::String
|
1973
2057
|
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.27.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:
|
11
|
+
date: 2025-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|