aws-sdk-kinesisvideo 1.7.0 → 1.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e3711607ff393532012c4d46d4ee5d9534f37609
4
- data.tar.gz: a9640388232ce5567f2740348bdfa6b2a42355a4
3
+ metadata.gz: f1a41c7e4c6d23b7fb43cdb20cba20b9b1c6485a
4
+ data.tar.gz: 69e1c1d26c7a572ee76a5c6c1704b83e64b1a088
5
5
  SHA512:
6
- metadata.gz: 6e2669fb321013ccfcad14360d6bea29c330d1087993c84acb671a1d94979ae70cc88330760bdf42ca8d0ee0c11b99878e0a754b13ed14d17c0859da3de88b75
7
- data.tar.gz: d11704b341078ba0f4b30ffb769eb5699ea44009c09f5e9ae17fa9b18efcea300793ad033d98ff36198a27a095c92a0e5217f861887a57e2fc1267849955014e
6
+ metadata.gz: 6975053fd0cba2d8603887d718fe60d93041ece79d084204489e826587fa718de723caeab778152ba7b170a2ca8c5e683af07fd0c1c420b340d240861f97d29b
7
+ data.tar.gz: cbd3ae6a73558754103ed0f5357600e669a8104fa5d88ec348d5066b7ade669a8c6aa5e8f722e9ccd9c0a292a36df438ebe6a797bc0945a312ab8710f9d036fc
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-kinesisvideo/customizations'
42
42
  # @service
43
43
  module Aws::KinesisVideo
44
44
 
45
- GEM_VERSION = '1.7.0'
45
+ GEM_VERSION = '1.8.0'
46
46
 
47
47
  end
@@ -219,7 +219,7 @@ module Aws::KinesisVideo
219
219
  #
220
220
  #
221
221
  #
222
- # [1]: http://docs.aws.amazon.com/kinesisvideostreams/latest/dg/how-it-works.html
222
+ # [1]: https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/how-it-works.html
223
223
  #
224
224
  # @option params [String] :device_name
225
225
  # The name of the device that is writing to the stream.
@@ -241,8 +241,8 @@ module Aws::KinesisVideo
241
241
  # media types, see [Media Types][1]. If you choose to specify the
242
242
  # `MediaType`, see [Naming Requirements][2] for guidelines.
243
243
  #
244
- # To play video on the console, the media must be H.264 encoded, and you
245
- # need to specify this video type in this parameter as `video/h264`.
244
+ # Example valid values include "video/h264" and
245
+ # "video/h264,audio/aac".
246
246
  #
247
247
  # This parameter is optional; the default value is `null` (or empty in
248
248
  # JSON).
@@ -263,7 +263,7 @@ module Aws::KinesisVideo
263
263
  #
264
264
  #
265
265
  #
266
- # [1]: http://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters
266
+ # [1]: https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters
267
267
  #
268
268
  # @option params [Integer] :data_retention_in_hours
269
269
  # The number of hours that you want to retain the data in the stream.
@@ -279,6 +279,10 @@ module Aws::KinesisVideo
279
279
  # of 200 MB. Fragments are removed from the buffer when either limit is
280
280
  # reached.
281
281
  #
282
+ # @option params [Hash<String,String>] :tags
283
+ # A list of tags to associate with the specified stream. Each tag is a
284
+ # key-value pair (the value is optional).
285
+ #
282
286
  # @return [Types::CreateStreamOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
283
287
  #
284
288
  # * {Types::CreateStreamOutput#stream_arn #stream_arn} => String
@@ -291,6 +295,9 @@ module Aws::KinesisVideo
291
295
  # media_type: "MediaType",
292
296
  # kms_key_id: "KmsKeyId",
293
297
  # data_retention_in_hours: 1,
298
+ # tags: {
299
+ # "TagKey" => "TagValue",
300
+ # },
294
301
  # })
295
302
  #
296
303
  # @example Response structure
@@ -563,7 +570,7 @@ module Aws::KinesisVideo
563
570
  #
564
571
  #
565
572
  #
566
- # [1]: http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
573
+ # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
567
574
  #
568
575
  # @option params [String] :stream_arn
569
576
  # The Amazon Resource Name (ARN) of the resource that you want to add
@@ -677,7 +684,8 @@ module Aws::KinesisVideo
677
684
  #
678
685
  # @option params [required, Integer] :data_retention_change_in_hours
679
686
  # The retention period, in hours. The value you specify replaces the
680
- # current value.
687
+ # current value. The maximum value for this parameter is 87600 (ten
688
+ # years).
681
689
  #
682
690
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
683
691
  #
@@ -783,7 +791,7 @@ module Aws::KinesisVideo
783
791
  params: params,
784
792
  config: config)
