aws-sdk-medialive 1.102.0 → 1.103.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
  SHA256:
3
- metadata.gz: edffdbd1672a3edc14b56a6b6d12806e81332f07d7432be1272f7b1a8a2a6a10
4
- data.tar.gz: 75c6e45d9d6dce43edb9ef5c80336a58c90bc201cdb19cde43a6ab7529415588
3
+ metadata.gz: 25ab347e117513dcfbf1dceeb6a8386e29a477ad8dc5532df40316125da80c56
4
+ data.tar.gz: 522234d4d651e55afd097f31e0cedc8e3d1b458c2e8fd0ad6cb92c49bde861a1
5
5
  SHA512:
6
- metadata.gz: 256c003001c4ce7f776a308a5d71a2a4829180689a927978dab8eff468152122893d77a2666629241b3091d75fd8292a1da3e1891619f7f36111fe4cfd6e776a
7
- data.tar.gz: f04969194a02d6ce24edfbc82c692062b51d1fdd6b7d72b2e593b1d89a76c6c4dce1756fb8a4fd6a2ffc038aa23b39cd2798ba429467cea385e89061ed11e6d1
6
+ metadata.gz: d7b5f8c20c37b3026282ace349c5f2b2ac97a24bfe19370901785a2b6a99a6ff7bc61d939036b393f3d1831fc03e20bc8407b9ceffe994f247bbcff0a4079b0e
7
+ data.tar.gz: 3b1afbed4e1b1f9c743e4b331ac5e029db0483ad758cfe3a1e1e27fe01988ab9c4ed9f94ea9c3b3022dac6fe060769b55ede6fe6dc6ed888fb28c194d03338c4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.103.0 (2023-07-07)
5
+ ------------------
6
+
7
+ * Feature - This release enables the use of Thumbnails in AWS Elemental MediaLive.
8
+
4
9
  1.102.0 (2023-07-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.102.0
1
+ 1.103.0
@@ -1466,6 +1466,7 @@ module Aws::MediaLive
1466
1466
  # resp.channel.encoder_settings.video_descriptions[0].scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT"
1467
1467
  # resp.channel.encoder_settings.video_descriptions[0].sharpness #=> Integer
1468
1468
  # resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
1469
+ # resp.channel.encoder_settings.thumbnail_configuration.state #=> String, one of "AUTO", "DISABLED"
1469
1470
  # resp.channel.id #=> String
1470
1471
  # resp.channel.input_attachments #=> Array
1471
1472
  # resp.channel.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
@@ -2558,6 +2559,7 @@ module Aws::MediaLive
2558
2559
  # resp.encoder_settings.video_descriptions[0].scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT"
2559
2560
  # resp.encoder_settings.video_descriptions[0].sharpness #=> Integer
2560
2561
  # resp.encoder_settings.video_descriptions[0].width #=> Integer
2562
+ # resp.encoder_settings.thumbnail_configuration.state #=> String, one of "AUTO", "DISABLED"
2561
2563
  # resp.id #=> String
2562
2564
  # resp.input_attachments #=> Array
2563
2565
  # resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
@@ -3523,6 +3525,7 @@ module Aws::MediaLive
3523
3525
  # resp.encoder_settings.video_descriptions[0].scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT"
3524
3526
  # resp.encoder_settings.video_descriptions[0].sharpness #=> Integer
3525
3527
  # resp.encoder_settings.video_descriptions[0].width #=> Integer
3528
+ # resp.encoder_settings.thumbnail_configuration.state #=> String, one of "AUTO", "DISABLED"
3526
3529
  # resp.id #=> String
3527
3530
  # resp.input_attachments #=> Array
3528
3531
  # resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
@@ -4205,6 +4208,64 @@ module Aws::MediaLive
4205
4208
  req.send_request(options)
4206
4209
  end
4207
4210
 
4211
+ # Get account configuration
4212
+ #
4213
+ # @return [Types::DescribeAccountConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4214
+ #
4215
+ # * {Types::DescribeAccountConfigurationResponse#account_configuration #account_configuration} => Types::AccountConfiguration
4216
+ #
4217
+ # @example Response structure
4218
+ #
4219
+ # resp.account_configuration.kms_key_id #=> String
4220
+ #
4221
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeAccountConfiguration AWS API Documentation
4222
+ #
4223
+ # @overload describe_account_configuration(params = {})
4224
+ # @param [Hash] params ({})
4225
+ def describe_account_configuration(params = {}, options = {})
4226
+ req = build_request(:describe_account_configuration, params)
4227
+ req.send_request(options)
4228
+ end
4229
+
4230
+ # Describe the latest thumbnails data.
4231
+ #
4232
+ # @option params [required, String] :channel_id
4233
+ #
4234
+ # @option params [required, String] :pipeline_id
4235
+ #
4236
+ # @option params [required, String] :thumbnail_type
4237
+ #
4238
+ # @return [Types::DescribeThumbnailsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4239
+ #
4240
+ # * {Types::DescribeThumbnailsResponse#thumbnail_details #thumbnail_details} => Array<Types::ThumbnailDetail>
4241
+ #
4242
+ # @example Request syntax with placeholder values
4243
+ #
4244
+ # resp = client.describe_thumbnails({
4245
+ # channel_id: "__string", # required
4246
+ # pipeline_id: "__string", # required
4247
+ # thumbnail_type: "__string", # required
4248
+ # })
4249
+ #
4250
+ # @example Response structure
4251
+ #
4252
+ # resp.thumbnail_details #=> Array
4253
+ # resp.thumbnail_details[0].pipeline_id #=> String
4254
+ # resp.thumbnail_details[0].thumbnails #=> Array
4255
+ # resp.thumbnail_details[0].thumbnails[0].body #=> String
4256
+ # resp.thumbnail_details[0].thumbnails[0].content_type #=> String
4257
+ # resp.thumbnail_details[0].thumbnails[0].thumbnail_type #=> String, one of "UNSPECIFIED", "CURRENT_ACTIVE"
4258
+ # resp.thumbnail_details[0].thumbnails[0].time_stamp #=> Time
4259
+ #
4260
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeThumbnails AWS API Documentation
4261
+ #
4262
+ # @overload describe_thumbnails(params = {})
4263
+ # @param [Hash] params ({})
4264
+ def describe_thumbnails(params = {}, options = {})
4265
+ req = build_request(:describe_thumbnails, params)
4266
+ req.send_request(options)
4267
+ end
4268
+
4208
4269
  # Produces list of channels that have been created
4209
4270
  #
4210
4271
  # @option params [Integer] :max_results
@@ -4966,6 +5027,35 @@ module Aws::MediaLive
4966
5027
  req.send_request(options)
4967
5028
  end
4968
5029
 
5030
+ # Update account configuration
5031
+ #
5032
+ # @option params [Types::AccountConfiguration] :account_configuration
5033
+ #
5034
+ # @return [Types::UpdateAccountConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5035
+ #
5036
+ # * {Types::UpdateAccountConfigurationResponse#account_configuration #account_configuration} => Types::AccountConfiguration
5037
+ #
5038
+ # @example Request syntax with placeholder values
5039
+ #
5040
+ # resp = client.update_account_configuration({
5041
+ # account_configuration: {
5042
+ # kms_key_id: "__string",
5043
+ # },
5044
+ # })
5045
+ #
5046
+ # @example Response structure
5047
+ #
5048
+ # resp.account_configuration.kms_key_id #=> String
5049
+ #
5050
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateAccountConfiguration AWS API Documentation
5051
+ #
5052
+ # @overload update_account_configuration(params = {})
5053
+ # @param [Hash] params ({})
5054
+ def update_account_configuration(params = {}, options = {})
5055
+ req = build_request(:update_account_configuration, params)
5056
+ req.send_request(options)
5057
+ end
5058
+
4969
5059
  # Starts an existing channel
4970
5060
  #
4971
5061
  # @option params [required, String] :channel_id
@@ -5559,6 +5649,7 @@ module Aws::MediaLive
5559
5649
  # resp.encoder_settings.video_descriptions[0].scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT"
5560
5650
  # resp.encoder_settings.video_descriptions[0].sharpness #=> Integer
5561
5651
  # resp.encoder_settings.video_descriptions[0].width #=> Integer
5652
+ # resp.encoder_settings.thumbnail_configuration.state #=> String, one of "AUTO", "DISABLED"
5562
5653
  # resp.id #=> String
5563
5654
  # resp.input_attachments #=> Array
5564
5655
  # resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
@@ -6332,6 +6423,7 @@ module Aws::MediaLive
6332
6423
  # resp.encoder_settings.video_descriptions[0].scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT"
6333
6424
  # resp.encoder_settings.video_descriptions[0].sharpness #=> Integer
6334
6425
  # resp.encoder_settings.video_descriptions[0].width #=> Integer
6426
+ # resp.encoder_settings.thumbnail_configuration.state #=> String, one of "AUTO", "DISABLED"
6335
6427
  # resp.id #=> String
6336
6428
  # resp.input_attachments #=> Array
6337
6429
  # resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
@@ -7104,6 +7196,7 @@ module Aws::MediaLive
7104
7196
  # resp.channel.encoder_settings.video_descriptions[0].scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT"
7105
7197
  # resp.channel.encoder_settings.video_descriptions[0].sharpness #=> Integer
7106
7198
  # resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
7199
+ # resp.channel.encoder_settings.thumbnail_configuration.state #=> String, one of "AUTO", "DISABLED"
7107
7200
  # resp.channel.id #=> String
7108
7201
  # resp.channel.input_attachments #=> Array
7109
7202
  # resp.channel.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
@@ -7808,6 +7901,7 @@ module Aws::MediaLive
7808
7901
  # resp.channel.encoder_settings.video_descriptions[0].scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT"
7809
7902
  # resp.channel.encoder_settings.video_descriptions[0].sharpness #=> Integer
7810
7903
  # resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
7904
+ # resp.channel.encoder_settings.thumbnail_configuration.state #=> String, one of "AUTO", "DISABLED"
7811
7905
  # resp.channel.id #=> String
7812
7906
  # resp.channel.input_attachments #=> Array
7813
7907
  # resp.channel.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
@@ -8350,7 +8444,7 @@ module Aws::MediaLive
8350
8444
  params: params,
8351
8445
  config: config)
