Skip to content

Commit 9cbf999

Browse files
feat: Automated regeneration of Drive client (googleapis#12168)
Auto-created at 2024-09-19 13:15:03 +0000 using the toys pull request generator.
1 parent e5255c1 commit 9cbf999

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

clients/drive/lib/google_api/drive/v3/api/files.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ defmodule GoogleApi.Drive.V3.Api.Files do
858858
* `:includeLabels` (*type:* `String.t`) - A comma-separated list of IDs of labels to include in the `labelInfo` part of the response.
859859
* `:includePermissionsForView` (*type:* `String.t`) - Specifies which additional view's permissions to include in the response. Only 'published' is supported.
860860
* `:includeTeamDriveItems` (*type:* `boolean()`) - Deprecated: Use `includeItemsFromAllDrives` instead.
861-
* `:orderBy` (*type:* `String.t`) - A comma-separated list of sort keys. Valid keys are 'createdTime', 'folder', 'modifiedByMeTime', 'modifiedTime', 'name', 'name_natural', 'quotaBytesUsed', 'recency', 'sharedWithMeTime', 'starred', and 'viewedByMeTime'. Each key sorts ascending by default, but can be reversed with the 'desc' modifier. Example usage: ?orderBy=folder,modifiedTime desc,name.
861+
* `:orderBy` (*type:* `String.t`) - A comma-separated list of sort keys. Valid keys are: * `createdTime`: When the file was created. * `folder`: The folder ID. This field is sorted using alphabetical ordering. * `modifiedByMeTime`: The last time the file was modified by the user. * `modifiedTime`: The last time the file was modified by anyone. * `name`: The name of the file. This field is sorted using alphabetical ordering, so 1, 12, 2, 22. * `name_natural`: The name of the file. This field is sorted using natural sort ordering, so 1, 2, 12, 22. * `quotaBytesUsed`: The number of storage quota bytes used by the file. * `recency`: The most recent timestamp from the file's date-time fields. * `sharedWithMeTime`: When the file was shared with the user, if applicable. * `starred`: Whether the user has starred the file. * `viewedByMeTime`: The last time the file was viewed by the user. Each key sorts ascending by default, but can be reversed with the 'desc' modifier. Example usage: `?orderBy=folder,modifiedTime desc,name`.
862862
* `:pageSize` (*type:* `integer()`) - The maximum number of files to return per page. Partial or empty result pages are possible even before the end of the files list has been reached.
863863
* `:pageToken` (*type:* `String.t`) - The token for continuing a previous list request on the next page. This should be set to the value of 'nextPageToken' from the previous response.
864864
* `:q` (*type:* `String.t`) - A query for filtering the file results. See the "Search for files & folders" guide for supported syntax.

clients/drive/lib/google_api/drive/v3/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.Drive.V3 do
2020
API client metadata for GoogleApi.Drive.V3.
2121
"""
2222

23-
@discovery_revision "20240903"
23+
@discovery_revision "20240914"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end

clients/drive/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
defmodule GoogleApi.Drive.Mixfile do
1919
use Mix.Project
2020

21-
@version "0.30.0"
21+
@version "0.30.1"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)