785
793
  context[:gem_name] = 'aws-sdk-kinesisvideo'
786
- context[:gem_version] = '1.7.0'
794
+ context[:gem_version] = '1.8.0'
787
795
  Seahorse::Client::Request.new(handlers, context)
788
796
  end
789
797
 
@@ -72,6 +72,7 @@ module Aws::KinesisVideo
72
72
  CreateStreamInput.add_member(:media_type, Shapes::ShapeRef.new(shape: MediaType, location_name: "MediaType"))
73
73
  CreateStreamInput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
74
74
  CreateStreamInput.add_member(:data_retention_in_hours, Shapes::ShapeRef.new(shape: DataRetentionInHours, location_name: "DataRetentionInHours"))
75
+ CreateStreamInput.add_member(:tags, Shapes::ShapeRef.new(shape: ResourceTags, location_name: "Tags"))
75
76
  CreateStreamInput.struct_class = Types::CreateStreamInput
76
77
 
77
78
  CreateStreamOutput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: ResourceARN, location_name: "StreamARN"))
@@ -199,6 +200,7 @@ module Aws::KinesisVideo
199
200
  o.errors << Shapes::ShapeRef.new(shape: InvalidDeviceException)
200
201
  o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
201
202
  o.errors << Shapes::ShapeRef.new(shape: ClientLimitExceededException)
203
+ o.errors << Shapes::ShapeRef.new(shape: TagsPerResourceExceededLimitException)
202
204
  end)
203
205
 
204
206
  api.add_operation(:delete_stream, Seahorse::Model::Operation.new.tap do |o|
@@ -211,6 +213,7 @@ module Aws::KinesisVideo
211
213
  o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
212
214
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
213
215
  o.errors << Shapes::ShapeRef.new(shape: NotAuthorizedException)
216
+ o.errors << Shapes::ShapeRef.new(shape: VersionMismatchException)
214
217
  end)
215
218
 
216
219
  api.add_operation(:describe_stream, Seahorse::Model::Operation.new.tap do |o|
@@ -17,6 +17,9 @@ module Aws::KinesisVideo
17
17
  # media_type: "MediaType",
18
18
  # kms_key_id: "KmsKeyId",
19
19
  # data_retention_in_hours: 1,
20
+ # tags: {
21
+ # "TagKey" => "TagValue",
22
+ # },
20
23
  # }
21
24
  #
22
25
  # @!attribute [rw] device_name
@@ -41,9 +44,8 @@ module Aws::KinesisVideo
41
44
  # media types, see [Media Types][1]. If you choose to specify the
42
45
  # `MediaType`, see [Naming Requirements][2] for guidelines.
43
46
  #
44
- # To play video on the console, the media must be H.264 encoded, and
45
- # you need to specify this video type in this parameter as
46
- # `video/h264`.
47
+ # Example valid values include "video/h264" and
48
+ # "video/h264,audio/aac".
47
49
  #
48
50
  # This parameter is optional; the default value is `null` (or empty in
49
51
  # JSON).
@@ -65,7 +67,7 @@ module Aws::KinesisVideo
65
67
  #
66
68
  #
67
69
  #
68
- # [1]: http://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters
70
+ # [1]: https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters
69
71
  # @return [String]
70
72
  #
71
73
  # @!attribute [rw] data_retention_in_hours
@@ -83,6 +85,11 @@ module Aws::KinesisVideo
83
85
  # is reached.
84
86
  # @return [Integer]
85
87
  #
88
+ # @!attribute [rw] tags
89
+ # A list of tags to associate with the specified stream. Each tag is a
90
+ # key-value pair (the value is optional).
91
+ # @return [Hash<String,String>]
92
+ #
86
93
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/CreateStreamInput AWS API Documentation
87
94
  #
88
95
  class CreateStreamInput < Struct.new(
@@ -90,7 +97,8 @@ module Aws::KinesisVideo
90
97
  :stream_name,
91
98
  :media_type,
92
99
  :kms_key_id,
93
- :data_retention_in_hours)
100
+ :data_retention_in_hours,
101
+ :tags)
94
102
  include Aws::Structure
95
103
  end
96
104
 
@@ -522,7 +530,8 @@ module Aws::KinesisVideo
522
530
  #
523
531
  # @!attribute [rw] data_retention_change_in_hours
524
532
  # The retention period, in hours. The value you specify replaces the
525
- # current value.
533
+ # current value. The maximum value for this parameter is 87600 (ten
534
+ # years).
526
535
  # @return [Integer]
527
536
  #
528
537
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/UpdateDataRetentionInput AWS API Documentation
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.7.0
4
+ version: 1.8.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: 2018-11-20 00:00:00.000000000 Z
11
+ date: 2019-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core