Skip to content

Commit d650f08

Browse files
yoshi-automationkolea2
authored andcommitted
---
yaml --- r: 14079 b: refs/heads/autosynth-monitoring c: 9e8bb32 h: refs/heads/master i: 14077: 47b655b 14075: bc2fa5a 14071: c032bd3 14063: 022b7cf 14047: 3b93fb7 14015: 4be4268 13951: afb1b01 13823: 0d10c48
1 parent 5e24282 commit d650f08

5 files changed

Lines changed: 30 additions & 30 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ refs/tags/v0.67.0: 30b56f02092efc6f3c3667650ea8b8825003e0b7
115115
refs/heads/autosynth-compute: 8e86445e504cea6f99b9fb237bfd7f0e5ef8b3ce
116116
refs/heads/autosynth-container: f6384095f50b31bfc8208542a49181e158d3681c
117117
refs/heads/autosynth-dataproc: bc74a8841bc1693d7945d991d15979df550b1fd1
118-
refs/heads/autosynth-monitoring: eb650c5ba8ea0789a668a19714391c8de09355bf
118+
refs/heads/autosynth-monitoring: 9e8bb322a55721a9c8619823534f5887a1b1f6dd
119119
refs/heads/autosynth-pubsub: ed3340e32d13bb1a42ca4431cb1ad9bdaf550aa4
120120
refs/heads/autosynth-video-intelligence: 3e8faeeee2f803271529bd6e89b621c1ca098628
121121
refs/heads/autosynth-vision: d758c43ba2ef4f4f7ad07b722617cb39fe3f29db

branches/autosynth-monitoring/google-cloud-clients/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/package-info.java

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,7 @@
1919
*
2020
* <p>The interfaces provided are listed below, along with usage samples.
2121
*
22-
* <p>======================= PredictionServiceClient =======================
23-
*
24-
* <p>Service Description: AutoML Prediction API.
25-
*
26-
* <p>Sample for PredictionServiceClient:
27-
*
28-
* <pre>
29-
* <code>
30-
* try (PredictionServiceClient predictionServiceClient = PredictionServiceClient.create()) {
31-
* ModelName name = ModelName.of("[PROJECT]", "[LOCATION]", "[MODEL]");
32-
* ExamplePayload payload = ExamplePayload.newBuilder().build();
33-
* Map&lt;String, String&gt; params = new HashMap&lt;&gt;();
34-
* PredictResponse response = predictionServiceClient.predict(name, payload, params);
35-
* }
36-
* </code>
37-
* </pre>
38-
*
39-
* ============ AutoMlClient ============
22+
* <p>============ AutoMlClient ============
4023
*
4124
* <p>Service Description: AutoML Server API.
4225
*
@@ -58,5 +41,22 @@
5841
* }
5942
* </code>
6043
* </pre>
44+
*
45+
* ======================= PredictionServiceClient =======================
46+
*
47+
* <p>Service Description: AutoML Prediction API.
48+
*
49+
* <p>Sample for PredictionServiceClient:
50+
*
51+
* <pre>
52+
* <code>
53+
* try (PredictionServiceClient predictionServiceClient = PredictionServiceClient.create()) {
54+
* ModelName name = ModelName.of("[PROJECT]", "[LOCATION]", "[MODEL]");
55+
* ExamplePayload payload = ExamplePayload.newBuilder().build();
56+
* Map&lt;String, String&gt; params = new HashMap&lt;&gt;();
57+
* PredictResponse response = predictionServiceClient.predict(name, payload, params);
58+
* }
59+
* </code>
60+
* </pre>
6161
*/
6262
package com.google.cloud.automl.v1beta1;

branches/autosynth-monitoring/google-cloud-clients/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/AutoMlClientTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,19 +47,19 @@
4747

4848
@javax.annotation.Generated("by GAPIC")
4949
public class AutoMlClientTest {
50-
private static MockPredictionService mockPredictionService;
5150
private static MockAutoMl mockAutoMl;
51+
private static MockPredictionService mockPredictionService;
5252
private static MockServiceHelper serviceHelper;
5353
private AutoMlClient client;
5454
private LocalChannelProvider channelProvider;
5555

5656
@BeforeClass
5757
public static void startStaticServer() {
58-
mockPredictionService = new MockPredictionService();
5958
mockAutoMl = new MockAutoMl();
59+
mockPredictionService = new MockPredictionService();
6060
serviceHelper =
6161
new MockServiceHelper(
62-
"in-process-1", Arrays.<MockGrpcService>asList(mockPredictionService, mockAutoMl));
62+
"in-process-1", Arrays.<MockGrpcService>asList(mockAutoMl, mockPredictionService));
6363
serviceHelper.start();
6464
}
6565

branches/autosynth-monitoring/google-cloud-clients/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/PredictionServiceClientTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,19 @@
3939

4040
@javax.annotation.Generated("by GAPIC")
4141
public class PredictionServiceClientTest {
42-
private static MockPredictionService mockPredictionService;
4342
private static MockAutoMl mockAutoMl;
43+
private static MockPredictionService mockPredictionService;
4444
private static MockServiceHelper serviceHelper;
4545
private PredictionServiceClient client;
4646
private LocalChannelProvider channelProvider;
4747

4848
@BeforeClass
4949
public static void startStaticServer() {
50-
mockPredictionService = new MockPredictionService();
5150
mockAutoMl = new MockAutoMl();
51+
mockPredictionService = new MockPredictionService();
5252
serviceHelper =
5353
new MockServiceHelper(
54-
"in-process-1", Arrays.<MockGrpcService>asList(mockPredictionService, mockAutoMl));
54+
"in-process-1", Arrays.<MockGrpcService>asList(mockAutoMl, mockPredictionService));
5555
serviceHelper.start();
5656
}
5757

branches/autosynth-monitoring/google-cloud-clients/google-cloud-automl/synth.metadata

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"updateTime": "2019-01-17T08:34:13.304271Z",
2+
"updateTime": "2019-01-30T08:34:37.857517Z",
33
"sources": [
44
{
55
"generator": {
66
"name": "artman",
7-
"version": "0.16.6",
8-
"dockerImage": "googleapis/artman@sha256:12722f2ca3fbc3b53cc6aa5f0e569d7d221b46bd876a2136497089dec5e3634e"
7+
"version": "0.16.7",
8+
"dockerImage": "googleapis/artman@sha256:d6c8ced606eb49973ca95d2af7c55a681acc042db0f87d135968349e7bf6dd80"
99
}
1010
},
1111
{
1212
"git": {
1313
"name": "googleapis",
1414
"remote": "https://github.com/googleapis/googleapis.git",
15-
"sha": "0ac60e21a1aa86c07c1836865b35308ba8178b05",
16-
"internalRef": "229626798"
15+
"sha": "f0195b40fd5f5f412e6819ac01df08cedb8e5fd7",
16+
"internalRef": "231440809"
1717
}
1818
}
1919
],

0 commit comments

Comments
 (0)