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: 86c0ac80dec4d669b4bd708c083081166dcdfea3dfb19ede9b04746f333b93cd
4
- data.tar.gz: 1c187a1ed04da258622c3f3bc952fd49410e6db7cbf31528363fd420a7dda29c
3
+ metadata.gz: 6a98dcff8d94f2daa418a4d1841cd528a8bc15f450bd8362524738a4a05602d7
4
+ data.tar.gz: 9c3c01d049adbeaf5171c2ba13669996930047158ff0e771bb8384106e7665d2
5
5
  SHA512:
6
- metadata.gz: 0f6166d24c2058da8c51c187f21bd6422140b945a9f2d0c414f7f88abaa704dbbf728a7322c997e3c38e872400b047c3e95255ffe62cc3172a39d35194d1df82
7
- data.tar.gz: a220c01162df808905d8e4e9abf8042309b829b909665eb57a04685761b514cf980d0276b7216a64e036a50a9abea26bd3cc0a8f45eda2efb9141d0735eff6e5
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.4.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.5.0"
22
+ GENERATOR_VERSION = "0.7.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220602"
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.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-13 00:00:00.000000000 Z
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.5'
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.5'
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.4.0
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: []