Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.

Commit 0310bc9

Browse files
feat(generator): update protoc to v3.15.3 (#127)
This PR was generated using Autosynth. 🌈 Synth log will be available here: https://source.cloud.google.com/results/invocations/4650efcc-2b5e-4632-92f4-e28824d4f0b4/targets - [ ] To automatically regenerate this PR, check this box. PiperOrigin-RevId: 359781040 Source-Link: googleapis/googleapis@f6dd7e4
1 parent 87b37b7 commit 0310bc9

File tree

8 files changed

+159
-3
lines changed

8 files changed

+159
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html -->
3+
<differences>
4+
<difference>
5+
<differenceType>7012</differenceType>
6+
<className>com/google/cloud/video/transcoder/v1beta1/*OrBuilder</className>
7+
<method>* has*(*)</method>
8+
</difference>
9+
</differences>

‎proto-google-cloud-video-transcoder-v1beta1/src/main/java/com/google/cloud/video/transcoder/v1beta1/Job.java

+39
Original file line numberDiff line numberDiff line change
@@ -1559,6 +1559,25 @@ public com.google.protobuf.ByteString getOutputUriBytes() {
15591559
}
15601560

15611561
public static final int TEMPLATE_ID_FIELD_NUMBER = 4;
1562+
/**
1563+
*
1564+
*
1565+
* <pre>
1566+
* Input only. Specify the `template_id` to use for populating `Job.config`. The default
1567+
* is `preset/web-hd`.
1568+
* Preset Transcoder templates:
1569+
* - `preset/{preset_id}`
1570+
* - User defined JobTemplate:
1571+
* `{job_template_id}`
1572+
* </pre>
1573+
*
1574+
* <code>string template_id = 4 [(.google.api.field_behavior) = INPUT_ONLY];</code>
1575+
*
1576+
* @return Whether the templateId field is set.
1577+
*/
1578+
public boolean hasTemplateId() {
1579+
return jobConfigCase_ == 4;
1580+
}
15621581
/**
15631582
*
15641583
*
@@ -3159,6 +3178,26 @@ public Builder setOutputUriBytes(com.google.protobuf.ByteString value) {
31593178
return this;
31603179
}
31613180

3181+
/**
3182+
*
3183+
*
3184+
* <pre>
3185+
* Input only. Specify the `template_id` to use for populating `Job.config`. The default
3186+
* is `preset/web-hd`.
3187+
* Preset Transcoder templates:
3188+
* - `preset/{preset_id}`
3189+
* - User defined JobTemplate:
3190+
* `{job_template_id}`
3191+
* </pre>
3192+
*
3193+
* <code>string template_id = 4 [(.google.api.field_behavior) = INPUT_ONLY];</code>
3194+
*
3195+
* @return Whether the templateId field is set.
3196+
*/
3197+
@java.lang.Override
3198+
public boolean hasTemplateId() {
3199+
return jobConfigCase_ == 4;
3200+
}
31623201
/**
31633202
*
31643203
*

‎proto-google-cloud-video-transcoder-v1beta1/src/main/java/com/google/cloud/video/transcoder/v1beta1/JobOrBuilder.java

+17
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,23 @@ public interface JobOrBuilder
110110
*/
111111
com.google.protobuf.ByteString getOutputUriBytes();
112112

113+
/**
114+
*
115+
*
116+
* <pre>
117+
* Input only. Specify the `template_id` to use for populating `Job.config`. The default
118+
* is `preset/web-hd`.
119+
* Preset Transcoder templates:
120+
* - `preset/{preset_id}`
121+
* - User defined JobTemplate:
122+
* `{job_template_id}`
123+
* </pre>
124+
*
125+
* <code>string template_id = 4 [(.google.api.field_behavior) = INPUT_ONLY];</code>
126+
*
127+
* @return Whether the templateId field is set.
128+
*/
129+
boolean hasTemplateId();
113130
/**
114131
*
115132
*

‎proto-google-cloud-video-transcoder-v1beta1/src/main/java/com/google/cloud/video/transcoder/v1beta1/SpriteSheet.java

+33
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,23 @@ public com.google.protobuf.DurationOrBuilder getEndTimeOffsetOrBuilder() {
524524
}
525525

526526
public static final int TOTAL_COUNT_FIELD_NUMBER = 9;
527+
/**
528+
*
529+
*
530+
* <pre>
531+
* Total number of sprites. Create the specified number of sprites
532+
* distributed evenly across the timeline of the output media. The default
533+
* is 100.
534+
* </pre>
535+
*
536+
* <code>int32 total_count = 9;</code>
537+
*
538+
* @return Whether the totalCount field is set.
539+
*/
540+
@java.lang.Override
541+
public boolean hasTotalCount() {
542+
return extractionStrategyCase_ == 9;
543+
}
527544
/**
528545
*
529546
*
@@ -1978,6 +1995,22 @@ public com.google.protobuf.DurationOrBuilder getEndTimeOffsetOrBuilder() {
19781995
return endTimeOffsetBuilder_;
19791996
}
19801997

1998+
/**
1999+
*
2000+
*
2001+
* <pre>
2002+
* Total number of sprites. Create the specified number of sprites
2003+
* distributed evenly across the timeline of the output media. The default
2004+
* is 100.
2005+
* </pre>
2006+
*
2007+
* <code>int32 total_count = 9;</code>
2008+
*
2009+
* @return Whether the totalCount field is set.
2010+
*/
2011+
public boolean hasTotalCount() {
2012+
return extractionStrategyCase_ == 9;
2013+
}
19812014
/**
19822015
*
19832016
*

‎proto-google-cloud-video-transcoder-v1beta1/src/main/java/com/google/cloud/video/transcoder/v1beta1/SpriteSheetOrBuilder.java

+14
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,20 @@ public interface SpriteSheetOrBuilder
215215
*/
216216
com.google.protobuf.DurationOrBuilder getEndTimeOffsetOrBuilder();
217217

218+
/**
219+
*
220+
*
221+
* <pre>
222+
* Total number of sprites. Create the specified number of sprites
223+
* distributed evenly across the timeline of the output media. The default
224+
* is 100.
225+
* </pre>
226+
*
227+
* <code>int32 total_count = 9;</code>
228+
*
229+
* @return Whether the totalCount field is set.
230+
*/
231+
boolean hasTotalCount();
218232
/**
219233
*
220234
*

‎proto-google-cloud-video-transcoder-v1beta1/src/main/java/com/google/cloud/video/transcoder/v1beta1/VideoStream.java

+31
Original file line numberDiff line numberDiff line change
@@ -778,6 +778,22 @@ public boolean getAllowOpenGop() {
778778
}
779779

780780
public static final int GOP_FRAME_COUNT_FIELD_NUMBER = 15;
781+
/**
782+
*
783+
*
784+
* <pre>
785+
* Select the GOP size based on the specified frame count. Must be greater
786+
* than zero.
787+
* </pre>
788+
*
789+
* <code>int32 gop_frame_count = 15;</code>
790+
*
791+
* @return Whether the gopFrameCount field is set.
792+
*/
793+
@java.lang.Override
794+
public boolean hasGopFrameCount() {
795+
return gopModeCase_ == 15;
796+
}
781797
/**
782798
*
783799
*
@@ -2878,6 +2894,21 @@ public Builder clearAllowOpenGop() {
28782894
return this;
28792895
}
28802896

2897+
/**
2898+
*
2899+
*
2900+
* <pre>
2901+
* Select the GOP size based on the specified frame count. Must be greater
2902+
* than zero.
2903+
* </pre>
2904+
*
2905+
* <code>int32 gop_frame_count = 15;</code>
2906+
*
2907+
* @return Whether the gopFrameCount field is set.
2908+
*/
2909+
public boolean hasGopFrameCount() {
2910+
return gopModeCase_ == 15;
2911+
}
28812912
/**
28822913
*
28832914
*

‎proto-google-cloud-video-transcoder-v1beta1/src/main/java/com/google/cloud/video/transcoder/v1beta1/VideoStreamOrBuilder.java

+13
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,19 @@ public interface VideoStreamOrBuilder
329329
*/
330330
boolean getAllowOpenGop();
331331

332+
/**
333+
*
334+
*
335+
* <pre>
336+
* Select the GOP size based on the specified frame count. Must be greater
337+
* than zero.
338+
* </pre>
339+
*
340+
* <code>int32 gop_frame_count = 15;</code>
341+
*
342+
* @return Whether the gopFrameCount field is set.
343+
*/
344+
boolean hasGopFrameCount();
332345
/**
333346
*
334347
*

‎synth.metadata

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"git": {
55
"name": ".",
66
"remote": "https://github.com/googleapis/java-video-transcoder.git",
7-
"sha": "d643ba3ccbb17c30042540434554dae5ff74a12c"
7+
"sha": "87b37b7466e7a9fd57823a6cf42b3051b6e93adb"
88
}
99
},
1010
{
1111
"git": {
1212
"name": "googleapis",
1313
"remote": "https://github.com/googleapis/googleapis.git",
14-
"sha": "af8f71dae961ee036a0ac52a1965270149a6b2c9",
15-
"internalRef": "358516065"
14+
"sha": "f6dd7e47620566925a4b3f1ce029e74e1b2f2516",
15+
"internalRef": "359781040"
1616
}
1717
},
1818
{

0 commit comments

Comments
 (0)