8352
8446
  context[:gem_name] = 'aws-sdk-medialive'
8353
- context[:gem_version] = '1.102.0'
8447
+ context[:gem_version] = '1.103.0'
8354
8448
  Seahorse::Client::Request.new(handlers, context)
8355
8449
  end
8356
8450
 
@@ -32,6 +32,7 @@ module Aws::MediaLive
32
32
  AcceptInputDeviceTransferResponse = Shapes::StructureShape.new(name: 'AcceptInputDeviceTransferResponse')
33
33
  AccessDenied = Shapes::StructureShape.new(name: 'AccessDenied')
34
34
  AccessibilityType = Shapes::StringShape.new(name: 'AccessibilityType')
35
+ AccountConfiguration = Shapes::StructureShape.new(name: 'AccountConfiguration')
35
36
  AfdSignaling = Shapes::StringShape.new(name: 'AfdSignaling')
36
37
  AncillarySourceSettings = Shapes::StructureShape.new(name: 'AncillarySourceSettings')
37
38
  ArchiveCdnSettings = Shapes::StructureShape.new(name: 'ArchiveCdnSettings')
@@ -164,6 +165,9 @@ module Aws::MediaLive
164
165
  DeleteScheduleRequest = Shapes::StructureShape.new(name: 'DeleteScheduleRequest')
