aws-sdk-elastictranscoder 1.65.0 → 1.67.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elastictranscoder/client.rb +24 -9
- data/lib/aws-sdk-elastictranscoder/types.rb +30 -44
- data/lib/aws-sdk-elastictranscoder.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 79777adfdf025e02fc7c5d355a24d31d51c1b608e8017c425f8acbec1771376e
|
4
|
+
data.tar.gz: b0ad3ed711429ec9dd31e9f73336b05aafd6d47da2878f3afe6da8f204eb56eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bebe5be0edaf05e7805f0b066c1ebe37edb37a6d1b009bc3e90e1413bb510a97f3c8124de1532f2c23a1c0bc87be107518f28a68ac56005b841be565cadb7fde
|
7
|
+
data.tar.gz: 85ee17f253240459cd99a4d28cbb57a3eeb44a98da694f2634a1c393b10d83617e5a8e93e1382b4f097f300db5aa41c0ea2fa1094728123173d4a5370c2ad849
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.67.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.66.0 (2024-11-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.65.0 (2024-11-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.67.0
|
@@ -257,11 +257,34 @@ module Aws::ElasticTranscoder
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -1177,7 +1200,6 @@ module Aws::ElasticTranscoder
|
|
1177
1200
|
# * **Group**: The value in the `Grantee` object is one of the
|
1178
1201
|
# following predefined Amazon S3 groups: `AllUsers`,
|
1179
1202
|
# `AuthenticatedUsers`, or `LogDelivery`.
|
1180
|
-
#
|
1181
1203
|
# * **Grantee**: The AWS user or group that you want to have access to
|
1182
1204
|
# transcoded files and playlists. To identify the user or group, you
|
1183
1205
|
# can specify the canonical user ID for an AWS account, an origin
|
@@ -1201,7 +1223,6 @@ module Aws::ElasticTranscoder
|
|
1201
1223
|
# * `FULL_CONTROL`: The grantee has `READ`, `READ_ACP`, and
|
1202
1224
|
# `WRITE_ACP` permissions for the objects that Elastic Transcoder
|
1203
1225
|
# adds to the Amazon S3 bucket.
|
1204
|
-
#
|
1205
1226
|
# * **StorageClass**: The Amazon S3 storage class, `Standard` or
|
1206
1227
|
# `ReducedRedundancy`, that you want Elastic Transcoder to assign to
|
1207
1228
|
# the video files and playlists that it stores in your Amazon S3
|
@@ -1245,7 +1266,6 @@ module Aws::ElasticTranscoder
|
|
1245
1266
|
# * **Group**: The value in the `Grantee` object is one of the
|
1246
1267
|
# following predefined Amazon S3 groups: `AllUsers`,
|
1247
1268
|
# `AuthenticatedUsers`, or `LogDelivery`.
|
1248
|
-
#
|
1249
1269
|
# * **Grantee**: The AWS user or group that you want to have access to
|
1250
1270
|
# thumbnail files. To identify the user or group, you can specify the
|
1251
1271
|
# canonical user ID for an AWS account, an origin access identity for
|
@@ -1269,7 +1289,6 @@ module Aws::ElasticTranscoder
|
|
1269
1289
|
# * `FULL_CONTROL`: The grantee has `READ`, `READ_ACP`, and
|
1270
1290
|
# `WRITE_ACP` permissions for the thumbnails that Elastic Transcoder
|
1271
1291
|
# adds to the Amazon S3 bucket.
|
1272
|
-
#
|
1273
1292
|
# * **StorageClass**: The Amazon S3 storage class, `Standard` or
|
1274
1293
|
# `ReducedRedundancy`, that you want Elastic Transcoder to assign to
|
1275
1294
|
# the thumbnails that it stores in your Amazon S3 bucket.
|
@@ -2766,7 +2785,6 @@ module Aws::ElasticTranscoder
|
|
2766
2785
|
# * **Group**: The value in the `Grantee` object is one of the
|
2767
2786
|
# following predefined Amazon S3 groups: `AllUsers`,
|
2768
2787
|
# `AuthenticatedUsers`, or `LogDelivery`.
|
2769
|
-
#
|
2770
2788
|
# * **Grantee**: The AWS user or group that you want to have access to
|
2771
2789
|
# transcoded files and playlists. To identify the user or group, you
|
2772
2790
|
# can specify the canonical user ID for an AWS account, an origin
|
@@ -2790,7 +2808,6 @@ module Aws::ElasticTranscoder
|
|
2790
2808
|
# * `FULL_CONTROL`: The grantee has `READ`, `READ_ACP`, and
|
2791
2809
|
# `WRITE_ACP` permissions for the objects that Elastic Transcoder
|
2792
2810
|
# adds to the Amazon S3 bucket.
|
2793
|
-
#
|
2794
2811
|
# * **StorageClass**: The Amazon S3 storage class, `Standard` or
|
2795
2812
|
# `ReducedRedundancy`, that you want Elastic Transcoder to assign to
|
2796
2813
|
# the video files and playlists that it stores in your Amazon S3
|
@@ -2834,7 +2851,6 @@ module Aws::ElasticTranscoder
|
|
2834
2851
|
# * **Group**: The value in the `Grantee` object is one of the
|
2835
2852
|
# following predefined Amazon S3 groups: `AllUsers`,
|
2836
2853
|
# `AuthenticatedUsers`, or `LogDelivery`.
|
2837
|
-
#
|
2838
2854
|
# * **Grantee**: The AWS user or group that you want to have access to
|
2839
2855
|
# thumbnail files. To identify the user or group, you can specify the
|
2840
2856
|
# canonical user ID for an AWS account, an origin access identity for
|
@@ -2858,7 +2874,6 @@ module Aws::ElasticTranscoder
|
|
2858
2874
|
# * `FULL_CONTROL`: The grantee has `READ`, `READ_ACP`, and
|
2859
2875
|
# `WRITE_ACP` permissions for the thumbnails that Elastic Transcoder
|
2860
2876
|
# adds to the Amazon S3 bucket.
|
2861
|
-
#
|
2862
2877
|
# * **StorageClass**: The Amazon S3 storage class, `Standard` or
|
2863
2878
|
# `ReducedRedundancy`, that you want Elastic Transcoder to assign to
|
2864
2879
|
# the thumbnails that it stores in your Amazon S3 bucket.
|
@@ -3116,7 +3131,7 @@ module Aws::ElasticTranscoder
|
|
3116
3131
|
tracer: tracer
|
3117
3132
|
)
|
3118
3133
|
context[:gem_name] = 'aws-sdk-elastictranscoder'
|
3119
|
-
context[:gem_version] = '1.
|
3134
|
+
context[:gem_version] = '1.67.0'
|
3120
3135
|
Seahorse::Client::Request.new(handlers, context)
|
3121
3136
|
end
|
3122
3137
|
|
@@ -417,7 +417,6 @@ module Aws::ElasticTranscoder
|
|
417
417
|
# * **For ogg**: None
|
418
418
|
#
|
419
419
|
# * **For webm**: None
|
420
|
-
#
|
421
420
|
# * **Valid Sidecar Caption Formats:** Elastic Transcoder supports
|
422
421
|
# dfxp (first div element only), scc, srt, and webvtt. If you want
|
423
422
|
# ttml or smpte-tt compatible captions, specify dfxp as your output
|
@@ -426,7 +425,6 @@ module Aws::ElasticTranscoder
|
|
426
425
|
# * **For FMP4**: dfxp
|
427
426
|
#
|
428
427
|
# * **Non-FMP4 outputs**: All sidecar types
|
429
|
-
#
|
430
428
|
# `fmp4` captions have an extension of `.ismt`
|
431
429
|
# @return [String]
|
432
430
|
#
|
@@ -1065,7 +1063,6 @@ module Aws::ElasticTranscoder
|
|
1065
1063
|
# * **Group**: The value in the `Grantee` object is one of the
|
1066
1064
|
# following predefined Amazon S3 groups: `AllUsers`,
|
1067
1065
|
# `AuthenticatedUsers`, or `LogDelivery`.
|
1068
|
-
#
|
1069
1066
|
# * **Grantee**: The AWS user or group that you want to have access to
|
1070
1067
|
# transcoded files and playlists. To identify the user or group, you
|
1071
1068
|
# can specify the canonical user ID for an AWS account, an origin
|
@@ -1089,7 +1086,6 @@ module Aws::ElasticTranscoder
|
|
1089
1086
|
# * `FULL_CONTROL`: The grantee has `READ`, `READ_ACP`, and
|
1090
1087
|
# `WRITE_ACP` permissions for the objects that Elastic Transcoder
|
1091
1088
|
# adds to the Amazon S3 bucket.
|
1092
|
-
#
|
1093
1089
|
# * **StorageClass**: The Amazon S3 storage class, `Standard` or
|
1094
1090
|
# `ReducedRedundancy`, that you want Elastic Transcoder to assign to
|
1095
1091
|
# the video files and playlists that it stores in your Amazon S3
|
@@ -1134,7 +1130,6 @@ module Aws::ElasticTranscoder
|
|
1134
1130
|
# * **Group**: The value in the `Grantee` object is one of the
|
1135
1131
|
# following predefined Amazon S3 groups: `AllUsers`,
|
1136
1132
|
# `AuthenticatedUsers`, or `LogDelivery`.
|
1137
|
-
#
|
1138
1133
|
# * **Grantee**: The AWS user or group that you want to have access to
|
1139
1134
|
# thumbnail files. To identify the user or group, you can specify
|
1140
1135
|
# the canonical user ID for an AWS account, an origin access
|
@@ -1158,7 +1153,6 @@ module Aws::ElasticTranscoder
|
|
1158
1153
|
# * `FULL_CONTROL`: The grantee has `READ`, `READ_ACP`, and
|
1159
1154
|
# `WRITE_ACP` permissions for the thumbnails that Elastic
|
1160
1155
|
# Transcoder adds to the Amazon S3 bucket.
|
1161
|
-
#
|
1162
1156
|
# * **StorageClass**: The Amazon S3 storage class, `Standard` or
|
1163
1157
|
# `ReducedRedundancy`, that you want Elastic Transcoder to assign to
|
1164
1158
|
# the thumbnails that it stores in your Amazon S3 bucket.
|
@@ -2523,7 +2517,6 @@ module Aws::ElasticTranscoder
|
|
2523
2517
|
#
|
2524
2518
|
# * `Group`: One of the following predefined Amazon S3 groups:
|
2525
2519
|
# `AllUsers`, `AuthenticatedUsers`, or `LogDelivery`.
|
2526
|
-
#
|
2527
2520
|
# * `Grantee`: The AWS user or group that you want to have access to
|
2528
2521
|
# transcoded files and playlists.
|
2529
2522
|
#
|
@@ -2542,7 +2535,6 @@ module Aws::ElasticTranscoder
|
|
2542
2535
|
# * `FULL_CONTROL`: The grantee has `READ`, `READ_ACP`, and
|
2543
2536
|
# `WRITE_ACP` permissions for the objects that Elastic
|
2544
2537
|
# Transcoder adds to the Amazon S3 bucket.
|
2545
|
-
#
|
2546
2538
|
# * **StorageClass**: The Amazon S3 storage class, Standard or
|
2547
2539
|
# ReducedRedundancy, that you want Elastic Transcoder to assign to
|
2548
2540
|
# the video files and playlists that it stores in your Amazon S3
|
@@ -2575,7 +2567,6 @@ module Aws::ElasticTranscoder
|
|
2575
2567
|
#
|
2576
2568
|
# * `Group`: One of the following predefined Amazon S3 groups:
|
2577
2569
|
# `AllUsers`, `AuthenticatedUsers`, or `LogDelivery`.
|
2578
|
-
#
|
2579
2570
|
# * `Grantee`: The AWS user or group that you want to have access to
|
2580
2571
|
# thumbnail files.
|
2581
2572
|
#
|
@@ -2595,7 +2586,6 @@ module Aws::ElasticTranscoder
|
|
2595
2586
|
# * `FULL_CONTROL`: The grantee has READ, READ\_ACP, and
|
2596
2587
|
# WRITE\_ACP permissions for the thumbnails that Elastic
|
2597
2588
|
# Transcoder adds to the Amazon S3 bucket.
|
2598
|
-
#
|
2599
2589
|
# * `StorageClass`: The Amazon S3 storage class, `Standard` or
|
2600
2590
|
# `ReducedRedundancy`, that you want Elastic Transcoder to assign to
|
2601
2591
|
# the thumbnails that it stores in your Amazon S3 bucket.
|
@@ -3588,7 +3578,6 @@ module Aws::ElasticTranscoder
|
|
3588
3578
|
# * **Group**: The value in the `Grantee` object is one of the
|
3589
3579
|
# following predefined Amazon S3 groups: `AllUsers`,
|
3590
3580
|
# `AuthenticatedUsers`, or `LogDelivery`.
|
3591
|
-
#
|
3592
3581
|
# * **Grantee**: The AWS user or group that you want to have access to
|
3593
3582
|
# transcoded files and playlists. To identify the user or group, you
|
3594
3583
|
# can specify the canonical user ID for an AWS account, an origin
|
@@ -3612,7 +3601,6 @@ module Aws::ElasticTranscoder
|
|
3612
3601
|
# * `FULL_CONTROL`: The grantee has `READ`, `READ_ACP`, and
|
3613
3602
|
# `WRITE_ACP` permissions for the objects that Elastic Transcoder
|
3614
3603
|
# adds to the Amazon S3 bucket.
|
3615
|
-
#
|
3616
3604
|
# * **StorageClass**: The Amazon S3 storage class, `Standard` or
|
3617
3605
|
# `ReducedRedundancy`, that you want Elastic Transcoder to assign to
|
3618
3606
|
# the video files and playlists that it stores in your Amazon S3
|
@@ -3657,7 +3645,6 @@ module Aws::ElasticTranscoder
|
|
3657
3645
|
# * **Group**: The value in the `Grantee` object is one of the
|
3658
3646
|
# following predefined Amazon S3 groups: `AllUsers`,
|
3659
3647
|
# `AuthenticatedUsers`, or `LogDelivery`.
|
3660
|
-
#
|
3661
3648
|
# * **Grantee**: The AWS user or group that you want to have access to
|
3662
3649
|
# thumbnail files. To identify the user or group, you can specify
|
3663
3650
|
# the canonical user ID for an AWS account, an origin access
|
@@ -3681,7 +3668,6 @@ module Aws::ElasticTranscoder
|
|
3681
3668
|
# * `FULL_CONTROL`: The grantee has `READ`, `READ_ACP`, and
|
3682
3669
|
# `WRITE_ACP` permissions for the thumbnails that Elastic
|
3683
3670
|
# Transcoder adds to the Amazon S3 bucket.
|
3684
|
-
#
|
3685
3671
|
# * **StorageClass**: The Amazon S3 storage class, `Standard` or
|
3686
3672
|
# `ReducedRedundancy`, that you want Elastic Transcoder to assign to
|
3687
3673
|
# the thumbnails that it stores in your Amazon S3 bucket.
|
@@ -3815,27 +3801,27 @@ module Aws::ElasticTranscoder
|
|
3815
3801
|
#
|
3816
3802
|
# * 1b - 396
|
3817
3803
|
#
|
3818
|
-
# * 1
|
3804
|
+
# * 1.1 - 900
|
3819
3805
|
#
|
3820
|
-
# * 1
|
3806
|
+
# * 1.2 - 2376
|
3821
3807
|
#
|
3822
|
-
# * 1
|
3808
|
+
# * 1.3 - 2376
|
3823
3809
|
#
|
3824
3810
|
# * 2 - 2376
|
3825
3811
|
#
|
3826
|
-
# * 2
|
3812
|
+
# * 2.1 - 4752
|
3827
3813
|
#
|
3828
|
-
# * 2
|
3814
|
+
# * 2.2 - 8100
|
3829
3815
|
#
|
3830
3816
|
# * 3 - 8100
|
3831
3817
|
#
|
3832
|
-
# * 3
|
3818
|
+
# * 3.1 - 18000
|
3833
3819
|
#
|
3834
|
-
# * 3
|
3820
|
+
# * 3.2 - 20480
|
3835
3821
|
#
|
3836
3822
|
# * 4 - 32768
|
3837
3823
|
#
|
3838
|
-
# * 4
|
3824
|
+
# * 4.1 - 32768
|
3839
3825
|
#
|
3840
3826
|
# **MaxBitRate (Optional, H.264/MPEG2/VP8/VP9 only)**
|
3841
3827
|
#
|
@@ -3989,23 +3975,23 @@ module Aws::ElasticTranscoder
|
|
3989
3975
|
#
|
3990
3976
|
# * 1b - 128 : 160
|
3991
3977
|
#
|
3992
|
-
# * 1
|
3978
|
+
# * 1.1 - 192 : 240
|
3993
3979
|
#
|
3994
|
-
# * 1
|
3980
|
+
# * 1.2 - 384 : 480
|
3995
3981
|
#
|
3996
|
-
# * 1
|
3982
|
+
# * 1.3 - 768 : 960
|
3997
3983
|
#
|
3998
3984
|
# * 2 - 2000 : 2500
|
3999
3985
|
#
|
4000
3986
|
# * 3 - 10000 : 12500
|
4001
3987
|
#
|
4002
|
-
# * 3
|
3988
|
+
# * 3.1 - 14000 : 17500
|
4003
3989
|
#
|
4004
|
-
# * 3
|
3990
|
+
# * 3.2 - 20000 : 25000
|
4005
3991
|
#
|
4006
3992
|
# * 4 - 20000 : 25000
|
4007
3993
|
#
|
4008
|
-
# * 4
|
3994
|
+
# * 4.1 - 50000 : 62500
|
4009
3995
|
# @return [String]
|
4010
3996
|
#
|
4011
3997
|
# @!attribute [rw] frame_rate
|
@@ -4038,27 +4024,27 @@ module Aws::ElasticTranscoder
|
|
4038
4024
|
#
|
4039
4025
|
# * 1b - 380160
|
4040
4026
|
#
|
4041
|
-
# * 1
|
4027
|
+
# * 1.1 - 76800
|
4042
4028
|
#
|
4043
|
-
# * 1
|
4029
|
+
# * 1.2 - 1536000
|
4044
4030
|
#
|
4045
|
-
# * 1
|
4031
|
+
# * 1.3 - 3041280
|
4046
4032
|
#
|
4047
4033
|
# * 2 - 3041280
|
4048
4034
|
#
|
4049
|
-
# * 2
|
4035
|
+
# * 2.1 - 5068800
|
4050
4036
|
#
|
4051
|
-
# * 2
|
4037
|
+
# * 2.2 - 5184000
|
4052
4038
|
#
|
4053
4039
|
# * 3 - 10368000
|
4054
4040
|
#
|
4055
|
-
# * 3
|
4041
|
+
# * 3.1 - 27648000
|
4056
4042
|
#
|
4057
|
-
# * 3
|
4043
|
+
# * 3.2 - 55296000
|
4058
4044
|
#
|
4059
4045
|
# * 4 - 62914560
|
4060
4046
|
#
|
4061
|
-
# * 4
|
4047
|
+
# * 4.1 - 62914560
|
4062
4048
|
# @return [String]
|
4063
4049
|
#
|
4064
4050
|
# @!attribute [rw] max_frame_rate
|
@@ -4109,27 +4095,27 @@ module Aws::ElasticTranscoder
|
|
4109
4095
|
#
|
4110
4096
|
# * 1b - 25344
|
4111
4097
|
#
|
4112
|
-
# * 1
|
4098
|
+
# * 1.1 - 101376
|
4113
4099
|
#
|
4114
|
-
# * 1
|
4100
|
+
# * 1.2 - 101376
|
4115
4101
|
#
|
4116
|
-
# * 1
|
4102
|
+
# * 1.3 - 101376
|
4117
4103
|
#
|
4118
4104
|
# * 2 - 101376
|
4119
4105
|
#
|
4120
|
-
# * 2
|
4106
|
+
# * 2.1 - 202752
|
4121
4107
|
#
|
4122
|
-
# * 2
|
4108
|
+
# * 2.2 - 404720
|
4123
4109
|
#
|
4124
4110
|
# * 3 - 404720
|
4125
4111
|
#
|
4126
|
-
# * 3
|
4112
|
+
# * 3.1 - 921600
|
4127
4113
|
#
|
4128
|
-
# * 3
|
4114
|
+
# * 3.2 - 1310720
|
4129
4115
|
#
|
4130
4116
|
# * 4 - 2097152
|
4131
4117
|
#
|
4132
|
-
# * 4
|
4118
|
+
# * 4.1 - 2097152
|
4133
4119
|
# @return [String]
|
4134
4120
|
#
|
4135
4121
|
# @!attribute [rw] aspect_ratio
|
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-elastictranscoder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.67.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:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|