Skip to content

Commit b520267

Browse files
1 parent 98cbad3 commit b520267

File tree

6 files changed

+162
-6
lines changed

6 files changed

+162
-6
lines changed

clients/google-api-services-vault/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-vault</artifactId>
25-
<version>v1-rev20250130-2.0.0</version>
25+
<version>v1-rev20250212-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-vault:v1-rev20250130-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vault:v1-rev20250212-2.0.0'
3939
}
4040
```
4141

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.vault.v1.model;
18+
19+
/**
20+
* Specify Drive documents by document ID.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Google Vault API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class DriveDocumentIds extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. A list of Drive document IDs.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<java.lang.String> ids;
38+
39+
/**
40+
* Required. A list of Drive document IDs.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<java.lang.String> getIds() {
44+
return ids;
45+
}
46+
47+
/**
48+
* Required. A list of Drive document IDs.
49+
* @param ids ids or {@code null} for none
50+
*/
51+
public DriveDocumentIds setIds(java.util.List<java.lang.String> ids) {
52+
this.ids = ids;
53+
return this;
54+
}
55+
56+
@Override
57+
public DriveDocumentIds set(String fieldName, Object value) {
58+
return (DriveDocumentIds) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public DriveDocumentIds clone() {
63+
return (DriveDocumentIds) super.clone();
64+
}
65+
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.vault.v1.model;
18+
19+
/**
20+
* The Drive documents to search.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Google Vault API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class DriveDocumentInfo extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Specify Drive documents by document ID.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private DriveDocumentIds documentIds;
38+
39+
/**
40+
* Specify Drive documents by document ID.
41+
* @return value or {@code null} for none
42+
*/
43+
public DriveDocumentIds getDocumentIds() {
44+
return documentIds;
45+
}
46+
47+
/**
48+
* Specify Drive documents by document ID.
49+
* @param documentIds documentIds or {@code null} for none
50+
*/
51+
public DriveDocumentInfo setDocumentIds(DriveDocumentIds documentIds) {
52+
this.documentIds = documentIds;
53+
return this;
54+
}
55+
56+
@Override
57+
public DriveDocumentInfo set(String fieldName, Object value) {
58+
return (DriveDocumentInfo) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public DriveDocumentInfo clone() {
63+
return (DriveDocumentInfo) super.clone();
64+
}
65+
66+
}

clients/google-api-services-vault/v1/2.0.0/com/google/api/services/vault/v1/model/Query.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ public final class Query extends com.google.api.client.json.GenericJson {
5757
@com.google.api.client.util.Key
5858
private java.lang.String dataScope;
5959

60+
/**
61+
* Required when **SearchMethod** is **DRIVE_DOCUMENT**.
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private DriveDocumentInfo driveDocumentInfo;
66+
6067
/**
6168
* Set Drive search-specific options.
6269
* The value may be {@code null}.
@@ -244,6 +251,23 @@ public Query setDataScope(java.lang.String dataScope) {
244251
return this;
245252
}
246253

254+
/**
255+
* Required when **SearchMethod** is **DRIVE_DOCUMENT**.
256+
* @return value or {@code null} for none
257+
*/
258+
public DriveDocumentInfo getDriveDocumentInfo() {
259+
return driveDocumentInfo;
260+
}
261+
262+
/**
263+
* Required when **SearchMethod** is **DRIVE_DOCUMENT**.
264+
* @param driveDocumentInfo driveDocumentInfo or {@code null} for none
265+
*/
266+
public Query setDriveDocumentInfo(DriveDocumentInfo driveDocumentInfo) {
267+
this.driveDocumentInfo = driveDocumentInfo;
268+
return this;
269+
}
270+
247271
/**
248272
* Set Drive search-specific options.
249273
* @return value or {@code null} for none

clients/google-api-services-vault/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-vault</artifactId>
11-
<version>v1-rev20250130-2.0.0</version>
12-
<name>Google Vault API v1-rev20250130-2.0.0</name>
11+
<version>v1-rev20250212-2.0.0</version>
12+
<name>Google Vault API v1-rev20250212-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-vault/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-vault</artifactId>
25-
<version>v1-rev20250130-2.0.0</version>
25+
<version>v1-rev20250212-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-vault:v1-rev20250130-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vault:v1-rev20250212-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)