165
166
  DeleteScheduleResponse = Shapes::StructureShape.new(name: 'DeleteScheduleResponse')
166
167
  DeleteTagsRequest = Shapes::StructureShape.new(name: 'DeleteTagsRequest')
168
+ DescribeAccountConfigurationRequest = Shapes::StructureShape.new(name: 'DescribeAccountConfigurationRequest')
169
+ DescribeAccountConfigurationResponse = Shapes::StructureShape.new(name: 'DescribeAccountConfigurationResponse')
170
+ DescribeAccountConfigurationResultModel = Shapes::StructureShape.new(name: 'DescribeAccountConfigurationResultModel')
167
171
  DescribeChannelRequest = Shapes::StructureShape.new(name: 'DescribeChannelRequest')
168
172
  DescribeChannelResponse = Shapes::StructureShape.new(name: 'DescribeChannelResponse')
169
173
  DescribeInputDeviceRequest = Shapes::StructureShape.new(name: 'DescribeInputDeviceRequest')
@@ -184,6 +188,9 @@ module Aws::MediaLive
184
188
  DescribeReservationResponse = Shapes::StructureShape.new(name: 'DescribeReservationResponse')
185
189
  DescribeScheduleRequest = Shapes::StructureShape.new(name: 'DescribeScheduleRequest')
186
190
  DescribeScheduleResponse = Shapes::StructureShape.new(name: 'DescribeScheduleResponse')
191
+ DescribeThumbnailsRequest = Shapes::StructureShape.new(name: 'DescribeThumbnailsRequest')
192
+ DescribeThumbnailsResponse = Shapes::StructureShape.new(name: 'DescribeThumbnailsResponse')
193
+ DescribeThumbnailsResultModel = Shapes::StructureShape.new(name: 'DescribeThumbnailsResultModel')
187
194
  DeviceSettingsSyncState = Shapes::StringShape.new(name: 'DeviceSettingsSyncState')
188
195
  DeviceUpdateStatus = Shapes::StringShape.new(name: 'DeviceUpdateStatus')
189
196
  DolbyEProgramSelection = Shapes::StringShape.new(name: 'DolbyEProgramSelection')
@@ -638,7 +645,13 @@ module Aws::MediaLive
638
645
  TemporalFilterPostFilterSharpening = Shapes::StringShape.new(name: 'TemporalFilterPostFilterSharpening')
639
646
  TemporalFilterSettings = Shapes::StructureShape.new(name: 'TemporalFilterSettings')
640
647
  TemporalFilterStrength = Shapes::StringShape.new(name: 'TemporalFilterStrength')
648
+ Thumbnail = Shapes::StructureShape.new(name: 'Thumbnail')
649
+ ThumbnailConfiguration = Shapes::StructureShape.new(name: 'ThumbnailConfiguration')
641
650
  ThumbnailData = Shapes::StructureShape.new(name: 'ThumbnailData')
651
+ ThumbnailDetail = Shapes::StructureShape.new(name: 'ThumbnailDetail')
652
+ ThumbnailNoData = Shapes::StructureShape.new(name: 'ThumbnailNoData')
653
+ ThumbnailState = Shapes::StringShape.new(name: 'ThumbnailState')
654
+ ThumbnailType = Shapes::StringShape.new(name: 'ThumbnailType')
642
655
  TimecodeBurninFontSize = Shapes::StringShape.new(name: 'TimecodeBurninFontSize')
643
656
  TimecodeBurninPosition = Shapes::StringShape.new(name: 'TimecodeBurninPosition')
644
657
  TimecodeBurninSettings = Shapes::StructureShape.new(name: 'TimecodeBurninSettings')
@@ -656,6 +669,10 @@ module Aws::MediaLive
656
669
  UdpOutputSettings = Shapes::StructureShape.new(name: 'UdpOutputSettings')
657
670
  UdpTimedMetadataId3Frame = Shapes::StringShape.new(name: 'UdpTimedMetadataId3Frame')
658
671
  UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
672
+ UpdateAccountConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateAccountConfigurationRequest')
673
+ UpdateAccountConfigurationRequestModel = Shapes::StructureShape.new(name: 'UpdateAccountConfigurationRequestModel')
674
+ UpdateAccountConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateAccountConfigurationResponse')
675
+ UpdateAccountConfigurationResultModel = Shapes::StructureShape.new(name: 'UpdateAccountConfigurationResultModel')
659
676
  UpdateChannel = Shapes::StructureShape.new(name: 'UpdateChannel')
