aws-sdk-kinesisvideo 1.54.0 → 1.56.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e7b4f7f7852469f128664502f928104da073ede2e2c5547faba2ebd34b93cc88
4
- data.tar.gz: f3e802c4673a04bd57c4fe1b09cd95e3b1e1d1c5b022ad4511df185736dcdd80
3
+ metadata.gz: 99b4e88536d066b19cc412890bb09e7d9f3dccaff8114c9f21044d0ef59ddfa2
4
+ data.tar.gz: 694e556aacc0f80b31ffa4b0d49a536f3414c8a45ce2571b4a8e34125e378b73
5
5
  SHA512:
6
- metadata.gz: 300df80bfeec442a84b61f54549e462a2b27c69f57b23c3de0a9debe4969089a1193ea954f2597cc2ce1612a89f095bf31b14c877859e67f3c4462807e0b59f1
7
- data.tar.gz: bf63c0fa05ed93b1c2af2189c10dcdfb991b01c03c7f17d85e46c9deaa7122e3ee30ae478573e93e58424f576c2ca77d00d3a92e20087feab89a3f87778fa2f2
6
+ metadata.gz: d3e1813a5fa961797b77eb58353a372f2acb486b0dca999705af49e22f8f2f655af2a0e5a8ab78ab7cb1ee24379eb74914a8fd5ba6d92f50bd20808eee9e1aff
7
+ data.tar.gz: 923b62df5ae25a44a890c85495ef90d90d08bb58ad423a612b531770f71cf5e3fb0044ce9f5d4b50ce925acaf68245d9aa1ffd8904fb257db1b91b4467fd9545
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.56.0 (2023-11-17)
5
+ ------------------
6
+
7
+ * Feature - Docs only build to bring up-to-date with public docs.
8
+
9
+ 1.55.0 (2023-09-27)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.54.0 (2023-09-20)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
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 retention period, in hours. The value you specify replaces the
1667
- # current value. The maximum value for this parameter is 87600 (ten
1668
- # years).
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 specified :
1734
+ # are two signaling modes that you can specify :
1746
1735
  #
1747
- # * If the `StorageStatus` is disabled, no data will be stored, and the
1748
- # `StreamARN` parameter will not be needed.
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 the `StorageStatus` is enabled, the data will be stored in the
1751
- # `StreamARN` provided.
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.54.0'
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?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
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 retention period, in hours. The value you specify replaces the
1936
- # current value. The maximum value for this parameter is 87600 (ten
1937
- # years).
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-kinesisvideo/customizations'
52
52
  # @!group service
53
53
  module Aws::KinesisVideo
54
54
 
55
- GEM_VERSION = '1.54.0'
55
+ GEM_VERSION = '1.56.0'
56
56
 
57
57
  end
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.54.0
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-09-20 00:00:00.000000000 Z
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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.177.0
22
+ version: 3.184.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.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement