aws-sdk-medialive 1.87.0 → 1.88.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: 11c5bda22f584cb04698512ba7e5df2f44103c28ee648cf092810f301cb9a593
4
- data.tar.gz: 670df923410a057152558e940e16913a5f0c4ac9925cf7c64c63b8047d983cbe
3
+ metadata.gz: 5ccde9f7a08ccac2ac74292723ad89f2f6d45b47a22d0ad1aa802b9fc074be1b
4
+ data.tar.gz: e570730d776d11a854494197e7f0feb824120edb31b13be6bb07b7a3c7a16cd7
5
5
  SHA512:
6
- metadata.gz: 4cbc5b904955f9cad42905d6b755fc15615f52f94ffdad129ba5ad2e38c704e4e1106e26564d005ec7f2cbc3ceae96ddd9663828c3d3e6050a5a465ee92547a2
7
- data.tar.gz: 934af92916d7e245e50883e4193c06052ea99ad3be9a7573195d1f52049619763f711430a5c68c7f478140892a683f7b73be10b2653d610b9e4d5d2332e84870
6
+ metadata.gz: 07d65b2352a2d6df8c84bff2774adb840f6e2271d8ccecc775f6ea0f8c3a5f1f88e8084ed454ba7db4169050318f93a76d15185f59528a3dafa0346744470b79
7
+ data.tar.gz: 610575d9cef119fde18dc48ad8fe781d02965bd52743efd8cc527fd848eb2e43b59c2194dde15e2a59c2bd7981c96070a5aea6a4e728f1de5defaa1e33fd12c6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.88.0 (2022-07-22)
5
+ ------------------
6
+
7
+ * Feature - Link devices now support remote rebooting. Link devices now support maintenance windows. Maintenance windows allow a Link device to install software updates without stopping the MediaLive channel. The channel will experience a brief loss of input from the device while updates are installed.
8
+
4
9
  1.87.0 (2022-06-29)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.87.0
1
+ 1.88.0
@@ -5744,6 +5744,34 @@ module Aws::MediaLive
5744
5744
  req.send_request(options)
5745
5745
  end
5746
5746
 
5747
+ # Send a reboot command to the specified input device. The device will
5748
+ # begin rebooting within a few seconds of sending the command. When the
5749
+ # reboot is complete, the device’s connection status will change to
5750
+ # connected.
5751
+ #
5752
+ # @option params [String] :force
5753
+ # Whether or not to force reboot the input device.
5754
+ #
5755
+ # @option params [required, String] :input_device_id
5756
+ #
5757
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5758
+ #
5759
+ # @example Request syntax with placeholder values
5760
+ #
5761
+ # resp = client.reboot_input_device({
5762
+ # force: "NO", # accepts NO, YES
5763
+ # input_device_id: "__string", # required
5764
+ # })
5765
+ #
5766
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RebootInputDevice AWS API Documentation
5767
+ #
5768
+ # @overload reboot_input_device(params = {})
5769
+ # @param [Hash] params ({})
5770
+ def reboot_input_device(params = {}, options = {})
5771
+ req = build_request(:reboot_input_device, params)
5772
+ req.send_request(options)
5773
+ end
5774
+
5747
5775
  # Reject the transfer of the specified input device to your AWS account.
5748
5776
  #
5749
5777
  # @option params [required, String] :input_device_id
@@ -6428,6 +6456,35 @@ module Aws::MediaLive
6428
6456
  req.send_request(options)
6429
6457
  end
6430
6458
 
6459
+ # Start a maintenance window for the specified input device. Starting a
6460
+ # maintenance window will give the device up to two hours to install
6461
+ # software. If the device was streaming prior to the maintenance, it
6462
+ # will resume streaming when the software is fully installed. Devices
6463
+ # automatically install updates while they are powered on and their
6464
+ # MediaLive channels are stopped. A maintenance window allows you to
6465
+ # update a device without having to stop MediaLive channels that use the
6466
+ # device. The device must remain powered on and connected to the
6467
+ # internet for the duration of the maintenance.
6468
+ #
6469
+ # @option params [required, String] :input_device_id
6470
+ #
6471
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6472
+ #
6473
+ # @example Request syntax with placeholder values
6474
+ #
6475
+ # resp = client.start_input_device_maintenance_window({
6476
+ # input_device_id: "__string", # required
6477
+ # })
6478
+ #
6479
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartInputDeviceMaintenanceWindow AWS API Documentation
6480
+ #
6481
+ # @overload start_input_device_maintenance_window(params = {})
6482
+ # @param [Hash] params ({})
6483
+ def start_input_device_maintenance_window(params = {}, options = {})
6484
+ req = build_request(:start_input_device_maintenance_window, params)
6485
+ req.send_request(options)
6486
+ end
6487
+
6431
6488
  # Start (run) the multiplex. Starting the multiplex does not start the
6432
6489
  # channels. You must explicitly start each channel.
6433
6490
  #
@@ -9959,7 +10016,7 @@ module Aws::MediaLive
9959
10016
  params: params,
