aws-sdk-elastictranscoder 1.21.0 → 1.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a691d5e094bbb8dac02724f2342ceec0421929393ca148536b617d9a9283800
4
- data.tar.gz: c97765733ef1574f95cd99f4d754c498f079fd9ff2fd1b77017f41287a7b2e46
3
+ metadata.gz: c4485226569165203760849198b1f1ba163719cd27c4a247cc2095e26b83fb77
4
+ data.tar.gz: 5fc9bde1815dd2af08be86af05a1c90d83bbd6259c4d839c65be97294076cd3c
5
5
  SHA512:
6
- metadata.gz: e7526387c61f58c2dab63686c49a3a18f25e2f97ff892b3de1b96a24d1a65c967543a5db08e8ec479530f505bd2aa982a1693952574552fc2690830f707ea209
7
- data.tar.gz: 8d04bc8310c069e7901b5fa4fa12de158f244d58eeebbeb4e3de0c49d324d4d48da6d91c867de7e43453ff73487a1110c56171dd9ccf321fdd56f2df3d12c51c
6
+ metadata.gz: 9195975db6c3242f6675ddfcbd2c1046f48269f03f4f27080d784da2d242d34eb377345f9a2bf2b1d4e86d78c39e5c8c035b2f158f2a841156e020e39f9ba8c2
7
+ data.tar.gz: 3e9df6c65aa9ee016d9ba389744db00870fb605c924862ed81c986b7f1623eb0796b8ec3afed2ba4f0603de8e27254bbd69fdb026ad27f0b55fe2438d6432d4a
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -5,6 +7,7 @@
5
7
  #
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
10
+
8
11
  require 'aws-sdk-core'
9
12
  require 'aws-sigv4'
10
13
 
@@ -43,9 +46,9 @@ require_relative 'aws-sdk-elastictranscoder/customizations'
43
46
  #
44
47
  # See {Errors} for more information.
45
48
  #
46
- # @service
49
+ # @!group service
47
50
  module Aws::ElasticTranscoder
48
51
 
49
- GEM_VERSION = '1.21.0'
52
+ GEM_VERSION = '1.26.0'
50
53
 
51
54
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::ElasticTranscoder
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::RestJson)
74
78
 
@@ -81,13 +85,28 @@ module Aws::ElasticTranscoder
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,10 +116,10 @@ module Aws::ElasticTranscoder
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
@@ -161,7 +180,7 @@ module Aws::ElasticTranscoder
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be a valid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -2972,7 +2991,7 @@ module Aws::ElasticTranscoder
2972
2991
  params: params,
2973
2992
  config: config)
2974
2993
  context[:gem_name] = 'aws-sdk-elastictranscoder'
2975
- context[:gem_version] = '1.21.0'
2994
+ context[:gem_version] = '1.26.0'
2976
2995
  Seahorse::Client::Request.new(handlers, context)
2977
2996
  end
2978
2997
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # WARNING ABOUT GENERATED CODE
2
3
  #
3
4
  # This file is generated. See the contributing for info on making contributions:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -128,6 +130,7 @@ module Aws::ElasticTranscoder
128
130
  :padding_policy,
129
131
  :album_art_format,
130
132
  :encryption)
133
+ SENSITIVE = []
131
134
  include Aws::Structure
132
135
  end
133
136
 
@@ -209,6 +212,7 @@ module Aws::ElasticTranscoder
209
212
  :bit_depth,
210
213
  :bit_order,
211
214
  :signed)
215
+ SENSITIVE = []
212
216
  include Aws::Structure
213
217
  end
214
218
 
@@ -414,6 +418,7 @@ module Aws::ElasticTranscoder
414
418
  :channels,
415
419
  :audio_packing_mode,
416
420
  :codec_options)
421
+ SENSITIVE = []
417
422
  include Aws::Structure
418
423
  end
419
424
 
@@ -435,6 +440,7 @@ module Aws::ElasticTranscoder
435
440
  #
436
441
  class CancelJobRequest < Struct.new(
437
442
  :id)
443
+ SENSITIVE = []
438
444
  include Aws::Structure
439
445
  end
440
446
 
@@ -521,6 +527,7 @@ module Aws::ElasticTranscoder
521
527
  :format,
522
528
  :pattern,
523
529
  :encryption)
530
+ SENSITIVE = []
524
531
  include Aws::Structure
525
532
  end
526
533
 
@@ -589,6 +596,7 @@ module Aws::ElasticTranscoder
589
596
  :time_offset,
590
597
  :label,
