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 Reseller client #10783

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/reseller/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_reseller, "~> 0.17"}]
[{:google_api_reseller, "~> 0.18"}]
end
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,9 @@ defmodule GoogleApi.Reseller.V1.Api.Subscriptions do
* `:quotaUser` (*type:* `String.t`) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
* `: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").
* `:action` (*type:* `String.t`) - The intented insert action. The usage of this field is governed by certain policies which are being developed & tested currently. Hence, these might not work as intended. Once this is fully tested & available to consume, we will share more information about its usage, limitations and policy documentation.
* `:customerAuthToken` (*type:* `String.t`) - The `customerAuthToken` query string is required when creating a resold account that transfers a direct customer's subscription or transfers another reseller customer's subscription to your reseller management. This is a hexadecimal authentication token needed to complete the subscription transfer. For more information, see the administrator help center.
* `:sourceSkuId` (*type:* `String.t`) - The sku_id of the existing subscription to be upgraded or downgraded. This is required when action is SWITCH. The usage of this field is governed by certain policies which are being developed & tested currently. Hence, these might not work as intended. Once this is fully tested & available to consume, we will share more information about its usage, limitations and policy documentation.
* `:body` (*type:* `GoogleApi.Reseller.V1.Model.Subscription.t`) -
* `opts` (*type:* `keyword()`) - Call options

Expand All @@ -533,7 +535,9 @@ defmodule GoogleApi.Reseller.V1.Api.Subscriptions do
:quotaUser => :query,
:uploadType => :query,
:upload_protocol => :query,
:action => :query,
:customerAuthToken => :query,
:sourceSkuId => :query,
:body => :body
}

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

@discovery_revision "20211019"
@discovery_revision "20240305"

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

@version "0.17.3"
@version "0.18.0"

def project() do
[
Expand Down
Loading