aws-sdk-mediaconvert 1.12.0 → 1.13.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/lib/aws-sdk-mediaconvert.rb +1 -1
- data/lib/aws-sdk-mediaconvert/client.rb +64 -8
- data/lib/aws-sdk-mediaconvert/client_api.rb +24 -0
- data/lib/aws-sdk-mediaconvert/types.rb +193 -50
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 812df8b30ea889585ae27cf16719c645a5773467
|
4
|
+
data.tar.gz: c7c6cd45fd831d43c5a9a9fe4a47ca9d6d5a62c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3abac0add0d4779415e87af0663a435cb653c99a36b3035ff27131d82b518ac8b8eff5c2a2b8a8e21be43e6561b1a1e109ea12b71f5245f79336bc1ae5124a85
|
7
|
+
data.tar.gz: a5186c64d285c37399bdb70556d13f22376ed6bfbbe16f0d38b7f70c76a75ed9fd298291b1c04a88b76adfec8f5627b480e87e9dafee3ca1aa8a21aface1a1b6
|
data/lib/aws-sdk-mediaconvert.rb
CHANGED
@@ -3722,10 +3722,22 @@ module Aws::MediaConvert
|
|
3722
3722
|
# http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
3723
3723
|
#
|
3724
3724
|
# @option params [String] :description
|
3725
|
-
# Optional. A description of the queue you are creating.
|
3725
|
+
# Optional. A description of the queue that you are creating.
|
3726
3726
|
#
|
3727
3727
|
# @option params [required, String] :name
|
3728
|
-
# The name of the queue you are creating.
|
3728
|
+
# The name of the queue that you are creating.
|
3729
|
+
#
|
3730
|
+
# @option params [String] :pricing_plan
|
3731
|
+
# Optional; default is on-demand. Specifies whether the pricing plan for
|
3732
|
+
# the queue is on-demand or reserved. The pricing plan for the queue
|
3733
|
+
# determines whether you pay on-demand or reserved pricing for the
|
3734
|
+
# transcoding jobs you run through the queue. For reserved queue
|
3735
|
+
# pricing, you must set up a contract. You can create a reserved queue
|
3736
|
+
# contract through the AWS Elemental MediaConvert console.
|
3737
|
+
#
|
3738
|
+
# @option params [Types::ReservationPlanSettings] :reservation_plan_settings
|
3739
|
+
# Details about the pricing plan for your reserved queue. Required for
|
3740
|
+
# reserved queues and not applicable to on-demand queues.
|
3729
3741
|
#
|
3730
3742
|
# @option params [Hash<String,String>] :tags
|
3731
3743
|
# The tags that you want to add to the resource. You can tag resources
|
@@ -3740,6 +3752,12 @@ module Aws::MediaConvert
|
|
3740
3752
|
# resp = client.create_queue({
|
3741
3753
|
# description: "__string",
|
3742
3754
|
# name: "__string", # required
|
3755
|
+
# pricing_plan: "ON_DEMAND", # accepts ON_DEMAND, RESERVED
|
3756
|
+
# reservation_plan_settings: {
|
3757
|
+
# commitment: "ONE_YEAR", # required, accepts ONE_YEAR
|
3758
|
+
# renewal_type: "AUTO_RENEW", # required, accepts AUTO_RENEW, EXPIRE
|
3759
|
+
# reserved_slots: 1, # required
|
3760
|
+
# },
|
3743
3761
|
# tags: {
|
3744
3762
|
# "__string" => "__string",
|
3745
3763
|
# },
|
@@ -3752,7 +3770,14 @@ module Aws::MediaConvert
|
|
3752
3770
|
# resp.queue.description #=> String
|
3753
3771
|
# resp.queue.last_updated #=> Time
|
3754
3772
|
# resp.queue.name #=> String
|
3773
|
+
# resp.queue.pricing_plan #=> String, one of "ON_DEMAND", "RESERVED"
|
3755
3774
|
# resp.queue.progressing_jobs_count #=> Integer
|
3775
|
+
# resp.queue.reservation_plan.commitment #=> String, one of "ONE_YEAR"
|
3776
|
+
# resp.queue.reservation_plan.expires_at #=> Time
|
3777
|
+
# resp.queue.reservation_plan.purchased_at #=> Time
|
3778
|
+
# resp.queue.reservation_plan.renewal_type #=> String, one of "AUTO_RENEW", "EXPIRE"
|
3779
|
+
# resp.queue.reservation_plan.reserved_slots #=> Integer
|
3780
|
+
# resp.queue.reservation_plan.status #=> String, one of "ACTIVE", "EXPIRED"
|
3756
3781
|
# resp.queue.status #=> String, one of "ACTIVE", "PAUSED"
|
3757
3782
|
# resp.queue.submitted_jobs_count #=> Integer
|
3758
3783
|
# resp.queue.type #=> String, one of "SYSTEM", "CUSTOM"
|
@@ -5421,7 +5446,7 @@ module Aws::MediaConvert
|
|
5421
5446
|
# Retrieve the JSON for a specific queue.
|
5422
5447
|
#
|
5423
5448
|
# @option params [required, String] :name
|
5424
|
-
# The name of the queue.
|
5449
|
+
# The name of the queue that you want information about.
|
5425
5450
|
#
|
5426
5451
|
# @return [Types::GetQueueResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5427
5452
|
#
|
@@ -5440,7 +5465,14 @@ module Aws::MediaConvert
|
|
5440
5465
|
# resp.queue.description #=> String
|
5441
5466
|
# resp.queue.last_updated #=> Time
|
5442
5467
|
# resp.queue.name #=> String
|
5468
|
+
# resp.queue.pricing_plan #=> String, one of "ON_DEMAND", "RESERVED"
|
5443
5469
|
# resp.queue.progressing_jobs_count #=> Integer
|
5470
|
+
# resp.queue.reservation_plan.commitment #=> String, one of "ONE_YEAR"
|
5471
|
+
# resp.queue.reservation_plan.expires_at #=> Time
|
5472
|
+
# resp.queue.reservation_plan.purchased_at #=> Time
|
5473
|
+
# resp.queue.reservation_plan.renewal_type #=> String, one of "AUTO_RENEW", "EXPIRE"
|
5474
|
+
# resp.queue.reservation_plan.reserved_slots #=> Integer
|
5475
|
+
# resp.queue.reservation_plan.status #=> String, one of "ACTIVE", "EXPIRED"
|
5444
5476
|
# resp.queue.status #=> String, one of "ACTIVE", "PAUSED"
|
5445
5477
|
# resp.queue.submitted_jobs_count #=> Integer
|
5446
5478
|
# resp.queue.type #=> String, one of "SYSTEM", "CUSTOM"
|
@@ -7125,7 +7157,14 @@ module Aws::MediaConvert
|
|
7125
7157
|
# resp.queues[0].description #=> String
|
7126
7158
|
# resp.queues[0].last_updated #=> Time
|
7127
7159
|
# resp.queues[0].name #=> String
|
7160
|
+
# resp.queues[0].pricing_plan #=> String, one of "ON_DEMAND", "RESERVED"
|
7128
7161
|
# resp.queues[0].progressing_jobs_count #=> Integer
|
7162
|
+
# resp.queues[0].reservation_plan.commitment #=> String, one of "ONE_YEAR"
|
7163
|
+
# resp.queues[0].reservation_plan.expires_at #=> Time
|
7164
|
+
# resp.queues[0].reservation_plan.purchased_at #=> Time
|
7165
|
+
# resp.queues[0].reservation_plan.renewal_type #=> String, one of "AUTO_RENEW", "EXPIRE"
|
7166
|
+
# resp.queues[0].reservation_plan.reserved_slots #=> Integer
|
7167
|
+
# resp.queues[0].reservation_plan.status #=> String, one of "ACTIVE", "EXPIRED"
|
7129
7168
|
# resp.queues[0].status #=> String, one of "ACTIVE", "PAUSED"
|
7130
7169
|
# resp.queues[0].submitted_jobs_count #=> Integer
|
7131
7170
|
# resp.queues[0].type #=> String, one of "SYSTEM", "CUSTOM"
|
@@ -9403,12 +9442,17 @@ module Aws::MediaConvert
|
|
9403
9442
|
# The new description for the queue, if you are changing it.
|
9404
9443
|
#
|
9405
9444
|
# @option params [required, String] :name
|
9406
|
-
# The name of the queue you are modifying.
|
9445
|
+
# The name of the queue that you are modifying.
|
9446
|
+
#
|
9447
|
+
# @option params [Types::ReservationPlanSettings] :reservation_plan_settings
|
9448
|
+
# Details about the pricing plan for your reserved queue. Required for
|
9449
|
+
# reserved queues and not applicable to on-demand queues.
|
9407
9450
|
#
|
9408
9451
|
# @option params [String] :status
|
9409
|
-
#
|
9410
|
-
#
|
9411
|
-
#
|
9452
|
+
# Pause or activate a queue by changing its status between ACTIVE and
|
9453
|
+
# PAUSED. If you pause a queue, jobs in that queue won't begin. Jobs
|
9454
|
+
# that are running when you pause the queue continue to run until they
|
9455
|
+
# finish or result in an error.
|
9412
9456
|
#
|
9413
9457
|
# @return [Types::UpdateQueueResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9414
9458
|
#
|
@@ -9419,6 +9463,11 @@ module Aws::MediaConvert
|
|
9419
9463
|
# resp = client.update_queue({
|
9420
9464
|
# description: "__string",
|
9421
9465
|
# name: "__string", # required
|
9466
|
+
# reservation_plan_settings: {
|
9467
|
+
# commitment: "ONE_YEAR", # required, accepts ONE_YEAR
|
9468
|
+
# renewal_type: "AUTO_RENEW", # required, accepts AUTO_RENEW, EXPIRE
|
9469
|
+
# reserved_slots: 1, # required
|
9470
|
+
# },
|
9422
9471
|
# status: "ACTIVE", # accepts ACTIVE, PAUSED
|
9423
9472
|
# })
|
9424
9473
|
#
|
@@ -9429,7 +9478,14 @@ module Aws::MediaConvert
|
|
9429
9478
|
# resp.queue.description #=> String
|
9430
9479
|
# resp.queue.last_updated #=> Time
|
9431
9480
|
# resp.queue.name #=> String
|
9481
|
+
# resp.queue.pricing_plan #=> String, one of "ON_DEMAND", "RESERVED"
|
9432
9482
|
# resp.queue.progressing_jobs_count #=> Integer
|
9483
|
+
# resp.queue.reservation_plan.commitment #=> String, one of "ONE_YEAR"
|
9484
|
+
# resp.queue.reservation_plan.expires_at #=> Time
|
9485
|
+
# resp.queue.reservation_plan.purchased_at #=> Time
|
9486
|
+
# resp.queue.reservation_plan.renewal_type #=> String, one of "AUTO_RENEW", "EXPIRE"
|
9487
|
+
# resp.queue.reservation_plan.reserved_slots #=> Integer
|
9488
|
+
# resp.queue.reservation_plan.status #=> String, one of "ACTIVE", "EXPIRED"
|
9433
9489
|
# resp.queue.status #=> String, one of "ACTIVE", "PAUSED"
|
9434
9490
|
# resp.queue.submitted_jobs_count #=> Integer
|
9435
9491
|
# resp.queue.type #=> String, one of "SYSTEM", "CUSTOM"
|
@@ -9456,7 +9512,7 @@ module Aws::MediaConvert
|
|
9456
9512
|
params: params,
|
9457
9513
|
config: config)
|
9458
9514
|
context[:gem_name] = 'aws-sdk-mediaconvert'
|
9459
|
-
context[:gem_version] = '1.
|
9515
|
+
context[:gem_version] = '1.13.0'
|
9460
9516
|
Seahorse::Client::Request.new(handlers, context)
|
9461
9517
|
end
|
9462
9518
|
|
@@ -81,6 +81,7 @@ module Aws::MediaConvert
|
|
81
81
|
ColorSpace = Shapes::StringShape.new(name: 'ColorSpace')
|
82
82
|
ColorSpaceConversion = Shapes::StringShape.new(name: 'ColorSpaceConversion')
|
83
83
|
ColorSpaceUsage = Shapes::StringShape.new(name: 'ColorSpaceUsage')
|
84
|
+
Commitment = Shapes::StringShape.new(name: 'Commitment')
|
84
85
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
85
86
|
ContainerSettings = Shapes::StructureShape.new(name: 'ContainerSettings')
|
86
87
|
ContainerType = Shapes::StringShape.new(name: 'ContainerType')
|
@@ -327,6 +328,7 @@ module Aws::MediaConvert
|
|
327
328
|
Preset = Shapes::StructureShape.new(name: 'Preset')
|
328
329
|
PresetListBy = Shapes::StringShape.new(name: 'PresetListBy')
|
329
330
|
PresetSettings = Shapes::StructureShape.new(name: 'PresetSettings')
|
331
|
+
PricingPlan = Shapes::StringShape.new(name: 'PricingPlan')
|
330
332
|
ProresCodecProfile = Shapes::StringShape.new(name: 'ProresCodecProfile')
|
331
333
|
ProresFramerateControl = Shapes::StringShape.new(name: 'ProresFramerateControl')
|
332
334
|
ProresFramerateConversionAlgorithm = Shapes::StringShape.new(name: 'ProresFramerateConversionAlgorithm')
|
@@ -340,6 +342,10 @@ module Aws::MediaConvert
|
|
340
342
|
QueueStatus = Shapes::StringShape.new(name: 'QueueStatus')
|
341
343
|
Rectangle = Shapes::StructureShape.new(name: 'Rectangle')
|
342
344
|
RemixSettings = Shapes::StructureShape.new(name: 'RemixSettings')
|
345
|
+
RenewalType = Shapes::StringShape.new(name: 'RenewalType')
|
346
|
+
ReservationPlan = Shapes::StructureShape.new(name: 'ReservationPlan')
|
347
|
+
ReservationPlanSettings = Shapes::StructureShape.new(name: 'ReservationPlanSettings')
|
348
|
+
ReservationPlanStatus = Shapes::StringShape.new(name: 'ReservationPlanStatus')
|
343
349
|
ResourceTags = Shapes::StructureShape.new(name: 'ResourceTags')
|
344
350
|
RespondToAfd = Shapes::StringShape.new(name: 'RespondToAfd')
|
345
351
|
ScalingBehavior = Shapes::StringShape.new(name: 'ScalingBehavior')
|
@@ -722,6 +728,8 @@ module Aws::MediaConvert
|
|
722
728
|
|
723
729
|
CreateQueueRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
724
730
|
CreateQueueRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
731
|
+
CreateQueueRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, location_name: "pricingPlan"))
|
732
|
+
CreateQueueRequest.add_member(:reservation_plan_settings, Shapes::ShapeRef.new(shape: ReservationPlanSettings, location_name: "reservationPlanSettings"))
|
725
733
|
CreateQueueRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
726
734
|
CreateQueueRequest.struct_class = Types::CreateQueueRequest
|
727
735
|
|
@@ -1381,7 +1389,9 @@ module Aws::MediaConvert
|
|
1381
1389
|
Queue.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
1382
1390
|
Queue.add_member(:last_updated, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "lastUpdated"))
|
1383
1391
|
Queue.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
1392
|
+
Queue.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, location_name: "pricingPlan"))
|
1384
1393
|
Queue.add_member(:progressing_jobs_count, Shapes::ShapeRef.new(shape: __integer, location_name: "progressingJobsCount"))
|
1394
|
+
Queue.add_member(:reservation_plan, Shapes::ShapeRef.new(shape: ReservationPlan, location_name: "reservationPlan"))
|
1385
1395
|
Queue.add_member(:status, Shapes::ShapeRef.new(shape: QueueStatus, location_name: "status"))
|
1386
1396
|
Queue.add_member(:submitted_jobs_count, Shapes::ShapeRef.new(shape: __integer, location_name: "submittedJobsCount"))
|
1387
1397
|
Queue.add_member(:type, Shapes::ShapeRef.new(shape: Type, location_name: "type"))
|
@@ -1398,6 +1408,19 @@ module Aws::MediaConvert
|
|
1398
1408
|
RemixSettings.add_member(:channels_out, Shapes::ShapeRef.new(shape: __integerMin1Max8, location_name: "channelsOut"))
|
1399
1409
|
RemixSettings.struct_class = Types::RemixSettings
|
1400
1410
|
|
1411
|
+
ReservationPlan.add_member(:commitment, Shapes::ShapeRef.new(shape: Commitment, location_name: "commitment"))
|
1412
|
+
ReservationPlan.add_member(:expires_at, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "expiresAt"))
|
1413
|
+
ReservationPlan.add_member(:purchased_at, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "purchasedAt"))
|
1414
|
+
ReservationPlan.add_member(:renewal_type, Shapes::ShapeRef.new(shape: RenewalType, location_name: "renewalType"))
|
1415
|
+
ReservationPlan.add_member(:reserved_slots, Shapes::ShapeRef.new(shape: __integer, location_name: "reservedSlots"))
|
1416
|
+
ReservationPlan.add_member(:status, Shapes::ShapeRef.new(shape: ReservationPlanStatus, location_name: "status"))
|
1417
|
+
ReservationPlan.struct_class = Types::ReservationPlan
|
1418
|
+
|
1419
|
+
ReservationPlanSettings.add_member(:commitment, Shapes::ShapeRef.new(shape: Commitment, required: true, location_name: "commitment"))
|
1420
|
+
ReservationPlanSettings.add_member(:renewal_type, Shapes::ShapeRef.new(shape: RenewalType, required: true, location_name: "renewalType"))
|
1421
|
+
ReservationPlanSettings.add_member(:reserved_slots, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "reservedSlots"))
|
1422
|
+
ReservationPlanSettings.struct_class = Types::ReservationPlanSettings
|
1423
|
+
|
1401
1424
|
ResourceTags.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
1402
1425
|
ResourceTags.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
1403
1426
|
ResourceTags.struct_class = Types::ResourceTags
|
@@ -1477,6 +1500,7 @@ module Aws::MediaConvert
|
|
1477
1500
|
|
1478
1501
|
UpdateQueueRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
1479
1502
|
UpdateQueueRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "name"))
|
1503
|
+
UpdateQueueRequest.add_member(:reservation_plan_settings, Shapes::ShapeRef.new(shape: ReservationPlanSettings, location_name: "reservationPlanSettings"))
|
1480
1504
|
UpdateQueueRequest.add_member(:status, Shapes::ShapeRef.new(shape: QueueStatus, location_name: "status"))
|
1481
1505
|
UpdateQueueRequest.struct_class = Types::UpdateQueueRequest
|
1482
1506
|
|
@@ -1036,9 +1036,6 @@ module Aws::MediaConvert
|
|
1036
1036
|
# @return [String]
|
1037
1037
|
#
|
1038
1038
|
# @!attribute [rw] language_description
|
1039
|
-
# Human readable information to indicate captions available for
|
1040
|
-
# players (eg. English, or Spanish). Alphanumeric characters, spaces,
|
1041
|
-
# and underscore are legal.
|
1042
1039
|
# @return [String]
|
1043
1040
|
#
|
1044
1041
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/CaptionDescription AWS API Documentation
|
@@ -3938,19 +3935,39 @@ module Aws::MediaConvert
|
|
3938
3935
|
# {
|
3939
3936
|
# description: "__string",
|
3940
3937
|
# name: "__string", # required
|
3938
|
+
# pricing_plan: "ON_DEMAND", # accepts ON_DEMAND, RESERVED
|
3939
|
+
# reservation_plan_settings: {
|
3940
|
+
# commitment: "ONE_YEAR", # required, accepts ONE_YEAR
|
3941
|
+
# renewal_type: "AUTO_RENEW", # required, accepts AUTO_RENEW, EXPIRE
|
3942
|
+
# reserved_slots: 1, # required
|
3943
|
+
# },
|
3941
3944
|
# tags: {
|
3942
3945
|
# "__string" => "__string",
|
3943
3946
|
# },
|
3944
3947
|
# }
|
3945
3948
|
#
|
3946
3949
|
# @!attribute [rw] description
|
3947
|
-
# Optional. A description of the queue you are creating.
|
3950
|
+
# Optional. A description of the queue that you are creating.
|
3948
3951
|
# @return [String]
|
3949
3952
|
#
|
3950
3953
|
# @!attribute [rw] name
|
3951
|
-
# The name of the queue you are creating.
|
3954
|
+
# The name of the queue that you are creating.
|
3952
3955
|
# @return [String]
|
3953
3956
|
#
|
3957
|
+
# @!attribute [rw] pricing_plan
|
3958
|
+
# Optional; default is on-demand. Specifies whether the pricing plan
|
3959
|
+
# for the queue is on-demand or reserved. The pricing plan for the
|
3960
|
+
# queue determines whether you pay on-demand or reserved pricing for
|
3961
|
+
# the transcoding jobs you run through the queue. For reserved queue
|
3962
|
+
# pricing, you must set up a contract. You can create a reserved queue
|
3963
|
+
# contract through the AWS Elemental MediaConvert console.
|
3964
|
+
# @return [String]
|
3965
|
+
#
|
3966
|
+
# @!attribute [rw] reservation_plan_settings
|
3967
|
+
# Details about the pricing plan for your reserved queue. Required for
|
3968
|
+
# reserved queues and not applicable to on-demand queues.
|
3969
|
+
# @return [Types::ReservationPlanSettings]
|
3970
|
+
#
|
3954
3971
|
# @!attribute [rw] tags
|
3955
3972
|
# The tags that you want to add to the resource. You can tag resources
|
3956
3973
|
# with a key-value pair or with only a key.
|
@@ -3961,18 +3978,21 @@ module Aws::MediaConvert
|
|
3961
3978
|
class CreateQueueRequest < Struct.new(
|
3962
3979
|
:description,
|
3963
3980
|
:name,
|
3981
|
+
:pricing_plan,
|
3982
|
+
:reservation_plan_settings,
|
3964
3983
|
:tags)
|
3965
3984
|
include Aws::Structure
|
3966
3985
|
end
|
3967
3986
|
|
3968
|
-
# Successful create queue requests
|
3987
|
+
# Successful create queue requests return the name of the queue that you
|
3969
3988
|
# just created and information about it.
|
3970
3989
|
#
|
3971
3990
|
# @!attribute [rw] queue
|
3972
|
-
#
|
3973
|
-
#
|
3974
|
-
#
|
3975
|
-
#
|
3991
|
+
# You can use queues to manage the resources that are available to
|
3992
|
+
# your AWS account for running multiple transcoding jobs at the same
|
3993
|
+
# time. If you don't specify a queue, the service sends all jobs
|
3994
|
+
# through the default queue. For more information, see
|
3995
|
+
# https://docs.aws.amazon.com/mediaconvert/latest/ug/about-resource-allocation-and-job-prioritization.html.
|
3976
3996
|
# @return [Types::Queue]
|
3977
3997
|
#
|
3978
3998
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/CreateQueueResponse AWS API Documentation
|
@@ -4207,7 +4227,7 @@ module Aws::MediaConvert
|
|
4207
4227
|
#
|
4208
4228
|
class DeletePresetResponse < Aws::EmptyStructure; end
|
4209
4229
|
|
4210
|
-
# Delete a queue by sending a request with the queue name
|
4230
|
+
# Delete a queue by sending a request with the queue name.
|
4211
4231
|
#
|
4212
4232
|
# @note When making an API call, you may pass DeleteQueueRequest
|
4213
4233
|
# data as a hash:
|
@@ -4227,8 +4247,8 @@ module Aws::MediaConvert
|
|
4227
4247
|
include Aws::Structure
|
4228
4248
|
end
|
4229
4249
|
|
4230
|
-
# Delete queue requests
|
4231
|
-
#
|
4250
|
+
# Delete queue requests return an OK message or error message with an
|
4251
|
+
# empty body.
|
4232
4252
|
#
|
4233
4253
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/DeleteQueueResponse AWS API Documentation
|
4234
4254
|
#
|
@@ -5049,7 +5069,8 @@ module Aws::MediaConvert
|
|
5049
5069
|
include Aws::Structure
|
5050
5070
|
end
|
5051
5071
|
|
5052
|
-
#
|
5072
|
+
# Get information about a queue by sending a request with the queue
|
5073
|
+
# name.
|
5053
5074
|
#
|
5054
5075
|
# @note When making an API call, you may pass GetQueueRequest
|
5055
5076
|
# data as a hash:
|
@@ -5059,7 +5080,7 @@ module Aws::MediaConvert
|
|
5059
5080
|
# }
|
5060
5081
|
#
|
5061
5082
|
# @!attribute [rw] name
|
5062
|
-
# The name of the queue.
|
5083
|
+
# The name of the queue that you want information about.
|
5063
5084
|
# @return [String]
|
5064
5085
|
#
|
5065
5086
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/GetQueueRequest AWS API Documentation
|
@@ -5069,14 +5090,15 @@ module Aws::MediaConvert
|
|
5069
5090
|
include Aws::Structure
|
5070
5091
|
end
|
5071
5092
|
|
5072
|
-
# Successful get queue requests
|
5073
|
-
# JSON.
|
5093
|
+
# Successful get queue requests return an OK message and information
|
5094
|
+
# about the queue in JSON.
|
5074
5095
|
#
|
5075
5096
|
# @!attribute [rw] queue
|
5076
|
-
#
|
5077
|
-
#
|
5078
|
-
#
|
5079
|
-
#
|
5097
|
+
# You can use queues to manage the resources that are available to
|
5098
|
+
# your AWS account for running multiple transcoding jobs at the same
|
5099
|
+
# time. If you don't specify a queue, the service sends all jobs
|
5100
|
+
# through the default queue. For more information, see
|
5101
|
+
# https://docs.aws.amazon.com/mediaconvert/latest/ug/about-resource-allocation-and-job-prioritization.html.
|
5080
5102
|
# @return [Types::Queue]
|
5081
5103
|
#
|
5082
5104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/GetQueueResponse AWS API Documentation
|
@@ -8982,7 +9004,7 @@ module Aws::MediaConvert
|
|
8982
9004
|
# @return [String]
|
8983
9005
|
#
|
8984
9006
|
# @!attribute [rw] queues
|
8985
|
-
# List of queues
|
9007
|
+
# List of queues.
|
8986
9008
|
# @return [Array<Types::Queue>]
|
8987
9009
|
#
|
8988
9010
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ListQueuesResponse AWS API Documentation
|
@@ -12181,49 +12203,66 @@ module Aws::MediaConvert
|
|
12181
12203
|
include Aws::Structure
|
12182
12204
|
end
|
12183
12205
|
|
12184
|
-
#
|
12185
|
-
#
|
12186
|
-
#
|
12187
|
-
#
|
12206
|
+
# You can use queues to manage the resources that are available to your
|
12207
|
+
# AWS account for running multiple transcoding jobs at the same time. If
|
12208
|
+
# you don't specify a queue, the service sends all jobs through the
|
12209
|
+
# default queue. For more information, see
|
12210
|
+
# https://docs.aws.amazon.com/mediaconvert/latest/ug/about-resource-allocation-and-job-prioritization.html.
|
12188
12211
|
#
|
12189
12212
|
# @!attribute [rw] arn
|
12190
12213
|
# An identifier for this resource that is unique within all of AWS.
|
12191
12214
|
# @return [String]
|
12192
12215
|
#
|
12193
12216
|
# @!attribute [rw] created_at
|
12194
|
-
# The
|
12217
|
+
# The time stamp in epoch seconds for queue creation.
|
12195
12218
|
# @return [Time]
|
12196
12219
|
#
|
12197
12220
|
# @!attribute [rw] description
|
12198
|
-
# An optional description you create for each queue.
|
12221
|
+
# An optional description that you create for each queue.
|
12199
12222
|
# @return [String]
|
12200
12223
|
#
|
12201
12224
|
# @!attribute [rw] last_updated
|
12202
|
-
# The
|
12225
|
+
# The time stamp in epoch seconds when the queue was last updated.
|
12203
12226
|
# @return [Time]
|
12204
12227
|
#
|
12205
12228
|
# @!attribute [rw] name
|
12206
|
-
# A name you create for each queue. Each name must be unique
|
12207
|
-
# your account.
|
12229
|
+
# A name that you create for each queue. Each name must be unique
|
12230
|
+
# within your account.
|
12231
|
+
# @return [String]
|
12232
|
+
#
|
12233
|
+
# @!attribute [rw] pricing_plan
|
12234
|
+
# Specifies whether the pricing plan for the queue is On-demand or
|
12235
|
+
# Reserved. The pricing plan for the queue determines whether you pay
|
12236
|
+
# On-demand or Reserved pricing for the transcoding jobs that you run
|
12237
|
+
# through the queue. For Reserved queue pricing, you must set up a
|
12238
|
+
# contract. You can create a Reserved queue contract through the AWS
|
12239
|
+
# Elemental MediaConvert console.
|
12208
12240
|
# @return [String]
|
12209
12241
|
#
|
12210
12242
|
# @!attribute [rw] progressing_jobs_count
|
12211
|
-
#
|
12243
|
+
# The estimated number of jobs with a PROGRESSING status.
|
12212
12244
|
# @return [Integer]
|
12213
12245
|
#
|
12246
|
+
# @!attribute [rw] reservation_plan
|
12247
|
+
# Details about the pricing plan for your reserved queue. Required for
|
12248
|
+
# reserved queues and not applicable to on-demand queues.
|
12249
|
+
# @return [Types::ReservationPlan]
|
12250
|
+
#
|
12214
12251
|
# @!attribute [rw] status
|
12215
|
-
# Queues can be ACTIVE or PAUSED. If you pause a queue,
|
12216
|
-
#
|
12217
|
-
# run until they finish or
|
12252
|
+
# Queues can be ACTIVE or PAUSED. If you pause a queue, the service
|
12253
|
+
# won't begin processing jobs in that queue. Jobs that are running
|
12254
|
+
# when you pause the queue continue to run until they finish or result
|
12255
|
+
# in an error.
|
12218
12256
|
# @return [String]
|
12219
12257
|
#
|
12220
12258
|
# @!attribute [rw] submitted_jobs_count
|
12221
|
-
#
|
12259
|
+
# The estimated number of jobs with a SUBMITTED status.
|
12222
12260
|
# @return [Integer]
|
12223
12261
|
#
|
12224
12262
|
# @!attribute [rw] type
|
12225
|
-
#
|
12226
|
-
#
|
12263
|
+
# Specifies whether this queue is system or custom. System queues are
|
12264
|
+
# built in. You can't modify or delete system queues. You can create
|
12265
|
+
# and modify custom queues.
|
12227
12266
|
# @return [String]
|
12228
12267
|
#
|
12229
12268
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Queue AWS API Documentation
|
@@ -12234,7 +12273,9 @@ module Aws::MediaConvert
|
|
12234
12273
|
:description,
|
12235
12274
|
:last_updated,
|
12236
12275
|
:name,
|
12276
|
+
:pricing_plan,
|
12237
12277
|
:progressing_jobs_count,
|
12278
|
+
:reservation_plan,
|
12238
12279
|
:status,
|
12239
12280
|
:submitted_jobs_count,
|
12240
12281
|
:type)
|
@@ -12330,6 +12371,95 @@ module Aws::MediaConvert
|
|
12330
12371
|
include Aws::Structure
|
12331
12372
|
end
|
12332
12373
|
|
12374
|
+
# Details about the pricing plan for your reserved queue. Required for
|
12375
|
+
# reserved queues and not applicable to on-demand queues.
|
12376
|
+
#
|
12377
|
+
# @!attribute [rw] commitment
|
12378
|
+
# The length of time that you commit to when you set up a pricing plan
|
12379
|
+
# contract for a reserved queue.
|
12380
|
+
# @return [String]
|
12381
|
+
#
|
12382
|
+
# @!attribute [rw] expires_at
|
12383
|
+
# The time stamp, in epoch seconds, for when the pricing plan for this
|
12384
|
+
# reserved queue expires.
|
12385
|
+
# @return [Time]
|
12386
|
+
#
|
12387
|
+
# @!attribute [rw] purchased_at
|
12388
|
+
# The time stamp in epoch seconds when the reserved queue's
|
12389
|
+
# reservation plan was created.
|
12390
|
+
# @return [Time]
|
12391
|
+
#
|
12392
|
+
# @!attribute [rw] renewal_type
|
12393
|
+
# Specifies whether the pricing plan contract for your reserved queue
|
12394
|
+
# automatically renews (AUTO\_RENEW) or expires (EXPIRE) at the end of
|
12395
|
+
# the contract period.
|
12396
|
+
# @return [String]
|
12397
|
+
#
|
12398
|
+
# @!attribute [rw] reserved_slots
|
12399
|
+
# Specifies the number of reserved transcode slots (RTSs) for this
|
12400
|
+
# queue. The number of RTS determines how many jobs the queue can
|
12401
|
+
# process in parallel; each RTS can process one job at a time. To
|
12402
|
+
# increase this number, create a replacement contract through the AWS
|
12403
|
+
# Elemental MediaConvert console.
|
12404
|
+
# @return [Integer]
|
12405
|
+
#
|
12406
|
+
# @!attribute [rw] status
|
12407
|
+
# Specifies whether the pricing plan for your reserved queue is ACTIVE
|
12408
|
+
# or EXPIRED.
|
12409
|
+
# @return [String]
|
12410
|
+
#
|
12411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ReservationPlan AWS API Documentation
|
12412
|
+
#
|
12413
|
+
class ReservationPlan < Struct.new(
|
12414
|
+
:commitment,
|
12415
|
+
:expires_at,
|
12416
|
+
:purchased_at,
|
12417
|
+
:renewal_type,
|
12418
|
+
:reserved_slots,
|
12419
|
+
:status)
|
12420
|
+
include Aws::Structure
|
12421
|
+
end
|
12422
|
+
|
12423
|
+
# Details about the pricing plan for your reserved queue. Required for
|
12424
|
+
# reserved queues and not applicable to on-demand queues.
|
12425
|
+
#
|
12426
|
+
# @note When making an API call, you may pass ReservationPlanSettings
|
12427
|
+
# data as a hash:
|
12428
|
+
#
|
12429
|
+
# {
|
12430
|
+
# commitment: "ONE_YEAR", # required, accepts ONE_YEAR
|
12431
|
+
# renewal_type: "AUTO_RENEW", # required, accepts AUTO_RENEW, EXPIRE
|
12432
|
+
# reserved_slots: 1, # required
|
12433
|
+
# }
|
12434
|
+
#
|
12435
|
+
# @!attribute [rw] commitment
|
12436
|
+
# The length of time that you commit to when you set up a pricing plan
|
12437
|
+
# contract for a reserved queue.
|
12438
|
+
# @return [String]
|
12439
|
+
#
|
12440
|
+
# @!attribute [rw] renewal_type
|
12441
|
+
# Specifies whether the pricing plan contract for your reserved queue
|
12442
|
+
# automatically renews (AUTO\_RENEW) or expires (EXPIRE) at the end of
|
12443
|
+
# the contract period.
|
12444
|
+
# @return [String]
|
12445
|
+
#
|
12446
|
+
# @!attribute [rw] reserved_slots
|
12447
|
+
# Specifies the number of reserved transcode slots (RTSs) for this
|
12448
|
+
# queue. The number of RTS determines how many jobs the queue can
|
12449
|
+
# process in parallel; each RTS can process one job at a time. To
|
12450
|
+
# increase this number, create a replacement contract through the AWS
|
12451
|
+
# Elemental MediaConvert console.
|
12452
|
+
# @return [Integer]
|
12453
|
+
#
|
12454
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ReservationPlanSettings AWS API Documentation
|
12455
|
+
#
|
12456
|
+
class ReservationPlanSettings < Struct.new(
|
12457
|
+
:commitment,
|
12458
|
+
:renewal_type,
|
12459
|
+
:reserved_slots)
|
12460
|
+
include Aws::Structure
|
12461
|
+
end
|
12462
|
+
|
12333
12463
|
# The Amazon Resource Name (ARN) and tags for an AWS Elemental
|
12334
12464
|
# MediaConvert resource.
|
12335
12465
|
#
|
@@ -14055,9 +14185,8 @@ module Aws::MediaConvert
|
|
14055
14185
|
include Aws::Structure
|
14056
14186
|
end
|
14057
14187
|
|
14058
|
-
# Modify a queue by sending a request with the queue name and any
|
14059
|
-
#
|
14060
|
-
# activate a queue by changing its status between ACTIVE and PAUSED.
|
14188
|
+
# Modify a queue by sending a request with the queue name and any
|
14189
|
+
# changes to the queue.
|
14061
14190
|
#
|
14062
14191
|
# @note When making an API call, you may pass UpdateQueueRequest
|
14063
14192
|
# data as a hash:
|
@@ -14065,6 +14194,11 @@ module Aws::MediaConvert
|
|
14065
14194
|
# {
|
14066
14195
|
# description: "__string",
|
14067
14196
|
# name: "__string", # required
|
14197
|
+
# reservation_plan_settings: {
|
14198
|
+
# commitment: "ONE_YEAR", # required, accepts ONE_YEAR
|
14199
|
+
# renewal_type: "AUTO_RENEW", # required, accepts AUTO_RENEW, EXPIRE
|
14200
|
+
# reserved_slots: 1, # required
|
14201
|
+
# },
|
14068
14202
|
# status: "ACTIVE", # accepts ACTIVE, PAUSED
|
14069
14203
|
# }
|
14070
14204
|
#
|
@@ -14073,13 +14207,19 @@ module Aws::MediaConvert
|
|
14073
14207
|
# @return [String]
|
14074
14208
|
#
|
14075
14209
|
# @!attribute [rw] name
|
14076
|
-
# The name of the queue you are modifying.
|
14210
|
+
# The name of the queue that you are modifying.
|
14077
14211
|
# @return [String]
|
14078
14212
|
#
|
14213
|
+
# @!attribute [rw] reservation_plan_settings
|
14214
|
+
# Details about the pricing plan for your reserved queue. Required for
|
14215
|
+
# reserved queues and not applicable to on-demand queues.
|
14216
|
+
# @return [Types::ReservationPlanSettings]
|
14217
|
+
#
|
14079
14218
|
# @!attribute [rw] status
|
14080
|
-
#
|
14081
|
-
#
|
14082
|
-
#
|
14219
|
+
# Pause or activate a queue by changing its status between ACTIVE and
|
14220
|
+
# PAUSED. If you pause a queue, jobs in that queue won't begin. Jobs
|
14221
|
+
# that are running when you pause the queue continue to run until they
|
14222
|
+
# finish or result in an error.
|
14083
14223
|
# @return [String]
|
14084
14224
|
#
|
14085
14225
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/UpdateQueueRequest AWS API Documentation
|
@@ -14087,17 +14227,20 @@ module Aws::MediaConvert
|
|
14087
14227
|
class UpdateQueueRequest < Struct.new(
|
14088
14228
|
:description,
|
14089
14229
|
:name,
|
14230
|
+
:reservation_plan_settings,
|
14090
14231
|
:status)
|
14091
14232
|
include Aws::Structure
|
14092
14233
|
end
|
14093
14234
|
|
14094
|
-
# Successful update queue requests
|
14235
|
+
# Successful update queue requests return the new queue information in
|
14236
|
+
# JSON.
|
14095
14237
|
#
|
14096
14238
|
# @!attribute [rw] queue
|
14097
|
-
#
|
14098
|
-
#
|
14099
|
-
#
|
14100
|
-
#
|
14239
|
+
# You can use queues to manage the resources that are available to
|
14240
|
+
# your AWS account for running multiple transcoding jobs at the same
|
14241
|
+
# time. If you don't specify a queue, the service sends all jobs
|
14242
|
+
# through the default queue. For more information, see
|
14243
|
+
# https://docs.aws.amazon.com/mediaconvert/latest/ug/about-resource-allocation-and-job-prioritization.html.
|
14101
14244
|
# @return [Types::Queue]
|
14102
14245
|
#
|
14103
14246
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/UpdateQueueResponse AWS API Documentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediaconvert
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.13.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-09-
|
11
|
+
date: 2018-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|