Skip to content

Commit ff0da74

Browse files
yoshi-automationkolea2
authored andcommitted
Regenerate automl client (#4455)
1 parent 9e8bb32 commit ff0da74

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

google-cloud-clients/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/AutoMlClient.java

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ public final UnaryCallable<ListDatasetsRequest, ListDatasetsResponse> listDatase
509509
* <pre><code>
510510
* try (AutoMlClient autoMlClient = AutoMlClient.create()) {
511511
* DatasetName name = DatasetName.of("[PROJECT]", "[LOCATION]", "[DATASET]");
512-
* Empty response = autoMlClient.deleteDatasetAsync(name).get();
512+
* autoMlClient.deleteDatasetAsync(name).get();
513513
* }
514514
* </code></pre>
515515
*
@@ -536,7 +536,7 @@ public final OperationFuture<Empty, OperationMetadata> deleteDatasetAsync(Datase
536536
* <pre><code>
537537
* try (AutoMlClient autoMlClient = AutoMlClient.create()) {
538538
* DatasetName name = DatasetName.of("[PROJECT]", "[LOCATION]", "[DATASET]");
539-
* Empty response = autoMlClient.deleteDatasetAsync(name.toString()).get();
539+
* autoMlClient.deleteDatasetAsync(name.toString()).get();
540540
* }
541541
* </code></pre>
542542
*
@@ -565,7 +565,7 @@ public final OperationFuture<Empty, OperationMetadata> deleteDatasetAsync(String
565565
* DeleteDatasetRequest request = DeleteDatasetRequest.newBuilder()
566566
* .setName(name.toString())
567567
* .build();
568-
* Empty response = autoMlClient.deleteDatasetAsync(request).get();
568+
* autoMlClient.deleteDatasetAsync(request).get();
569569
* }
570570
* </code></pre>
571571
*
@@ -593,9 +593,9 @@ public final OperationFuture<Empty, OperationMetadata> deleteDatasetAsync(
593593
* DeleteDatasetRequest request = DeleteDatasetRequest.newBuilder()
594594
* .setName(name.toString())
595595
* .build();
596-
* OperationFuture&lt;Operation&gt; future = autoMlClient.deleteDatasetOperationCallable().futureCall(request);
596+
* OperationFuture&lt;Empty, OperationMetadata&gt; future = autoMlClient.deleteDatasetOperationCallable().futureCall(request);
597597
* // Do something
598-
* Empty response = future.get();
598+
* future.get();
599599
* }
600600
* </code></pre>
601601
*/
@@ -640,7 +640,7 @@ public final UnaryCallable<DeleteDatasetRequest, Operation> deleteDatasetCallabl
640640
* try (AutoMlClient autoMlClient = AutoMlClient.create()) {
641641
* DatasetName name = DatasetName.of("[PROJECT]", "[LOCATION]", "[DATASET]");
642642
* InputConfig inputConfig = InputConfig.newBuilder().build();
643-
* Empty response = autoMlClient.importDataAsync(name, inputConfig).get();
643+
* autoMlClient.importDataAsync(name, inputConfig).get();
644644
* }
645645
* </code></pre>
646646
*
@@ -673,7 +673,7 @@ public final OperationFuture<Empty, OperationMetadata> importDataAsync(
673673
* try (AutoMlClient autoMlClient = AutoMlClient.create()) {
674674
* DatasetName name = DatasetName.of("[PROJECT]", "[LOCATION]", "[DATASET]");
675675
* InputConfig inputConfig = InputConfig.newBuilder().build();
676-
* Empty response = autoMlClient.importDataAsync(name.toString(), inputConfig).get();
676+
* autoMlClient.importDataAsync(name.toString(), inputConfig).get();
677677
* }
678678
* </code></pre>
679679
*
@@ -707,7 +707,7 @@ public final OperationFuture<Empty, OperationMetadata> importDataAsync(
707707
* .setName(name.toString())
708708
* .setInputConfig(inputConfig)
709709
* .build();
710-
* Empty response = autoMlClient.importDataAsync(request).get();
710+
* autoMlClient.importDataAsync(request).get();
711711
* }
712712
* </code></pre>
713713
*
@@ -736,9 +736,9 @@ public final OperationFuture<Empty, OperationMetadata> importDataAsync(
736736
* .setName(name.toString())
737737
* .setInputConfig(inputConfig)
738738
* .build();
739-
* OperationFuture&lt;Operation&gt; future = autoMlClient.importDataOperationCallable().futureCall(request);
739+
* OperationFuture&lt;Empty, OperationMetadata&gt; future = autoMlClient.importDataOperationCallable().futureCall(request);
740740
* // Do something
741-
* Empty response = future.get();
741+
* future.get();
742742
* }
743743
* </code></pre>
744744
*/
@@ -784,7 +784,7 @@ public final UnaryCallable<ImportDataRequest, Operation> importDataCallable() {
784784
* try (AutoMlClient autoMlClient = AutoMlClient.create()) {
785785
* DatasetName name = DatasetName.of("[PROJECT]", "[LOCATION]", "[DATASET]");
786786
* OutputConfig outputConfig = OutputConfig.newBuilder().build();
787-
* Empty response = autoMlClient.exportDataAsync(name, outputConfig).get();
787+
* autoMlClient.exportDataAsync(name, outputConfig).get();
788788
* }
789789
* </code></pre>
790790
*
@@ -816,7 +816,7 @@ public final OperationFuture<Empty, OperationMetadata> exportDataAsync(
816816
* try (AutoMlClient autoMlClient = AutoMlClient.create()) {
817817
* DatasetName name = DatasetName.of("[PROJECT]", "[LOCATION]", "[DATASET]");
818818
* OutputConfig outputConfig = OutputConfig.newBuilder().build();
819-
* Empty response = autoMlClient.exportDataAsync(name.toString(), outputConfig).get();
819+
* autoMlClient.exportDataAsync(name.toString(), outputConfig).get();
820820
* }
821821
* </code></pre>
822822
*
@@ -849,7 +849,7 @@ public final OperationFuture<Empty, OperationMetadata> exportDataAsync(
849849
* .setName(name.toString())
850850
* .setOutputConfig(outputConfig)
851851
* .build();
852-
* Empty response = autoMlClient.exportDataAsync(request).get();
852+
* autoMlClient.exportDataAsync(request).get();
853853
* }
854854
* </code></pre>
855855
*
@@ -878,9 +878,9 @@ public final OperationFuture<Empty, OperationMetadata> exportDataAsync(
878878
* .setName(name.toString())
879879
* .setOutputConfig(outputConfig)
880880
* .build();
881-
* OperationFuture&lt;Operation&gt; future = autoMlClient.exportDataOperationCallable().futureCall(request);
881+
* OperationFuture&lt;Empty, OperationMetadata&gt; future = autoMlClient.exportDataOperationCallable().futureCall(request);
882882
* // Do something
883-
* Empty response = future.get();
883+
* future.get();
884884
* }
885885
* </code></pre>
886886
*/
@@ -1024,7 +1024,7 @@ public final OperationFuture<Model, OperationMetadata> createModelAsync(
10241024
* .setParent(parent.toString())
10251025
* .setModel(model)
10261026
* .build();
1027-
* OperationFuture&lt;Operation&gt; future = autoMlClient.createModelOperationCallable().futureCall(request);
1027+
* OperationFuture&lt;Model, OperationMetadata&gt; future = autoMlClient.createModelOperationCallable().futureCall(request);
10281028
* // Do something
10291029
* Model response = future.get();
10301030
* }
@@ -1291,7 +1291,7 @@ public final UnaryCallable<ListModelsRequest, ListModelsResponse> listModelsCall
12911291
* <pre><code>
12921292
* try (AutoMlClient autoMlClient = AutoMlClient.create()) {
12931293
* ModelName name = ModelName.of("[PROJECT]", "[LOCATION]", "[MODEL]");
1294-
* Empty response = autoMlClient.deleteModelAsync(name).get();
1294+
* autoMlClient.deleteModelAsync(name).get();
12951295
* }
12961296
* </code></pre>
12971297
*
@@ -1319,7 +1319,7 @@ public final OperationFuture<Empty, OperationMetadata> deleteModelAsync(ModelNam
13191319
* <pre><code>
13201320
* try (AutoMlClient autoMlClient = AutoMlClient.create()) {
13211321
* ModelName name = ModelName.of("[PROJECT]", "[LOCATION]", "[MODEL]");
1322-
* Empty response = autoMlClient.deleteModelAsync(name.toString()).get();
1322+
* autoMlClient.deleteModelAsync(name.toString()).get();
13231323
* }
13241324
* </code></pre>
13251325
*
@@ -1349,7 +1349,7 @@ public final OperationFuture<Empty, OperationMetadata> deleteModelAsync(String n
13491349
* DeleteModelRequest request = DeleteModelRequest.newBuilder()
13501350
* .setName(name.toString())
13511351
* .build();
1352-
* Empty response = autoMlClient.deleteModelAsync(request).get();
1352+
* autoMlClient.deleteModelAsync(request).get();
13531353
* }
13541354
* </code></pre>
13551355
*
@@ -1378,9 +1378,9 @@ public final OperationFuture<Empty, OperationMetadata> deleteModelAsync(
13781378
* DeleteModelRequest request = DeleteModelRequest.newBuilder()
13791379
* .setName(name.toString())
13801380
* .build();
1381-
* OperationFuture&lt;Operation&gt; future = autoMlClient.deleteModelOperationCallable().futureCall(request);
1381+
* OperationFuture&lt;Empty, OperationMetadata&gt; future = autoMlClient.deleteModelOperationCallable().futureCall(request);
13821382
* // Do something
1383-
* Empty response = future.get();
1383+
* future.get();
13841384
* }
13851385
* </code></pre>
13861386
*/

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-30T08:34:37.857517Z",
2+
"updateTime": "2019-02-06T08:33:43.321407Z",
33
"sources": [
44
{
55
"generator": {
66
"name": "artman",
7-
"version": "0.16.7",
8-
"dockerImage": "googleapis/artman@sha256:d6c8ced606eb49973ca95d2af7c55a681acc042db0f87d135968349e7bf6dd80"
7+
"version": "0.16.9",
8+
"dockerImage": "googleapis/artman@sha256:80c39fa84e7203c8f355e01bdeef82155013cc39dcaa48fba7a6fe2c253623e3"
99
}
1010
},
1111
{
1212
"git": {
1313
"name": "googleapis",
1414
"remote": "https://github.com/googleapis/googleapis.git",
15-
"sha": "f0195b40fd5f5f412e6819ac01df08cedb8e5fd7",
16-
"internalRef": "231440809"
15+
"sha": "fb6037c65475bce990d8dcef955c66b0bdcb6e4a",
16+
"internalRef": "232615156"
1717
}
1818
}
1919
],

0 commit comments

Comments
 (0)