aws-sdk-ivsrealtime 1.31.0 → 1.33.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-ivsrealtime/client.rb +2 -4
- data/lib/aws-sdk-ivsrealtime/types.rb +58 -16
- data/lib/aws-sdk-ivsrealtime.rb +3 -1
- data/sig/types.rbs +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: a4d89542aa59133c405553a1a687136ccd02908d69406b5c27e7d94928caa05e
|
4
|
+
data.tar.gz: 404ab3cd87215d69d4c6a8917988f7ef6f448d36facf9fdf24dbbfd25a910b62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc737bc0200c968cd6d68c2b8fc274e86d617271ac0effe03171118a6ade3802ec108f9468ed0cba262543f6ada806db3b04ce788d7a4d505b69aa4b0f02cf55
|
7
|
+
data.tar.gz: 1598d65560a3824ea51cc08b54a501ac856e191490574d90e066736af8c3c9e246e3682bcd1a6319b2637e2d48f208d9f38604312f877fb3bbe39d1687aecbeb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.33.0 (2024-10-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds new Stage Health EventErrorCodes applicable to RTMP(S) broadcasts. Bug Fix: Enforces that EncoderConfiguration Video height and width must be even-number values.
|
8
|
+
|
9
|
+
1.32.0 (2024-09-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.31.0 (2024-09-23)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.33.0
|
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
|
|
36
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
37
37
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
38
38
|
|
39
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:ivsrealtime)
|
40
|
-
|
41
39
|
module Aws::IVSRealTime
|
42
40
|
# An API client for IVSRealTime. To construct a client, you need to configure a `:region` and `:credentials`.
|
43
41
|
#
|
@@ -1556,7 +1554,7 @@ module Aws::IVSRealTime
|
|
1556
1554
|
# resp.events[0].participant_id #=> String
|
1557
1555
|
# resp.events[0].event_time #=> Time
|
1558
1556
|
# resp.events[0].remote_participant_id #=> String
|
1559
|
-
# resp.events[0].error_code #=> String, one of "INSUFFICIENT_CAPABILITIES", "QUOTA_EXCEEDED", "PUBLISHER_NOT_FOUND", "BITRATE_EXCEEDED", "RESOLUTION_EXCEEDED", "STREAM_DURATION_EXCEEDED", "INVALID_AUDIO_CODEC", "INVALID_VIDEO_CODEC", "INVALID_PROTOCOL", "INVALID_STREAM_KEY", "REUSE_OF_STREAM_KEY"
|
1557
|
+
# resp.events[0].error_code #=> String, one of "INSUFFICIENT_CAPABILITIES", "QUOTA_EXCEEDED", "PUBLISHER_NOT_FOUND", "BITRATE_EXCEEDED", "RESOLUTION_EXCEEDED", "STREAM_DURATION_EXCEEDED", "INVALID_AUDIO_CODEC", "INVALID_VIDEO_CODEC", "INVALID_PROTOCOL", "INVALID_STREAM_KEY", "REUSE_OF_STREAM_KEY", "B_FRAME_PRESENT", "INVALID_INPUT", "INTERNAL_SERVER_EXCEPTION"
|
1560
1558
|
# resp.next_token #=> String
|
1561
1559
|
#
|
1562
1560
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/ListParticipantEvents AWS API Documentation
|
@@ -2207,7 +2205,7 @@ module Aws::IVSRealTime
|
|
2207
2205
|
tracer: tracer
|
2208
2206
|
)
|
2209
2207
|
context[:gem_name] = 'aws-sdk-ivsrealtime'
|
2210
|
-
context[:gem_version] = '1.
|
2208
|
+
context[:gem_version] = '1.33.0'
|
2211
2209
|
Seahorse::Client::Request.new(handlers, context)
|
2212
2210
|
end
|
2213
2211
|
|
@@ -794,19 +794,59 @@ module Aws::IVSRealTime
|
|
794
794
|
# @!attribute [rw] error_code
|
795
795
|
# If the event is an error event, the error code is provided to give
|
796
796
|
# insight into the specific error that occurred. If the event is not
|
797
|
-
# an error event, this field is null.
|
798
|
-
# indicates that the participant tried to take an action that the
|
799
|
-
# participant’s token is not allowed to do. For more information about
|
800
|
-
# participant capabilities, see the `capabilities` field in
|
801
|
-
# CreateParticipantToken. `QUOTA_EXCEEDED` indicates that the number
|
802
|
-
# of participants who want to publish/subscribe to a stage exceeds the
|
803
|
-
# quota; for more information, see [Service Quotas][1].
|
804
|
-
# `PUBLISHER_NOT_FOUND` indicates that the participant tried to
|
805
|
-
# subscribe to a publisher that doesn’t exist.
|
797
|
+
# an error event, this field is null.
|
806
798
|
#
|
799
|
+
# * `B_FRAME_PRESENT` — The participant's stream includes B-frames.
|
800
|
+
# For details, see [ IVS RTMP Publishing][1].
|
807
801
|
#
|
802
|
+
# * `BITRATE_EXCEEDED` — The participant exceeded the maximum
|
803
|
+
# supported bitrate. For details, see [ Service Quotas][2].
|
808
804
|
#
|
809
|
-
#
|
805
|
+
# * `INSUFFICIENT_CAPABILITIES` — The participant tried to take an
|
806
|
+
# action that the participant’s token is not allowed to do. For
|
807
|
+
# details on participant capabilities, see the `capabilities` field
|
808
|
+
# in CreateParticipantToken.
|
809
|
+
#
|
810
|
+
# * `INTERNAL_SERVER_EXCEPTION` — The participant failed to publish to
|
811
|
+
# the stage due to an internal server error.
|
812
|
+
#
|
813
|
+
# * `INVALID_AUDIO_CODEC` — The participant is using an invalid audio
|
814
|
+
# codec. For details, see [ Stream Ingest][3].
|
815
|
+
#
|
816
|
+
# * `INVALID_INPUT` — The participant is using an invalid input
|
817
|
+
# stream.
|
818
|
+
#
|
819
|
+
# * `INVALID_PROTOCOL` — The participant's IngestConfiguration
|
820
|
+
# resource is configured for RTMPS but they tried streaming with
|
821
|
+
# RTMP. For details, see [ IVS RTMP Publishing][1].
|
822
|
+
#
|
823
|
+
# * `INVALID_STREAM_KEY` — The participant is using an invalid stream
|
824
|
+
# key. For details, see [ IVS RTMP Publishing][1].
|
825
|
+
#
|
826
|
+
# * `INVALID_VIDEO_CODEC` — The participant is using an invalid video
|
827
|
+
# codec. For details, see [ Stream Ingest][3].
|
828
|
+
#
|
829
|
+
# * `PUBLISHER_NOT_FOUND` — The participant tried to subscribe to a
|
830
|
+
# publisher that doesn’t exist.
|
831
|
+
#
|
832
|
+
# * `QUOTA_EXCEEDED` — The number of participants who want to
|
833
|
+
# publish/subscribe to a stage exceeds the quota. For details, see [
|
834
|
+
# Service Quotas][2].
|
835
|
+
#
|
836
|
+
# * `RESOLUTION_EXCEEDED` — The participant exceeded the maximum
|
837
|
+
# supported resolution. For details, see [ Service Quotas][2].
|
838
|
+
#
|
839
|
+
# * `REUSE_OF_STREAM_KEY` — The participant tried to use a stream key
|
840
|
+
# that is associated with another active stage session.
|
841
|
+
#
|
842
|
+
# * `STREAM_DURATION_EXCEEDED` — The participant exceeded the maximum
|
843
|
+
# allowed stream duration. For details, see [ Service Quotas][2].
|
844
|
+
#
|
845
|
+
#
|
846
|
+
#
|
847
|
+
# [1]: https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-rtmp-publishing.html
|
848
|
+
# [2]: https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/service-quotas.html
|
849
|
+
# [3]: https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-stream-ingest.html
|
810
850
|
# @return [String]
|
811
851
|
#
|
812
852
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/Event AWS API Documentation
|
@@ -2710,15 +2750,17 @@ module Aws::IVSRealTime
|
|
2710
2750
|
# Settings for video.
|
2711
2751
|
#
|
2712
2752
|
# @!attribute [rw] width
|
2713
|
-
# Video-resolution width.
|
2714
|
-
# `width` times `height`, such that the
|
2715
|
-
# 2073600 (1920x1080 or 1080x1920). Default:
|
2753
|
+
# Video-resolution width. This must be an even number. Note that the
|
2754
|
+
# maximum value is determined by `width` times `height`, such that the
|
2755
|
+
# maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default:
|
2756
|
+
# 1280.
|
2716
2757
|
# @return [Integer]
|
2717
2758
|
#
|
2718
2759
|
# @!attribute [rw] height
|
2719
|
-
# Video-resolution height.
|
2720
|
-
# by `width` times `height`, such that the
|
2721
|
-
# 2073600 (1920x1080 or 1080x1920). Default:
|
2760
|
+
# Video-resolution height. This must be an even number. Note that the
|
2761
|
+
# maximum value is determined by `width` times `height`, such that the
|
2762
|
+
# maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default:
|
2763
|
+
# 720.
|
2722
2764
|
# @return [Integer]
|
2723
2765
|
#
|
2724
2766
|
# @!attribute [rw] framerate
|
data/lib/aws-sdk-ivsrealtime.rb
CHANGED
@@ -11,6 +11,8 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:ivsrealtime)
|
15
|
+
|
14
16
|
# This module provides support for Amazon Interactive Video Service RealTime. This module is available in the
|
15
17
|
# `aws-sdk-ivsrealtime` gem.
|
16
18
|
#
|
@@ -53,7 +55,7 @@ module Aws::IVSRealTime
|
|
53
55
|
autoload :EndpointProvider, 'aws-sdk-ivsrealtime/endpoint_provider'
|
54
56
|
autoload :Endpoints, 'aws-sdk-ivsrealtime/endpoints'
|
55
57
|
|
56
|
-
GEM_VERSION = '1.
|
58
|
+
GEM_VERSION = '1.33.0'
|
57
59
|
|
58
60
|
end
|
59
61
|
|
data/sig/types.rbs
CHANGED
@@ -222,7 +222,7 @@ module Aws::IVSRealTime
|
|
222
222
|
attr_accessor participant_id: ::String
|
223
223
|
attr_accessor event_time: ::Time
|
224
224
|
attr_accessor remote_participant_id: ::String
|
225
|
-
attr_accessor error_code: ("INSUFFICIENT_CAPABILITIES" | "QUOTA_EXCEEDED" | "PUBLISHER_NOT_FOUND" | "BITRATE_EXCEEDED" | "RESOLUTION_EXCEEDED" | "STREAM_DURATION_EXCEEDED" | "INVALID_AUDIO_CODEC" | "INVALID_VIDEO_CODEC" | "INVALID_PROTOCOL" | "INVALID_STREAM_KEY" | "REUSE_OF_STREAM_KEY")
|
225
|
+
attr_accessor error_code: ("INSUFFICIENT_CAPABILITIES" | "QUOTA_EXCEEDED" | "PUBLISHER_NOT_FOUND" | "BITRATE_EXCEEDED" | "RESOLUTION_EXCEEDED" | "STREAM_DURATION_EXCEEDED" | "INVALID_AUDIO_CODEC" | "INVALID_VIDEO_CODEC" | "INVALID_PROTOCOL" | "INVALID_STREAM_KEY" | "REUSE_OF_STREAM_KEY" | "B_FRAME_PRESENT" | "INVALID_INPUT" | "INTERNAL_SERVER_EXCEPTION")
|
226
226
|
SENSITIVE: []
|
227
227
|
end
|
228
228
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ivsrealtime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.33.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-10-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|