Skip to content

Commit

Permalink
feat: Automated regeneration of AndroidManagement client (#12776)
Browse files Browse the repository at this point in the history
Auto-created at 2025-01-07 13:17:40 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Jan 7, 2025
1 parent ad5f643 commit 93fea65
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clients/android_management/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_android_management, "~> 0.57"}]
[{:google_api_android_management, "~> 0.58"}]
end
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ defmodule GoogleApi.AndroidManagement.V1.Api.SignupUrls do
* `:uploadType` (*type:* `String.t`) - Legacy upload protocol for media (e.g. "media", "multipart").
* `:upload_protocol` (*type:* `String.t`) - Upload protocol for media (e.g. "raw", "multipart").
* `:adminEmail` (*type:* `String.t`) - Optional. Email address used to prefill the admin field of the enterprise signup form. This value is a hint only and can be altered by the user.
* `:allowedDomains` (*type:* `list(String.t)`) - Optional. A list of domains that are permitted for the admin email. The IT admin cannot enter an email address with a domain name that is not in this list. Subdomains of domains in this list are not allowed but can be allowed by adding a second entry which has *. prefixed to the domain name (e.g. *.example.com). If the field is not present or is an empty list then the IT admin is free to use any valid domain name. Personal email domains are always allowed, but will result in the creation of a managed Google Play Accounts enterprise.
* `:callbackUrl` (*type:* `String.t`) - The callback URL that the admin will be redirected to after successfully creating an enterprise. Before redirecting there the system will add a query parameter to this URL named enterpriseToken which will contain an opaque token to be used for the create enterprise request. The URL will be parsed then reformatted in order to add the enterpriseToken parameter, so there may be some minor formatting changes.
* `:projectId` (*type:* `String.t`) - The ID of the Google Cloud Platform project which will own the enterprise.
* `opts` (*type:* `keyword()`) - Call options
Expand Down Expand Up @@ -72,6 +73,7 @@ defmodule GoogleApi.AndroidManagement.V1.Api.SignupUrls do
:uploadType => :query,
:upload_protocol => :query,
:adminEmail => :query,
:allowedDomains => :query,
:callbackUrl => :query,
:projectId => :query
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.AndroidManagement.V1 do
API client metadata for GoogleApi.AndroidManagement.V1.
"""

@discovery_revision "20241203"
@discovery_revision "20250106"

def discovery_revision(), do: @discovery_revision
end
2 changes: 1 addition & 1 deletion clients/android_management/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.AndroidManagement.Mixfile do
use Mix.Project

@version "0.57.0"
@version "0.58.0"

def project() do
[
Expand Down

0 comments on commit 93fea65

Please sign in to comment.