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 DLP client #12651

Merged
Merged
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/dlp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding

```elixir
def deps do
[{:google_api_dlp, "~> 0.52"}]
[{:google_api_dlp, "~> 0.53"}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion clients/dlp/lib/google_api/dlp/v2/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.DLP.V2 do
API client metadata for GoogleApi.DLP.V2.
"""

@discovery_revision "20241027"
@discovery_revision "20241204"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ defmodule GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2InfoTypeDescription do
* `categories` (*type:* `list(GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2InfoTypeCategory.t)`, *default:* `nil`) - The category of the infoType.
* `description` (*type:* `String.t`, *default:* `nil`) - Description of the infotype. Translated when language is provided in the request.
* `displayName` (*type:* `String.t`, *default:* `nil`) - Human readable form of the infoType name.
* `example` (*type:* `String.t`, *default:* `nil`) - A sample true positive for this infoType.
* `name` (*type:* `String.t`, *default:* `nil`) - Internal name of the infoType.
* `sensitivityScore` (*type:* `GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2SensitivityScore.t`, *default:* `nil`) - The default sensitivity of the infoType.
* `supportedBy` (*type:* `list(String.t)`, *default:* `nil`) - Which parts of the API supports this InfoType.
Expand All @@ -37,6 +38,7 @@ defmodule GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2InfoTypeDescription do
list(GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2InfoTypeCategory.t()) | nil,
:description => String.t() | nil,
:displayName => String.t() | nil,
:example => String.t() | nil,
:name => String.t() | nil,
:sensitivityScore =>
GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2SensitivityScore.t() | nil,
Expand All @@ -47,6 +49,7 @@ defmodule GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2InfoTypeDescription do
field(:categories, as: GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2InfoTypeCategory, type: :list)
field(:description)
field(:displayName)
field(:example)
field(:name)
field(:sensitivityScore, as: GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2SensitivityScore)
field(:supportedBy, type: :list)
Expand Down
2 changes: 1 addition & 1 deletion clients/dlp/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.DLP.Mixfile do
use Mix.Project

@version "0.52.3"
@version "0.53.0"

def project() do
[
Expand Down
Loading