@@ -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<Operation > future = autoMlClient.deleteDatasetOperationCallable().futureCall(request);
596+ * OperationFuture<Empty, OperationMetadata > 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<Operation > future = autoMlClient.importDataOperationCallable().futureCall(request);
739+ * OperationFuture<Empty, OperationMetadata > 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<Operation > future = autoMlClient.exportDataOperationCallable().futureCall(request);
881+ * OperationFuture<Empty, OperationMetadata > 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<Operation > future = autoMlClient.createModelOperationCallable().futureCall(request);
1027+ * OperationFuture<Model, OperationMetadata > 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<Operation > future = autoMlClient.deleteModelOperationCallable().futureCall(request);
1381+ * OperationFuture<Empty, OperationMetadata > future = autoMlClient.deleteModelOperationCallable().futureCall(request);
13821382 * // Do something
1383- * Empty response = future.get();
1383+ * future.get();
13841384 * }
13851385 * </code></pre>
13861386 */
0 commit comments