Skip to content

Commit 9f077eb

Browse files
Regenerate transcoder client (googleapis#7716)
This PR was generated using Autosynth. 🌈 <details><summary>Log from Synthtool</summary> ``` 2021-04-07 04:00:55,372 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-java-client-services/synth.py. On branch autosynth-transcoder nothing to commit, working tree clean 2021-04-07 04:00:55,811 synthtool [DEBUG] > Cloning https://github.com/googleapis/discovery-artifact-manager.git. DEBUG:synthtool:Cloning https://github.com/googleapis/discovery-artifact-manager.git. 2021-04-07 04:00:56,196 synthtool [DEBUG] > Cleaning output directory. DEBUG:synthtool:Cleaning output directory. 2021-04-07 04:00:56,198 synthtool [DEBUG] > Installing dependencies. DEBUG:synthtool:Installing dependencies. 2021-04-07 04:00:57,883 synthtool [INFO] > Generating transcoder v1beta1. INFO:synthtool:Generating transcoder v1beta1. 2021-04-07 04:00:57,883 synthtool [INFO] > 1.31.0 INFO:synthtool: 1.31.0 WARNING:root:object without properties Empty: OrderedDict([(u'type', u'object'), (u'description', u'A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.'), (u'properties', OrderedDict()), (u'id', u'Empty')]) Writing json metadata to clients/google-api-services-transcoder/v1beta1.metadata.json 2021-04-07 04:00:58,755 synthtool [DEBUG] > Wrote metadata to clients/google-api-services-transcoder/synth.metadata. DEBUG:synthtool:Wrote metadata to clients/google-api-services-transcoder/synth.metadata. ``` </details> Full log will be available here: https://source.cloud.google.com/results/invocations/0f0f9f42-37d9-4799-926b-ac810e280369/targets - [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
1 parent ceaa7cd commit 9f077eb

File tree

6 files changed

+15
-30
lines changed

6 files changed

+15
-30
lines changed

clients/google-api-services-transcoder/v1beta1.metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"maven": {
33
"groupId": "com.google.apis",
44
"artifactId": "google-api-services-transcoder",
5-
"version": "v1beta1-rev20210323-1.31.0"
5+
"version": "v1beta1-rev20210405-1.31.0"
66
}
77
}