591
598
  :encryption)
599
+ SENSITIVE = []
592
600
  include Aws::Structure
593
601
  end
594
602
 
@@ -666,6 +674,7 @@ module Aws::ElasticTranscoder
666
674
  :merge_policy,
667
675
  :caption_sources,
668
676
  :caption_formats)
677
+ SENSITIVE = []
669
678
  include Aws::Structure
670
679
  end
671
680
 
@@ -688,6 +697,7 @@ module Aws::ElasticTranscoder
688
697
  #
689
698
  class Clip < Struct.new(
690
699
  :time_span)
700
+ SENSITIVE = []
691
701
  include Aws::Structure
692
702
  end
693
703
 
@@ -968,6 +978,7 @@ module Aws::ElasticTranscoder
968
978
  :composition,
969
979
  :captions,
970
980
  :encryption)
981
+ SENSITIVE = []
971
982
  include Aws::Structure
972
983
  end
973
984
 
@@ -1078,6 +1089,7 @@ module Aws::ElasticTranscoder
1078
1089
  :output_keys,
1079
1090
  :hls_content_protection,
1080
1091
  :play_ready_drm)
1092
+ SENSITIVE = []
1081
1093
  include Aws::Structure
1082
1094
  end
1083
1095
 
@@ -1441,6 +1453,7 @@ module Aws::ElasticTranscoder
1441
1453
  :output_key_prefix,
1442
1454
  :playlists,
1443
1455
  :user_metadata)
1456
+ SENSITIVE = []
1444
1457
  include Aws::Structure
1445
1458
  end
1446
1459
 
@@ -1453,6 +1466,7 @@ module Aws::ElasticTranscoder
1453
1466
  #
1454
1467
  class CreateJobResponse < Struct.new(
1455
1468
  :job)
1469
+ SENSITIVE = []
1456
1470
  include Aws::Structure
1457
1471
  end
1458
1472
 
@@ -1737,6 +1751,7 @@ module Aws::ElasticTranscoder
1737
1751
  :notifications,
1738
1752
  :content_config,
1739
1753
  :thumbnail_config)
1754
+ SENSITIVE = []
1740
1755
  include Aws::Structure
1741
1756
  end
1742
1757
 
@@ -1760,6 +1775,7 @@ module Aws::ElasticTranscoder
1760
1775
  class CreatePipelineResponse < Struct.new(
1761
1776
  :pipeline,
1762
1777
  :warnings)
1778
+ SENSITIVE = []
1763
1779
  include Aws::Structure
1764
1780
  end
1765
1781
 
@@ -1864,6 +1880,7 @@ module Aws::ElasticTranscoder
1864
1880
  :video,
1865
1881
  :audio,
1866
1882
  :thumbnails)
1883
+ SENSITIVE = []
1867
1884
  include Aws::Structure
1868
1885
  end
1869
1886
 
@@ -1885,6 +1902,7 @@ module Aws::ElasticTranscoder
1885
1902
  class CreatePresetResponse < Struct.new(
1886
1903
  :preset,
1887
1904
  :warning)
1905
+ SENSITIVE = []
1888
1906
  include Aws::Structure
1889
1907
  end
1890
1908
 
@@ -1903,6 +1921,7 @@ module Aws::ElasticTranscoder
1903
1921
  #
1904
1922
  class DeletePipelineRequest < Struct.new(
1905
1923
  :id)
1924
+ SENSITIVE = []
1906
1925
  include Aws::Structure
1907
1926
  end
1908
1927
 
@@ -1926,6 +1945,7 @@ module Aws::ElasticTranscoder
1926
1945
  #
1927
1946
  class DeletePresetRequest < Struct.new(
1928
1947
  :id)
1948
+ SENSITIVE = []
1929
1949
  include Aws::Structure
1930
1950
  end
1931
1951
 
@@ -1973,6 +1993,7 @@ module Aws::ElasticTranscoder
1973
1993
  :frame_rate,
1974
1994
  :file_size,
1975
1995
  :duration_millis)
1996
+ SENSITIVE = []
1976
1997
  include Aws::Structure
1977
1998
  end
1978
1999
 
@@ -2066,6 +2087,7 @@ module Aws::ElasticTranscoder
2066
2087
  :key,
2067
2088
  :key_md_5,
2068
2089
  :initialization_vector)
2090
+ SENSITIVE = []
2069
2091
  include Aws::Structure
2070
2092
  end
2071
2093
 
@@ -2146,6 +2168,7 @@ module Aws::ElasticTranscoder
2146
2168
  :initialization_vector,
