aws-sdk-qconnect 1.5.0 → 1.6.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-qconnect/client.rb +244 -120
- data/lib/aws-sdk-qconnect/client_api.rb +56 -0
- data/lib/aws-sdk-qconnect/endpoints.rb +14 -0
- data/lib/aws-sdk-qconnect/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-qconnect/types.rb +292 -188
- data/lib/aws-sdk-qconnect.rb +1 -1
- data/sig/client.rbs +64 -0
- data/sig/types.rbs +52 -0
- metadata +2 -2
data/lib/aws-sdk-qconnect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -184,6 +184,32 @@ module Aws
|
|
184
184
|
?client_token: ::String,
|
185
185
|
?description: ::String,
|
186
186
|
name: ::String,
|
187
|
+
?tag_filter: {
|
188
|
+
and_conditions: Array[
|
189
|
+
{
|
190
|
+
key: ::String,
|
191
|
+
value: ::String?
|
192
|
+
},
|
193
|
+
]?,
|
194
|
+
or_conditions: Array[
|
195
|
+
{
|
196
|
+
and_conditions: Array[
|
197
|
+
{
|
198
|
+
key: ::String,
|
199
|
+
value: ::String?
|
200
|
+
},
|
201
|
+
]?,
|
202
|
+
tag_condition: {
|
203
|
+
key: ::String,
|
204
|
+
value: ::String?
|
205
|
+
}?
|
206
|
+
},
|
207
|
+
]?,
|
208
|
+
tag_condition: {
|
209
|
+
key: ::String,
|
210
|
+
value: ::String?
|
211
|
+
}?
|
212
|
+
},
|
187
213
|
?tags: Hash[::String, ::String]
|
188
214
|
) -> _CreateSessionResponseSuccess
|
189
215
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSessionResponseSuccess
|
@@ -692,6 +718,44 @@ module Aws
|
|
692
718
|
?shortcut_key: ::String
|
693
719
|
) -> _UpdateQuickResponseResponseSuccess
|
694
720
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateQuickResponseResponseSuccess
|
721
|
+
|
722
|
+
interface _UpdateSessionResponseSuccess
|
723
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSessionResponse]
|
724
|
+
def session: () -> Types::SessionData
|
725
|
+
end
|
726
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QConnect/Client.html#update_session-instance_method
|
727
|
+
def update_session: (
|
728
|
+
assistant_id: ::String,
|
729
|
+
?description: ::String,
|
730
|
+
session_id: ::String,
|
731
|
+
?tag_filter: {
|
732
|
+
and_conditions: Array[
|
733
|
+
{
|
734
|
+
key: ::String,
|
735
|
+
value: ::String?
|
736
|
+
},
|
737
|
+
]?,
|
738
|
+
or_conditions: Array[
|
739
|
+
{
|
740
|
+
and_conditions: Array[
|
741
|
+
{
|
742
|
+
key: ::String,
|
743
|
+
value: ::String?
|
744
|
+
},
|
745
|
+
]?,
|
746
|
+
tag_condition: {
|
747
|
+
key: ::String,
|
748
|
+
value: ::String?
|
749
|
+
}?
|
750
|
+
},
|
751
|
+
]?,
|
752
|
+
tag_condition: {
|
753
|
+
key: ::String,
|
754
|
+
value: ::String?
|
755
|
+
}?
|
756
|
+
}
|
757
|
+
) -> _UpdateSessionResponseSuccess
|
758
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSessionResponseSuccess
|
695
759
|
end
|
696
760
|
end
|
697
761
|
end
|
data/sig/types.rbs
CHANGED
@@ -269,6 +269,7 @@ module Aws::QConnect
|
|
269
269
|
attr_accessor client_token: ::String
|
270
270
|
attr_accessor description: ::String
|
271
271
|
attr_accessor name: ::String
|
272
|
+
attr_accessor tag_filter: Types::TagFilter
|
272
273
|
attr_accessor tags: ::Hash[::String, ::String]
|
273
274
|
SENSITIVE: []
|
274
275
|
end
|
@@ -694,6 +695,20 @@ module Aws::QConnect
|
|
694
695
|
SENSITIVE: []
|
695
696
|
end
|
696
697
|
|
698
|
+
class OrCondition
|
699
|
+
attr_accessor and_conditions: ::Array[Types::TagCondition]
|
700
|
+
attr_accessor tag_condition: Types::TagCondition
|
701
|
+
attr_accessor unknown: untyped
|
702
|
+
SENSITIVE: []
|
703
|
+
|
704
|
+
class AndConditions < OrCondition
|
705
|
+
end
|
706
|
+
class TagCondition < OrCondition
|
707
|
+
end
|
708
|
+
class Unknown < OrCondition
|
709
|
+
end
|
710
|
+
end
|
711
|
+
|
697
712
|
class PreconditionFailedException
|
698
713
|
attr_accessor message: ::String
|
699
714
|
SENSITIVE: []
|
@@ -1010,6 +1025,7 @@ module Aws::QConnect
|
|
1010
1025
|
attr_accessor name: ::String
|
1011
1026
|
attr_accessor session_arn: ::String
|
1012
1027
|
attr_accessor session_id: ::String
|
1028
|
+
attr_accessor tag_filter: Types::TagFilter
|
1013
1029
|
attr_accessor tags: ::Hash[::String, ::String]
|
1014
1030
|
SENSITIVE: []
|
1015
1031
|
end
|
@@ -1076,6 +1092,29 @@ module Aws::QConnect
|
|
1076
1092
|
SENSITIVE: []
|
1077
1093
|
end
|
1078
1094
|
|
1095
|
+
class TagCondition
|
1096
|
+
attr_accessor key: ::String
|
1097
|
+
attr_accessor value: ::String
|
1098
|
+
SENSITIVE: []
|
1099
|
+
end
|
1100
|
+
|
1101
|
+
class TagFilter
|
1102
|
+
attr_accessor and_conditions: ::Array[Types::TagCondition]
|
1103
|
+
attr_accessor or_conditions: ::Array[Types::OrCondition]
|
1104
|
+
attr_accessor tag_condition: Types::TagCondition
|
1105
|
+
attr_accessor unknown: untyped
|
1106
|
+
SENSITIVE: []
|
1107
|
+
|
1108
|
+
class AndConditions < TagFilter
|
1109
|
+
end
|
1110
|
+
class OrConditions < TagFilter
|
1111
|
+
end
|
1112
|
+
class TagCondition < TagFilter
|
1113
|
+
end
|
1114
|
+
class Unknown < TagFilter
|
1115
|
+
end
|
1116
|
+
end
|
1117
|
+
|
1079
1118
|
class TagResourceRequest
|
1080
1119
|
attr_accessor resource_arn: ::String
|
1081
1120
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -1157,6 +1196,19 @@ module Aws::QConnect
|
|
1157
1196
|
SENSITIVE: []
|
1158
1197
|
end
|
1159
1198
|
|
1199
|
+
class UpdateSessionRequest
|
1200
|
+
attr_accessor assistant_id: ::String
|
1201
|
+
attr_accessor description: ::String
|
1202
|
+
attr_accessor session_id: ::String
|
1203
|
+
attr_accessor tag_filter: Types::TagFilter
|
1204
|
+
SENSITIVE: []
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
class UpdateSessionResponse
|
1208
|
+
attr_accessor session: Types::SessionData
|
1209
|
+
SENSITIVE: []
|
1210
|
+
end
|
1211
|
+
|
1160
1212
|
class ValidationException
|
1161
1213
|
attr_accessor message: ::String
|
1162
1214
|
SENSITIVE: []
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-qconnect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.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: 2024-
|
11
|
+
date: 2024-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|