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 AdSense client #10813

Merged
Merged
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
4 changes: 2 additions & 2 deletions clients/ad_sense/lib/google_api/ad_sense/v2/api/accounts.ex
Original file line number Diff line number Diff line change
@@ -236,7 +236,7 @@ defmodule GoogleApi.AdSense.V2.Api.Accounts 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").
* `:pageSize` (*type:* `integer()`) - The maximum number of accounts to include in the response, used for paging. If unspecified, at most 10000 accounts will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000.
* `:pageToken` (*type:* `String.t`) - A page token, received from a previous `ListAccounts` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListAccounts` must match the call that provided the page token.
* `:pageToken` (*type:* `String.t`) - A page token, received from a previous `ListChildAccounts` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListChildAccounts` must match the call that provided the page token.
* `opts` (*type:* `keyword()`) - Call options

## Returns
@@ -2045,7 +2045,7 @@ defmodule GoogleApi.AdSense.V2.Api.Accounts 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").
* `:pageSize` (*type:* `integer()`) - The maximum number of reports to include in the response, used for paging. If unspecified, at most 10000 reports will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000.
* `:pageToken` (*type:* `String.t`) - A page token, received from a previous `ListPayments` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListPayments` must match the call that provided the page token.
* `:pageToken` (*type:* `String.t`) - A page token, received from a previous `ListSavedReports` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListSavedReports` must match the call that provided the page token.
* `opts` (*type:* `keyword()`) - Call options

## Returns
2 changes: 1 addition & 1 deletion clients/ad_sense/lib/google_api/ad_sense/v2/metadata.ex
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.AdSense.V2 do
API client metadata for GoogleApi.AdSense.V2.
"""

@discovery_revision "20221027"
@discovery_revision "20240311"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ defmodule GoogleApi.AdSense.V2.Model.AdUnit do
* `displayName` (*type:* `String.t`, *default:* `nil`) - Required. Display name of the ad unit, as provided when the ad unit was created.
* `name` (*type:* `String.t`, *default:* `nil`) - Output only. Resource name of the ad unit. Format: accounts/{account}/adclients/{adclient}/adunits/{adunit}
* `reportingDimensionId` (*type:* `String.t`, *default:* `nil`) - Output only. Unique ID of the ad unit as used in the `AD_UNIT_ID` reporting dimension.
* `state` (*type:* `String.t`, *default:* `nil`) - State of the ad unit.
* `state` (*type:* `String.t`, *default:* `nil`) - Required. State of the ad unit.
"""

use GoogleApi.Gax.ModelBase
Loading