2147
2169
  :license_acquisition_url,
2148
2170
  :key_storage_policy)
2171
+ SENSITIVE = []
2149
2172
  include Aws::Structure
2150
2173
  end
2151
2174
 
@@ -2207,6 +2230,7 @@ module Aws::ElasticTranscoder
2207
2230
  class InputCaptions < Struct.new(
2208
2231
  :merge_policy,
2209
2232
  :caption_sources)
2233
+ SENSITIVE = []
2210
2234
  include Aws::Structure
2211
2235
  end
2212
2236
 
@@ -2330,6 +2354,7 @@ module Aws::ElasticTranscoder
2330
2354
  :status,
2331
2355
  :user_metadata,
2332
2356
  :timing)
2357
+ SENSITIVE = []
2333
2358
  include Aws::Structure
2334
2359
  end
2335
2360
 
@@ -2386,6 +2411,7 @@ module Aws::ElasticTranscoder
2386
2411
  class JobAlbumArt < Struct.new(
2387
2412
  :merge_policy,
2388
2413
  :artwork)
2414
+ SENSITIVE = []
2389
2415
  include Aws::Structure
2390
2416
  end
2391
2417
 
@@ -2580,6 +2606,7 @@ module Aws::ElasticTranscoder
2580
2606
  :time_span,
2581
2607
  :input_captions,
2582
2608
  :detected_properties)
2609
+ SENSITIVE = []
2583
2610
  include Aws::Structure
2584
2611
  end
2585
2612
 
@@ -2866,6 +2893,7 @@ module Aws::ElasticTranscoder
2866
2893
  :captions,
2867
2894
  :encryption,
2868
2895
  :applied_color_space_conversion)
2896
+ SENSITIVE = []
2869
2897
  include Aws::Structure
2870
2898
  end
2871
2899
 
@@ -2916,6 +2944,7 @@ module Aws::ElasticTranscoder
2916
2944
  :preset_watermark_id,
2917
2945
  :input_key,
2918
2946
  :encryption)
2947
+ SENSITIVE = []
2919
2948
  include Aws::Structure
2920
2949
  end
2921
2950
 
@@ -2955,6 +2984,7 @@ module Aws::ElasticTranscoder
2955
2984
  :pipeline_id,
2956
2985
  :ascending,
2957
2986
  :page_token)
2987
+ SENSITIVE = []
2958
2988
  include Aws::Structure
2959
2989
  end
2960
2990
 
@@ -2974,6 +3004,7 @@ module Aws::ElasticTranscoder
2974
3004
  class ListJobsByPipelineResponse < Struct.new(
2975
3005
  :jobs,
2976
3006
  :next_page_token)
3007
+ SENSITIVE = []
2977
3008
  include Aws::Structure
2978
3009
  end
2979
3010
 
@@ -3010,6 +3041,7 @@ module Aws::ElasticTranscoder
3010
3041
  :status,
3011
3042
  :ascending,
3012
3043
  :page_token)
3044
+ SENSITIVE = []
3013
3045
  include Aws::Structure
3014
3046
  end
3015
3047
 
@@ -3029,6 +3061,7 @@ module Aws::ElasticTranscoder
3029
3061
  class ListJobsByStatusResponse < Struct.new(
3030
3062
  :jobs,
3031
3063
  :next_page_token)
3064
+ SENSITIVE = []
3032
3065
  include Aws::Structure
3033
3066
  end
3034
3067
 
@@ -3057,6 +3090,7 @@ module Aws::ElasticTranscoder
3057
3090
  class ListPipelinesRequest < Struct.new(
3058
3091
  :ascending,
3059
3092
  :page_token)
3093
+ SENSITIVE = []
3060
3094
  include Aws::Structure
3061
3095
  end
3062
3096
 
@@ -3076,6 +3110,7 @@ module Aws::ElasticTranscoder
3076
3110
  class ListPipelinesResponse < Struct.new(
3077
3111
  :pipelines,
3078
3112
  :next_page_token)
3113
+ SENSITIVE = []
3079
3114
  include Aws::Structure
3080
3115
  end
3081
3116
 
@@ -3104,6 +3139,7 @@ module Aws::ElasticTranscoder
3104
3139
  class ListPresetsRequest < Struct.new(
3105
3140
  :ascending,
3106
3141
  :page_token)
3142
+ SENSITIVE = []
3107
3143
  include Aws::Structure
3108
3144
  end
3109
3145
 
