Skip to content

Commit 45db113

Browse files
yoshi-automationsduskis
authored andcommitted
---
yaml --- r: 34487 b: refs/heads/autosynth-tasks c: 06d6685 h: refs/heads/master i: 34485: 1f85a4e 34483: afda83b 34479: bf0c223
1 parent 1bb9ad4 commit 45db113

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ refs/heads/autosynth-redis: 2b698ebe7faaa0b93246576a88941682e0888e57
139139
refs/heads/autosynth-scheduler: a3de6480746d1cd586ca8b9d75c55a636f371539
140140
refs/heads/autosynth-spanner: d963fe4368e79cf6abae5d511785e8ced8ac57f4
141141
refs/heads/autosynth-speech: c563dcd420cce0a37c39b1b9c24be1b9ba604dc7
142-
refs/heads/autosynth-tasks: cc547642f3dd4b5f2420d350adda216e87de5877
142+
refs/heads/autosynth-tasks: 06d6685b4c3eedcc4d513b47e6531859a08e07b2
143143
refs/heads/autosynth-texttospeech: 2c442fe0b7f089fbab266edfe4dd83c532e82dd0
144144
refs/heads/autosynth-trace: c94eef6e4d9c6fd24888216e28ca7271959c1cf0
145145
refs/heads/autosynth-websecurityscanner: fa561b356aabcd92d415ae8dc88fd8d87dbc5b23

