aws-sdk-ivschat 1.0.0 → 1.3.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ivschat/client.rb +29 -8
- data/lib/aws-sdk-ivschat/client_api.rb +2 -0
- data/lib/aws-sdk-ivschat/types.rb +51 -19
- data/lib/aws-sdk-ivschat.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 378ba7e15129e62995beb1d796a4f45c3fb6e223c21f11ddaa5783cf43ee7433
|
4
|
+
data.tar.gz: 0044e72b2fe4760415122652bb1880c4363d4a93af4f4b58355ed32d49d98657
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7dcddfdc6f3df14ce5696b266c21002e5ee3fb4d303af0bdc39af34c11f422204858c284e040b2dd5897e5db46d077f2e581a454e1bd07a7938dc055531cbfe
|
7
|
+
data.tar.gz: f3ca9aaa14e7643c11fc1ee97edff6c5745d6319072ac22b0f18319a146197f78901a3a971c4a620037ca27ee2cf6837289b54a6573abb41b25cbf7e3c7208ec
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.3.0 (2022-08-19)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation Change for IVS Chat API Reference - Doc-only update to change text/description for tags field.
|
8
|
+
|
9
|
+
1.2.0 (2022-05-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Doc-only update. For MessageReviewHandler structure, added timeout period in the description of the fallbackResult field
|
13
|
+
|
14
|
+
1.1.0 (2022-05-12)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Documentation-only updates for IVS Chat API Reference.
|
18
|
+
|
4
19
|
1.0.0 (2022-04-26)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.3.0
|
@@ -422,8 +422,8 @@ module Aws::Ivschat
|
|
422
422
|
# rune/code-point count, not number of bytes. Default: 500.
|
423
423
|
#
|
424
424
|
# @option params [Integer] :maximum_message_rate_per_second
|
425
|
-
# Maximum number of messages per second that
|
426
|
-
#
|
425
|
+
# Maximum number of messages per second that can be sent to the room (by
|
426
|
+
# all clients). Default: 10.
|
427
427
|
#
|
428
428
|
# @option params [Types::MessageReviewHandler] :message_review_handler
|
429
429
|
# Configuration information for optional review of messages.
|
@@ -433,7 +433,14 @@ module Aws::Ivschat
|
|
433
433
|
#
|
434
434
|
# @option params [Hash<String,String>] :tags
|
435
435
|
# Tags to attach to the resource. Array of maps, each of the form
|
436
|
-
# `string:string (key:value)`.
|
436
|
+
# `string:string (key:value)`. See [Tagging AWS Resources][1] for
|
437
|
+
# details, including restrictions that apply to tags and "Tag naming
|
438
|
+
# limits and requirements"; Amazon IVS Chat has no constraints beyond
|
439
|
+
# what is documented there.
|
440
|
+
#
|
441
|
+
#
|
442
|
+
#
|
443
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
437
444
|
#
|
438
445
|
# @return [Types::CreateRoomResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
439
446
|
#
|
@@ -775,7 +782,14 @@ module Aws::Ivschat
|
|
775
782
|
# The ARN of the resource to be tagged. The ARN must be URL-encoded.
|
776
783
|
#
|
777
784
|
# @option params [required, Hash<String,String>] :tags
|
778
|
-
# Array of tags to be added or updated.
|
785
|
+
# Array of tags to be added or updated. See [Tagging AWS Resources][1]
|
786
|
+
# for details, including restrictions that apply to tags and "Tag
|
787
|
+
# naming limits and requirements"; Amazon IVS Chat has no constraints
|
788
|
+
# beyond what is documented there.
|
789
|
+
#
|
790
|
+
#
|
791
|
+
#
|
792
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
779
793
|
#
|
780
794
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
781
795
|
#
|
@@ -803,7 +817,14 @@ module Aws::Ivschat
|
|
803
817
|
# The ARN of the resource to be untagged. The ARN must be URL-encoded.
|
804
818
|
#
|
805
819
|
# @option params [required, Array<String>] :tag_keys
|
806
|
-
# Array of tags to be removed.
|
820
|
+
# Array of tags to be removed. See [Tagging AWS Resources][1] for
|
821
|
+
# details, including restrictions that apply to tags and "Tag naming
|
822
|
+
# limits and requirements"; Amazon IVS Chat has no constraints beyond
|
823
|
+
# what is documented there.
|
824
|
+
#
|
825
|
+
#
|
826
|
+
#
|
827
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
807
828
|
#
|
808
829
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
809
830
|
#
|
@@ -834,8 +855,8 @@ module Aws::Ivschat
|
|
834
855
|
# rune/code-point count, not number of bytes. Default: 500.
|
835
856
|
#
|
836
857
|
# @option params [Integer] :maximum_message_rate_per_second
|
837
|
-
#
|
838
|
-
#
|
858
|
+
# Maximum number of messages per second that can be sent to the room (by
|
859
|
+
# all clients). Default: 10.
|
839
860
|
#
|
840
861
|
# @option params [Types::MessageReviewHandler] :message_review_handler
|
841
862
|
# Configuration information for optional review of messages. Specify an
|
@@ -906,7 +927,7 @@ module Aws::Ivschat
|
|
906
927
|
params: params,
|
907
928
|
config: config)
|
908
929
|
context[:gem_name] = 'aws-sdk-ivschat'
|
909
|
-
context[:gem_version] = '1.
|
930
|
+
context[:gem_version] = '1.3.0'
|
910
931
|
Seahorse::Client::Request.new(handlers, context)
|
911
932
|
end
|
912
933
|
|
@@ -335,6 +335,7 @@ module Aws::Ivschat
|
|
335
335
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
336
336
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
337
337
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
338
|
+
o.errors << Shapes::ShapeRef.new(shape: PendingVerification)
|
338
339
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
339
340
|
end)
|
340
341
|
|
@@ -431,6 +432,7 @@ module Aws::Ivschat
|
|
431
432
|
o.output = Shapes::ShapeRef.new(shape: UpdateRoomResponse)
|
432
433
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
433
434
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
435
|
+
o.errors << Shapes::ShapeRef.new(shape: PendingVerification)
|
434
436
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
435
437
|
end)
|
436
438
|
end
|
@@ -140,8 +140,8 @@ module Aws::Ivschat
|
|
140
140
|
# @return [Integer]
|
141
141
|
#
|
142
142
|
# @!attribute [rw] maximum_message_rate_per_second
|
143
|
-
# Maximum number of messages per second that
|
144
|
-
#
|
143
|
+
# Maximum number of messages per second that can be sent to the room
|
144
|
+
# (by all clients). Default: 10.
|
145
145
|
# @return [Integer]
|
146
146
|
#
|
147
147
|
# @!attribute [rw] message_review_handler
|
@@ -154,7 +154,14 @@ module Aws::Ivschat
|
|
154
154
|
#
|
155
155
|
# @!attribute [rw] tags
|
156
156
|
# Tags to attach to the resource. Array of maps, each of the form
|
157
|
-
# `string:string (key:value)`.
|
157
|
+
# `string:string (key:value)`. See [Tagging AWS Resources][1] for
|
158
|
+
# details, including restrictions that apply to tags and "Tag naming
|
159
|
+
# limits and requirements"; Amazon IVS Chat has no constraints beyond
|
160
|
+
# what is documented there.
|
161
|
+
#
|
162
|
+
#
|
163
|
+
#
|
164
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
158
165
|
# @return [Hash<String,String>]
|
159
166
|
#
|
160
167
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivschat-2020-07-14/CreateRoomRequest AWS API Documentation
|
@@ -188,8 +195,8 @@ module Aws::Ivschat
|
|
188
195
|
# @return [Integer]
|
189
196
|
#
|
190
197
|
# @!attribute [rw] maximum_message_rate_per_second
|
191
|
-
# Maximum number of messages per second that
|
192
|
-
#
|
198
|
+
# Maximum number of messages per second that can be sent to the room
|
199
|
+
# (by all clients), from the request.
|
193
200
|
# @return [Integer]
|
194
201
|
#
|
195
202
|
# @!attribute [rw] message_review_handler
|
@@ -371,8 +378,8 @@ module Aws::Ivschat
|
|
371
378
|
# @return [Integer]
|
372
379
|
#
|
373
380
|
# @!attribute [rw] maximum_message_rate_per_second
|
374
|
-
# Maximum number of messages per second that
|
375
|
-
#
|
381
|
+
# Maximum number of messages per second that can be sent to the room
|
382
|
+
# (by all clients). Default: 10.
|
376
383
|
# @return [Integer]
|
377
384
|
#
|
378
385
|
# @!attribute [rw] message_review_handler
|
@@ -497,8 +504,7 @@ module Aws::Ivschat
|
|
497
504
|
end
|
498
505
|
|
499
506
|
# @!attribute [rw] tags
|
500
|
-
# Tags
|
501
|
-
# `string:string (key:value)`.
|
507
|
+
# Tags attached to the resource, from the request.
|
502
508
|
# @return [Hash<String,String>]
|
503
509
|
#
|
504
510
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivschat-2020-07-14/ListTagsForResourceResponse AWS API Documentation
|
@@ -522,9 +528,14 @@ module Aws::Ivschat
|
|
522
528
|
# @!attribute [rw] fallback_result
|
523
529
|
# Specifies the fallback behavior (whether the message is allowed or
|
524
530
|
# denied) if the handler does not return a valid response, encounters
|
525
|
-
# an error or times out.
|
526
|
-
#
|
527
|
-
#
|
531
|
+
# an error, or times out. (For the timeout period, see [ Service
|
532
|
+
# Quotas][1].) If allowed, the message is delivered with returned
|
533
|
+
# content to all users connected to the room. If denied, the message
|
534
|
+
# is not delivered to any user. Default: `ALLOW`.
|
535
|
+
#
|
536
|
+
#
|
537
|
+
#
|
538
|
+
# [1]: https://docs.aws.amazon.com/ivs/latest/userguide/service-quotas.html
|
528
539
|
# @return [String]
|
529
540
|
#
|
530
541
|
# @!attribute [rw] uri
|
@@ -596,7 +607,14 @@ module Aws::Ivschat
|
|
596
607
|
# @return [String]
|
597
608
|
#
|
598
609
|
# @!attribute [rw] tags
|
599
|
-
# Tags attached to the resource.
|
610
|
+
# Tags attached to the resource. See [Tagging AWS Resources][1] for
|
611
|
+
# details, including restrictions that apply to tags and "Tag naming
|
612
|
+
# limits and requirements"; Amazon IVS Chat has no constraints beyond
|
613
|
+
# what is documented there.
|
614
|
+
#
|
615
|
+
#
|
616
|
+
#
|
617
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
600
618
|
# @return [Hash<String,String>]
|
601
619
|
#
|
602
620
|
# @!attribute [rw] update_time
|
@@ -705,7 +723,14 @@ module Aws::Ivschat
|
|
705
723
|
# @return [String]
|
706
724
|
#
|
707
725
|
# @!attribute [rw] tags
|
708
|
-
# Array of tags to be added or updated.
|
726
|
+
# Array of tags to be added or updated. See [Tagging AWS Resources][1]
|
727
|
+
# for details, including restrictions that apply to tags and "Tag
|
728
|
+
# naming limits and requirements"; Amazon IVS Chat has no constraints
|
729
|
+
# beyond what is documented there.
|
730
|
+
#
|
731
|
+
#
|
732
|
+
#
|
733
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
709
734
|
# @return [Hash<String,String>]
|
710
735
|
#
|
711
736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivschat-2020-07-14/TagResourceRequest AWS API Documentation
|
@@ -757,7 +782,14 @@ module Aws::Ivschat
|
|
757
782
|
# @return [String]
|
758
783
|
#
|
759
784
|
# @!attribute [rw] tag_keys
|
760
|
-
# Array of tags to be removed.
|
785
|
+
# Array of tags to be removed. See [Tagging AWS Resources][1] for
|
786
|
+
# details, including restrictions that apply to tags and "Tag naming
|
787
|
+
# limits and requirements"; Amazon IVS Chat has no constraints beyond
|
788
|
+
# what is documented there.
|
789
|
+
#
|
790
|
+
#
|
791
|
+
#
|
792
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
761
793
|
# @return [Array<String>]
|
762
794
|
#
|
763
795
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivschat-2020-07-14/UntagResourceRequest AWS API Documentation
|
@@ -798,8 +830,8 @@ module Aws::Ivschat
|
|
798
830
|
# @return [Integer]
|
799
831
|
#
|
800
832
|
# @!attribute [rw] maximum_message_rate_per_second
|
801
|
-
#
|
802
|
-
#
|
833
|
+
# Maximum number of messages per second that can be sent to the room
|
834
|
+
# (by all clients). Default: 10.
|
803
835
|
# @return [Integer]
|
804
836
|
#
|
805
837
|
# @!attribute [rw] message_review_handler
|
@@ -843,8 +875,8 @@ module Aws::Ivschat
|
|
843
875
|
# @return [Integer]
|
844
876
|
#
|
845
877
|
# @!attribute [rw] maximum_message_rate_per_second
|
846
|
-
# Maximum number of messages per second that
|
847
|
-
#
|
878
|
+
# Maximum number of messages per second that can be sent to the room
|
879
|
+
# (by all clients), from the request.
|
848
880
|
# @return [Integer]
|
849
881
|
#
|
850
882
|
# @!attribute [rw] message_review_handler
|
data/lib/aws-sdk-ivschat.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ivschat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.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: 2022-
|
11
|
+
date: 2022-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|