660
677
  UpdateChannelClass = Shapes::StructureShape.new(name: 'UpdateChannelClass')
661
678
  UpdateChannelClassRequest = Shapes::StructureShape.new(name: 'UpdateChannelClassRequest')
@@ -809,6 +826,8 @@ module Aws::MediaLive
809
826
  __listOfRtmpAdMarkers = Shapes::ListShape.new(name: '__listOfRtmpAdMarkers')
810
827
  __listOfScheduleAction = Shapes::ListShape.new(name: '__listOfScheduleAction')
811
828
  __listOfScte35Descriptor = Shapes::ListShape.new(name: '__listOfScte35Descriptor')
829
+ __listOfThumbnail = Shapes::ListShape.new(name: '__listOfThumbnail')
830
+ __listOfThumbnailDetail = Shapes::ListShape.new(name: '__listOfThumbnailDetail')
812
831
  __listOfTransferringInputDeviceSummary = Shapes::ListShape.new(name: '__listOfTransferringInputDeviceSummary')
813
832
  __listOfValidationError = Shapes::ListShape.new(name: '__listOfValidationError')
814
833
  __listOfVideoDescription = Shapes::ListShape.new(name: '__listOfVideoDescription')
@@ -868,6 +887,9 @@ module Aws::MediaLive
868
887
  AccessDenied.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
869
888
  AccessDenied.struct_class = Types::AccessDenied
870
889
 
890
+ AccountConfiguration.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: __string, location_name: "kmsKeyId"))
891
+ AccountConfiguration.struct_class = Types::AccountConfiguration
892
+
871
893
  AncillarySourceSettings.add_member(:source_ancillary_channel_number, Shapes::ShapeRef.new(shape: __integerMin1Max4, location_name: "sourceAncillaryChannelNumber"))
872
894
  AncillarySourceSettings.struct_class = Types::AncillarySourceSettings
873
895
 
@@ -1447,6 +1469,14 @@ module Aws::MediaLive
1447
1469
  DeleteTagsRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location: "querystring", location_name: "tagKeys"))
1448
1470
  DeleteTagsRequest.struct_class = Types::DeleteTagsRequest
1449
1471
 
1472
+ DescribeAccountConfigurationRequest.struct_class = Types::DescribeAccountConfigurationRequest
1473
+
1474
+ DescribeAccountConfigurationResponse.add_member(:account_configuration, Shapes::ShapeRef.new(shape: AccountConfiguration, location_name: "accountConfiguration"))
1475
+ DescribeAccountConfigurationResponse.struct_class = Types::DescribeAccountConfigurationResponse
1476
+
1477
+ DescribeAccountConfigurationResultModel.add_member(:account_configuration, Shapes::ShapeRef.new(shape: AccountConfiguration, location_name: "accountConfiguration"))
1478
+ DescribeAccountConfigurationResultModel.struct_class = Types::DescribeAccountConfigurationResultModel
1479
+
1450
1480
  DescribeChannelRequest.add_member(:channel_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "channelId"))
1451
1481
  DescribeChannelRequest.struct_class = Types::DescribeChannelRequest
1452
1482
 
@@ -1608,6 +1638,17 @@ module Aws::MediaLive
1608
1638
  DescribeScheduleResponse.add_member(:schedule_actions, Shapes::ShapeRef.new(shape: __listOfScheduleAction, location_name: "scheduleActions"))
1609
1639
  DescribeScheduleResponse.struct_class = Types::DescribeScheduleResponse
1610
1640
 
1641
+ DescribeThumbnailsRequest.add_member(:channel_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "channelId"))
1642
+ DescribeThumbnailsRequest.add_member(:pipeline_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "querystring", location_name: "pipelineId"))
1643
+ DescribeThumbnailsRequest.add_member(:thumbnail_type, Shapes::ShapeRef.new(shape: __string, required: true, location: "querystring", location_name: "thumbnailType"))
1644
+ DescribeThumbnailsRequest.struct_class = Types::DescribeThumbnailsRequest
1645
+
1646
+ DescribeThumbnailsResponse.add_member(:thumbnail_details, Shapes::ShapeRef.new(shape: __listOfThumbnailDetail, location_name: "thumbnailDetails"))
1647
+ DescribeThumbnailsResponse.struct_class = Types::DescribeThumbnailsResponse
1648
+
1649
+ DescribeThumbnailsResultModel.add_member(:thumbnail_details, Shapes::ShapeRef.new(shape: __listOfThumbnailDetail, location_name: "thumbnailDetails"))
1650
+ DescribeThumbnailsResultModel.struct_class = Types::DescribeThumbnailsResultModel
1651
+
1611
1652
  DolbyVision81Settings.struct_class = Types::DolbyVision81Settings
1612
1653
 
1613
1654
  DvbNitSettings.add_member(:network_id, Shapes::ShapeRef.new(shape: __integerMin0Max65536, required: true, location_name: "networkId"))
@@ -1708,6 +1749,7 @@ module Aws::MediaLive
1708
1749
  EncoderSettings.add_member(:output_groups, Shapes::ShapeRef.new(shape: __listOfOutputGroup, required: true, location_name: "outputGroups"))
1709
1750
  EncoderSettings.add_member(:timecode_config, Shapes::ShapeRef.new(shape: TimecodeConfig, required: true, location_name: "timecodeConfig"))