@@ -3123,6 +3159,7 @@ module Aws::ElasticTranscoder
3123
3159
  class ListPresetsResponse < Struct.new(
3124
3160
  :presets,
3125
3161
  :next_page_token)
3162
+ SENSITIVE = []
3126
3163
  include Aws::Structure
3127
3164
  end
3128
3165
 
@@ -3168,6 +3205,7 @@ module Aws::ElasticTranscoder
3168
3205
  :completed,
3169
3206
  :warning,
3170
3207
  :error)
3208
+ SENSITIVE = []
3171
3209
  include Aws::Structure
3172
3210
  end
3173
3211
 
@@ -3226,6 +3264,7 @@ module Aws::ElasticTranscoder
3226
3264
  :grantee_type,
3227
3265
  :grantee,
3228
3266
  :access)
3267
+ SENSITIVE = []
3229
3268
  include Aws::Structure
3230
3269
  end
3231
3270
 
@@ -3421,6 +3460,7 @@ module Aws::ElasticTranscoder
3421
3460
  :notifications,
3422
3461
  :content_config,
3423
3462
  :thumbnail_config)
3463
+ SENSITIVE = []
3424
3464
  include Aws::Structure
3425
3465
  end
3426
3466
 
@@ -3494,6 +3534,7 @@ module Aws::ElasticTranscoder
3494
3534
  :bucket,
3495
3535
  :storage_class,
3496
3536
  :permissions)
3537
+ SENSITIVE = []
3497
3538
  include Aws::Structure
3498
3539
  end
3499
3540
 
@@ -3575,6 +3616,7 @@ module Aws::ElasticTranscoder
3575
3616
  :key_id,
3576
3617
  :initialization_vector,
3577
3618
  :license_acquisition_url)
3619
+ SENSITIVE = []
3578
3620
  include Aws::Structure
3579
3621
  end
3580
3622
 
@@ -3675,6 +3717,7 @@ module Aws::ElasticTranscoder
3675
3717
  :play_ready_drm,
3676
3718
  :status,
3677
3719
  :status_detail)
3720
+ SENSITIVE = []
3678
3721
  include Aws::Structure
3679
3722
  end
3680
3723
 
@@ -3738,6 +3781,7 @@ module Aws::ElasticTranscoder
3738
3781
  :video,
3739
3782
  :thumbnails,
3740
3783
  :type)
3784
+ SENSITIVE = []
3741
3785
  include Aws::Structure
3742
3786
  end
3743
3787
 
@@ -3956,6 +4000,7 @@ module Aws::ElasticTranscoder
3956
4000
  :vertical_offset,
3957
4001
  :opacity,
3958
4002
  :target)
4003
+ SENSITIVE = []
3959
4004
  include Aws::Structure
3960
4005
  end
3961
4006
 
@@ -3975,6 +4020,7 @@ module Aws::ElasticTranscoder
3975
4020
  #
3976
4021
  class ReadJobRequest < Struct.new(
3977
4022
  :id)
4023
+ SENSITIVE = []
3978
4024
  include Aws::Structure
3979
4025
  end
3980
4026
 
@@ -3987,6 +4033,7 @@ module Aws::ElasticTranscoder
3987
4033
  #
3988
4034
  class ReadJobResponse < Struct.new(
3989
4035
  :job)
4036
+ SENSITIVE = []
3990
4037
  include Aws::Structure
3991
4038
  end
3992
4039
 
@@ -4005,6 +4052,7 @@ module Aws::ElasticTranscoder
4005
4052
  #
4006
4053
  class ReadPipelineRequest < Struct.new(
4007
4054
  :id)
4055
+ SENSITIVE = []
4008
4056
  include Aws::Structure
4009
4057
  end
4010
4058
 
@@ -4027,6 +4075,7 @@ module Aws::ElasticTranscoder
4027
4075
  class ReadPipelineResponse < Struct.new(
4028
4076
  :pipeline,
4029
4077
  :warnings)
4078
+ SENSITIVE = []
4030
4079
  include Aws::Structure
4031
4080
  end
4032
4081
 
@@ -4046,6 +4095,7 @@ module Aws::ElasticTranscoder
4046
4095
  #
4047
4096
  class ReadPresetRequest < Struct.new(
4048
4097
  :id)
4098
+ SENSITIVE = []
4049
4099
  include Aws::Structure
4050
4100
  end
4051
4101
 
@@ -4058,6 +4108,7 @@ module Aws::ElasticTranscoder
4058
4108
  #
4059
4109
  class ReadPresetResponse < Struct.new(
4060
4110
  :preset)
