diff --git a/clients/google-api-services-vault/v1/2.0.0/README.md b/clients/google-api-services-vault/v1/2.0.0/README.md index ff540b33397..5f03c009883 100644 --- a/clients/google-api-services-vault/v1/2.0.0/README.md +++ b/clients/google-api-services-vault/v1/2.0.0/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-vault - v1-rev20260528-2.0.0 + v1-rev20260615-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-vault:v1-rev20260528-2.0.0' + implementation 'com.google.apis:google-api-services-vault:v1-rev20260615-2.0.0' } ``` diff --git a/clients/google-api-services-vault/v1/2.0.0/com/google/api/services/vault/v1/model/CorpusQuery.java b/clients/google-api-services-vault/v1/2.0.0/com/google/api/services/vault/v1/model/CorpusQuery.java index bdaebffa0e9..4a187a98a21 100644 --- a/clients/google-api-services-vault/v1/2.0.0/com/google/api/services/vault/v1/model/CorpusQuery.java +++ b/clients/google-api-services-vault/v1/2.0.0/com/google/api/services/vault/v1/model/CorpusQuery.java @@ -43,6 +43,13 @@ public final class CorpusQuery extends com.google.api.client.json.GenericJson { @com.google.api.client.util.Key private HeldDriveQuery driveQuery; + /** + * Service-specific options for Gemini holds. If set, **CorpusType** must be **GEMINI**. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private HeldGeminiQuery geminiQuery; + /** * Service-specific options for Groups holds. If set, **CorpusType** must be **GROUPS**. * The value may be {@code null}. @@ -105,6 +112,23 @@ public CorpusQuery setDriveQuery(HeldDriveQuery driveQuery) { return this; } + /** + * Service-specific options for Gemini holds. If set, **CorpusType** must be **GEMINI**. + * @return value or {@code null} for none + */ + public HeldGeminiQuery getGeminiQuery() { + return geminiQuery; + } + + /** + * Service-specific options for Gemini holds. If set, **CorpusType** must be **GEMINI**. + * @param geminiQuery geminiQuery or {@code null} for none + */ + public CorpusQuery setGeminiQuery(HeldGeminiQuery geminiQuery) { + this.geminiQuery = geminiQuery; + return this; + } + /** * Service-specific options for Groups holds. If set, **CorpusType** must be **GROUPS**. * @return value or {@code null} for none diff --git a/clients/google-api-services-vault/v1/2.0.0/com/google/api/services/vault/v1/model/HeldGeminiQuery.java b/clients/google-api-services-vault/v1/2.0.0/com/google/api/services/vault/v1/model/HeldGeminiQuery.java new file mode 100644 index 00000000000..ed81efc73fa --- /dev/null +++ b/clients/google-api-services-vault/v1/2.0.0/com/google/api/services/vault/v1/model/HeldGeminiQuery.java @@ -0,0 +1,42 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ +/* + * This code was generated by https://github.com/googleapis/google-api-java-client-services/ + * Modify at your own risk. + */ + +package com.google.api.services.vault.v1.model; + +/** + * Options for Gemini holds. + * + *

This is the Java data model class that specifies how to parse/serialize into the JSON that is + * transmitted over HTTP when working with the Google Vault API. For a detailed explanation see: + * https://developers.google.com/api-client-library/java/google-http-java-client/json + *

+ * + * @author Google, Inc. + */ +@SuppressWarnings("javadoc") +public final class HeldGeminiQuery extends com.google.api.client.json.GenericJson { + + @Override + public HeldGeminiQuery set(String fieldName, Object value) { + return (HeldGeminiQuery) super.set(fieldName, value); + } + + @Override + public HeldGeminiQuery clone() { + return (HeldGeminiQuery) super.clone(); + } + +} diff --git a/clients/google-api-services-vault/v1/2.0.0/pom.xml b/clients/google-api-services-vault/v1/2.0.0/pom.xml index 4daa505bd82..b13404f75b3 100644 --- a/clients/google-api-services-vault/v1/2.0.0/pom.xml +++ b/clients/google-api-services-vault/v1/2.0.0/pom.xml @@ -8,8 +8,8 @@ com.google.apis google-api-services-vault - v1-rev20260528-2.0.0 - Google Vault API v1-rev20260528-2.0.0 + v1-rev20260615-2.0.0 + Google Vault API v1-rev20260615-2.0.0 jar 2011 diff --git a/clients/google-api-services-vault/v1/README.md b/clients/google-api-services-vault/v1/README.md index ff540b33397..5f03c009883 100644 --- a/clients/google-api-services-vault/v1/README.md +++ b/clients/google-api-services-vault/v1/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-vault - v1-rev20260528-2.0.0 + v1-rev20260615-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-vault:v1-rev20260528-2.0.0' + implementation 'com.google.apis:google-api-services-vault:v1-rev20260615-2.0.0' } ```