aws-sdk-medialive 1.104.0 → 1.105.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-medialive/client.rb +9 -1
- data/lib/aws-sdk-medialive/client_api.rb +6 -0
- data/lib/aws-sdk-medialive/types.rb +33 -6
- data/lib/aws-sdk-medialive.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: 4bf732ce4d43a84dc7b5730040ae01a5c13b7277fc4b9325d188934cea946bf4
|
|
4
|
+
data.tar.gz: 58b5b22672150ad8c3dcc84556c4a21cc305d7768877366e83a39a6d756387e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b120abab0a1ee9a5482abef382d9c50ba7dd57d1cdb6756e1f09bfe52bd0ac5dbaaf7afde44a4286a6bda4223beb516ecdc311e493c5b6490a5edae7f7592ad5
|
|
7
|
+
data.tar.gz: 60170787d08458ec5d823dd6fdd96aed8cacecf020cb93b9d5f048390023d5e4ea2177ae307fb40edada2f86891932b4019f201c4868222540858620c62f6f56
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.105.0 (2023-08-01)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Elemental Link devices now report their Availability Zone. Link devices now support the ability to change their Availability Zone.
|
|
8
|
+
|
|
4
9
|
1.104.0 (2023-07-11)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.105.0
|
|
@@ -3734,6 +3734,7 @@ module Aws::MediaLive
|
|
|
3734
3734
|
# * {Types::DescribeInputDeviceResponse#type #type} => String
|
|
3735
3735
|
# * {Types::DescribeInputDeviceResponse#uhd_device_settings #uhd_device_settings} => Types::InputDeviceUhdSettings
|
|
3736
3736
|
# * {Types::DescribeInputDeviceResponse#tags #tags} => Hash<String,String>
|
|
3737
|
+
# * {Types::DescribeInputDeviceResponse#availability_zone #availability_zone} => String
|
|
3737
3738
|
#
|
|
3738
3739
|
# @example Request syntax with placeholder values
|
|
3739
3740
|
#
|
|
@@ -3778,6 +3779,7 @@ module Aws::MediaLive
|
|
|
3778
3779
|
# resp.uhd_device_settings.latency_ms #=> Integer
|
|
3779
3780
|
# resp.tags #=> Hash
|
|
3780
3781
|
# resp.tags["__string"] #=> String
|
|
3782
|
+
# resp.availability_zone #=> String
|
|
3781
3783
|
#
|
|
3782
3784
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputDevice AWS API Documentation
|
|
3783
3785
|
#
|
|
@@ -4504,6 +4506,7 @@ module Aws::MediaLive
|
|
|
4504
4506
|
# resp.input_devices[0].uhd_device_settings.latency_ms #=> Integer
|
|
4505
4507
|
# resp.input_devices[0].tags #=> Hash
|
|
4506
4508
|
# resp.input_devices[0].tags["__string"] #=> String
|
|
4509
|
+
# resp.input_devices[0].availability_zone #=> String
|
|
4507
4510
|
# resp.next_token #=> String
|
|
4508
4511
|
#
|
|
4509
4512
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDevices AWS API Documentation
|
|
@@ -8112,6 +8115,8 @@ module Aws::MediaLive
|
|
|
8112
8115
|
# @option params [Types::InputDeviceConfigurableSettings] :uhd_device_settings
|
|
8113
8116
|
# Configurable settings for the input device.
|
|
8114
8117
|
#
|
|
8118
|
+
# @option params [String] :availability_zone
|
|
8119
|
+
#
|
|
8115
8120
|
# @return [Types::UpdateInputDeviceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8116
8121
|
#
|
|
8117
8122
|
# * {Types::UpdateInputDeviceResponse#arn #arn} => String
|
|
@@ -8127,6 +8132,7 @@ module Aws::MediaLive
|
|
|
8127
8132
|
# * {Types::UpdateInputDeviceResponse#type #type} => String
|
|
8128
8133
|
# * {Types::UpdateInputDeviceResponse#uhd_device_settings #uhd_device_settings} => Types::InputDeviceUhdSettings
|
|
8129
8134
|
# * {Types::UpdateInputDeviceResponse#tags #tags} => Hash<String,String>
|
|
8135
|
+
# * {Types::UpdateInputDeviceResponse#availability_zone #availability_zone} => String
|
|
8130
8136
|
#
|
|
8131
8137
|
# @example Request syntax with placeholder values
|
|
8132
8138
|
#
|
|
@@ -8143,6 +8149,7 @@ module Aws::MediaLive
|
|
|
8143
8149
|
# max_bitrate: 1,
|
|
8144
8150
|
# latency_ms: 1,
|
|
8145
8151
|
# },
|
|
8152
|
+
# availability_zone: "__string",
|
|
8146
8153
|
# })
|
|
8147
8154
|
#
|
|
8148
8155
|
# @example Response structure
|
|
@@ -8182,6 +8189,7 @@ module Aws::MediaLive
|
|
|
8182
8189
|
# resp.uhd_device_settings.latency_ms #=> Integer
|
|
8183
8190
|
# resp.tags #=> Hash
|
|
8184
8191
|
# resp.tags["__string"] #=> String
|
|
8192
|
+
# resp.availability_zone #=> String
|
|
8185
8193
|
#
|
|
8186
8194
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputDevice AWS API Documentation
|
|
8187
8195
|
#
|
|
@@ -8448,7 +8456,7 @@ module Aws::MediaLive
|
|
|
8448
8456
|
params: params,
|
|
8449
8457
|
config: config)
|
|
8450
8458
|
context[:gem_name] = 'aws-sdk-medialive'
|
|
8451
|
-
context[:gem_version] = '1.
|
|
8459
|
+
context[:gem_version] = '1.105.0'
|
|
8452
8460
|
Seahorse::Client::Request.new(handlers, context)
|
|
8453
8461
|
end
|
|
8454
8462
|
|
|
@@ -1516,6 +1516,7 @@ module Aws::MediaLive
|
|
|
1516
1516
|
DescribeInputDeviceResponse.add_member(:type, Shapes::ShapeRef.new(shape: InputDeviceType, location_name: "type"))
|
|
1517
1517
|
DescribeInputDeviceResponse.add_member(:uhd_device_settings, Shapes::ShapeRef.new(shape: InputDeviceUhdSettings, location_name: "uhdDeviceSettings"))
|
|
1518
1518
|
DescribeInputDeviceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
1519
|
+
DescribeInputDeviceResponse.add_member(:availability_zone, Shapes::ShapeRef.new(shape: __string, location_name: "availabilityZone"))
|
|
1519
1520
|
DescribeInputDeviceResponse.struct_class = Types::DescribeInputDeviceResponse
|
|
1520
1521
|
|
|
1521
1522
|
DescribeInputDeviceThumbnailRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
|
|
@@ -2093,6 +2094,7 @@ module Aws::MediaLive
|
|
|
2093
2094
|
InputDevice.add_member(:type, Shapes::ShapeRef.new(shape: InputDeviceType, location_name: "type"))
|
|
2094
2095
|
InputDevice.add_member(:uhd_device_settings, Shapes::ShapeRef.new(shape: InputDeviceUhdSettings, location_name: "uhdDeviceSettings"))
|
|
2095
2096
|
InputDevice.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
2097
|
+
InputDevice.add_member(:availability_zone, Shapes::ShapeRef.new(shape: __string, location_name: "availabilityZone"))
|
|
2096
2098
|
InputDevice.struct_class = Types::InputDevice
|
|
2097
2099
|
|
|
2098
2100
|
InputDeviceConfigurableSettings.add_member(:configured_input, Shapes::ShapeRef.new(shape: InputDeviceConfiguredInput, location_name: "configuredInput"))
|
|
@@ -2141,6 +2143,7 @@ module Aws::MediaLive
|
|
|
2141
2143
|
InputDeviceSummary.add_member(:type, Shapes::ShapeRef.new(shape: InputDeviceType, location_name: "type"))
|
|
2142
2144
|
InputDeviceSummary.add_member(:uhd_device_settings, Shapes::ShapeRef.new(shape: InputDeviceUhdSettings, location_name: "uhdDeviceSettings"))
|
|
2143
2145
|
InputDeviceSummary.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
2146
|
+
InputDeviceSummary.add_member(:availability_zone, Shapes::ShapeRef.new(shape: __string, location_name: "availabilityZone"))
|
|
2144
2147
|
InputDeviceSummary.struct_class = Types::InputDeviceSummary
|
|
2145
2148
|
|
|
2146
2149
|
InputDeviceUhdSettings.add_member(:active_input, Shapes::ShapeRef.new(shape: InputDeviceActiveInput, location_name: "activeInput"))
|
|
@@ -3207,12 +3210,14 @@ module Aws::MediaLive
|
|
|
3207
3210
|
UpdateInputDevice.add_member(:hd_device_settings, Shapes::ShapeRef.new(shape: InputDeviceConfigurableSettings, location_name: "hdDeviceSettings"))
|
|
3208
3211
|
UpdateInputDevice.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
|
3209
3212
|
UpdateInputDevice.add_member(:uhd_device_settings, Shapes::ShapeRef.new(shape: InputDeviceConfigurableSettings, location_name: "uhdDeviceSettings"))
|
|
3213
|
+
UpdateInputDevice.add_member(:availability_zone, Shapes::ShapeRef.new(shape: __string, location_name: "availabilityZone"))
|
|
3210
3214
|
UpdateInputDevice.struct_class = Types::UpdateInputDevice
|
|
3211
3215
|
|
|
3212
3216
|
UpdateInputDeviceRequest.add_member(:hd_device_settings, Shapes::ShapeRef.new(shape: InputDeviceConfigurableSettings, location_name: "hdDeviceSettings"))
|
|
3213
3217
|
UpdateInputDeviceRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
|
|
3214
3218
|
UpdateInputDeviceRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
|
3215
3219
|
UpdateInputDeviceRequest.add_member(:uhd_device_settings, Shapes::ShapeRef.new(shape: InputDeviceConfigurableSettings, location_name: "uhdDeviceSettings"))
|
|
3220
|
+
UpdateInputDeviceRequest.add_member(:availability_zone, Shapes::ShapeRef.new(shape: __string, location_name: "availabilityZone"))
|
|
3216
3221
|
UpdateInputDeviceRequest.struct_class = Types::UpdateInputDeviceRequest
|
|
3217
3222
|
|
|
3218
3223
|
UpdateInputDeviceResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
|
@@ -3228,6 +3233,7 @@ module Aws::MediaLive
|
|
|
3228
3233
|
UpdateInputDeviceResponse.add_member(:type, Shapes::ShapeRef.new(shape: InputDeviceType, location_name: "type"))
|
|
3229
3234
|
UpdateInputDeviceResponse.add_member(:uhd_device_settings, Shapes::ShapeRef.new(shape: InputDeviceUhdSettings, location_name: "uhdDeviceSettings"))
|
|
3230
3235
|
UpdateInputDeviceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
3236
|
+
UpdateInputDeviceResponse.add_member(:availability_zone, Shapes::ShapeRef.new(shape: __string, location_name: "availabilityZone"))
|
|
3231
3237
|
UpdateInputDeviceResponse.struct_class = Types::UpdateInputDeviceResponse
|
|
3232
3238
|
|
|
3233
3239
|
UpdateInputRequest.add_member(:destinations, Shapes::ShapeRef.new(shape: __listOfInputDestinationRequest, location_name: "destinations"))
|
|
@@ -3112,6 +3112,9 @@ module Aws::MediaLive
|
|
|
3112
3112
|
# @!attribute [rw] tags
|
|
3113
3113
|
# @return [Hash<String,String>]
|
|
3114
3114
|
#
|
|
3115
|
+
# @!attribute [rw] availability_zone
|
|
3116
|
+
# @return [String]
|
|
3117
|
+
#
|
|
3115
3118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputDeviceResponse AWS API Documentation
|
|
3116
3119
|
#
|
|
3117
3120
|
class DescribeInputDeviceResponse < Struct.new(
|
|
@@ -3127,7 +3130,8 @@ module Aws::MediaLive
|
|
|
3127
3130
|
:serial_number,
|
|
3128
3131
|
:type,
|
|
3129
3132
|
:uhd_device_settings,
|
|
3130
|
-
:tags
|
|
3133
|
+
:tags,
|
|
3134
|
+
:availability_zone)
|
|
3131
3135
|
SENSITIVE = []
|
|
3132
3136
|
include Aws::Structure
|
|
3133
3137
|
end
|
|
@@ -6379,6 +6383,10 @@ module Aws::MediaLive
|
|
|
6379
6383
|
# A collection of key-value pairs.
|
|
6380
6384
|
# @return [Hash<String,String>]
|
|
6381
6385
|
#
|
|
6386
|
+
# @!attribute [rw] availability_zone
|
|
6387
|
+
# The Availability Zone associated with this input device.
|
|
6388
|
+
# @return [String]
|
|
6389
|
+
#
|
|
6382
6390
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDevice AWS API Documentation
|
|
6383
6391
|
#
|
|
6384
6392
|
class InputDevice < Struct.new(
|
|
@@ -6394,7 +6402,8 @@ module Aws::MediaLive
|
|
|
6394
6402
|
:serial_number,
|
|
6395
6403
|
:type,
|
|
6396
6404
|
:uhd_device_settings,
|
|
6397
|
-
:tags
|
|
6405
|
+
:tags,
|
|
6406
|
+
:availability_zone)
|
|
6398
6407
|
SENSITIVE = []
|
|
6399
6408
|
include Aws::Structure
|
|
6400
6409
|
end
|
|
@@ -6627,6 +6636,10 @@ module Aws::MediaLive
|
|
|
6627
6636
|
# A collection of key-value pairs.
|
|
6628
6637
|
# @return [Hash<String,String>]
|
|
6629
6638
|
#
|
|
6639
|
+
# @!attribute [rw] availability_zone
|
|
6640
|
+
# The Availability Zone associated with this input device.
|
|
6641
|
+
# @return [String]
|
|
6642
|
+
#
|
|
6630
6643
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceSummary AWS API Documentation
|
|
6631
6644
|
#
|
|
6632
6645
|
class InputDeviceSummary < Struct.new(
|
|
@@ -6642,7 +6655,8 @@ module Aws::MediaLive
|
|
|
6642
6655
|
:serial_number,
|
|
6643
6656
|
:type,
|
|
6644
6657
|
:uhd_device_settings,
|
|
6645
|
-
:tags
|
|
6658
|
+
:tags,
|
|
6659
|
+
:availability_zone)
|
|
6646
6660
|
SENSITIVE = []
|
|
6647
6661
|
include Aws::Structure
|
|
6648
6662
|
end
|
|
@@ -11957,12 +11971,17 @@ module Aws::MediaLive
|
|
|
11957
11971
|
# The settings that you want to apply to the UHD input device.
|
|
11958
11972
|
# @return [Types::InputDeviceConfigurableSettings]
|
|
11959
11973
|
#
|
|
11974
|
+
# @!attribute [rw] availability_zone
|
|
11975
|
+
# The Availability Zone you want associated with this input device.
|
|
11976
|
+
# @return [String]
|
|
11977
|
+
#
|
|
11960
11978
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputDevice AWS API Documentation
|
|
11961
11979
|
#
|
|
11962
11980
|
class UpdateInputDevice < Struct.new(
|
|
11963
11981
|
:hd_device_settings,
|
|
11964
11982
|
:name,
|
|
11965
|
-
:uhd_device_settings
|
|
11983
|
+
:uhd_device_settings,
|
|
11984
|
+
:availability_zone)
|
|
11966
11985
|
SENSITIVE = []
|
|
11967
11986
|
include Aws::Structure
|
|
11968
11987
|
end
|
|
@@ -11981,13 +12000,17 @@ module Aws::MediaLive
|
|
|
11981
12000
|
# Configurable settings for the input device.
|
|
11982
12001
|
# @return [Types::InputDeviceConfigurableSettings]
|
|
11983
12002
|
#
|
|
12003
|
+
# @!attribute [rw] availability_zone
|
|
12004
|
+
# @return [String]
|
|
12005
|
+
#
|
|
11984
12006
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputDeviceRequest AWS API Documentation
|
|
11985
12007
|
#
|
|
11986
12008
|
class UpdateInputDeviceRequest < Struct.new(
|
|
11987
12009
|
:hd_device_settings,
|
|
11988
12010
|
:input_device_id,
|
|
11989
12011
|
:name,
|
|
11990
|
-
:uhd_device_settings
|
|
12012
|
+
:uhd_device_settings,
|
|
12013
|
+
:availability_zone)
|
|
11991
12014
|
SENSITIVE = []
|
|
11992
12015
|
include Aws::Structure
|
|
11993
12016
|
end
|
|
@@ -12046,6 +12069,9 @@ module Aws::MediaLive
|
|
|
12046
12069
|
# @!attribute [rw] tags
|
|
12047
12070
|
# @return [Hash<String,String>]
|
|
12048
12071
|
#
|
|
12072
|
+
# @!attribute [rw] availability_zone
|
|
12073
|
+
# @return [String]
|
|
12074
|
+
#
|
|
12049
12075
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputDeviceResponse AWS API Documentation
|
|
12050
12076
|
#
|
|
12051
12077
|
class UpdateInputDeviceResponse < Struct.new(
|
|
@@ -12061,7 +12087,8 @@ module Aws::MediaLive
|
|
|
12061
12087
|
:serial_number,
|
|
12062
12088
|
:type,
|
|
12063
12089
|
:uhd_device_settings,
|
|
12064
|
-
:tags
|
|
12090
|
+
:tags,
|
|
12091
|
+
:availability_zone)
|
|
12065
12092
|
SENSITIVE = []
|
|
12066
12093
|
include Aws::Structure
|
|
12067
12094
|
end
|
data/lib/aws-sdk-medialive.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-medialive
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.105.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-08-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|