4111
+ SENSITIVE = []
4061
4112
  include Aws::Structure
4062
4113
  end
4063
4114
 
@@ -4109,6 +4160,7 @@ module Aws::ElasticTranscoder
4109
4160
  :input_bucket,
4110
4161
  :output_bucket,
4111
4162
  :topics)
4163
+ SENSITIVE = []
4112
4164
  include Aws::Structure
4113
4165
  end
4114
4166
 
@@ -4128,6 +4180,7 @@ module Aws::ElasticTranscoder
4128
4180
  class TestRoleResponse < Struct.new(
4129
4181
  :success,
4130
4182
  :messages)
4183
+ SENSITIVE = []
4131
4184
  include Aws::Structure
4132
4185
  end
4133
4186
 
@@ -4253,6 +4306,7 @@ module Aws::ElasticTranscoder
4253
4306
  :max_height,
4254
4307
  :sizing_policy,
4255
4308
  :padding_policy)
4309
+ SENSITIVE = []
4256
4310
  include Aws::Structure
4257
4311
  end
4258
4312
 
@@ -4289,6 +4343,7 @@ module Aws::ElasticTranscoder
4289
4343
  class TimeSpan < Struct.new(
4290
4344
  :start_time,
4291
4345
  :duration)
4346
+ SENSITIVE = []
4292
4347
  include Aws::Structure
4293
4348
  end
4294
4349
 
@@ -4311,6 +4366,7 @@ module Aws::ElasticTranscoder
4311
4366
  :submit_time_millis,
4312
4367
  :start_time_millis,
4313
4368
  :finish_time_millis)
4369
+ SENSITIVE = []
4314
4370
  include Aws::Structure
4315
4371
  end
4316
4372
 
@@ -4366,6 +4422,7 @@ module Aws::ElasticTranscoder
4366
4422
  class UpdatePipelineNotificationsRequest < Struct.new(
4367
4423
  :id,
4368
4424
  :notifications)
4425
+ SENSITIVE = []
4369
4426
  include Aws::Structure
4370
4427
  end
4371
4428
 
@@ -4378,6 +4435,7 @@ module Aws::ElasticTranscoder
4378
4435
  #
4379
4436
  class UpdatePipelineNotificationsResponse < Struct.new(
4380
4437
  :pipeline)
4438
+ SENSITIVE = []
4381
4439
  include Aws::Structure
4382
4440
  end
4383
4441
 
@@ -4636,6 +4694,7 @@ module Aws::ElasticTranscoder
4636
4694
  :notifications,
4637
4695
  :content_config,
4638
4696
  :thumbnail_config)
4697
+ SENSITIVE = []
4639
4698
  include Aws::Structure
4640
4699
  end
4641
4700
 
@@ -4658,6 +4717,7 @@ module Aws::ElasticTranscoder
4658
4717
  class UpdatePipelineResponse < Struct.new(
4659
4718
  :pipeline,
4660
4719
  :warnings)
4720
+ SENSITIVE = []
4661
4721
  include Aws::Structure
4662
4722
  end
4663
4723
 
@@ -4686,6 +4746,7 @@ module Aws::ElasticTranscoder
4686
4746
  class UpdatePipelineStatusRequest < Struct.new(
4687
4747
  :id,
4688
4748
  :status)
4749
+ SENSITIVE = []
4689
4750
  include Aws::Structure
4690
4751
  end
4691
4752
 
@@ -4699,6 +4760,7 @@ module Aws::ElasticTranscoder
4699
4760
  #
4700
4761
  class UpdatePipelineStatusResponse < Struct.new(
4701
4762
  :pipeline)
4763
+ SENSITIVE = []
4702
4764
  include Aws::Structure
4703
4765
  end
4704
4766
 
@@ -5233,6 +5295,7 @@ module Aws::ElasticTranscoder
5233
5295
  :sizing_policy,
5234
5296
  :padding_policy,
5235
5297
  :watermarks)
5298
+ SENSITIVE = []
5236
5299
  include Aws::Structure
5237
5300
  end
5238
5301
 
@@ -5259,6 +5322,7 @@ module Aws::ElasticTranscoder
5259
5322
  class Warning < Struct.new(
5260
5323
  :code,
5261
5324
  :message)
5325
+ SENSITIVE = []
5262
5326
  include Aws::Structure
5263
5327
  end
5264
5328
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
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.21.0
4
+ version: 1.26.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: 2020-05-28 00:00:00.000000000 Z
11
+ date: 2020-09-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.71.0
22
+ version: 3.99.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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement