Skip to content

Commit d33dc27

Browse files
1 parent 1831f37 commit d33dc27

File tree

8 files changed

+85
-44
lines changed

8 files changed

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

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

Lines changed: 38 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8116,34 +8116,54 @@ public List setMaxResults(java.lang.Integer maxResults) {
81168116
}
81178117

81188118
/**
8119-
* A comma-separated list of sort keys. Valid keys are `createdDate`, `folder`,
8120-
* `lastViewedByMeDate`, `modifiedByMeDate`, `modifiedDate`, `quotaBytesUsed`, `recency`,
8121-
* `sharedWithMeDate`, `starred`, `title`, and `title_natural`. Each key sorts ascending by
8122-
* default, but may be reversed with the `desc` modifier. Example usage:
8123-
* ?orderBy=folder,modifiedDate desc,title. Please note that there is a current limitation for
8124-
* users with approximately one million files in which the requested sort order is ignored.
8119+
* A comma-separated list of sort keys. Valid keys are: * `createdDate`: When the file was
8120+
* created. * `folder`: The folder ID. This field is sorted using alphabetical ordering. *
8121+
* `lastViewedByMeDate`: The last time the file was viewed by the user. * `modifiedByMeDate`:
8122+
* The last time the file was modified by the user. * `modifiedDate`: The last time the file
8123+
* was modified by anyone. * `quotaBytesUsed`: The number of storage quota bytes used by the
8124+
* file. * `recency`: The most recent timestamp from the file's date-time fields. *
8125+
* `sharedWithMeDate`: When the file was shared with the user, if applicable. * `starred`:
8126+
* Whether the user has starred the file. * `title`: The title of the file. This field is
8127+
* sorted using alphabetical ordering, so 1, 12, 2, 22. * `title_natural`: The title of the
8128+
* file. This field is sorted using natural sort ordering, so 1, 2, 12, 22. Each key sorts
8129+
* ascending by default, but can be reversed with the 'desc' modifier. Example usage:
8130+
* `?orderBy=folder,modifiedDate desc,title`. Note that there's a current limitation for users
8131+
* with approximately one million files in which the requested sort order is ignored.
81258132
*/
81268133
@com.google.api.client.util.Key
81278134
private java.lang.String orderBy;
81288135

8129-
/** A comma-separated list of sort keys. Valid keys are `createdDate`, `folder`, `lastViewedByMeDate`,
8130-
`modifiedByMeDate`, `modifiedDate`, `quotaBytesUsed`, `recency`, `sharedWithMeDate`, `starred`,
8131-
`title`, and `title_natural`. Each key sorts ascending by default, but may be reversed with the
8132-
`desc` modifier. Example usage: ?orderBy=folder,modifiedDate desc,title. Please note that there is
8133-
a current limitation for users with approximately one million files in which the requested sort
8134-
order is ignored.
8136+
/** A comma-separated list of sort keys. Valid keys are: * `createdDate`: When the file was created. *
8137+
`folder`: The folder ID. This field is sorted using alphabetical ordering. * `lastViewedByMeDate`:
8138+
The last time the file was viewed by the user. * `modifiedByMeDate`: The last time the file was
8139+
modified by the user. * `modifiedDate`: The last time the file was modified by anyone. *
8140+
`quotaBytesUsed`: The number of storage quota bytes used by the file. * `recency`: The most recent
8141+
timestamp from the file's date-time fields. * `sharedWithMeDate`: When the file was shared with the
8142+
user, if applicable. * `starred`: Whether the user has starred the file. * `title`: The title of
8143+
the file. This field is sorted using alphabetical ordering, so 1, 12, 2, 22. * `title_natural`: The
8144+
title of the file. This field is sorted using natural sort ordering, so 1, 2, 12, 22. Each key
8145+
sorts ascending by default, but can be reversed with the 'desc' modifier. Example usage:
8146+
`?orderBy=folder,modifiedDate desc,title`. Note that there's a current limitation for users with
8147+
approximately one million files in which the requested sort order is ignored.
81358148
*/
81368149
public java.lang.String getOrderBy() {
81378150
return orderBy;
81388151
}
81398152

81408153
/**
8141-
* A comma-separated list of sort keys. Valid keys are `createdDate`, `folder`,
8142-
* `lastViewedByMeDate`, `modifiedByMeDate`, `modifiedDate`, `quotaBytesUsed`, `recency`,
8143-
* `sharedWithMeDate`, `starred`, `title`, and `title_natural`. Each key sorts ascending by
8144-
* default, but may be reversed with the `desc` modifier. Example usage:
8145-
* ?orderBy=folder,modifiedDate desc,title. Please note that there is a current limitation for
8146-
* users with approximately one million files in which the requested sort order is ignored.
8154+
* A comma-separated list of sort keys. Valid keys are: * `createdDate`: When the file was
8155+
* created. * `folder`: The folder ID. This field is sorted using alphabetical ordering. *
8156+
* `lastViewedByMeDate`: The last time the file was viewed by the user. * `modifiedByMeDate`:
8157+
* The last time the file was modified by the user. * `modifiedDate`: The last time the file
8158+
* was modified by anyone. * `quotaBytesUsed`: The number of storage quota bytes used by the
8159+
* file. * `recency`: The most recent timestamp from the file's date-time fields. *
8160+
* `sharedWithMeDate`: When the file was shared with the user, if applicable. * `starred`:
8161+
* Whether the user has starred the file. * `title`: The title of the file. This field is
8162+
* sorted using alphabetical ordering, so 1, 12, 2, 22. * `title_natural`: The title of the
8163+
* file. This field is sorted using natural sort ordering, so 1, 2, 12, 22. Each key sorts
8164+
* ascending by default, but can be reversed with the 'desc' modifier. Example usage:
8165+
* `?orderBy=folder,modifiedDate desc,title`. Note that there's a current limitation for users
8166+
* with approximately one million files in which the requested sort order is ignored.
81478167
*/
81488168
public List setOrderBy(java.lang.String orderBy) {
81498169
this.orderBy = orderBy;

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-rev20240809-2.0.0</version>
12-
<name>Google Drive API v2-rev20240809-2.0.0</name>
11+
<version>v2-rev20240914-2.0.0</version>
12+
<name>Google Drive API v2-rev20240914-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-rev20240809-2.0.0</version>
25+
<version>v2-rev20240914-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-rev20240809-2.0.0'
38+
implementation 'com.google.apis:google-api-services-drive:v2-rev20240914-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-rev20240903-2.0.0</version>
25+
<version>v3-rev20240914-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-rev20240903-2.0.0'
38+
implementation 'com.google.apis:google-api-services-drive:v3-rev20240914-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 35 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6717,30 +6717,51 @@ public boolean isIncludeTeamDriveItems() {
67176717
}
67186718

67196719
/**
6720-
* A comma-separated list of sort keys. Valid keys are 'createdTime', 'folder',
6721-
* 'modifiedByMeTime', 'modifiedTime', 'name', 'name_natural', 'quotaBytesUsed', 'recency',
6722-
* 'sharedWithMeTime', 'starred', and 'viewedByMeTime'. Each key sorts ascending by default,
6723-
* but can be reversed with the 'desc' modifier. Example usage: ?orderBy=folder,modifiedTime
6724-
* desc,name.
6720+
* A comma-separated list of sort keys. Valid keys are: * `createdTime`: When the file was
6721+
* created. * `folder`: The folder ID. This field is sorted using alphabetical ordering. *
6722+
* `modifiedByMeTime`: The last time the file was modified by the user. * `modifiedTime`: The
6723+
* last time the file was modified by anyone. * `name`: The name of the file. This field is
6724+
* sorted using alphabetical ordering, so 1, 12, 2, 22. * `name_natural`: The name of the
6725+
* file. This field is sorted using natural sort ordering, so 1, 2, 12, 22. *
6726+
* `quotaBytesUsed`: The number of storage quota bytes used by the file. * `recency`: The most
6727+
* recent timestamp from the file's date-time fields. * `sharedWithMeTime`: When the file was
6728+
* shared with the user, if applicable. * `starred`: Whether the user has starred the file. *
6729+
* `viewedByMeTime`: The last time the file was viewed by the user. Each key sorts ascending
6730+
* by default, but can be reversed with the 'desc' modifier. Example usage:
6731+
* `?orderBy=folder,modifiedTime desc,name`.
67256732
*/
67266733
@com.google.api.client.util.Key
67276734
private java.lang.String orderBy;
67286735

6729-
/** A comma-separated list of sort keys. Valid keys are 'createdTime', 'folder', 'modifiedByMeTime',
6730-
'modifiedTime', 'name', 'name_natural', 'quotaBytesUsed', 'recency', 'sharedWithMeTime', 'starred',
6731-
and 'viewedByMeTime'. Each key sorts ascending by default, but can be reversed with the 'desc'
6732-
modifier. Example usage: ?orderBy=folder,modifiedTime desc,name.
6736+
/** A comma-separated list of sort keys. Valid keys are: * `createdTime`: When the file was created. *
6737+
`folder`: The folder ID. This field is sorted using alphabetical ordering. * `modifiedByMeTime`:
6738+
The last time the file was modified by the user. * `modifiedTime`: The last time the file was
6739+
modified by anyone. * `name`: The name of the file. This field is sorted using alphabetical
6740+
ordering, so 1, 12, 2, 22. * `name_natural`: The name of the file. This field is sorted using
6741+
natural sort ordering, so 1, 2, 12, 22. * `quotaBytesUsed`: The number of storage quota bytes used
6742+
by the file. * `recency`: The most recent timestamp from the file's date-time fields. *
6743+
`sharedWithMeTime`: When the file was shared with the user, if applicable. * `starred`: Whether the
6744+
user has starred the file. * `viewedByMeTime`: The last time the file was viewed by the user. Each
6745+
key sorts ascending by default, but can be reversed with the 'desc' modifier. Example usage:
6746+
`?orderBy=folder,modifiedTime desc,name`.
67336747
*/
67346748
public java.lang.String getOrderBy() {
67356749
return orderBy;
67366750
}
67376751

67386752
/**
6739-
* A comma-separated list of sort keys. Valid keys are 'createdTime', 'folder',
6740-
* 'modifiedByMeTime', 'modifiedTime', 'name', 'name_natural', 'quotaBytesUsed', 'recency',
6741-
* 'sharedWithMeTime', 'starred', and 'viewedByMeTime'. Each key sorts ascending by default,
6742-
* but can be reversed with the 'desc' modifier. Example usage: ?orderBy=folder,modifiedTime
6743-
* desc,name.
6753+
* A comma-separated list of sort keys. Valid keys are: * `createdTime`: When the file was
6754+
* created. * `folder`: The folder ID. This field is sorted using alphabetical ordering. *
6755+
* `modifiedByMeTime`: The last time the file was modified by the user. * `modifiedTime`: The
6756+
* last time the file was modified by anyone. * `name`: The name of the file. This field is
6757+
* sorted using alphabetical ordering, so 1, 12, 2, 22. * `name_natural`: The name of the
6758+
* file. This field is sorted using natural sort ordering, so 1, 2, 12, 22. *
6759+
* `quotaBytesUsed`: The number of storage quota bytes used by the file. * `recency`: The most
6760+
* recent timestamp from the file's date-time fields. * `sharedWithMeTime`: When the file was
6761+
* shared with the user, if applicable. * `starred`: Whether the user has starred the file. *
6762+
* `viewedByMeTime`: The last time the file was viewed by the user. Each key sorts ascending
6763+
* by default, but can be reversed with the 'desc' modifier. Example usage:
6764+
* `?orderBy=folder,modifiedTime desc,name`.
67446765
*/
67456766
public List setOrderBy(java.lang.String orderBy) {
67466767
this.orderBy = orderBy;

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-rev20240903-2.0.0</version>
12-
<name>Google Drive API v3-rev20240903-2.0.0</name>
11+
<version>v3-rev20240914-2.0.0</version>
12+
<name>Google Drive API v3-rev20240914-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-rev20240903-2.0.0</version>
25+
<version>v3-rev20240914-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-rev20240903-2.0.0'
38+
implementation 'com.google.apis:google-api-services-drive:v3-rev20240914-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)