Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of Drive client #11396

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clients/drive/lib/google_api/drive/v3/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Drive.V3 do
API client metadata for GoogleApi.Drive.V3.
"""

@discovery_revision "20240327"
@discovery_revision "20240509"

def discovery_revision(), do: @discovery_revision
end
2 changes: 1 addition & 1 deletion clients/drive/lib/google_api/drive/v3/model/about.ex
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ defmodule GoogleApi.Drive.V3.Model.About do
* `kind` (*type:* `String.t`, *default:* `drive#about`) - Identifies what kind of resource this is. Value: the fixed string `"drive#about"`.
* `maxImportSizes` (*type:* `map()`, *default:* `nil`) - A map of maximum import sizes by MIME type, in bytes.
* `maxUploadSize` (*type:* `String.t`, *default:* `nil`) - The maximum upload size in bytes.
* `storageQuota` (*type:* `GoogleApi.Drive.V3.Model.AboutStorageQuota.t`, *default:* `nil`) - The user's storage quota limits and usage. All fields are measured in bytes.
* `storageQuota` (*type:* `GoogleApi.Drive.V3.Model.AboutStorageQuota.t`, *default:* `nil`) - The user's storage quota limits and usage. For users that are part of an organization with pooled storage, information about the limit and usage across all services is for the organization, rather than the individual user. All fields are measured in bytes.
* `teamDriveThemes` (*type:* `list(GoogleApi.Drive.V3.Model.AboutTeamDriveThemes.t)`, *default:* `nil`) - Deprecated: Use `driveThemes` instead.
* `user` (*type:* `GoogleApi.Drive.V3.Model.User.t`, *default:* `nil`) - The authenticated user.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@

defmodule GoogleApi.Drive.V3.Model.AboutStorageQuota do
@moduledoc """
The user's storage quota limits and usage. All fields are measured in bytes.
The user's storage quota limits and usage. For users that are part of an organization with pooled storage, information about the limit and usage across all services is for the organization, rather than the individual user. All fields are measured in bytes.

## Attributes

* `limit` (*type:* `String.t`, *default:* `nil`) - The usage limit, if applicable. This will not be present if the user has unlimited storage.
* `usage` (*type:* `String.t`, *default:* `nil`) - The total usage across all services.
* `limit` (*type:* `String.t`, *default:* `nil`) - The usage limit, if applicable. This will not be present if the user has unlimited storage. For users that are part of an organization with pooled storage, this is the limit for the organization, rather than the individual user.
* `usage` (*type:* `String.t`, *default:* `nil`) - The total usage across all services. For users that are part of an organization with pooled storage, this is the usage across all services for the organization, rather than the individual user.
* `usageInDrive` (*type:* `String.t`, *default:* `nil`) - The usage by all files in Google Drive.
* `usageInDriveTrash` (*type:* `String.t`, *default:* `nil`) - The usage by trashed files in Google Drive.
"""
Expand Down
2 changes: 1 addition & 1 deletion clients/drive/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.Drive.Mixfile do
use Mix.Project

@version "0.27.1"
@version "0.27.2"

def project() do
[
Expand Down
Loading