google-apis-transcoder_v1 0.4.0 → 0.5.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: 6a98dcff8d94f2daa418a4d1841cd528a8bc15f450bd8362524738a4a05602d7
|
|
4
|
+
data.tar.gz: 9c3c01d049adbeaf5171c2ba13669996930047158ff0e771bb8384106e7665d2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5d8858ae298baba8c1072b526e003e14578deebf2a7f22a1b95d24819e4985ef6a52194d7a150a4ad519c7f3e85e9e0e49d73de59a204896d30481357ef6afe
|
|
7
|
+
data.tar.gz: fabcb4f31fd5be6b0b76a826e3157df72204ef1f7a6f0b6d1190ab4a20d9fd04ff068b0e97ccdc93908ddfc596169118598692ebdadb3630aac849f951c7079e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-transcoder_v1
|
|
2
2
|
|
|
3
|
+
### v0.5.0 (2022-06-21)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20220609
|
|
6
|
+
* Regenerated using generator version 0.7.0
|
|
7
|
+
|
|
3
8
|
### v0.4.0 (2022-06-11)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20220602
|
|
@@ -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)
|
|
@@ -1132,6 +1139,12 @@ module Google
|
|
|
1132
1139
|
# @return [Google::Apis::TranscoderV1::JobConfig]
|
|
1133
1140
|
attr_accessor :config
|
|
1134
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
|
+
|
|
1135
1148
|
# The resource name of the job template. Format: `projects/`project_number`/
|
|
1136
1149
|
# locations/`location`/jobTemplates/`job_template``
|
|
1137
1150
|
# Corresponds to the JSON property `name`
|
|
@@ -1145,6 +1158,7 @@ module Google
|
|
|
1145
1158
|
# Update properties of this object
|
|
1146
1159
|
def update!(**args)
|
|
1147
1160
|
@config = args[:config] if args.key?(:config)
|
|
1161
|
+
@labels = args[:labels] if args.key?(:labels)
|
|
1148
1162
|
@name = args[:name] if args.key?(:name)
|
|
1149
1163
|
end
|
|
1150
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.5.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.7.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.5.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-06-
|
|
11
|
+
date: 2022-06-27 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.6'
|
|
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.6'
|
|
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.5.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: []
|