1710
1751
  EncoderSettings.add_member(:video_descriptions, Shapes::ShapeRef.new(shape: __listOfVideoDescription, required: true, location_name: "videoDescriptions"))
1752
+ EncoderSettings.add_member(:thumbnail_configuration, Shapes::ShapeRef.new(shape: ThumbnailConfiguration, location_name: "thumbnailConfiguration"))
1711
1753
  EncoderSettings.struct_class = Types::EncoderSettings
1712
1754
 
1713
1755
  Esam.add_member(:acquisition_point_id, Shapes::ShapeRef.new(shape: __stringMax256, required: true, location_name: "acquisitionPointId"))
@@ -3030,9 +3072,24 @@ module Aws::MediaLive
3030
3072
  TemporalFilterSettings.add_member(:strength, Shapes::ShapeRef.new(shape: TemporalFilterStrength, location_name: "strength"))
3031
3073
  TemporalFilterSettings.struct_class = Types::TemporalFilterSettings
3032
3074
 
3075
+ Thumbnail.add_member(:body, Shapes::ShapeRef.new(shape: __string, location_name: "body"))
3076
+ Thumbnail.add_member(:content_type, Shapes::ShapeRef.new(shape: __string, location_name: "contentType"))
3077
+ Thumbnail.add_member(:thumbnail_type, Shapes::ShapeRef.new(shape: ThumbnailType, location_name: "thumbnailType"))
3078
+ Thumbnail.add_member(:time_stamp, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "timeStamp"))
3079
+ Thumbnail.struct_class = Types::Thumbnail
3080
+
3081
+ ThumbnailConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: ThumbnailState, required: true, location_name: "state"))
3082
+ ThumbnailConfiguration.struct_class = Types::ThumbnailConfiguration
3083
+
3033
3084
  ThumbnailData.add_member(:body, Shapes::ShapeRef.new(shape: __string, location_name: "body"))
3034
3085
  ThumbnailData.struct_class = Types::ThumbnailData
3035
3086
 
3087
+ ThumbnailDetail.add_member(:pipeline_id, Shapes::ShapeRef.new(shape: __string, location_name: "pipelineId"))
3088
+ ThumbnailDetail.add_member(:thumbnails, Shapes::ShapeRef.new(shape: __listOfThumbnail, location_name: "thumbnails"))
3089
+ ThumbnailDetail.struct_class = Types::ThumbnailDetail
3090
+
3091
+ ThumbnailNoData.struct_class = Types::ThumbnailNoData
3092
+
3036
3093
  TimecodeBurninSettings.add_member(:font_size, Shapes::ShapeRef.new(shape: TimecodeBurninFontSize, required: true, location_name: "fontSize"))
3037
3094
  TimecodeBurninSettings.add_member(:position, Shapes::ShapeRef.new(shape: TimecodeBurninPosition, required: true, location_name: "position"))
3038
3095
  TimecodeBurninSettings.add_member(:prefix, Shapes::ShapeRef.new(shape: __stringMax255, location_name: "prefix"))
@@ -3085,6 +3142,18 @@ module Aws::MediaLive
3085
3142
  UnprocessableEntityException.add_member(:error_message, Shapes::ShapeRef.new(shape: __string, location_name: "errorMessage"))
3086
3143
  UnprocessableEntityException.struct_class = Types::UnprocessableEntityException
3087
3144
 
3145
+ UpdateAccountConfigurationRequest.add_member(:account_configuration, Shapes::ShapeRef.new(shape: AccountConfiguration, location_name: "accountConfiguration"))
3146
+ UpdateAccountConfigurationRequest.struct_class = Types::UpdateAccountConfigurationRequest
3147
+
3148
+ UpdateAccountConfigurationRequestModel.add_member(:account_configuration, Shapes::ShapeRef.new(shape: AccountConfiguration, location_name: "accountConfiguration"))
3149
+ UpdateAccountConfigurationRequestModel.struct_class = Types::UpdateAccountConfigurationRequestModel
3150
+
3151
+ UpdateAccountConfigurationResponse.add_member(:account_configuration, Shapes::ShapeRef.new(shape: AccountConfiguration, location_name: "accountConfiguration"))
3152
+ UpdateAccountConfigurationResponse.struct_class = Types::UpdateAccountConfigurationResponse
3153
+
3154
+ UpdateAccountConfigurationResultModel.add_member(:account_configuration, Shapes::ShapeRef.new(shape: AccountConfiguration, location_name: "accountConfiguration"))
3155
+ UpdateAccountConfigurationResultModel.struct_class = Types::UpdateAccountConfigurationResultModel
3156
+
3088
3157
  UpdateChannel.add_member(:cdi_input_specification, Shapes::ShapeRef.new(shape: CdiInputSpecification, location_name: "cdiInputSpecification"))
3089
3158
  UpdateChannel.add_member(:destinations, Shapes::ShapeRef.new(shape: __listOfOutputDestination, location_name: "destinations"))
3090
3159
  UpdateChannel.add_member(:encoder_settings, Shapes::ShapeRef.new(shape: EncoderSettings, location_name: "encoderSettings"))
@@ -3381,6 +3450,10 @@ module Aws::MediaLive
3381
3450
 
3382
3451
  __listOfScte35Descriptor.member = Shapes::ShapeRef.new(shape: Scte35Descriptor)
3383
3452
 
