aws-sdk-kinesisvideoarchivedmedia 1.55.0 → 1.56.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-kinesisvideoarchivedmedia/client.rb +10 -10
- data/lib/aws-sdk-kinesisvideoarchivedmedia/client_api.rb +1 -0
- data/lib/aws-sdk-kinesisvideoarchivedmedia/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-kinesisvideoarchivedmedia/types.rb +10 -10
- data/lib/aws-sdk-kinesisvideoarchivedmedia.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: 93f8229260674c3e667ef9f03e396e357f3fa42d40eedaf1d785ae77aa5c87f4
|
4
|
+
data.tar.gz: 7a7c8a16752ab764707d3348844ff9c6f785e10dade46633db29e660baeddc39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98081f09d0488cbd498036446217e4b272a05f78c1784250100c47f3f1243caa584cde15f37748af99d8bfd47910d3c9d250b44f62a99eb07473c3d70ca864fc
|
7
|
+
data.tar.gz: d1e2f45905c3ecb88f33b328b981c989cec5dc6b0b2294938605758756c3359cbf2cb92671f1736313eefe9c2a0e3f4e600463e83f05ba1e3bca1a90c387248d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.56.0 (2023-12-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - NoDataRetentionException thrown when GetImages requested for a Stream that does not retain data (that is, has a DataRetentionInHours of 0).
|
8
|
+
|
4
9
|
1.55.0 (2023-11-28)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.56.0
|
@@ -1199,7 +1199,7 @@ module Aws::KinesisVideoArchivedMedia
|
|
1199
1199
|
req.send_request(options)
|
1200
1200
|
end
|
1201
1201
|
|
1202
|
-
# Retrieves a list of
|
1202
|
+
# Retrieves a list of images corresponding to each timestamp for a given
|
1203
1203
|
# time range, sampling interval, and image format configuration.
|
1204
1204
|
#
|
1205
1205
|
# @option params [String] :stream_name
|
@@ -1228,14 +1228,10 @@ module Aws::KinesisVideoArchivedMedia
|
|
1228
1228
|
#
|
1229
1229
|
# @option params [Integer] :sampling_interval
|
1230
1230
|
# The time interval in milliseconds (ms) at which the images need to be
|
1231
|
-
# generated from the stream
|
1232
|
-
#
|
1233
|
-
#
|
1234
|
-
#
|
1235
|
-
#
|
1236
|
-
# <note markdown="1"> The minimum value of 200 ms is a hard limit.
|
1237
|
-
#
|
1238
|
-
# </note>
|
1231
|
+
# generated from the stream. The minimum value that can be provided is
|
1232
|
+
# 200 ms (5 images per second). If the timestamp range is less than the
|
1233
|
+
# sampling interval, the image from the `startTimestamp` will be
|
1234
|
+
# returned if available.
|
1239
1235
|
#
|
1240
1236
|
# @option params [required, String] :format
|
1241
1237
|
# The format that will be used to encode the image.
|
@@ -1468,6 +1464,10 @@ module Aws::KinesisVideoArchivedMedia
|
|
1468
1464
|
# Describes the timestamp range and timestamp origin for the range of
|
1469
1465
|
# fragments to return.
|
1470
1466
|
#
|
1467
|
+
# <note markdown="1"> This is only required when the `NextToken` isn't passed in the API.
|
1468
|
+
#
|
1469
|
+
# </note>
|
1470
|
+
#
|
1471
1471
|
# @return [Types::ListFragmentsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1472
1472
|
#
|
1473
1473
|
# * {Types::ListFragmentsOutput#fragments #fragments} => Array<Types::Fragment>
|
@@ -1523,7 +1523,7 @@ module Aws::KinesisVideoArchivedMedia
|
|
1523
1523
|
params: params,
|
1524
1524
|
config: config)
|
1525
1525
|
context[:gem_name] = 'aws-sdk-kinesisvideoarchivedmedia'
|
1526
|
-
context[:gem_version] = '1.
|
1526
|
+
context[:gem_version] = '1.56.0'
|
1527
1527
|
Seahorse::Client::Request.new(handlers, context)
|
1528
1528
|
end
|
1529
1529
|
|
@@ -319,6 +319,7 @@ module Aws::KinesisVideoArchivedMedia
|
|
319
319
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
320
320
|
o.errors << Shapes::ShapeRef.new(shape: ClientLimitExceededException)
|
321
321
|
o.errors << Shapes::ShapeRef.new(shape: NotAuthorizedException)
|
322
|
+
o.errors << Shapes::ShapeRef.new(shape: NoDataRetentionException)
|
322
323
|
o[:pager] = Aws::Pager.new(
|
323
324
|
limit_key: "max_results",
|
324
325
|
tokens: {
|
@@ -32,7 +32,7 @@ module Aws::KinesisVideoArchivedMedia
|
|
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"
|
@@ -753,14 +753,10 @@ module Aws::KinesisVideoArchivedMedia
|
|
753
753
|
#
|
754
754
|
# @!attribute [rw] sampling_interval
|
755
755
|
# The time interval in milliseconds (ms) at which the images need to
|
756
|
-
# be generated from the stream
|
757
|
-
#
|
758
|
-
#
|
759
|
-
#
|
760
|
-
#
|
761
|
-
# <note markdown="1"> The minimum value of 200 ms is a hard limit.
|
762
|
-
#
|
763
|
-
# </note>
|
756
|
+
# be generated from the stream. The minimum value that can be provided
|
757
|
+
# is 200 ms (5 images per second). If the timestamp range is less than
|
758
|
+
# the sampling interval, the image from the `startTimestamp` will be
|
759
|
+
# returned if available.
|
764
760
|
# @return [Integer]
|
765
761
|
#
|
766
762
|
# @!attribute [rw] format
|
@@ -1131,6 +1127,10 @@ module Aws::KinesisVideoArchivedMedia
|
|
1131
1127
|
# @!attribute [rw] fragment_selector
|
1132
1128
|
# Describes the timestamp range and timestamp origin for the range of
|
1133
1129
|
# fragments to return.
|
1130
|
+
#
|
1131
|
+
# <note markdown="1"> This is only required when the `NextToken` isn't passed in the API.
|
1132
|
+
#
|
1133
|
+
# </note>
|
1134
1134
|
# @return [Types::FragmentSelector]
|
1135
1135
|
#
|
1136
1136
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-video-archived-media-2017-09-30/ListFragmentsInput AWS API Documentation
|
@@ -1180,8 +1180,8 @@ module Aws::KinesisVideoArchivedMedia
|
|
1180
1180
|
include Aws::Structure
|
1181
1181
|
end
|
1182
1182
|
|
1183
|
-
#
|
1184
|
-
#
|
1183
|
+
# `GetImages` was requested for a stream that does not retain data (that
|
1184
|
+
# is, has a `DataRetentionInHours` of 0).
|
1185
1185
|
#
|
1186
1186
|
# @!attribute [rw] message
|
1187
1187
|
# @return [String]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-kinesisvideoarchivedmedia
|
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-12-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|