google-apis-transcoder_v1 0.3.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b75fb458dfddbca01cb595876066983aa50af68262ab1f67466ef68b997d7b1e
|
|
4
|
+
data.tar.gz: 3b6ca3292fd1dbe748c93551579144481da6ecd045d53be63f6ab8ce09d26057
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 463df24e48af46aa61e3563d8ef7aecf22a1b34327c29bef8dccf81d31d5cf834ede69a57573af876e9d682a6091b3a86014fd47286fe471183251a96a66d297
|
|
7
|
+
data.tar.gz: 85a86211ecfa36f69463bee5dbf493d8ebcf1359317f36a3c869810d42d8cd07780a1381c14e79026347235165f0e3bd7ca530a24bd53597f899557f7fa6a0d3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Release history for google-apis-transcoder_v1
|
|
2
2
|
|
|
3
|
+
### v0.6.0 (2022-06-30)
|
|
4
|
+
|
|
5
|
+
* Regenerated using generator version 0.8.0
|
|
6
|
+
|
|
7
|
+
### v0.5.0 (2022-06-21)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20220609
|
|
10
|
+
* Regenerated using generator version 0.7.0
|
|
11
|
+
|
|
12
|
+
### v0.4.0 (2022-06-11)
|
|
13
|
+
|
|
14
|
+
* Regenerated from discovery document revision 20220602
|
|
15
|
+
* Regenerated using generator version 0.5.0
|
|
16
|
+
|
|
3
17
|
### v0.3.0 (2022-04-06)
|
|
4
18
|
|
|
5
19
|
* Regenerated from discovery document revision 20220323
|
|
@@ -988,6 +988,12 @@ module Google
|
|
|
988
988
|
# @return [String]
|
|
989
989
|
attr_accessor :input_uri
|
|
990
990
|
|
|
991
|
+
# The labels associated with this job. You can use these to organize and group
|
|
992
|
+
# your jobs.
|
|
993
|
+
# Corresponds to the JSON property `labels`
|
|
994
|
+
# @return [Hash<String,String>]
|
|
995
|
+
attr_accessor :labels
|
|
996
|
+
|
|
991
997
|
# The resource name of the job. Format: `projects/`project_number`/locations/`
|
|
992
998
|
# location`/jobs/`job``
|
|
993
999
|
# Corresponds to the JSON property `name`
|
|
@@ -1038,6 +1044,7 @@ module Google
|
|
|
1038
1044
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
1039
1045
|
@error = args[:error] if args.key?(:error)
|
|
1040
1046
|
@input_uri = args[:input_uri] if args.key?(:input_uri)
|
|
1047
|
+
@labels = args[:labels] if args.key?(:labels)
|
|
1041
1048
|
@name = args[:name] if args.key?(:name)
|
|
1042
1049
|
@output_uri = args[:output_uri] if args.key?(:output_uri)
|
|
1043
1050
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
@@ -1098,7 +1105,8 @@ module Google
|
|
|
1098
1105
|
# @return [Google::Apis::TranscoderV1::PubsubDestination]
|
|
1099
1106
|
attr_accessor :pubsub_destination
|
|
1100
1107
|
|
|
1101
|
-
# List of output sprite sheets.
|
|
1108
|
+
# List of output sprite sheets. Spritesheets require at least one VideoStream in
|
|
1109
|
+
# the Jobconfig.
|
|
1102
1110
|
# Corresponds to the JSON property `spriteSheets`
|
|
1103
1111
|
# @return [Array<Google::Apis::TranscoderV1::SpriteSheet>]
|
|
1104
1112
|
attr_accessor :sprite_sheets
|
|
@@ -1131,6 +1139,12 @@ module Google
|
|
|
1131
1139
|
# @return [Google::Apis::TranscoderV1::JobConfig]
|
|
1132
1140
|
attr_accessor :config
|
|
1133
1141
|
|
|
1142
|
+
# The labels associated with this job template. You can use these to organize
|
|
1143
|
+
# and group your job templates.
|
|
1144
|
+
# Corresponds to the JSON property `labels`
|
|
1145
|
+
# @return [Hash<String,String>]
|
|
1146
|
+
attr_accessor :labels
|
|
1147
|
+
|
|
1134
1148
|
# The resource name of the job template. Format: `projects/`project_number`/
|
|
1135
1149
|
# locations/`location`/jobTemplates/`job_template``
|
|
1136
1150
|
# Corresponds to the JSON property `name`
|
|
@@ -1144,6 +1158,7 @@ module Google
|
|
|
1144
1158
|
# Update properties of this object
|
|
1145
1159
|
def update!(**args)
|
|
1146
1160
|
@config = args[:config] if args.key?(:config)
|
|
1161
|
+
@labels = args[:labels] if args.key?(:labels)
|
|
1147
1162
|
@name = args[:name] if args.key?(:name)
|
|
1148
1163
|
end
|
|
1149
1164
|
end
|
|
@@ -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.6.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.8.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220609"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -481,6 +481,7 @@ module Google
|
|
|
481
481
|
property :error, as: 'error', class: Google::Apis::TranscoderV1::Status, decorator: Google::Apis::TranscoderV1::Status::Representation
|
|
482
482
|
|
|
483
483
|
property :input_uri, as: 'inputUri'
|
|
484
|
+
hash :labels, as: 'labels'
|
|
484
485
|
property :name, as: 'name'
|
|
485
486
|
property :output_uri, as: 'outputUri'
|
|
486
487
|
property :start_time, as: 'startTime'
|
|
@@ -521,6 +522,7 @@ module Google
|
|
|
521
522
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
522
523
|
property :config, as: 'config', class: Google::Apis::TranscoderV1::JobConfig, decorator: Google::Apis::TranscoderV1::JobConfig::Representation
|
|
523
524
|
|
|
525
|
+
hash :labels, as: 'labels'
|
|
524
526
|
property :name, as: 'name'
|
|
525
527
|
end
|
|
526
528
|
end
|
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.6.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: 2022-04
|
|
11
|
+
date: 2022-07-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.7'
|
|
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.7'
|
|
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.6.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.3.
|
|
78
|
+
rubygems_version: 3.3.14
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Transcoder API V1
|