3453
+ __listOfThumbnail.member = Shapes::ShapeRef.new(shape: Thumbnail)
3454
+
3455
+ __listOfThumbnailDetail.member = Shapes::ShapeRef.new(shape: ThumbnailDetail)
3456
+
3384
3457
  __listOfTransferringInputDeviceSummary.member = Shapes::ShapeRef.new(shape: TransferringInputDeviceSummary)
3385
3458
 
3386
3459
  __listOfValidationError.member = Shapes::ShapeRef.new(shape: ValidationError)
@@ -3904,6 +3977,36 @@ module Aws::MediaLive
3904
3977
  )
3905
3978
  end)
3906
3979
 
3980
+ api.add_operation(:describe_account_configuration, Seahorse::Model::Operation.new.tap do |o|
3981
+ o.name = "DescribeAccountConfiguration"
3982
+ o.http_method = "GET"
3983
+ o.http_request_uri = "/prod/accountConfiguration"
3984
+ o.input = Shapes::ShapeRef.new(shape: DescribeAccountConfigurationRequest)
3985
+ o.output = Shapes::ShapeRef.new(shape: DescribeAccountConfigurationResponse)
3986
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
3987
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
3988
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
3989
+ o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
3990
+ o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
3991
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
3992
+ end)
3993
+
3994
+ api.add_operation(:describe_thumbnails, Seahorse::Model::Operation.new.tap do |o|
3995
+ o.name = "DescribeThumbnails"
3996
+ o.http_method = "GET"
3997
+ o.http_request_uri = "/prod/channels/{channelId}/thumbnails"
3998
+ o.input = Shapes::ShapeRef.new(shape: DescribeThumbnailsRequest)
3999
+ o.output = Shapes::ShapeRef.new(shape: DescribeThumbnailsResponse)
4000
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
4001
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
4002
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
4003
+ o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
4004
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
4005
+ o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
4006
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
4007
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
4008
+ end)
4009
+
3907
4010
  api.add_operation(:list_channels, Seahorse::Model::Operation.new.tap do |o|
3908
4011
  o.name = "ListChannels"
3909
4012
  o.http_method = "GET"
@@ -4147,6 +4250,21 @@ module Aws::MediaLive
4147
4250
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
4148
4251
  end)
4149
4252
 
4253
+ api.add_operation(:update_account_configuration, Seahorse::Model::Operation.new.tap do |o|
4254
+ o.name = "UpdateAccountConfiguration"
4255
+ o.http_method = "PUT"
4256
+ o.http_request_uri = "/prod/accountConfiguration"
4257
+ o.input = Shapes::ShapeRef.new(shape: UpdateAccountConfigurationRequest)
4258
+ o.output = Shapes::ShapeRef.new(shape: UpdateAccountConfigurationResponse)
4259
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
4260
+ o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
4261
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
4262
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
4263
+ o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
4264
+ o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
4265
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
4266
+ end)
4267
+
4150
4268
  api.add_operation(:start_channel, Seahorse::Model::Operation.new.tap do |o|
4151
4269
  o.name = "StartChannel"
4152
4270
  o.http_method = "POST"
@@ -460,6 +460,34 @@ module Aws::MediaLive
460
460
  end
461
461
  end
462
462
 
463
+ class DescribeAccountConfiguration
464
+ def self.build(context)
465
+ unless context.config.regional_endpoint
466
+ endpoint = context.config.endpoint.to_s
467
+ end
468
+ Aws::MediaLive::EndpointParameters.new(
469
+ region: context.config.region,
470
+ use_dual_stack: context.config.use_dualstack_endpoint,
471
+ use_fips: context.config.use_fips_endpoint,
472
+ endpoint: endpoint,
473
+ )
474
+ end
475
+ end
476
+
477
+ class DescribeThumbnails
478
+ def self.build(context)
479
+ unless context.config.regional_endpoint
480
+ endpoint = context.config.endpoint.to_s
481
+ end
482
+ Aws::MediaLive::EndpointParameters.new(
483
+ region: context.config.region,
484
+ use_dual_stack: context.config.use_dualstack_endpoint,
485
+ use_fips: context.config.use_fips_endpoint,
486
+ endpoint: endpoint,
487
+ )
488
+ end
489
+ end
490
+
463
491
  class ListChannels
464
492
  def self.build(context)
465
493
  unless context.config.regional_endpoint
@@ -642,6 +670,20 @@ module Aws::MediaLive
642
670
  end
643
671
  end
644
672
 
673
+ class UpdateAccountConfiguration
674
+ def self.build(context)
675
+ unless context.config.regional_endpoint
676
+ endpoint = context.config.endpoint.to_s
677
+ end
678
+ Aws::MediaLive::EndpointParameters.new(
679
+ region: context.config.region,
680
+ use_dual_stack: context.config.use_dualstack_endpoint,
681
+ use_fips: context.config.use_fips_endpoint,
682
+ endpoint: endpoint,
683
+ )
684
+ end
685
+ end
686
+
645
687
  class StartChannel
646
688
  def self.build(context)
647
689
  unless context.config.regional_endpoint
@@ -120,6 +120,10 @@ module Aws::MediaLive
120
120
  Aws::MediaLive::Endpoints::DescribeReservation.build(context)
121
121
  when :describe_schedule
122
122
  Aws::MediaLive::Endpoints::DescribeSchedule.build(context)
123
+ when :describe_account_configuration
124
+ Aws::MediaLive::Endpoints::DescribeAccountConfiguration.build(context)
125
+ when :describe_thumbnails
126
+ Aws::MediaLive::Endpoints::DescribeThumbnails.build(context)
123
127
  when :list_channels
124
128
  Aws::MediaLive::Endpoints::ListChannels.build(context)
125
129
  when :list_input_device_transfers
@@ -146,6 +150,8 @@ module Aws::MediaLive
146
150
  Aws::MediaLive::Endpoints::RebootInputDevice.build(context)
147
151
  when :reject_input_device_transfer
148
152
  Aws::MediaLive::Endpoints::RejectInputDeviceTransfer.build(context)
153
+ when :update_account_configuration
154
+ Aws::MediaLive::Endpoints::UpdateAccountConfiguration.build(context)
149
155
  when :start_channel
150
156
  Aws::MediaLive::Endpoints::StartChannel.build(context)
151
157
  when :start_input_device_maintenance_window
@@ -157,6 +157,17 @@ module Aws::MediaLive
157
157
  include Aws::Structure
158
158
  end
159
159
 
160
+ # @!attribute [rw] kms_key_id
161
+ # @return [String]
162
+ #
163
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AccountConfiguration AWS API Documentation
164
+ #
165
+ class AccountConfiguration < Struct.new(
166
+ :kms_key_id)
167
+ SENSITIVE = []
168
+ include Aws::Structure
169
+ end
170
+
160
171
  # Ancillary Source Settings
161
172
  #
162
173
  # @!attribute [rw] source_ancillary_channel_number
@@ -4197,6 +4208,10 @@ module Aws::MediaLive
4197
4208
  # @!attribute [rw] video_descriptions
4198
4209
  # @return [Array<Types::VideoDescription>]
4199
4210
  #
4211
+ # @!attribute [rw] thumbnail_configuration
4212
+ # Thumbnail configuration settings.
4213
+ # @return [Types::ThumbnailConfiguration]
4214
+ #
4200
4215
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/EncoderSettings AWS API Documentation
4201
4216
  #
4202
4217
  class EncoderSettings < Struct.new(
@@ -4211,7 +4226,8 @@ module Aws::MediaLive
4211
4226
  :nielsen_configuration,
4212
4227
  :output_groups,
4213
4228
  :timecode_config,
4214
- :video_descriptions)
4229
+ :video_descriptions,
4230
+ :thumbnail_configuration)
4215
4231
  SENSITIVE = []
