aws-sdk-kinesisvideo 1.55.0 → 1.56.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kinesisvideo/client.rb +13 -27
- data/lib/aws-sdk-kinesisvideo/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-kinesisvideo/types.rb +14 -4
- data/lib/aws-sdk-kinesisvideo.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: 99b4e88536d066b19cc412890bb09e7d9f3dccaff8114c9f21044d0ef59ddfa2
|
4
|
+
data.tar.gz: 694e556aacc0f80b31ffa4b0d49a536f3414c8a45ce2571b4a8e34125e378b73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3e1813a5fa961797b77eb58353a372f2acb486b0dca999705af49e22f8f2f655af2a0e5a8ab78ab7cb1ee24379eb74914a8fd5ba6d92f50bd20808eee9e1aff
|
7
|
+
data.tar.gz: 923b62df5ae25a44a890c85495ef90d90d08bb58ad423a612b531770f71cf5e3fb0044ce9f5d4b50ce925acaf68245d9aa1ffd8904fb257db1b91b4467fd9545
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.56.0
|
@@ -830,16 +830,9 @@ module Aws::KinesisVideo
|
|
830
830
|
req.send_request(options)
|
831
831
|
end
|
832
832
|
|
833
|
-
# This API is related to [WebRTC Ingestion][1] and is only available in
|
834
|
-
# the `us-west-2` region.
|
835
|
-
#
|
836
833
|
# Returns the most current information about the channel. Specify the
|
837
834
|
# `ChannelName` or `ChannelARN` in the input.
|
838
835
|
#
|
839
|
-
#
|
840
|
-
#
|
841
|
-
# [1]: https://docs.aws.amazon.com/kinesisvideostreams-webrtc-dg/latest/devguide/webrtc-ingestion.html
|
842
|
-
#
|
843
836
|
# @option params [String] :channel_name
|
844
837
|
# The name of the channel.
|
845
838
|
#
|
@@ -1625,10 +1618,6 @@ module Aws::KinesisVideo
|
|
1625
1618
|
# in the request body. In the request, you must specify either the
|
1626
1619
|
# `StreamName` or the `StreamARN`.
|
1627
1620
|
#
|
1628
|
-
# <note markdown="1"> The retention period that you specify replaces the current value.
|
1629
|
-
#
|
1630
|
-
# </note>
|
1631
|
-
#
|
1632
1621
|
# This operation requires permission for the
|
1633
1622
|
# `KinesisVideo:UpdateDataRetention` action.
|
1634
1623
|
#
|
@@ -1663,9 +1652,12 @@ module Aws::KinesisVideo
|
|
1663
1652
|
# period.
|
1664
1653
|
#
|
1665
1654
|
# @option params [required, Integer] :data_retention_change_in_hours
|
1666
|
-
# The
|
1667
|
-
#
|
1668
|
-
#
|
1655
|
+
# The number of hours to adjust the current retention by. The value you
|
1656
|
+
# specify is added to or subtracted from the current value, depending on
|
1657
|
+
# the `operation`.
|
1658
|
+
#
|
1659
|
+
# The minimum value for data retention is 0 and the maximum value is
|
1660
|
+
# 87600 (ten years).
|
1669
1661
|
#
|
1670
1662
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1671
1663
|
#
|
@@ -1738,17 +1730,15 @@ module Aws::KinesisVideo
|
|
1738
1730
|
req.send_request(options)
|
1739
1731
|
end
|
1740
1732
|
|
1741
|
-
# This API is related to [WebRTC Ingestion][1] and is only available in
|
1742
|
-
# the `us-west-2` region.
|
1743
|
-
#
|
1744
1733
|
# Associates a `SignalingChannel` to a stream to store the media. There
|
1745
|
-
# are two signaling modes that can
|
1734
|
+
# are two signaling modes that you can specify :
|
1746
1735
|
#
|
1747
|
-
# * If
|
1748
|
-
# `StreamARN`
|
1736
|
+
# * If `StorageStatus` is enabled, the data will be stored in the
|
1737
|
+
# `StreamARN` provided. In order for WebRTC Ingestion to work, the
|
1738
|
+
# stream must have data retention enabled.
|
1749
1739
|
#
|
1750
|
-
# * If
|
1751
|
-
# `StreamARN`
|
1740
|
+
# * If `StorageStatus` is disabled, no data will be stored, and the
|
1741
|
+
# `StreamARN` parameter will not be needed.
|
1752
1742
|
#
|
1753
1743
|
# If `StorageStatus` is enabled, direct peer-to-peer (master-viewer)
|
1754
1744
|
# connections no longer occur. Peers connect directly to the storage
|
@@ -1756,10 +1746,6 @@ module Aws::KinesisVideo
|
|
1756
1746
|
# offer send and establish a connection between a peer and the storage
|
1757
1747
|
# session.
|
1758
1748
|
#
|
1759
|
-
#
|
1760
|
-
#
|
1761
|
-
# [1]: https://docs.aws.amazon.com/kinesisvideostreams-webrtc-dg/latest/devguide/webrtc-ingestion.html
|
1762
|
-
#
|
1763
1749
|
# @option params [required, String] :channel_arn
|
1764
1750
|
# The Amazon Resource Name (ARN) of the channel.
|
1765
1751
|
#
|
@@ -1952,7 +1938,7 @@ module Aws::KinesisVideo
|
|
1952
1938
|
params: params,
|
1953
1939
|
config: config)
|
1954
1940
|
context[:gem_name] = 'aws-sdk-kinesisvideo'
|
1955
|
-
context[:gem_version] = '1.
|
1941
|
+
context[:gem_version] = '1.56.0'
|
1956
1942
|
Seahorse::Client::Request.new(handlers, context)
|
1957
1943
|
end
|
1958
1944
|
|
@@ -32,7 +32,7 @@ module Aws::KinesisVideo
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://kinesisvideo-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -1350,8 +1350,15 @@ module Aws::KinesisVideo
|
|
1350
1350
|
# A structure that encapsulates, or contains, the media storage
|
1351
1351
|
# configuration properties.
|
1352
1352
|
#
|
1353
|
+
# * If `StorageStatus` is enabled, the data will be stored in the
|
1354
|
+
# `StreamARN` provided. In order for WebRTC Ingestion to work, the
|
1355
|
+
# stream must have data retention enabled.
|
1356
|
+
#
|
1357
|
+
# * If `StorageStatus` is disabled, no data will be stored, and the
|
1358
|
+
# `StreamARN` parameter will not be needed.
|
1359
|
+
#
|
1353
1360
|
# @!attribute [rw] stream_arn
|
1354
|
-
# The Amazon Resource Name (ARN) of the stream
|
1361
|
+
# The Amazon Resource Name (ARN) of the stream.
|
1355
1362
|
# @return [String]
|
1356
1363
|
#
|
1357
1364
|
# @!attribute [rw] status
|
@@ -1932,9 +1939,12 @@ module Aws::KinesisVideo
|
|
1932
1939
|
# @return [String]
|
1933
1940
|
#
|
1934
1941
|
# @!attribute [rw] data_retention_change_in_hours
|
1935
|
-
# The
|
1936
|
-
#
|
1937
|
-
#
|
1942
|
+
# The number of hours to adjust the current retention by. The value
|
1943
|
+
# you specify is added to or subtracted from the current value,
|
1944
|
+
# depending on the `operation`.
|
1945
|
+
#
|
1946
|
+
# The minimum value for data retention is 0 and the maximum value is
|
1947
|
+
# 87600 (ten years).
|
1938
1948
|
# @return [Integer]
|
1939
1949
|
#
|
1940
1950
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/UpdateDataRetentionInput AWS API Documentation
|
data/lib/aws-sdk-kinesisvideo.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-kinesisvideo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.56.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: 2023-
|
11
|
+
date: 2023-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|