Skip to content

Commit 1f45cd0

Browse files
feat: [aiplatform] add DatasetVersion and dataset version RPCs to DatasetService (#9922)
* feat: add dedicated_serving_endpoint proto change in cl/569264016. PiperOrigin-RevId: 569305519 Source-Link: googleapis/googleapis@8b2a08f Source-Link: https://github.com/googleapis/googleapis-gen/commit/4ade927247fba22d315b9d431d618a06edda7474 Copy-Tag: eyJwIjoiamF2YS1haXBsYXRmb3JtLy5Pd2xCb3QueWFtbCIsImgiOiI0YWRlOTI3MjQ3ZmJhMjJkMzE1YjlkNDMxZDYxOGEwNmVkZGE3NDc0In0= * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * feat: add DatasetVersion and dataset version RPCs to DatasetService feat: add PersistentDiskSpec chore: remove backend configuration from the service config PiperOrigin-RevId: 570130129 Source-Link: googleapis/googleapis@5813201 Source-Link: https://github.com/googleapis/googleapis-gen/commit/a4313bffb76dcbc957ee0ce125b58a8e70226c80 Copy-Tag: eyJwIjoiamF2YS1haXBsYXRmb3JtLy5Pd2xCb3QueWFtbCIsImgiOiJhNDMxM2JmZmI3NmRjYmM5NTdlZTBjZTEyNWI1OGE4ZTcwMjI2YzgwIn0= * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * feat: add DatasetVersion and dataset version RPCs to DatasetService feat: add ListPublisherModels RPC to ModelGardenService chore: remove backend configuration from the service config PiperOrigin-RevId: 570235864 Source-Link: googleapis/googleapis@69cdc6e Source-Link: https://github.com/googleapis/googleapis-gen/commit/a873e30b24bad11374e957fa78f1b7a73d92a957 Copy-Tag: eyJwIjoiamF2YS1haXBsYXRmb3JtLy5Pd2xCb3QueWFtbCIsImgiOiJhODczZTMwYjI0YmFkMTEzNzRlOTU3ZmE3OGYxYjdhNzNkOTJhOTU3In0= * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 237c070 commit 1f45cd0

File tree

207 files changed

+33907
-1197
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+33907
-1197
lines changed

java-aiplatform/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
2020
<dependency>
2121
<groupId>com.google.cloud</groupId>
2222
<artifactId>libraries-bom</artifactId>
23-
<version>26.23.0</version>
23+
<version>26.24.0</version>
2424
<type>pom</type>
2525
<scope>import</scope>
2626
</dependency>
@@ -195,7 +195,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
195195
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html
196196
[stability-image]: https://img.shields.io/badge/stability-stable-green
197197
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-aiplatform.svg
198-
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-aiplatform/3.25.0
198+
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-aiplatform/3.28.0
199199
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
200200
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
201201
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles

java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceClient.java

Lines changed: 862 additions & 0 deletions
Large diffs are not rendered by default.

java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceSettings.java

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
import static com.google.cloud.aiplatform.v1.DatasetServiceClient.ListAnnotationsPagedResponse;
2020
import static com.google.cloud.aiplatform.v1.DatasetServiceClient.ListDataItemsPagedResponse;
21+
import static com.google.cloud.aiplatform.v1.DatasetServiceClient.ListDatasetVersionsPagedResponse;
2122
import static com.google.cloud.aiplatform.v1.DatasetServiceClient.ListDatasetsPagedResponse;
2223
import static com.google.cloud.aiplatform.v1.DatasetServiceClient.ListLocationsPagedResponse;
2324
import static com.google.cloud.aiplatform.v1.DatasetServiceClient.ListSavedQueriesPagedResponse;
@@ -151,6 +152,55 @@ public UnaryCallSettings<ExportDataRequest, Operation> exportDataSettings() {
151152
return ((DatasetServiceStubSettings) getStubSettings()).exportDataOperationSettings();
152153
}
153154

155+
/** Returns the object with the settings used for calls to createDatasetVersion. */
156+
public UnaryCallSettings<CreateDatasetVersionRequest, Operation> createDatasetVersionSettings() {
157+
return ((DatasetServiceStubSettings) getStubSettings()).createDatasetVersionSettings();
158+
}
159+
160+
/** Returns the object with the settings used for calls to createDatasetVersion. */
161+
public OperationCallSettings<
162+
CreateDatasetVersionRequest, DatasetVersion, CreateDatasetVersionOperationMetadata>
163+
createDatasetVersionOperationSettings() {
164+
return ((DatasetServiceStubSettings) getStubSettings()).createDatasetVersionOperationSettings();
165+
}
166+
167+
/** Returns the object with the settings used for calls to deleteDatasetVersion. */
168+
public UnaryCallSettings<DeleteDatasetVersionRequest, Operation> deleteDatasetVersionSettings() {
169+
return ((DatasetServiceStubSettings) getStubSettings()).deleteDatasetVersionSettings();
170+
}
171+
172+
/** Returns the object with the settings used for calls to deleteDatasetVersion. */
173+
public OperationCallSettings<DeleteDatasetVersionRequest, Empty, DeleteOperationMetadata>
174+
deleteDatasetVersionOperationSettings() {
175+
return ((DatasetServiceStubSettings) getStubSettings()).deleteDatasetVersionOperationSettings();
176+
}
177+
178+
/** Returns the object with the settings used for calls to getDatasetVersion. */
179+
public UnaryCallSettings<GetDatasetVersionRequest, DatasetVersion> getDatasetVersionSettings() {
180+
return ((DatasetServiceStubSettings) getStubSettings()).getDatasetVersionSettings();
181+
}
182+
183+
/** Returns the object with the settings used for calls to listDatasetVersions. */
184+
public PagedCallSettings<
185+
ListDatasetVersionsRequest, ListDatasetVersionsResponse, ListDatasetVersionsPagedResponse>
186+
listDatasetVersionsSettings() {
187+
return ((DatasetServiceStubSettings) getStubSettings()).listDatasetVersionsSettings();
188+
}
189+
190+
/** Returns the object with the settings used for calls to restoreDatasetVersion. */
191+
public UnaryCallSettings<RestoreDatasetVersionRequest, Operation>
192+
restoreDatasetVersionSettings() {
193+
return ((DatasetServiceStubSettings) getStubSettings()).restoreDatasetVersionSettings();
194+
}
195+
196+
/** Returns the object with the settings used for calls to restoreDatasetVersion. */
197+
public OperationCallSettings<
198+
RestoreDatasetVersionRequest, DatasetVersion, RestoreDatasetVersionOperationMetadata>
199+
restoreDatasetVersionOperationSettings() {
200+
return ((DatasetServiceStubSettings) getStubSettings())
201+
.restoreDatasetVersionOperationSettings();
202+
}
203+
154204
/** Returns the object with the settings used for calls to listDataItems. */
155205
public PagedCallSettings<ListDataItemsRequest, ListDataItemsResponse, ListDataItemsPagedResponse>
156206
listDataItemsSettings() {
@@ -382,6 +432,60 @@ public UnaryCallSettings.Builder<ExportDataRequest, Operation> exportDataSetting
382432
return getStubSettingsBuilder().exportDataOperationSettings();
383433
}
384434

435+
/** Returns the builder for the settings used for calls to createDatasetVersion. */
436+
public UnaryCallSettings.Builder<CreateDatasetVersionRequest, Operation>
437+
createDatasetVersionSettings() {
438+
return getStubSettingsBuilder().createDatasetVersionSettings();
439+
}
440+
441+
/** Returns the builder for the settings used for calls to createDatasetVersion. */
442+
public OperationCallSettings.Builder<
443+
CreateDatasetVersionRequest, DatasetVersion, CreateDatasetVersionOperationMetadata>
444+
createDatasetVersionOperationSettings() {
445+
return getStubSettingsBuilder().createDatasetVersionOperationSettings();
446+
}
447+
448+
/** Returns the builder for the settings used for calls to deleteDatasetVersion. */
449+
public UnaryCallSettings.Builder<DeleteDatasetVersionRequest, Operation>
450+
deleteDatasetVersionSettings() {
451+
return getStubSettingsBuilder().deleteDatasetVersionSettings();
452+
}
453+
454+
/** Returns the builder for the settings used for calls to deleteDatasetVersion. */
455+
public OperationCallSettings.Builder<
456+
DeleteDatasetVersionRequest, Empty, DeleteOperationMetadata>
457+
deleteDatasetVersionOperationSettings() {
458+
return getStubSettingsBuilder().deleteDatasetVersionOperationSettings();
459+
}
460+
461+
/** Returns the builder for the settings used for calls to getDatasetVersion. */
462+
public UnaryCallSettings.Builder<GetDatasetVersionRequest, DatasetVersion>
463+
getDatasetVersionSettings() {
464+
return getStubSettingsBuilder().getDatasetVersionSettings();
465+
}
466+
467+
/** Returns the builder for the settings used for calls to listDatasetVersions. */
468+
public PagedCallSettings.Builder<
469+
ListDatasetVersionsRequest,
470+
ListDatasetVersionsResponse,
471+
ListDatasetVersionsPagedResponse>
472+
listDatasetVersionsSettings() {
473+
return getStubSettingsBuilder().listDatasetVersionsSettings();
474+
}
475+
476+
/** Returns the builder for the settings used for calls to restoreDatasetVersion. */
477+
public UnaryCallSettings.Builder<RestoreDatasetVersionRequest, Operation>
478+
restoreDatasetVersionSettings() {
479+
return getStubSettingsBuilder().restoreDatasetVersionSettings();
480+
}
481+
482+
/** Returns the builder for the settings used for calls to restoreDatasetVersion. */
483+
public OperationCallSettings.Builder<
484+
RestoreDatasetVersionRequest, DatasetVersion, RestoreDatasetVersionOperationMetadata>
485+
restoreDatasetVersionOperationSettings() {
486+
return getStubSettingsBuilder().restoreDatasetVersionOperationSettings();
487+
}
488+
385489
/** Returns the builder for the settings used for calls to listDataItems. */
386490
public PagedCallSettings.Builder<
387491
ListDataItemsRequest, ListDataItemsResponse, ListDataItemsPagedResponse>

java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ public final void cancelTrainingPipeline(CancelTrainingPipelineRequest request)
958958
* @param pipelineJob Required. The PipelineJob to create.
959959
* @param pipelineJobId The ID to use for the PipelineJob, which will become the final component
960960
* of the PipelineJob name. If not provided, an ID will be automatically generated.
961-
* <p>This value should be less than 128 characters, and valid characters are /[a-z][0-9]-/.
961+
* <p>This value should be less than 128 characters, and valid characters are `/[a-z][0-9]-/`.
962962
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
963963
*/
964964
public final PipelineJob createPipelineJob(
@@ -998,7 +998,7 @@ public final PipelineJob createPipelineJob(
998998
* @param pipelineJob Required. The PipelineJob to create.
999999
* @param pipelineJobId The ID to use for the PipelineJob, which will become the final component
10001000
* of the PipelineJob name. If not provided, an ID will be automatically generated.
1001-
* <p>This value should be less than 128 characters, and valid characters are /[a-z][0-9]-/.
1001+
* <p>This value should be less than 128 characters, and valid characters are `/[a-z][0-9]-/`.
10021002
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
10031003
*/
10041004
public final PipelineJob createPipelineJob(

java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceClient.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1174,7 +1174,7 @@ public final ReadTensorboardSizeResponse readTensorboardSize(ReadTensorboardSize
11741174
* @param tensorboardExperiment The TensorboardExperiment to create.
11751175
* @param tensorboardExperimentId Required. The ID to use for the Tensorboard experiment, which
11761176
* becomes the final component of the Tensorboard experiment's resource name.
1177-
* <p>This value should be 1-128 characters, and valid characters are /[a-z][0-9]-/.
1177+
* <p>This value should be 1-128 characters, and valid characters are `/[a-z][0-9]-/`.
11781178
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
11791179
*/
11801180
public final TensorboardExperiment createTensorboardExperiment(
@@ -1220,7 +1220,7 @@ public final TensorboardExperiment createTensorboardExperiment(
12201220
* @param tensorboardExperiment The TensorboardExperiment to create.
12211221
* @param tensorboardExperimentId Required. The ID to use for the Tensorboard experiment, which
12221222
* becomes the final component of the Tensorboard experiment's resource name.
1223-
* <p>This value should be 1-128 characters, and valid characters are /[a-z][0-9]-/.
1223+
* <p>This value should be 1-128 characters, and valid characters are `/[a-z][0-9]-/`.
12241224
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
12251225
*/
12261226
public final TensorboardExperiment createTensorboardExperiment(
@@ -1901,7 +1901,7 @@ public final OperationFuture<Empty, DeleteOperationMetadata> deleteTensorboardEx
19011901
* @param tensorboardRun Required. The TensorboardRun to create.
19021902
* @param tensorboardRunId Required. The ID to use for the Tensorboard run, which becomes the
19031903
* final component of the Tensorboard run's resource name.
1904-
* <p>This value should be 1-128 characters, and valid characters are /[a-z][0-9]-/.
1904+
* <p>This value should be 1-128 characters, and valid characters are `/[a-z][0-9]-/`.
19051905
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
19061906
*/
19071907
public final TensorboardRun createTensorboardRun(
@@ -1944,7 +1944,7 @@ public final TensorboardRun createTensorboardRun(
19441944
* @param tensorboardRun Required. The TensorboardRun to create.
19451945
* @param tensorboardRunId Required. The ID to use for the Tensorboard run, which becomes the
19461946
* final component of the Tensorboard run's resource name.
1947-
* <p>This value should be 1-128 characters, and valid characters are /[a-z][0-9]-/.
1947+
* <p>This value should be 1-128 characters, and valid characters are `/[a-z][0-9]-/`.
19481948
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
19491949
*/
19501950
public final TensorboardRun createTensorboardRun(

java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/gapic_metadata.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,15 @@
1313
"CreateDataset": {
1414
"methods": ["createDatasetAsync", "createDatasetAsync", "createDatasetAsync", "createDatasetOperationCallable", "createDatasetCallable"]
1515
},
16+
"CreateDatasetVersion": {
17+
"methods": ["createDatasetVersionAsync", "createDatasetVersionAsync", "createDatasetVersionAsync", "createDatasetVersionOperationCallable", "createDatasetVersionCallable"]
18+
},
1619
"DeleteDataset": {
1720
"methods": ["deleteDatasetAsync", "deleteDatasetAsync", "deleteDatasetAsync", "deleteDatasetOperationCallable", "deleteDatasetCallable"]
1821
},
22+
"DeleteDatasetVersion": {
23+
"methods": ["deleteDatasetVersionAsync", "deleteDatasetVersionAsync", "deleteDatasetVersionAsync", "deleteDatasetVersionOperationCallable", "deleteDatasetVersionCallable"]
24+
},
1925
"DeleteSavedQuery": {
2026
"methods": ["deleteSavedQueryAsync", "deleteSavedQueryAsync", "deleteSavedQueryAsync", "deleteSavedQueryOperationCallable", "deleteSavedQueryCallable"]
2127
},
@@ -28,6 +34,9 @@
2834
"GetDataset": {
2935
"methods": ["getDataset", "getDataset", "getDataset", "getDatasetCallable"]
3036
},
37+
"GetDatasetVersion": {
38+
"methods": ["getDatasetVersion", "getDatasetVersion", "getDatasetVersion", "getDatasetVersionCallable"]
39+
},
3140
"GetIamPolicy": {
3241
"methods": ["getIamPolicy", "getIamPolicyCallable"]
3342
},
@@ -43,6 +52,9 @@
4352
"ListDataItems": {
4453
"methods": ["listDataItems", "listDataItems", "listDataItems", "listDataItemsPagedCallable", "listDataItemsCallable"]
4554
},
55+
"ListDatasetVersions": {
56+
"methods": ["listDatasetVersions", "listDatasetVersions", "listDatasetVersions", "listDatasetVersionsPagedCallable", "listDatasetVersionsCallable"]
57+
},
4658
"ListDatasets": {
4759
"methods": ["listDatasets", "listDatasets", "listDatasets", "listDatasetsPagedCallable", "listDatasetsCallable"]
4860
},
@@ -52,6 +64,9 @@
5264
"ListSavedQueries": {
5365
"methods": ["listSavedQueries", "listSavedQueries", "listSavedQueries", "listSavedQueriesPagedCallable", "listSavedQueriesCallable"]
5466
},
67+
"RestoreDatasetVersion": {
68+
"methods": ["restoreDatasetVersionAsync", "restoreDatasetVersionAsync", "restoreDatasetVersionAsync", "restoreDatasetVersionOperationCallable", "restoreDatasetVersionCallable"]
69+
},
5570
"SearchDataItems": {
5671
"methods": ["searchDataItems", "searchDataItemsPagedCallable", "searchDataItemsCallable"]
5772
},

java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DatasetServiceStub.java

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
import static com.google.cloud.aiplatform.v1.DatasetServiceClient.ListAnnotationsPagedResponse;
2020
import static com.google.cloud.aiplatform.v1.DatasetServiceClient.ListDataItemsPagedResponse;
21+
import static com.google.cloud.aiplatform.v1.DatasetServiceClient.ListDatasetVersionsPagedResponse;
2122
import static com.google.cloud.aiplatform.v1.DatasetServiceClient.ListDatasetsPagedResponse;
2223
import static com.google.cloud.aiplatform.v1.DatasetServiceClient.ListLocationsPagedResponse;
2324
import static com.google.cloud.aiplatform.v1.DatasetServiceClient.ListSavedQueriesPagedResponse;
@@ -29,26 +30,35 @@
2930
import com.google.cloud.aiplatform.v1.AnnotationSpec;
3031
import com.google.cloud.aiplatform.v1.CreateDatasetOperationMetadata;
3132
import com.google.cloud.aiplatform.v1.CreateDatasetRequest;
33+
import com.google.cloud.aiplatform.v1.CreateDatasetVersionOperationMetadata;
34+
import com.google.cloud.aiplatform.v1.CreateDatasetVersionRequest;
3235
import com.google.cloud.aiplatform.v1.Dataset;
36+
import com.google.cloud.aiplatform.v1.DatasetVersion;
3337
import com.google.cloud.aiplatform.v1.DeleteDatasetRequest;
38+
import com.google.cloud.aiplatform.v1.DeleteDatasetVersionRequest;
3439
import com.google.cloud.aiplatform.v1.DeleteOperationMetadata;
3540
import com.google.cloud.aiplatform.v1.DeleteSavedQueryRequest;
3641
import com.google.cloud.aiplatform.v1.ExportDataOperationMetadata;
3742
import com.google.cloud.aiplatform.v1.ExportDataRequest;
3843
import com.google.cloud.aiplatform.v1.ExportDataResponse;
3944
import com.google.cloud.aiplatform.v1.GetAnnotationSpecRequest;
4045
import com.google.cloud.aiplatform.v1.GetDatasetRequest;
46+
import com.google.cloud.aiplatform.v1.GetDatasetVersionRequest;
4147
import com.google.cloud.aiplatform.v1.ImportDataOperationMetadata;
4248
import com.google.cloud.aiplatform.v1.ImportDataRequest;
4349
import com.google.cloud.aiplatform.v1.ImportDataResponse;
4450
import com.google.cloud.aiplatform.v1.ListAnnotationsRequest;
4551
import com.google.cloud.aiplatform.v1.ListAnnotationsResponse;
4652
import com.google.cloud.aiplatform.v1.ListDataItemsRequest;
4753
import com.google.cloud.aiplatform.v1.ListDataItemsResponse;
54+
import com.google.cloud.aiplatform.v1.ListDatasetVersionsRequest;
55+
import com.google.cloud.aiplatform.v1.ListDatasetVersionsResponse;
4856
import com.google.cloud.aiplatform.v1.ListDatasetsRequest;
4957
import com.google.cloud.aiplatform.v1.ListDatasetsResponse;
5058
import com.google.cloud.aiplatform.v1.ListSavedQueriesRequest;
5159
import com.google.cloud.aiplatform.v1.ListSavedQueriesResponse;
60+
import com.google.cloud.aiplatform.v1.RestoreDatasetVersionOperationMetadata;
61+
import com.google.cloud.aiplatform.v1.RestoreDatasetVersionRequest;
5262
import com.google.cloud.aiplatform.v1.SearchDataItemsRequest;
5363
import com.google.cloud.aiplatform.v1.SearchDataItemsResponse;
5464
import com.google.cloud.aiplatform.v1.UpdateDatasetRequest;
@@ -131,6 +141,52 @@ public UnaryCallable<ExportDataRequest, Operation> exportDataCallable() {
131141
throw new UnsupportedOperationException("Not implemented: exportDataCallable()");
132142
}
133143

144+
public OperationCallable<
145+
CreateDatasetVersionRequest, DatasetVersion, CreateDatasetVersionOperationMetadata>
146+
createDatasetVersionOperationCallable() {
147+
throw new UnsupportedOperationException(
148+
"Not implemented: createDatasetVersionOperationCallable()");
149+
}
150+
151+
public UnaryCallable<CreateDatasetVersionRequest, Operation> createDatasetVersionCallable() {
152+
throw new UnsupportedOperationException("Not implemented: createDatasetVersionCallable()");
153+
}
154+
155+
public OperationCallable<DeleteDatasetVersionRequest, Empty, DeleteOperationMetadata>
156+
deleteDatasetVersionOperationCallable() {
157+
throw new UnsupportedOperationException(
158+
"Not implemented: deleteDatasetVersionOperationCallable()");
159+
}
160+
161+
public UnaryCallable<DeleteDatasetVersionRequest, Operation> deleteDatasetVersionCallable() {
162+
throw new UnsupportedOperationException("Not implemented: deleteDatasetVersionCallable()");
163+
}
164+
165+
public UnaryCallable<GetDatasetVersionRequest, DatasetVersion> getDatasetVersionCallable() {
166+
throw new UnsupportedOperationException("Not implemented: getDatasetVersionCallable()");
167+
}
168+
169+
public UnaryCallable<ListDatasetVersionsRequest, ListDatasetVersionsPagedResponse>
170+
listDatasetVersionsPagedCallable() {
171+
throw new UnsupportedOperationException("Not implemented: listDatasetVersionsPagedCallable()");
172+
}
173+
174+
public UnaryCallable<ListDatasetVersionsRequest, ListDatasetVersionsResponse>
175+
listDatasetVersionsCallable() {
176+
throw new UnsupportedOperationException("Not implemented: listDatasetVersionsCallable()");
177+
}
178+
179+
public OperationCallable<
180+
RestoreDatasetVersionRequest, DatasetVersion, RestoreDatasetVersionOperationMetadata>
181+
restoreDatasetVersionOperationCallable() {
182+
throw new UnsupportedOperationException(
183+
"Not implemented: restoreDatasetVersionOperationCallable()");
184+
}
185+
186+
public UnaryCallable<RestoreDatasetVersionRequest, Operation> restoreDatasetVersionCallable() {
187+
throw new UnsupportedOperationException("Not implemented: restoreDatasetVersionCallable()");
188+
}
189+
134190
public UnaryCallable<ListDataItemsRequest, ListDataItemsPagedResponse>
135191
listDataItemsPagedCallable() {
136192
throw new UnsupportedOperationException("Not implemented: listDataItemsPagedCallable()");

0 commit comments

Comments
 (0)