4216
4232
  include Aws::Structure
4217
4233
  end
@@ -4553,6 +4569,79 @@ module Aws::MediaLive
4553
4569
  include Aws::Structure
4554
4570
  end
4555
4571
 
4572
+ # @api private
4573
+ #
4574
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeAccountConfigurationRequest AWS API Documentation
4575
+ #
4576
+ class DescribeAccountConfigurationRequest < Aws::EmptyStructure; end
4577
+
4578
+ # @!attribute [rw] account_configuration
4579
+ # @return [Types::AccountConfiguration]
4580
+ #
4581
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeAccountConfigurationResponse AWS API Documentation
4582
+ #
4583
+ class DescribeAccountConfigurationResponse < Struct.new(
4584
+ :account_configuration)
4585
+ SENSITIVE = []
4586
+ include Aws::Structure
4587
+ end
4588
+
4589
+ # The account's configuration.
4590
+ #
4591
+ # @!attribute [rw] account_configuration
4592
+ # @return [Types::AccountConfiguration]
4593
+ #
4594
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeAccountConfigurationResultModel AWS API Documentation
4595
+ #
4596
+ class DescribeAccountConfigurationResultModel < Struct.new(
4597
+ :account_configuration)
4598
+ SENSITIVE = []
4599
+ include Aws::Structure
4600
+ end
4601
+
4602
+ # @!attribute [rw] channel_id
4603
+ # @return [String]
4604
+ #
4605
+ # @!attribute [rw] pipeline_id
4606
+ # @return [String]
4607
+ #
4608
+ # @!attribute [rw] thumbnail_type
4609
+ # @return [String]
4610
+ #
4611
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeThumbnailsRequest AWS API Documentation
4612
+ #
4613
+ class DescribeThumbnailsRequest < Struct.new(
4614
+ :channel_id,
4615
+ :pipeline_id,
4616
+ :thumbnail_type)
4617
+ SENSITIVE = []
4618
+ include Aws::Structure
4619
+ end
4620
+
4621
+ # @!attribute [rw] thumbnail_details
4622
+ # @return [Array<Types::ThumbnailDetail>]
4623
+ #
4624
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeThumbnailsResponse AWS API Documentation
4625
+ #
4626
+ class DescribeThumbnailsResponse < Struct.new(
4627
+ :thumbnail_details)
4628
+ SENSITIVE = []
4629
+ include Aws::Structure
4630
+ end
4631
+
4632
+ # Thumbnail details for all the pipelines of a running channel.
4633
+ #
4634
+ # @!attribute [rw] thumbnail_details
4635
+ # @return [Array<Types::ThumbnailDetail>]
4636
+ #
4637
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeThumbnailsResultModel AWS API Documentation
4638
+ #
4639
+ class DescribeThumbnailsResultModel < Struct.new(
4640
+ :thumbnail_details)
4641
+ SENSITIVE = []
4642
+ include Aws::Structure
4643
+ end
4644
+
4556
4645
  # Global Configuration
4557
4646
  #
