Skip to content

Commit d4ab88d

Browse files
1 parent 2763327 commit d4ab88d

File tree

4 files changed

+46
-26
lines changed

4 files changed

+46
-26
lines changed

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

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

Lines changed: 40 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3514,7 +3514,8 @@ public Drives drives() {
35143514
public class Drives {
35153515

35163516
/**
3517-
* Creates a shared drive.
3517+
* Creates a shared drive. For more information, see [Manage shared
3518+
* drives](https://developers.google.com/workspace/drive/api/guides/manage-shareddrives).
35183519
*
35193520
* Create a request for the method "drives.create".
35203521
*
@@ -3539,7 +3540,8 @@ public class Create extends DriveRequest<com.google.api.services.drive.model.Dri
35393540
private static final String REST_PATH = "drives";
35403541

35413542
/**
3542-
* Creates a shared drive.
3543+
* Creates a shared drive. For more information, see [Manage shared
3544+
* drives](https://developers.google.com/workspace/drive/api/guides/manage-shareddrives).
35433545
*
35443546
* Create a request for the method "drives.create".
35453547
*
@@ -3651,7 +3653,8 @@ public Create set(String parameterName, Object value) {
36513653
}
36523654
/**
36533655
* Permanently deletes a shared drive for which the user is an `organizer`. The shared drive cannot
3654-
* contain any untrashed items.
3656+
* contain any untrashed items. For more information, see [Manage shared
3657+
* drives](https://developers.google.com/workspace/drive/api/guides/manage-shareddrives).
36553658
*
36563659
* Create a request for the method "drives.delete".
36573660
*
@@ -3673,7 +3676,8 @@ public class Delete extends DriveRequest<Void> {
36733676

36743677
/**
36753678
* Permanently deletes a shared drive for which the user is an `organizer`. The shared drive
3676-
* cannot contain any untrashed items.
3679+
* cannot contain any untrashed items. For more information, see [Manage shared
3680+
* drives](https://developers.google.com/workspace/drive/api/guides/manage-shareddrives).
36773681
*
36783682
* Create a request for the method "drives.delete".
36793683
*
@@ -3872,7 +3876,8 @@ public Delete set(String parameterName, Object value) {
38723876
}
38733877
}
38743878
/**
3875-
* Gets a shared drive's metadata by ID.
3879+
* Gets a shared drive's metadata by ID. For more information, see [Manage shared
3880+
* drives](https://developers.google.com/workspace/drive/api/guides/manage-shareddrives).
38763881
*
38773882
* Create a request for the method "drives.get".
38783883
*
@@ -3893,7 +3898,8 @@ public class Get extends DriveRequest<com.google.api.services.drive.model.Drive>
38933898
private static final String REST_PATH = "drives/{driveId}";
38943899

38953900
/**
3896-
* Gets a shared drive's metadata by ID.
3901+
* Gets a shared drive's metadata by ID. For more information, see [Manage shared
3902+
* drives](https://developers.google.com/workspace/drive/api/guides/manage-shareddrives).
38973903
*
38983904
* Create a request for the method "drives.get".
38993905
*
@@ -4051,7 +4057,8 @@ public Get set(String parameterName, Object value) {
40514057
}
40524058
}
40534059
/**
4054-
* Hides a shared drive from the default view.
4060+
* Hides a shared drive from the default view. For more information, see [Manage shared
4061+
* drives](https://developers.google.com/workspace/drive/api/guides/manage-shareddrives).
40554062
*
40564063
* Create a request for the method "drives.hide".
40574064
*
@@ -4072,7 +4079,8 @@ public class Hide extends DriveRequest<com.google.api.services.drive.model.Drive
40724079
private static final String REST_PATH = "drives/{driveId}/hide";
40734080

40744081
/**
4075-
* Hides a shared drive from the default view.
4082+
* Hides a shared drive from the default view. For more information, see [Manage shared
4083+
* drives](https://developers.google.com/workspace/drive/api/guides/manage-shareddrives).
40764084
*
40774085
* Create a request for the method "drives.hide".
40784086
*
@@ -4375,7 +4383,8 @@ public List set(String parameterName, Object value) {
43754383
}
43764384
}
43774385
/**
4378-
* Restores a shared drive to the default view.
4386+
* Restores a shared drive to the default view. For more information, see [Manage shared
4387+
* drives](https://developers.google.com/workspace/drive/api/guides/manage-shareddrives).
43794388
*
43804389
* Create a request for the method "drives.unhide".
43814390
*
@@ -4396,7 +4405,8 @@ public class Unhide extends DriveRequest<com.google.api.services.drive.model.Dri
43964405
private static final String REST_PATH = "drives/{driveId}/unhide";
43974406

43984407
/**
4399-
* Restores a shared drive to the default view.
4408+
* Restores a shared drive to the default view. For more information, see [Manage shared
4409+
* drives](https://developers.google.com/workspace/drive/api/guides/manage-shareddrives).
44004410
*
44014411
* Create a request for the method "drives.unhide".
44024412
*
@@ -4490,7 +4500,8 @@ public Unhide set(String parameterName, Object value) {
44904500
}
44914501
}
44924502
/**
4493-
* Updates the metadata for a shared drive.
4503+
* Updates the metadata for a shared drive. For more information, see [Manage shared
4504+
* drives](https://developers.google.com/workspace/drive/api/guides/manage-shareddrives).
44944505
*
44954506
* Create a request for the method "drives.update".
44964507
*
@@ -4512,7 +4523,8 @@ public class Update extends DriveRequest<com.google.api.services.drive.model.Dri
45124523
private static final String REST_PATH = "drives/{driveId}";
45134524

45144525
/**
4515-
* Updates the metadata for a shared drive.
4526+
* Updates the metadata for a shared drive. For more information, see [Manage shared
4527+
* drives](https://developers.google.com/workspace/drive/api/guides/manage-shareddrives).
45164528
*
45174529
* Create a request for the method "drives.update".
45184530
*
@@ -11557,7 +11569,8 @@ public class Revisions {
1155711569
/**
1155811570
* Permanently deletes a file version. You can only delete revisions for files with binary content
1155911571
* in Google Drive, like images or videos. Revisions for other files, like Google Docs or Sheets,
11560-
* and the last remaining file version can't be deleted.
11572+
* and the last remaining file version can't be deleted. For more information, see [Manage file
11573+
* revisions](https://developers.google.com/drive/api/guides/manage-revisions).
1156111574
*
1156211575
* Create a request for the method "revisions.delete".
1156311576
*
@@ -11581,7 +11594,8 @@ public class Delete extends DriveRequest<Void> {
1158111594
/**
1158211595
* Permanently deletes a file version. You can only delete revisions for files with binary content
1158311596
* in Google Drive, like images or videos. Revisions for other files, like Google Docs or Sheets,
11584-
* and the last remaining file version can't be deleted.
11597+
* and the last remaining file version can't be deleted. For more information, see [Manage file
11598+
* revisions](https://developers.google.com/drive/api/guides/manage-revisions).
1158511599
*
1158611600
* Create a request for the method "revisions.delete".
1158711601
*
@@ -11693,7 +11707,8 @@ public Delete set(String parameterName, Object value) {
1169311707
}
1169411708
}
1169511709
/**
11696-
* Gets a revision's metadata or content by ID.
11710+
* Gets a revision's metadata or content by ID. For more information, see [Manage file
11711+
* revisions](https://developers.google.com/workspace/drive/api/guides/manage-revisions).
1169711712
*
1169811713
* Create a request for the method "revisions.get".
1169911714
*
@@ -11715,7 +11730,8 @@ public class Get extends DriveRequest<com.google.api.services.drive.model.Revisi
1171511730
private static final String REST_PATH = "files/{fileId}/revisions/{revisionId}";
1171611731

1171711732
/**
11718-
* Gets a revision's metadata or content by ID.
11733+
* Gets a revision's metadata or content by ID. For more information, see [Manage file
11734+
* revisions](https://developers.google.com/workspace/drive/api/guides/manage-revisions).
1171911735
*
1172011736
* Create a request for the method "revisions.get".
1172111737
*
@@ -11916,7 +11932,8 @@ public Get set(String parameterName, Object value) {
1191611932
}
1191711933
}
1191811934
/**
11919-
* Lists a file's revisions.
11935+
* Lists a file's revisions. For more information, see [Manage file
11936+
* revisions](https://developers.google.com/workspace/drive/api/guides/manage-revisions).
1192011937
*
1192111938
* Create a request for the method "revisions.list".
1192211939
*
@@ -11937,7 +11954,8 @@ public class List extends DriveRequest<com.google.api.services.drive.model.Revis
1193711954
private static final String REST_PATH = "files/{fileId}/revisions";
1193811955

1193911956
/**
11940-
* Lists a file's revisions.
11957+
* Lists a file's revisions. For more information, see [Manage file
11958+
* revisions](https://developers.google.com/workspace/drive/api/guides/manage-revisions).
1194111959
*
1194211960
* Create a request for the method "revisions.list".
1194311961
*
@@ -12080,7 +12098,8 @@ public List set(String parameterName, Object value) {
1208012098
}
1208112099
}
1208212100
/**
12083-
* Updates a revision with patch semantics.
12101+
* Updates a revision with patch semantics. For more information, see [Manage file
12102+
* revisions](https://developers.google.com/workspace/drive/api/guides/manage-revisions).
1208412103
*
1208512104
* Create a request for the method "revisions.update".
1208612105
*
@@ -12103,7 +12122,8 @@ public class Update extends DriveRequest<com.google.api.services.drive.model.Rev
1210312122
private static final String REST_PATH = "files/{fileId}/revisions/{revisionId}";
1210412123

1210512124
/**
12106-
* Updates a revision with patch semantics.
12125+
* Updates a revision with patch semantics. For more information, see [Manage file
12126+
* revisions](https://developers.google.com/workspace/drive/api/guides/manage-revisions).
1210712127
*
1210812128
* Create a request for the method "revisions.update".
1210912129
*

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-rev20250723-2.0.0</version>
12-
<name>Google Drive API v3-rev20250723-2.0.0</name>
11+
<version>v3-rev20250819-2.0.0</version>
12+
<name>Google Drive API v3-rev20250819-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)