9960
10017
  config: config)
9961
10018
  context[:gem_name] = 'aws-sdk-medialive'
9962
- context[:gem_version] = '1.87.0'
10019
+ context[:gem_version] = '1.88.0'
9963
10020
  Seahorse::Client::Request.new(handlers, context)
9964
10021
  end
9965
10022
 
@@ -534,6 +534,10 @@ module Aws::MediaLive
534
534
  PurchaseOfferingResponse = Shapes::StructureShape.new(name: 'PurchaseOfferingResponse')
535
535
  PurchaseOfferingResultModel = Shapes::StructureShape.new(name: 'PurchaseOfferingResultModel')
536
536
  RawSettings = Shapes::StructureShape.new(name: 'RawSettings')
537
+ RebootInputDevice = Shapes::StructureShape.new(name: 'RebootInputDevice')
538
+ RebootInputDeviceForce = Shapes::StringShape.new(name: 'RebootInputDeviceForce')
539
+ RebootInputDeviceRequest = Shapes::StructureShape.new(name: 'RebootInputDeviceRequest')
540
+ RebootInputDeviceResponse = Shapes::StructureShape.new(name: 'RebootInputDeviceResponse')
537
541
  Rec601Settings = Shapes::StructureShape.new(name: 'Rec601Settings')
538
542
  Rec709Settings = Shapes::StructureShape.new(name: 'Rec709Settings')
539
543
  RejectInputDeviceTransferRequest = Shapes::StructureShape.new(name: 'RejectInputDeviceTransferRequest')
@@ -603,6 +607,8 @@ module Aws::MediaLive
603
607
  StandardHlsSettings = Shapes::StructureShape.new(name: 'StandardHlsSettings')
604
608
  StartChannelRequest = Shapes::StructureShape.new(name: 'StartChannelRequest')
605
609
  StartChannelResponse = Shapes::StructureShape.new(name: 'StartChannelResponse')
610
+ StartInputDeviceMaintenanceWindowRequest = Shapes::StructureShape.new(name: 'StartInputDeviceMaintenanceWindowRequest')
611
+ StartInputDeviceMaintenanceWindowResponse = Shapes::StructureShape.new(name: 'StartInputDeviceMaintenanceWindowResponse')
606
612
  StartMultiplexRequest = Shapes::StructureShape.new(name: 'StartMultiplexRequest')
607
613
  StartMultiplexResponse = Shapes::StructureShape.new(name: 'StartMultiplexResponse')
608
614
  StartTimecode = Shapes::StructureShape.new(name: 'StartTimecode')
@@ -2667,6 +2673,15 @@ module Aws::MediaLive
2667
2673
 
2668
2674
  RawSettings.struct_class = Types::RawSettings
2669
2675
 
2676
+ RebootInputDevice.add_member(:force, Shapes::ShapeRef.new(shape: RebootInputDeviceForce, location_name: "force"))
2677
+ RebootInputDevice.struct_class = Types::RebootInputDevice
2678
+
2679
+ RebootInputDeviceRequest.add_member(:force, Shapes::ShapeRef.new(shape: RebootInputDeviceForce, location_name: "force"))
2680
+ RebootInputDeviceRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
2681
+ RebootInputDeviceRequest.struct_class = Types::RebootInputDeviceRequest
2682
+
2683
+ RebootInputDeviceResponse.struct_class = Types::RebootInputDeviceResponse
2684
+
2670
2685
  Rec601Settings.struct_class = Types::Rec601Settings
2671
2686
 
2672
2687
  Rec709Settings.struct_class = Types::Rec709Settings
@@ -2855,6 +2870,11 @@ module Aws::MediaLive
2855
2870
  StartChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
2856
2871
  StartChannelResponse.struct_class = Types::StartChannelResponse
2857
2872
 
2873
+ StartInputDeviceMaintenanceWindowRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
2874
+ StartInputDeviceMaintenanceWindowRequest.struct_class = Types::StartInputDeviceMaintenanceWindowRequest
2875
+
2876
+ StartInputDeviceMaintenanceWindowResponse.struct_class = Types::StartInputDeviceMaintenanceWindowResponse
2877
+
2858
2878
  StartMultiplexRequest.add_member(:multiplex_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "multiplexId"))
2859
2879
  StartMultiplexRequest.struct_class = Types::StartMultiplexRequest
2860
2880
 
@@ -4029,6 +4049,22 @@ module Aws::MediaLive
4029
4049
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
4030
4050
  end)
4031
4051
 
