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(all): auto-regenerate discovery clients #1527

Merged
merged 1 commit into from May 2, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
77 changes: 76 additions & 1 deletion admob/v1beta/admob-api.json
Expand Up @@ -168,6 +168,44 @@
}
},
"resources": {
"adSources": {
"methods": {
"list": {
"description": "List the ad sources.",
"flatPath": "v1beta/accounts/{accountsId}/adSources",
"httpMethod": "GET",
"id": "admob.accounts.adSources.list",
"parameterOrder": [
"parent"
],
"parameters": {
"pageSize": {
"description": "The maximum number of ad sources to return. If unspecified or 0, at most 1000 ad sources will be returned. The maximum value is 10,000; values above 10,000 will be coerced to 10,000.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A page token, received from a previous `ListAdSources` call. Provide this to retrieve the subsequent page.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The parent which owns this collection of ad sources. Format: accounts/{publisher_id}",
"location": "path",
"pattern": "^accounts/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/adSources",
"response": {
"$ref": "ListAdSourcesResponse"
},
"streamingType": "NONE"
}
}
},
"adUnits": {
"methods": {
"list": {
Expand Down Expand Up @@ -321,9 +359,28 @@
}
}
},
"revision": "20220301",
"revision": "20220428",
"rootUrl": "https://admob.googleapis.com/",
"schemas": {
"AdSource": {
"description": "Definition of a mediation ad source.",
"id": "AdSource",
"properties": {
"adSourceId": {
"description": "ID of this ad source.",
"type": "string"
},
"name": {
"description": "Resource name of this ad source. Format is: accounts/{publisher_id}/adSources/{ad_source_id}",
"type": "string"
},
"title": {
"description": "Display name of this ad source.",
"type": "string"
}
},
"type": "object"
},
"AdUnit": {
"description": "Describes an AdMob ad unit.",
"id": "AdUnit",
Expand Down Expand Up @@ -509,6 +566,24 @@
},
"type": "object"
},
"ListAdSourcesResponse": {
"description": "Response for the ListAdSourcesRequest.",
"id": "ListAdSourcesResponse",
"properties": {
"adSources": {
"description": "The ad sources.",
"items": {
"$ref": "AdSource"
},
"type": "array"
},
"nextPageToken": {
"description": "Used to set the `page_token` in the `ListAdSourcesRequest` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
"type": "string"
}
},
"type": "object"
},
"ListAdUnitsResponse": {
"description": "Response for the ad units list request.",
"id": "ListAdUnitsResponse",
Expand Down