branches/autosynth-tasks/google-cloud-clients/google-cloud-video-intelligence/src/main/java/com/google/cloud/videointelligence/v1/VideoIntelligenceServiceClient.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* <pre>
4040
* <code>
4141
* try (VideoIntelligenceServiceClient videoIntelligenceServiceClient = VideoIntelligenceServiceClient.create()) {
42-
* String inputUri = "gs://videodemomaker/cat.mp4";
42+
* String inputUri = "gs://cloud-samples-data/video/cat.mp4";
4343
* Feature featuresElement = Feature.LABEL_DETECTION;
4444
* List&lt;Feature&gt; features = Arrays.asList(featuresElement);
4545
* AnnotateVideoResponse response = videoIntelligenceServiceClient.annotateVideoAsync(inputUri, features).get();
@@ -178,7 +178,7 @@ public final OperationsClient getOperationsClient() {
178178
*
179179
* <pre><code>
180180
* try (VideoIntelligenceServiceClient videoIntelligenceServiceClient = VideoIntelligenceServiceClient.create()) {
181-
* String inputUri = "gs://videodemomaker/cat.mp4";
181+
* String inputUri = "gs://cloud-samples-data/video/cat.mp4";
182182
* Feature featuresElement = Feature.LABEL_DETECTION;
183183
* List&lt;Feature&gt; features = Arrays.asList(featuresElement);
184184
* AnnotateVideoResponse response = videoIntelligenceServiceClient.annotateVideoAsync(inputUri, features).get();
@@ -217,7 +217,7 @@ public final OperationFuture<AnnotateVideoResponse, AnnotateVideoProgress> annot
217217
*
218218
* <pre><code>
219219
* try (VideoIntelligenceServiceClient videoIntelligenceServiceClient = VideoIntelligenceServiceClient.create()) {
220-
* String inputUri = "gs://videodemomaker/cat.mp4";
220+
* String inputUri = "gs://cloud-samples-data/video/cat.mp4";
221221
* Feature featuresElement = Feature.LABEL_DETECTION;
222222
* List&lt;Feature&gt; features = Arrays.asList(featuresElement);
223223
* AnnotateVideoRequest request = AnnotateVideoRequest.newBuilder()
@@ -249,7 +249,7 @@ public final OperationFuture<AnnotateVideoResponse, AnnotateVideoProgress> annot
249249
*
250250
* <pre><code>
251251
* try (VideoIntelligenceServiceClient videoIntelligenceServiceClient = VideoIntelligenceServiceClient.create()) {
252-
* String inputUri = "gs://videodemomaker/cat.mp4";
252+
* String inputUri = "gs://cloud-samples-data/video/cat.mp4";
253253
* Feature featuresElement = Feature.LABEL_DETECTION;
254254
* List&lt;Feature&gt; features = Arrays.asList(featuresElement);
255255
* AnnotateVideoRequest request = AnnotateVideoRequest.newBuilder()
@@ -279,7 +279,7 @@ public final OperationFuture<AnnotateVideoResponse, AnnotateVideoProgress> annot
279279
*
280280
* <pre><code>
281281
* try (VideoIntelligenceServiceClient videoIntelligenceServiceClient = VideoIntelligenceServiceClient.create()) {
282-
* String inputUri = "gs://videodemomaker/cat.mp4";
282+
* String inputUri = "gs://cloud-samples-data/video/cat.mp4";
283283
* Feature featuresElement = Feature.LABEL_DETECTION;
284284
* List&lt;Feature&gt; features = Arrays.asList(featuresElement);
285285
* AnnotateVideoRequest request = AnnotateVideoRequest.newBuilder()

branches/autosynth-tasks/google-cloud-clients/google-cloud-video-intelligence/src/main/java/com/google/cloud/videointelligence/v1/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* <pre>
2929
* <code>
3030
* try (VideoIntelligenceServiceClient videoIntelligenceServiceClient = VideoIntelligenceServiceClient.create()) {
31-
* String inputUri = "gs://videodemomaker/cat.mp4";
31+
* String inputUri = "gs://cloud-samples-data/video/cat.mp4";
3232
* Feature featuresElement = Feature.LABEL_DETECTION;
3333
* List&lt;Feature&gt; features = Arrays.asList(featuresElement);
3434
* AnnotateVideoResponse response = videoIntelligenceServiceClient.annotateVideoAsync(inputUri, features);

branches/autosynth-tasks/google-cloud-clients/google-cloud-video-intelligence/src/test/java/com/google/cloud/videointelligence/v1/VideoIntelligenceServiceClientTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public void annotateVideoTest() throws Exception {
8989
.build();
9090
mockVideoIntelligenceService.addResponse(resultOperation);
9191

92-
String inputUri = "gs://videodemomaker/cat.mp4";
92+
String inputUri = "gs://cloud-samples-data/video/cat.mp4";
9393
Feature featuresElement = Feature.LABEL_DETECTION;
9494
List<Feature> features = Arrays.asList(featuresElement);
9595

@@ -115,7 +115,7 @@ public void annotateVideoExceptionTest() throws Exception {
115115
mockVideoIntelligenceService.addException(exception);
116116

117117
try {
118-
String inputUri = "gs://videodemomaker/cat.mp4";
118+
String inputUri = "gs://cloud-samples-data/video/cat.mp4";
119119
Feature featuresElement = Feature.LABEL_DETECTION;
120120
List<Feature> features = Arrays.asList(featuresElement);
121121

branches/autosynth-tasks/google-cloud-clients/google-cloud-video-intelligence/src/test/java/com/google/cloud/videointelligence/v1/VideoIntelligenceServiceSmokeTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static void main(String args[]) {
4646

4747
public static void executeNoCatch() throws Exception {
4848
try (VideoIntelligenceServiceClient client = VideoIntelligenceServiceClient.create()) {
49-
String inputUri = "gs://videodemomaker/cat.mp4";
49+
String inputUri = "gs://cloud-samples-data/video/cat.mp4";
5050
Feature featuresElement = Feature.LABEL_DETECTION;
5151
List<Feature> features = Arrays.asList(featuresElement);
5252

branches/autosynth-tasks/google-cloud-clients/google-cloud-video-intelligence/synth.metadata

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"updateTime": "2019-05-04T08:01:00.801279Z",
2+
"updateTime": "2019-05-10T08:00:13.241307Z",
33
"sources": [
44
{
55
"generator": {
66
"name": "artman",
7-
"version": "0.18.0",
8-
"dockerImage": "googleapis/artman@sha256:29bd82cc42c43825fde408e63fc955f3f9d07ff9989243d7aa0f91a35c7884dc"
7+
"version": "0.19.0",
8+
"dockerImage": "googleapis/artman@sha256:d3df563538225ac6caac45d8ad86499500211d1bcb2536955a6dbda15e1b368e"
99
}
1010
},
1111
{
1212
"git": {
1313
"name": "googleapis",
1414
"remote": "https://github.com/googleapis/googleapis.git",
15-
"sha": "39c876cca5403e7e8282ce2229033cc3cc02962c",
16-
"internalRef": "246561601"
15+
"sha": "07883be5bf3c3233095e99d8e92b8094f5d7084a",
16+
"internalRef": "247530843"
1717
}
1818
}
1919
],

0 commit comments

Comments
 (0)