4052
+ api.add_operation(:reboot_input_device, Seahorse::Model::Operation.new.tap do |o|
4053
+ o.name = "RebootInputDevice"
4054
+ o.http_method = "POST"
4055
+ o.http_request_uri = "/prod/inputDevices/{inputDeviceId}/reboot"
4056
+ o.input = Shapes::ShapeRef.new(shape: RebootInputDeviceRequest)
4057
+ o.output = Shapes::ShapeRef.new(shape: RebootInputDeviceResponse)
4058
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
4059
+ o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
4060
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
4061
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
4062
+ o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
4063
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
4064
+ o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
4065
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
4066
+ end)
4067
+
4032
4068
  api.add_operation(:reject_input_device_transfer, Seahorse::Model::Operation.new.tap do |o|
4033
4069
  o.name = "RejectInputDeviceTransfer"
4034
4070
  o.http_method = "POST"
@@ -4062,6 +4098,22 @@ module Aws::MediaLive
4062
4098
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
4063
4099
  end)
4064
4100
 
4101
+ api.add_operation(:start_input_device_maintenance_window, Seahorse::Model::Operation.new.tap do |o|
4102
+ o.name = "StartInputDeviceMaintenanceWindow"
4103
+ o.http_method = "POST"
4104
+ o.http_request_uri = "/prod/inputDevices/{inputDeviceId}/startInputDeviceMaintenanceWindow"
4105
+ o.input = Shapes::ShapeRef.new(shape: StartInputDeviceMaintenanceWindowRequest)
4106
+ o.output = Shapes::ShapeRef.new(shape: StartInputDeviceMaintenanceWindowResponse)
4107
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
4108
+ o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
4109
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
4110
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
4111
+ o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
4112
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
4113
+ o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
4114
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
4115
+ end)
4116
+
4065
4117
  api.add_operation(:start_multiplex, Seahorse::Model::Operation.new.tap do |o|
4066
4118
  o.name = "StartMultiplex"
4067
4119
  o.http_method = "POST"
@@ -15420,6 +15420,49 @@ module Aws::MediaLive
15420
15420
  #
15421
15421
  class RawSettings < Aws::EmptyStructure; end
15422
15422
 
15423
+ # @!attribute [rw] force
15424
+ # Force a reboot of an input device. If the device is streaming, it
15425
+ # will stop streaming and begin rebooting within a few seconds of
15426
+ # sending the command. If the device was streaming prior to the
15427
+ # reboot, the device will resume streaming when the reboot completes.
15428
+ # @return [String]
15429
+ #
15430
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RebootInputDevice AWS API Documentation
15431
+ #
15432
+ class RebootInputDevice < Struct.new(
15433
+ :force)
15434
+ SENSITIVE = []
15435
+ include Aws::Structure
15436
+ end
15437
+
15438
+ # @note When making an API call, you may pass RebootInputDeviceRequest
15439
+ # data as a hash:
15440
+ #
15441
+ # {
15442
+ # force: "NO", # accepts NO, YES
15443
+ # input_device_id: "__string", # required
15444
+ # }
15445
+ #
15446
+ # @!attribute [rw] force
15447
+ # Whether or not to force reboot the input device.
15448
+ # @return [String]
15449
+ #
15450
+ # @!attribute [rw] input_device_id
15451
+ # @return [String]
15452
+ #
15453
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RebootInputDeviceRequest AWS API Documentation
15454
+ #
15455
+ class RebootInputDeviceRequest < Struct.new(
15456
+ :force,
15457
+ :input_device_id)
15458
+ SENSITIVE = []
15459
+ include Aws::Structure
15460
+ end
15461
+
15462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RebootInputDeviceResponse AWS API Documentation
15463
+ #
15464
+ class RebootInputDeviceResponse < Aws::EmptyStructure; end
15465
+
15423
15466
  # Rec601 Settings
15424
15467
  #
15425
15468
  # @api private
@@ -16878,6 +16921,28 @@ module Aws::MediaLive
16878
16921
  include Aws::Structure
16879
16922
  end
16880
16923
 
16924
+ # @note When making an API call, you may pass StartInputDeviceMaintenanceWindowRequest
16925
+ # data as a hash:
16926
+ #
16927
+ # {
16928
+ # input_device_id: "__string", # required
16929
+ # }
16930
+ #
16931
+ # @!attribute [rw] input_device_id
16932
+ # @return [String]
16933
+ #
16934
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartInputDeviceMaintenanceWindowRequest AWS API Documentation
16935
+ #
16936
+ class StartInputDeviceMaintenanceWindowRequest < Struct.new(
16937
+ :input_device_id)
16938
+ SENSITIVE = []
16939
+ include Aws::Structure
16940
+ end
16941
+
16942
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartInputDeviceMaintenanceWindowResponse AWS API Documentation
16943
+ #
16944
+ class StartInputDeviceMaintenanceWindowResponse < Aws::EmptyStructure; end
16945
+
16881
16946
  # @note When making an API call, you may pass StartMultiplexRequest
16882
16947
  # data as a hash:
16883
16948
  #
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-medialive/customizations'
49
49
  # @!group service
50
50
  module Aws::MediaLive
51
51
 
52
- GEM_VERSION = '1.87.0'
52
+ GEM_VERSION = '1.88.0'
53
53
 
54
54
  end
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.87.0
4
+ version: 1.88.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: 2022-06-29 00:00:00.000000000 Z
11
+ date: 2022-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core