clients/google-api-services-transcoder/v1beta1/1.31.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-transcoder</artifactId>
25-
<version>v1beta1-rev20210323-1.31.0</version>
25+
<version>v1beta1-rev20210405-1.31.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
compile 'com.google.apis:google-api-services-transcoder:v1beta1-rev20210323-1.31.0'
38+
compile 'com.google.apis:google-api-services-transcoder:v1beta1-rev20210405-1.31.0'
3939
}
4040
```
4141

clients/google-api-services-transcoder/v1beta1/1.31.0/com/google/api/services/transcoder/v1beta1/model/VideoStream.java

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,8 @@ public final class VideoStream extends com.google.api.client.json.GenericJson {
104104
* Required. The target video frame rate in frames per second (FPS). Must be less than or equal to
105105
* 120. Will default to the input frame rate if larger than the input frame rate. The API will
106106
* generate an output FPS that is divisible by the input FPS, and smaller or equal to the target
107-
* FPS. The following table shows the computed video FPS given the target FPS (in parenthesis) and
108-
* input FPS (in the first column): ``` | | (30) | (60) | (25) | (50) |
109-
* |--------|--------|--------|------|------| | 240 | Fail | Fail | Fail | Fail | | 120 | 30 | 60
110-
* | 20 | 30 | | 100 | 25 | 50 | 20 | 30 | | 50 | 25 | 50 | 20 | 30 | | 60 | 30 | 60 | 20 | 30 | |
111-
* 59.94 | 29.97 | 59.94 | 20 | 30 | | 48 | 24 | 48 | 20 | 30 | | 30 | 30 | 30 | 20 | 30 | | 25 |
112-
* 25 | 25 | 20 | 30 | | 24 | 24 | 24 | 20 | 30 | | 23.976 | 23.976 | 23.976 | 20 | 30 | | 15 | 15
113-
* | 15 | 20 | 30 | | 12 | 12 | 12 | 20 | 30 | | 10 | 10 | 10 | 20 | 30 | ```
107+
* FPS. See [Calculate frame rate](https://cloud.google.com/transcoder/docs/concepts/frame-rate)
108+
* for more information.
114109
* The value may be {@code null}.
115110
*/
116111
@com.google.api.client.util.Key
@@ -386,13 +381,8 @@ public VideoStream setEntropyCoder(java.lang.String entropyCoder) {
386381
* Required. The target video frame rate in frames per second (FPS). Must be less than or equal to
387382
* 120. Will default to the input frame rate if larger than the input frame rate. The API will
388383
* generate an output FPS that is divisible by the input FPS, and smaller or equal to the target
389-
* FPS. The following table shows the computed video FPS given the target FPS (in parenthesis) and
390-
* input FPS (in the first column): ``` | | (30) | (60) | (25) | (50) |
391-
* |--------|--------|--------|------|------| | 240 | Fail | Fail | Fail | Fail | | 120 | 30 | 60
392-
* | 20 | 30 | | 100 | 25 | 50 | 20 | 30 | | 50 | 25 | 50 | 20 | 30 | | 60 | 30 | 60 | 20 | 30 | |
393-
* 59.94 | 29.97 | 59.94 | 20 | 30 | | 48 | 24 | 48 | 20 | 30 | | 30 | 30 | 30 | 20 | 30 | | 25 |
394-
* 25 | 25 | 20 | 30 | | 24 | 24 | 24 | 20 | 30 | | 23.976 | 23.976 | 23.976 | 20 | 30 | | 15 | 15
395-
* | 15 | 20 | 30 | | 12 | 12 | 12 | 20 | 30 | | 10 | 10 | 10 | 20 | 30 | ```
384+
* FPS. See [Calculate frame rate](https://cloud.google.com/transcoder/docs/concepts/frame-rate)
385+
* for more information.
396386
* @return value or {@code null} for none
397387
*/
398388
public java.lang.Double getFrameRate() {
@@ -403,13 +393,8 @@ public java.lang.Double getFrameRate() {
403393
* Required. The target video frame rate in frames per second (FPS). Must be less than or equal to
404394
* 120. Will default to the input frame rate if larger than the input frame rate. The API will
405395
* generate an output FPS that is divisible by the input FPS, and smaller or equal to the target
406-
* FPS. The following table shows the computed video FPS given the target FPS (in parenthesis) and
407-
* input FPS (in the first column): ``` | | (30) | (60) | (25) | (50) |
408-
* |--------|--------|--------|------|------| | 240 | Fail | Fail | Fail | Fail | | 120 | 30 | 60
409-
* | 20 | 30 | | 100 | 25 | 50 | 20 | 30 | | 50 | 25 | 50 | 20 | 30 | | 60 | 30 | 60 | 20 | 30 | |
410-
* 59.94 | 29.97 | 59.94 | 20 | 30 | | 48 | 24 | 48 | 20 | 30 | | 30 | 30 | 30 | 20 | 30 | | 25 |
411-
* 25 | 25 | 20 | 30 | | 24 | 24 | 24 | 20 | 30 | | 23.976 | 23.976 | 23.976 | 20 | 30 | | 15 | 15
412-
* | 15 | 20 | 30 | | 12 | 12 | 12 | 20 | 30 | | 10 | 10 | 10 | 20 | 30 | ```
396+
* FPS. See [Calculate frame rate](https://cloud.google.com/transcoder/docs/concepts/frame-rate)
397+
* for more information.
413398
* @param frameRate frameRate or {@code null} for none
414399
*/
415400
public VideoStream setFrameRate(java.lang.Double frameRate) {

clients/google-api-services-transcoder/v1beta1/1.31.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-transcoder</artifactId>
11-
<version>v1beta1-rev20210323-1.31.0</version>
12-
<name>Transcoder API v1beta1-rev20210323-1.31.0</name>
11+
<version>v1beta1-rev20210405-1.31.0</version>
12+
<name>Transcoder API v1beta1-rev20210405-1.31.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-transcoder/v1beta1/1.31.0/resources/transcoder.v1beta1.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@
355355
}
356356
}
357357
},
358-
"revision": "20210323",
358+
"revision": "20210405",
359359
"rootUrl": "https://transcoder.googleapis.com/",
360360
"schemas": {
361361
"AdBreak": {
@@ -1478,7 +1478,7 @@
14781478
"type": "string"
14791479
},
14801480
"frameRate": {
1481-
"description": "Required. The target video frame rate in frames per second (FPS). Must be less than or equal to 120. Will default to the input frame rate if larger than the input frame rate. The API will generate an output FPS that is divisible by the input FPS, and smaller or equal to the target FPS. The following table shows the computed video FPS given the target FPS (in parenthesis) and input FPS (in the first column): ``` | | (30) | (60) | (25) | (50) | |--------|--------|--------|------|------| | 240 | Fail | Fail | Fail | Fail | | 120 | 30 | 60 | 20 | 30 | | 100 | 25 | 50 | 20 | 30 | | 50 | 25 | 50 | 20 | 30 | | 60 | 30 | 60 | 20 | 30 | | 59.94 | 29.97 | 59.94 | 20 | 30 | | 48 | 24 | 48 | 20 | 30 | | 30 | 30 | 30 | 20 | 30 | | 25 | 25 | 25 | 20 | 30 | | 24 | 24 | 24 | 20 | 30 | | 23.976 | 23.976 | 23.976 | 20 | 30 | | 15 | 15 | 15 | 20 | 30 | | 12 | 12 | 12 | 20 | 30 | | 10 | 10 | 10 | 20 | 30 | ```",
1481+
"description": "Required. The target video frame rate in frames per second (FPS). Must be less than or equal to 120. Will default to the input frame rate if larger than the input frame rate. The API will generate an output FPS that is divisible by the input FPS, and smaller or equal to the target FPS. See [Calculate frame rate](https://cloud.google.com/transcoder/docs/concepts/frame-rate) for more information.",
14821482
"format": "double",
14831483
"type": "number"
14841484
},

clients/google-api-services-transcoder/v1beta1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-transcoder</artifactId>
25-
<version>v1beta1-rev20210323-1.31.0</version>
25+
<version>v1beta1-rev20210405-1.31.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
compile 'com.google.apis:google-api-services-transcoder:v1beta1-rev20210323-1.31.0'
38+
compile 'com.google.apis:google-api-services-transcoder:v1beta1-rev20210405-1.31.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)