Skip to content

Commit 60bbb0a

Browse files
1 parent 53b00ce commit 60bbb0a

File tree

11 files changed

+69
-53
lines changed

11 files changed

+69
-53
lines changed

clients/google-api-services-drive/v2/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-drive</artifactId>
25-
<version>v2-rev20240730-2.0.0</version>
25+
<version>v2-rev20240809-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-drive:v2-rev20240730-2.0.0'
38+
implementation 'com.google.apis:google-api-services-drive:v2-rev20240809-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-drive/v2/2.0.0/com/google/api/services/drive/model/File.java

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,8 @@ public final class File extends com.google.api.client.json.GenericJson {
288288
private Labels labels;
289289

290290
/**
291-
* Output only. The last user to modify this file.
291+
* Output only. The last user to modify this file. This field is only populated when the last
292+
* modification was performed by a signed-in user.
292293
* The value may be {@code null}.
293294
*/
294295
@com.google.api.client.util.Key
@@ -396,11 +397,11 @@ public final class File extends com.google.api.client.json.GenericJson {
396397
private java.util.List<User> owners;
397398

398399
/**
399-
* Collection of parent folders which contain this file. If not specified as part of an insert
400-
* request, the file will be placed directly in the user's My Drive folder. If not specified as
401-
* part of a copy request, the file will inherit any discoverable parents of the source file.
402-
* Update requests can also use the `addParents` and `removeParents` parameters to modify the
403-
* parents list.
400+
* The ID of the parent folder containing the file. A file can only have one parent folder;
401+
* specifying multiple parents isn't supported. If not specified as part of an insert request, the
402+
* file is placed directly in the user's My Drive folder. If not specified as part of a copy
403+
* request, the file inherits any discoverable parent of the source file. Update requests must use
404+
* the `addParents` and `removeParents` parameters to modify the parents list.
404405
* The value may be {@code null}.
405406
*/
406407
@com.google.api.client.util.Key
@@ -1217,15 +1218,17 @@ public File setLabels(Labels labels) {
12171218
}
12181219

12191220
/**
1220-
* Output only. The last user to modify this file.
1221+
* Output only. The last user to modify this file. This field is only populated when the last
1222+
* modification was performed by a signed-in user.
12211223
* @return value or {@code null} for none
12221224
*/
12231225
public User getLastModifyingUser() {
12241226
return lastModifyingUser;
12251227
}
12261228

12271229
/**
1228-
* Output only. The last user to modify this file.
1230+
* Output only. The last user to modify this file. This field is only populated when the last
1231+
* modification was performed by a signed-in user.
12291232
* @param lastModifyingUser lastModifyingUser or {@code null} for none
12301233
*/
12311234
public File setLastModifyingUser(User lastModifyingUser) {
@@ -1475,23 +1478,23 @@ public File setOwners(java.util.List<User> owners) {
14751478
}
14761479

14771480
/**
1478-
* Collection of parent folders which contain this file. If not specified as part of an insert
1479-
* request, the file will be placed directly in the user's My Drive folder. If not specified as
1480-
* part of a copy request, the file will inherit any discoverable parents of the source file.
1481-
* Update requests can also use the `addParents` and `removeParents` parameters to modify the
1482-
* parents list.
1481+
* The ID of the parent folder containing the file. A file can only have one parent folder;
1482+
* specifying multiple parents isn't supported. If not specified as part of an insert request, the
1483+
* file is placed directly in the user's My Drive folder. If not specified as part of a copy
1484+
* request, the file inherits any discoverable parent of the source file. Update requests must use
1485+
* the `addParents` and `removeParents` parameters to modify the parents list.
14831486
* @return value or {@code null} for none
14841487
*/
14851488
public java.util.List<ParentReference> getParents() {
14861489
return parents;
14871490
}
14881491

14891492
/**
1490-
* Collection of parent folders which contain this file. If not specified as part of an insert
1491-
* request, the file will be placed directly in the user's My Drive folder. If not specified as
1492-
* part of a copy request, the file will inherit any discoverable parents of the source file.
1493-
* Update requests can also use the `addParents` and `removeParents` parameters to modify the
1494-
* parents list.
1493+
* The ID of the parent folder containing the file. A file can only have one parent folder;
1494+
* specifying multiple parents isn't supported. If not specified as part of an insert request, the
1495+
* file is placed directly in the user's My Drive folder. If not specified as part of a copy
1496+
* request, the file inherits any discoverable parent of the source file. Update requests must use
1497+
* the `addParents` and `removeParents` parameters to modify the parents list.
14951498
* @param parents parents or {@code null} for none
14961499
*/
14971500
public File setParents(java.util.List<ParentReference> parents) {

clients/google-api-services-drive/v2/2.0.0/com/google/api/services/drive/model/ParentReference.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@
1717
package com.google.api.services.drive.model;
1818

1919
/**
20-
* A reference to a file's parent. Some resource methods (such as `parents.get`) require a
21-
* `parentId`. Use the `parents.list` method to retrieve the ID for a parent.
20+
* A reference to a file's parent. A file can only have one parent folder; specifying multiple
21+
* parents isn't supported. Some resource methods (such as `parents.get`) require a `parentId`. Use
22+
* the `parents.list` method to retrieve the ID for a parent.
2223
*
2324
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2425
* transmitted over HTTP when working with the Google Drive API. For a detailed explanation see:

clients/google-api-services-drive/v2/2.0.0/com/google/api/services/drive/model/Revision.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ public final class Revision extends com.google.api.client.json.GenericJson {
7575
private java.lang.String kind;
7676

7777
/**
78-
* Output only. The last user to modify this revision.
78+
* Output only. The last user to modify this revision. This field is only populated when the last
79+
* modification was performed by a signed-in user.
7980
* The value may be {@code null}.
8081
*/
8182
@com.google.api.client.util.Key
@@ -275,15 +276,17 @@ public Revision setKind(java.lang.String kind) {
275276
}
276277

277278
/**
278-
* Output only. The last user to modify this revision.
279+
* Output only. The last user to modify this revision. This field is only populated when the last
280+
* modification was performed by a signed-in user.
279281
* @return value or {@code null} for none
280282
*/
281283
public User getLastModifyingUser() {
282284
return lastModifyingUser;
283285
}
284286

285287
/**
286-
* Output only. The last user to modify this revision.
288+
* Output only. The last user to modify this revision. This field is only populated when the last
289+
* modification was performed by a signed-in user.
287290
* @param lastModifyingUser lastModifyingUser or {@code null} for none
288291
*/
289292
public Revision setLastModifyingUser(User lastModifyingUser) {

clients/google-api-services-drive/v2/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-drive</artifactId>
11-
<version>v2-rev20240730-2.0.0</version>
12-
<name>Google Drive API v2-rev20240730-2.0.0</name>
11+
<version>v2-rev20240809-2.0.0</version>
12+
<name>Google Drive API v2-rev20240809-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-drive/v2/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-drive</artifactId>
25-
<version>v2-rev20240730-2.0.0</version>
25+
<version>v2-rev20240809-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-drive:v2-rev20240730-2.0.0'
38+
implementation 'com.google.apis:google-api-services-drive:v2-rev20240809-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-drive/v3/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-drive</artifactId>
25-
<version>v3-rev20240730-2.0.0</version>
25+
<version>v3-rev20240809-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-drive:v3-rev20240730-2.0.0'
38+
implementation 'com.google.apis:google-api-services-drive:v3-rev20240809-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-drive/v3/2.0.0/com/google/api/services/drive/model/File.java

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,8 @@ public final class File extends com.google.api.client.json.GenericJson {
210210
private LabelInfo labelInfo;
211211

212212
/**
213-
* Output only. The last user to modify the file.
213+
* Output only. The last user to modify the file. This field is only populated when the last
214+
* modification was performed by a signed-in user.
214215
* The value may be {@code null}.
215216
*/
216217
@com.google.api.client.util.Key
@@ -296,10 +297,11 @@ public final class File extends com.google.api.client.json.GenericJson {
296297
private java.util.List<User> owners;
297298

298299
/**
299-
* The IDs of the parent folders which contain the file. If not specified as part of a create
300-
* request, the file is placed directly in the user's My Drive folder. If not specified as part of
301-
* a copy request, the file inherits any discoverable parents of the source file. Update requests
302-
* must use the `addParents` and `removeParents` parameters to modify the parents list.
300+
* The ID of the parent folder containing the file. A file can only have one parent folder;
301+
* specifying multiple parents isn't supported. If not specified as part of a create request, the
302+
* file is placed directly in the user's My Drive folder. If not specified as part of a copy
303+
* request, the file inherits any discoverable parent of the source file. Update requests must use
304+
* the `addParents` and `removeParents` parameters to modify the parents list.
303305
* The value may be {@code null}.
304306
*/
305307
@com.google.api.client.util.Key
@@ -936,15 +938,17 @@ public File setLabelInfo(LabelInfo labelInfo) {
936938
}
937939

938940
/**
939-
* Output only. The last user to modify the file.
941+
* Output only. The last user to modify the file. This field is only populated when the last
942+
* modification was performed by a signed-in user.
940943
* @return value or {@code null} for none
941944
*/
942945
public User getLastModifyingUser() {
943946
return lastModifyingUser;
944947
}
945948

946949
/**
947-
* Output only. The last user to modify the file.
950+
* Output only. The last user to modify the file. This field is only populated when the last
951+
* modification was performed by a signed-in user.
948952
* @param lastModifyingUser lastModifyingUser or {@code null} for none
949953
*/
950954
public File setLastModifyingUser(User lastModifyingUser) {
@@ -1141,21 +1145,23 @@ public File setOwners(java.util.List<User> owners) {
11411145
}
11421146

11431147
/**
1144-
* The IDs of the parent folders which contain the file. If not specified as part of a create
1145-
* request, the file is placed directly in the user's My Drive folder. If not specified as part of
1146-
* a copy request, the file inherits any discoverable parents of the source file. Update requests
1147-
* must use the `addParents` and `removeParents` parameters to modify the parents list.
1148+
* The ID of the parent folder containing the file. A file can only have one parent folder;
1149+
* specifying multiple parents isn't supported. If not specified as part of a create request, the
1150+
* file is placed directly in the user's My Drive folder. If not specified as part of a copy
1151+
* request, the file inherits any discoverable parent of the source file. Update requests must use
1152+
* the `addParents` and `removeParents` parameters to modify the parents list.
11481153
* @return value or {@code null} for none
11491154
*/
11501155
public java.util.List<java.lang.String> getParents() {
11511156
return parents;
11521157
}
11531158

11541159
/**
1155-
* The IDs of the parent folders which contain the file. If not specified as part of a create
1156-
* request, the file is placed directly in the user's My Drive folder. If not specified as part of
1157-
* a copy request, the file inherits any discoverable parents of the source file. Update requests
1158-
* must use the `addParents` and `removeParents` parameters to modify the parents list.
1160+
* The ID of the parent folder containing the file. A file can only have one parent folder;
1161+
* specifying multiple parents isn't supported. If not specified as part of a create request, the
1162+
* file is placed directly in the user's My Drive folder. If not specified as part of a copy
1163+
* request, the file inherits any discoverable parent of the source file. Update requests must use
1164+
* the `addParents` and `removeParents` parameters to modify the parents list.
11591165
* @param parents parents or {@code null} for none
11601166
*/
11611167
public File setParents(java.util.List<java.lang.String> parents) {

clients/google-api-services-drive/v3/2.0.0/com/google/api/services/drive/model/Revision.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ public final class Revision extends com.google.api.client.json.GenericJson {
6363
private java.lang.String kind;
6464

6565
/**
66-
* Output only. The last user to modify this revision.
66+
* Output only. The last user to modify this revision. This field is only populated when the last
67+
* modification was performed by a signed-in user.
6768
* The value may be {@code null}.
6869
*/
6970
@com.google.api.client.util.Key
@@ -214,15 +215,17 @@ public Revision setKind(java.lang.String kind) {
214215
}
215216

216217
/**
217-
* Output only. The last user to modify this revision.
218+
* Output only. The last user to modify this revision. This field is only populated when the last
219+
* modification was performed by a signed-in user.
218220
* @return value or {@code null} for none
219221
*/
220222
public User getLastModifyingUser() {
221223
return lastModifyingUser;
222224
}
223225

224226
/**
225-
* Output only. The last user to modify this revision.
227+
* Output only. The last user to modify this revision. This field is only populated when the last
228+
* modification was performed by a signed-in user.
226229
* @param lastModifyingUser lastModifyingUser or {@code null} for none
227230
*/
228231
public Revision setLastModifyingUser(User lastModifyingUser) {

clients/google-api-services-drive/v3/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-drive</artifactId>
11-
<version>v3-rev20240730-2.0.0</version>
12-
<name>Google Drive API v3-rev20240730-2.0.0</name>
11+
<version>v3-rev20240809-2.0.0</version>
12+
<name>Google Drive API v3-rev20240809-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)