google-apis-transcoder_v1 0.21.0 → 0.23.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d7e4003ab0872775b30e71e45ccec997db46b846bcc395845dd1e6956bd9196
|
4
|
+
data.tar.gz: 7f0c038ac7b3d080f0ad9eaa4fab769b75047425de557645ccd4019c751c3185
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 685d6a89851d622856e0adb605c885f89b70278521bc67522fcc30553ba34c5cfc667f0065b2646d0c62025b67db61c2cb30e34056a418fece1bdf7ac7ff76f9
|
7
|
+
data.tar.gz: 6a0c4e8d050b6c464d957224531e76f85c44d955ccad895eed8a7719c351c026d36dd36119bb9b7a1576cf401d139a7753d28a5b09f685c65e43052c733ca72f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-transcoder_v1
|
2
2
|
|
3
|
+
### v0.23.0 (2024-02-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240124
|
6
|
+
* Regenerated using generator version 0.13.1
|
7
|
+
|
8
|
+
### v0.22.0 (2024-01-22)
|
9
|
+
|
10
|
+
* Regenerated using generator version 0.13.0
|
11
|
+
|
3
12
|
### v0.21.0 (2023-09-17)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20230906
|
@@ -869,6 +869,11 @@ module Google
|
|
869
869
|
# @return [Fixnum]
|
870
870
|
attr_accessor :height_pixels
|
871
871
|
|
872
|
+
# Convert the input video to a Hybrid Log Gamma (HLG) video.
|
873
|
+
# Corresponds to the JSON property `hlg`
|
874
|
+
# @return [Google::Apis::TranscoderV1::H264ColorFormatHlg]
|
875
|
+
attr_accessor :hlg
|
876
|
+
|
872
877
|
# Pixel format to use. The default is `yuv420p`. Supported pixel formats: - `
|
873
878
|
# yuv420p` pixel format - `yuv422p` pixel format - `yuv444p` pixel format - `
|
874
879
|
# yuv420p10` 10-bit HDR pixel format - `yuv422p10` 10-bit HDR pixel format - `
|
@@ -901,6 +906,11 @@ module Google
|
|
901
906
|
# @return [String]
|
902
907
|
attr_accessor :rate_control_mode
|
903
908
|
|
909
|
+
# Convert the input video to a Standard Dynamic Range (SDR) video.
|
910
|
+
# Corresponds to the JSON property `sdr`
|
911
|
+
# @return [Google::Apis::TranscoderV1::H264ColorFormatSdr]
|
912
|
+
attr_accessor :sdr
|
913
|
+
|
904
914
|
# Enforces the specified codec tune. The available options are [FFmpeg-
|
905
915
|
# compatible](https://trac.ffmpeg.org/wiki/Encode/H.264#Tune). Note that certain
|
906
916
|
# values for this field may cause the transcoder to override other fields you
|
@@ -951,10 +961,12 @@ module Google
|
|
951
961
|
@gop_duration = args[:gop_duration] if args.key?(:gop_duration)
|
952
962
|
@gop_frame_count = args[:gop_frame_count] if args.key?(:gop_frame_count)
|
953
963
|
@height_pixels = args[:height_pixels] if args.key?(:height_pixels)
|
964
|
+
@hlg = args[:hlg] if args.key?(:hlg)
|
954
965
|
@pixel_format = args[:pixel_format] if args.key?(:pixel_format)
|
955
966
|
@preset = args[:preset] if args.key?(:preset)
|
956
967
|
@profile = args[:profile] if args.key?(:profile)
|
957
968
|
@rate_control_mode = args[:rate_control_mode] if args.key?(:rate_control_mode)
|
969
|
+
@sdr = args[:sdr] if args.key?(:sdr)
|
958
970
|
@tune = args[:tune] if args.key?(:tune)
|
959
971
|
@vbv_fullness_bits = args[:vbv_fullness_bits] if args.key?(:vbv_fullness_bits)
|
960
972
|
@vbv_size_bits = args[:vbv_size_bits] if args.key?(:vbv_size_bits)
|
@@ -962,6 +974,32 @@ module Google
|
|
962
974
|
end
|
963
975
|
end
|
964
976
|
|
977
|
+
# Convert the input video to a Hybrid Log Gamma (HLG) video.
|
978
|
+
class H264ColorFormatHlg
|
979
|
+
include Google::Apis::Core::Hashable
|
980
|
+
|
981
|
+
def initialize(**args)
|
982
|
+
update!(**args)
|
983
|
+
end
|
984
|
+
|
985
|
+
# Update properties of this object
|
986
|
+
def update!(**args)
|
987
|
+
end
|
988
|
+
end
|
989
|
+
|
990
|
+
# Convert the input video to a Standard Dynamic Range (SDR) video.
|
991
|
+
class H264ColorFormatSdr
|
992
|
+
include Google::Apis::Core::Hashable
|
993
|
+
|
994
|
+
def initialize(**args)
|
995
|
+
update!(**args)
|
996
|
+
end
|
997
|
+
|
998
|
+
# Update properties of this object
|
999
|
+
def update!(**args)
|
1000
|
+
end
|
1001
|
+
end
|
1002
|
+
|
965
1003
|
# H265 codec settings.
|
966
1004
|
class H265CodecSettings
|
967
1005
|
include Google::Apis::Core::Hashable
|
@@ -1036,6 +1074,11 @@ module Google
|
|
1036
1074
|
# @return [Fixnum]
|
1037
1075
|
attr_accessor :gop_frame_count
|
1038
1076
|
|
1077
|
+
# Convert the input video to a High Dynamic Range 10 (HDR10) video.
|
1078
|
+
# Corresponds to the JSON property `hdr10`
|
1079
|
+
# @return [Google::Apis::TranscoderV1::H265ColorFormatHdr10]
|
1080
|
+
attr_accessor :hdr10
|
1081
|
+
|
1039
1082
|
# The height of the video in pixels. Must be an even integer. When not specified,
|
1040
1083
|
# the height is adjusted to match the specified width and input aspect ratio.
|
1041
1084
|
# If both are omitted, the input height is used. For portrait videos that
|
@@ -1047,6 +1090,11 @@ module Google
|
|
1047
1090
|
# @return [Fixnum]
|
1048
1091
|
attr_accessor :height_pixels
|
1049
1092
|
|
1093
|
+
# Convert the input video to a Hybrid Log Gamma (HLG) video.
|
1094
|
+
# Corresponds to the JSON property `hlg`
|
1095
|
+
# @return [Google::Apis::TranscoderV1::H265ColorFormatHlg]
|
1096
|
+
attr_accessor :hlg
|
1097
|
+
|
1050
1098
|
# Pixel format to use. The default is `yuv420p`. Supported pixel formats: - `
|
1051
1099
|
# yuv420p` pixel format - `yuv422p` pixel format - `yuv444p` pixel format - `
|
1052
1100
|
# yuv420p10` 10-bit HDR pixel format - `yuv422p10` 10-bit HDR pixel format - `
|
@@ -1082,6 +1130,11 @@ module Google
|
|
1082
1130
|
# @return [String]
|
1083
1131
|
attr_accessor :rate_control_mode
|
1084
1132
|
|
1133
|
+
# Convert the input video to a Standard Dynamic Range (SDR) video.
|
1134
|
+
# Corresponds to the JSON property `sdr`
|
1135
|
+
# @return [Google::Apis::TranscoderV1::H265ColorFormatSdr]
|
1136
|
+
attr_accessor :sdr
|
1137
|
+
|
1085
1138
|
# Enforces the specified codec tune. The available options are [FFmpeg-
|
1086
1139
|
# compatible](https://trac.ffmpeg.org/wiki/Encode/H.265). Note that certain
|
1087
1140
|
# values for this field may cause the transcoder to override other fields you
|
@@ -1130,11 +1183,14 @@ module Google
|
|
1130
1183
|
@frame_rate = args[:frame_rate] if args.key?(:frame_rate)
|
1131
1184
|
@gop_duration = args[:gop_duration] if args.key?(:gop_duration)
|
1132
1185
|
@gop_frame_count = args[:gop_frame_count] if args.key?(:gop_frame_count)
|
1186
|
+
@hdr10 = args[:hdr10] if args.key?(:hdr10)
|
1133
1187
|
@height_pixels = args[:height_pixels] if args.key?(:height_pixels)
|
1188
|
+
@hlg = args[:hlg] if args.key?(:hlg)
|
1134
1189
|
@pixel_format = args[:pixel_format] if args.key?(:pixel_format)
|
1135
1190
|
@preset = args[:preset] if args.key?(:preset)
|
1136
1191
|
@profile = args[:profile] if args.key?(:profile)
|
1137
1192
|
@rate_control_mode = args[:rate_control_mode] if args.key?(:rate_control_mode)
|
1193
|
+
@sdr = args[:sdr] if args.key?(:sdr)
|
1138
1194
|
@tune = args[:tune] if args.key?(:tune)
|
1139
1195
|
@vbv_fullness_bits = args[:vbv_fullness_bits] if args.key?(:vbv_fullness_bits)
|
1140
1196
|
@vbv_size_bits = args[:vbv_size_bits] if args.key?(:vbv_size_bits)
|
@@ -1142,6 +1198,45 @@ module Google
|
|
1142
1198
|
end
|
1143
1199
|
end
|
1144
1200
|
|
1201
|
+
# Convert the input video to a High Dynamic Range 10 (HDR10) video.
|
1202
|
+
class H265ColorFormatHdr10
|
1203
|
+
include Google::Apis::Core::Hashable
|
1204
|
+
|
1205
|
+
def initialize(**args)
|
1206
|
+
update!(**args)
|
1207
|
+
end
|
1208
|
+
|
1209
|
+
# Update properties of this object
|
1210
|
+
def update!(**args)
|
1211
|
+
end
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
# Convert the input video to a Hybrid Log Gamma (HLG) video.
|
1215
|
+
class H265ColorFormatHlg
|
1216
|
+
include Google::Apis::Core::Hashable
|
1217
|
+
|
1218
|
+
def initialize(**args)
|
1219
|
+
update!(**args)
|
1220
|
+
end
|
1221
|
+
|
1222
|
+
# Update properties of this object
|
1223
|
+
def update!(**args)
|
1224
|
+
end
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
# Convert the input video to a Standard Dynamic Range (SDR) video.
|
1228
|
+
class H265ColorFormatSdr
|
1229
|
+
include Google::Apis::Core::Hashable
|
1230
|
+
|
1231
|
+
def initialize(**args)
|
1232
|
+
update!(**args)
|
1233
|
+
end
|
1234
|
+
|
1235
|
+
# Update properties of this object
|
1236
|
+
def update!(**args)
|
1237
|
+
end
|
1238
|
+
end
|
1239
|
+
|
1145
1240
|
# Overlaid image.
|
1146
1241
|
class Image
|
1147
1242
|
include Google::Apis::Core::Hashable
|
@@ -2203,6 +2298,11 @@ module Google
|
|
2203
2298
|
# @return [Fixnum]
|
2204
2299
|
attr_accessor :height_pixels
|
2205
2300
|
|
2301
|
+
# Convert the input video to a Hybrid Log Gamma (HLG) video.
|
2302
|
+
# Corresponds to the JSON property `hlg`
|
2303
|
+
# @return [Google::Apis::TranscoderV1::Vp9ColorFormatHlg]
|
2304
|
+
attr_accessor :hlg
|
2305
|
+
|
2206
2306
|
# Pixel format to use. The default is `yuv420p`. Supported pixel formats: - `
|
2207
2307
|
# yuv420p` pixel format - `yuv422p` pixel format - `yuv444p` pixel format - `
|
2208
2308
|
# yuv420p10` 10-bit HDR pixel format - `yuv422p10` 10-bit HDR pixel format - `
|
@@ -2227,6 +2327,11 @@ module Google
|
|
2227
2327
|
# @return [String]
|
2228
2328
|
attr_accessor :rate_control_mode
|
2229
2329
|
|
2330
|
+
# Convert the input video to a Standard Dynamic Range (SDR) video.
|
2331
|
+
# Corresponds to the JSON property `sdr`
|
2332
|
+
# @return [Google::Apis::TranscoderV1::Vp9ColorFormatSdr]
|
2333
|
+
attr_accessor :sdr
|
2334
|
+
|
2230
2335
|
# The width of the video in pixels. Must be an even integer. When not specified,
|
2231
2336
|
# the width is adjusted to match the specified height and input aspect ratio. If
|
2232
2337
|
# both are omitted, the input width is used. For portrait videos that contain
|
@@ -2250,13 +2355,41 @@ module Google
|
|
2250
2355
|
@gop_duration = args[:gop_duration] if args.key?(:gop_duration)
|
2251
2356
|
@gop_frame_count = args[:gop_frame_count] if args.key?(:gop_frame_count)
|
2252
2357
|
@height_pixels = args[:height_pixels] if args.key?(:height_pixels)
|
2358
|
+
@hlg = args[:hlg] if args.key?(:hlg)
|
2253
2359
|
@pixel_format = args[:pixel_format] if args.key?(:pixel_format)
|
2254
2360
|
@profile = args[:profile] if args.key?(:profile)
|
2255
2361
|
@rate_control_mode = args[:rate_control_mode] if args.key?(:rate_control_mode)
|
2362
|
+
@sdr = args[:sdr] if args.key?(:sdr)
|
2256
2363
|
@width_pixels = args[:width_pixels] if args.key?(:width_pixels)
|
2257
2364
|
end
|
2258
2365
|
end
|
2259
2366
|
|
2367
|
+
# Convert the input video to a Hybrid Log Gamma (HLG) video.
|
2368
|
+
class Vp9ColorFormatHlg
|
2369
|
+
include Google::Apis::Core::Hashable
|
2370
|
+
|
2371
|
+
def initialize(**args)
|
2372
|
+
update!(**args)
|
2373
|
+
end
|
2374
|
+
|
2375
|
+
# Update properties of this object
|
2376
|
+
def update!(**args)
|
2377
|
+
end
|
2378
|
+
end
|
2379
|
+
|
2380
|
+
# Convert the input video to a Standard Dynamic Range (SDR) video.
|
2381
|
+
class Vp9ColorFormatSdr
|
2382
|
+
include Google::Apis::Core::Hashable
|
2383
|
+
|
2384
|
+
def initialize(**args)
|
2385
|
+
update!(**args)
|
2386
|
+
end
|
2387
|
+
|
2388
|
+
# Update properties of this object
|
2389
|
+
def update!(**args)
|
2390
|
+
end
|
2391
|
+
end
|
2392
|
+
|
2260
2393
|
# Widevine configuration.
|
2261
2394
|
class Widevine
|
2262
2395
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module TranscoderV1
|
18
18
|
# Version of the google-apis-transcoder_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.23.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.13.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240124"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -172,12 +172,42 @@ module Google
|
|
172
172
|
include Google::Apis::Core::JsonObjectSupport
|
173
173
|
end
|
174
174
|
|
175
|
+
class H264ColorFormatHlg
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
181
|
+
class H264ColorFormatSdr
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
175
187
|
class H265CodecSettings
|
176
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
189
|
|
178
190
|
include Google::Apis::Core::JsonObjectSupport
|
179
191
|
end
|
180
192
|
|
193
|
+
class H265ColorFormatHdr10
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
199
|
+
class H265ColorFormatHlg
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
205
|
+
class H265ColorFormatSdr
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
181
211
|
class Image
|
182
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
213
|
|
@@ -334,6 +364,18 @@ module Google
|
|
334
364
|
include Google::Apis::Core::JsonObjectSupport
|
335
365
|
end
|
336
366
|
|
367
|
+
class Vp9ColorFormatHlg
|
368
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
|
+
|
370
|
+
include Google::Apis::Core::JsonObjectSupport
|
371
|
+
end
|
372
|
+
|
373
|
+
class Vp9ColorFormatSdr
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
+
|
376
|
+
include Google::Apis::Core::JsonObjectSupport
|
377
|
+
end
|
378
|
+
|
337
379
|
class Widevine
|
338
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
381
|
|
@@ -589,10 +631,14 @@ module Google
|
|
589
631
|
property :gop_duration, as: 'gopDuration'
|
590
632
|
property :gop_frame_count, as: 'gopFrameCount'
|
591
633
|
property :height_pixels, as: 'heightPixels'
|
634
|
+
property :hlg, as: 'hlg', class: Google::Apis::TranscoderV1::H264ColorFormatHlg, decorator: Google::Apis::TranscoderV1::H264ColorFormatHlg::Representation
|
635
|
+
|
592
636
|
property :pixel_format, as: 'pixelFormat'
|
593
637
|
property :preset, as: 'preset'
|
594
638
|
property :profile, as: 'profile'
|
595
639
|
property :rate_control_mode, as: 'rateControlMode'
|
640
|
+
property :sdr, as: 'sdr', class: Google::Apis::TranscoderV1::H264ColorFormatSdr, decorator: Google::Apis::TranscoderV1::H264ColorFormatSdr::Representation
|
641
|
+
|
596
642
|
property :tune, as: 'tune'
|
597
643
|
property :vbv_fullness_bits, as: 'vbvFullnessBits'
|
598
644
|
property :vbv_size_bits, as: 'vbvSizeBits'
|
@@ -600,6 +646,18 @@ module Google
|
|
600
646
|
end
|
601
647
|
end
|
602
648
|
|
649
|
+
class H264ColorFormatHlg
|
650
|
+
# @private
|
651
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
652
|
+
end
|
653
|
+
end
|
654
|
+
|
655
|
+
class H264ColorFormatSdr
|
656
|
+
# @private
|
657
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
658
|
+
end
|
659
|
+
end
|
660
|
+
|
603
661
|
class H265CodecSettings
|
604
662
|
# @private
|
605
663
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -613,11 +671,17 @@ module Google
|
|
613
671
|
property :frame_rate, as: 'frameRate'
|
614
672
|
property :gop_duration, as: 'gopDuration'
|
615
673
|
property :gop_frame_count, as: 'gopFrameCount'
|
674
|
+
property :hdr10, as: 'hdr10', class: Google::Apis::TranscoderV1::H265ColorFormatHdr10, decorator: Google::Apis::TranscoderV1::H265ColorFormatHdr10::Representation
|
675
|
+
|
616
676
|
property :height_pixels, as: 'heightPixels'
|
677
|
+
property :hlg, as: 'hlg', class: Google::Apis::TranscoderV1::H265ColorFormatHlg, decorator: Google::Apis::TranscoderV1::H265ColorFormatHlg::Representation
|
678
|
+
|
617
679
|
property :pixel_format, as: 'pixelFormat'
|
618
680
|
property :preset, as: 'preset'
|
619
681
|
property :profile, as: 'profile'
|
620
682
|
property :rate_control_mode, as: 'rateControlMode'
|
683
|
+
property :sdr, as: 'sdr', class: Google::Apis::TranscoderV1::H265ColorFormatSdr, decorator: Google::Apis::TranscoderV1::H265ColorFormatSdr::Representation
|
684
|
+
|
621
685
|
property :tune, as: 'tune'
|
622
686
|
property :vbv_fullness_bits, as: 'vbvFullnessBits'
|
623
687
|
property :vbv_size_bits, as: 'vbvSizeBits'
|
@@ -625,6 +689,24 @@ module Google
|
|
625
689
|
end
|
626
690
|
end
|
627
691
|
|
692
|
+
class H265ColorFormatHdr10
|
693
|
+
# @private
|
694
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
695
|
+
end
|
696
|
+
end
|
697
|
+
|
698
|
+
class H265ColorFormatHlg
|
699
|
+
# @private
|
700
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
701
|
+
end
|
702
|
+
end
|
703
|
+
|
704
|
+
class H265ColorFormatSdr
|
705
|
+
# @private
|
706
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
707
|
+
end
|
708
|
+
end
|
709
|
+
|
628
710
|
class Image
|
629
711
|
# @private
|
630
712
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -915,13 +997,29 @@ module Google
|
|
915
997
|
property :gop_duration, as: 'gopDuration'
|
916
998
|
property :gop_frame_count, as: 'gopFrameCount'
|
917
999
|
property :height_pixels, as: 'heightPixels'
|
1000
|
+
property :hlg, as: 'hlg', class: Google::Apis::TranscoderV1::Vp9ColorFormatHlg, decorator: Google::Apis::TranscoderV1::Vp9ColorFormatHlg::Representation
|
1001
|
+
|
918
1002
|
property :pixel_format, as: 'pixelFormat'
|
919
1003
|
property :profile, as: 'profile'
|
920
1004
|
property :rate_control_mode, as: 'rateControlMode'
|
1005
|
+
property :sdr, as: 'sdr', class: Google::Apis::TranscoderV1::Vp9ColorFormatSdr, decorator: Google::Apis::TranscoderV1::Vp9ColorFormatSdr::Representation
|
1006
|
+
|
921
1007
|
property :width_pixels, as: 'widthPixels'
|
922
1008
|
end
|
923
1009
|
end
|
924
1010
|
|
1011
|
+
class Vp9ColorFormatHlg
|
1012
|
+
# @private
|
1013
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1014
|
+
end
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
class Vp9ColorFormatSdr
|
1018
|
+
# @private
|
1019
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1020
|
+
end
|
1021
|
+
end
|
1022
|
+
|
925
1023
|
class Widevine
|
926
1024
|
# @private
|
927
1025
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -33,6 +33,8 @@ module Google
|
|
33
33
|
#
|
34
34
|
# @see https://cloud.google.com/transcoder/docs/
|
35
35
|
class TranscoderService < Google::Apis::Core::BaseService
|
36
|
+
DEFAULT_ENDPOINT_TEMPLATE = "https://transcoder.$UNIVERSE_DOMAIN$/"
|
37
|
+
|
36
38
|
# @return [String]
|
37
39
|
# API key. Your API key identifies your project and provides you with API access,
|
38
40
|
# quota, and reports. Required unless you provide an OAuth 2.0 token.
|
@@ -44,7 +46,7 @@ module Google
|
|
44
46
|
attr_accessor :quota_user
|
45
47
|
|
46
48
|
def initialize
|
47
|
-
super(
|
49
|
+
super(DEFAULT_ENDPOINT_TEMPLATE, '',
|
48
50
|
client_name: 'google-apis-transcoder_v1',
|
49
51
|
client_version: Google::Apis::TranscoderV1::GEM_VERSION)
|
50
52
|
@batch_path = 'batch'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-transcoder_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.23.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.12.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.12.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-transcoder_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1/v0.23.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-transcoder_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.5.3
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Transcoder API V1
|