Skip to content

Commit f211ac7

Browse files
yoshi-automationkolea2
authored andcommitted
---
yaml --- r: 15257 b: refs/heads/autosynth-bigtable c: 9e8bb32 h: refs/heads/master i: 15255: c5390bd
1 parent 5c4c2b2 commit f211ac7

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
@@ -126,7 +126,7 @@ refs/heads/autosynth-asset: cd8251de8c40e239ad24dcf9ed93ea2708a3eed5
126126
refs/heads/autosynth-automl: cced2f56bbef0499609073edbca6253e1df5e535
127127
refs/heads/autosynth-bigquerydatatransfer: a6667617707608b1dbfb02d59c22b5152f208da7
128128
refs/heads/autosynth-bigquerystorage: 14ab055598b943ae3f33f484e9fb1653355d08e7
129-
refs/heads/autosynth-bigtable: eb650c5ba8ea0789a668a19714391c8de09355bf
129+
refs/heads/autosynth-bigtable: 9e8bb322a55721a9c8619823534f5887a1b1f6dd
130130
refs/heads/autosynth-bigtable-admin: 6379a2bc712f2736c83de0e009b4d26da4fa82ca
131131
refs/heads/autosynth-containeranalysis: 781fdb430a60f9a6491f116e31e4e10118157bdb
132132
refs/heads/autosynth-datastore: af1fb76aa3eee02fe6f31f8fa1c72a4f048d149b

branches/autosynth-bigtable/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-bigtable/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-bigtable/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-bigtable/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)