4558
4647
  # @!attribute [rw] initial_audio_gain
@@ -10661,6 +10750,54 @@ module Aws::MediaLive
10661
10750
  include Aws::Structure
10662
10751
  end
10663
10752
 
10753
+ # @!attribute [rw] account_configuration
10754
+ # @return [Types::AccountConfiguration]
10755
+ #
10756
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateAccountConfigurationRequest AWS API Documentation
10757
+ #
10758
+ class UpdateAccountConfigurationRequest < Struct.new(
10759
+ :account_configuration)
10760
+ SENSITIVE = []
10761
+ include Aws::Structure
10762
+ end
10763
+
10764
+ # The desired new account configuration.
10765
+ #
10766
+ # @!attribute [rw] account_configuration
10767
+ # @return [Types::AccountConfiguration]
10768
+ #
10769
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateAccountConfigurationRequestModel AWS API Documentation
10770
+ #
10771
+ class UpdateAccountConfigurationRequestModel < Struct.new(
10772
+ :account_configuration)
10773
+ SENSITIVE = []
10774
+ include Aws::Structure
10775
+ end
10776
+
10777
+ # @!attribute [rw] account_configuration
10778
+ # @return [Types::AccountConfiguration]
10779
+ #
10780
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateAccountConfigurationResponse AWS API Documentation
10781
+ #
10782
+ class UpdateAccountConfigurationResponse < Struct.new(
10783
+ :account_configuration)
10784
+ SENSITIVE = []
10785
+ include Aws::Structure
10786
+ end
10787
+
10788
+ # The account's updated configuration.
10789
+ #
10790
+ # @!attribute [rw] account_configuration
10791
+ # @return [Types::AccountConfiguration]
10792
+ #
10793
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateAccountConfigurationResultModel AWS API Documentation
10794
+ #
10795
+ class UpdateAccountConfigurationResultModel < Struct.new(
10796
+ :account_configuration)
10797
+ SENSITIVE = []
10798
+ include Aws::Structure
10799
+ end
10800
+
10664
10801
  # Smpte Tt Destination Settings
10665
10802
  #
10666
10803
  # @api private
@@ -11244,6 +11381,48 @@ module Aws::MediaLive
11244
11381
  include Aws::Structure
11245
11382
  end
11246
11383
 
11384
+ # Details of a single thumbnail
11385
+ #
11386
+ # @!attribute [rw] body
11387
+ # The binary data for the latest thumbnail.
11388
+ # @return [String]
11389
+ #
11390
+ # @!attribute [rw] content_type
11391
+ # The content type for the latest thumbnail.
11392
+ # @return [String]
11393
+ #
11394
+ # @!attribute [rw] thumbnail_type
11395
+ # Thumbnail Type
11396
+ # @return [String]
11397
+ #
11398
+ # @!attribute [rw] time_stamp
11399
+ # @return [Time]
11400
+ #
11401
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Thumbnail AWS API Documentation
11402
+ #
11403
+ class Thumbnail < Struct.new(
11404
+ :body,
11405
+ :content_type,
11406
+ :thumbnail_type,
11407
+ :time_stamp)
11408
+ SENSITIVE = []
11409
+ include Aws::Structure
11410
+ end
11411
+
11412
+ # Thumbnail Configuration
11413
+ #
11414
+ # @!attribute [rw] state
11415
+ # Whether Thumbnail is enabled.
11416
+ # @return [String]
11417
+ #
11418
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ThumbnailConfiguration AWS API Documentation
11419
+ #
11420
+ class ThumbnailConfiguration < Struct.new(
11421
+ :state)
11422
+ SENSITIVE = []
11423
+ include Aws::Structure
11424
+ end
11425
+
11247
11426
  # The binary data for the thumbnail that the Link device has most
11248
11427
  # recently sent to MediaLive.
11249
11428
  #
@@ -11260,6 +11439,31 @@ module Aws::MediaLive
11260
11439
  include Aws::Structure
11261
11440
  end
11262
11441
 
11442
+ # Thumbnail details for one pipeline of a running channel.
11443
+ #
11444
+ # @!attribute [rw] pipeline_id
11445
+ # Pipeline ID
11446
+ # @return [String]
11447
+ #
11448
+ # @!attribute [rw] thumbnails
11449
+ # thumbnails of a single pipeline
11450
+ # @return [Array<Types::Thumbnail>]
11451
+ #
11452
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ThumbnailDetail AWS API Documentation
11453
+ #
11454
+ class ThumbnailDetail < Struct.new(
11455
+ :pipeline_id,
11456
+ :thumbnails)
11457
+ SENSITIVE = []
11458
+ include Aws::Structure
11459
+ end
11460
+
11461
+ # Response when thumbnail has no data. It should have no message.
11462
+ #
11463
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ThumbnailNoData AWS API Documentation
11464
+ #
11465
+ class ThumbnailNoData < Aws::EmptyStructure; end
11466
+
11263
11467
  # Timecode Burnin Settings
11264
11468
  #
11265
11469
  # @!attribute [rw] font_size
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-medialive/customizations'
53
53
  # @!group service
54
54
  module Aws::MediaLive
55
55
 
56
- GEM_VERSION = '1.102.0'
56
+ GEM_VERSION = '1.103.0'
57
57
 
58
58
  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.102.0
4
+ version: 1.103.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-07-06 00:00:00.000000000 Z
11
+ date: 2023-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core