Skip to content

Commit 5cdbe26

Browse files
feat(all): auto-regenerate discovery clients (#1527)
1 parent aff4922 commit 5cdbe26

File tree

115 files changed

+20171
-4468
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+20171
-4468
lines changed

admob/v1beta/admob-api.json

+76-1
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,44 @@
168168
}
169169
},
170170
"resources": {
171+
"adSources": {
172+
"methods": {
173+
"list": {
174+
"description": "List the ad sources.",
175+
"flatPath": "v1beta/accounts/{accountsId}/adSources",
176+
"httpMethod": "GET",
177+
"id": "admob.accounts.adSources.list",
178+
"parameterOrder": [
179+
"parent"
180+
],
181+
"parameters": {
182+
"pageSize": {
183+
"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.",
184+
"format": "int32",
185+
"location": "query",
186+
"type": "integer"
187+
},
188+
"pageToken": {
189+
"description": "A page token, received from a previous `ListAdSources` call. Provide this to retrieve the subsequent page.",
190+
"location": "query",
191+
"type": "string"
192+
},
193+
"parent": {
194+
"description": "Required. The parent which owns this collection of ad sources. Format: accounts/{publisher_id}",
195+
"location": "path",
196+
"pattern": "^accounts/[^/]+$",
197+
"required": true,
198+
"type": "string"
199+
}
200+
},
201+
"path": "v1beta/{+parent}/adSources",
202+
"response": {
203+
"$ref": "ListAdSourcesResponse"
204+
},
205+
"streamingType": "NONE"
206+
}
207+
}
208+
},
171209
"adUnits": {
172210
"methods": {
173211
"list": {
@@ -321,9 +359,28 @@
321359
}
322360
}
323361
},
324-
"revision": "20220301",
362+
"revision": "20220428",
325363
"rootUrl": "https://admob.googleapis.com/",
326364
"schemas": {
365+
"AdSource": {
366+
"description": "Definition of a mediation ad source.",
367+
"id": "AdSource",
368+
"properties": {
369+
"adSourceId": {
370+
"description": "ID of this ad source.",
371+
"type": "string"
372+
},
373+
"name": {
374+
"description": "Resource name of this ad source. Format is: accounts/{publisher_id}/adSources/{ad_source_id}",
375+
"type": "string"
376+
},
377+
"title": {
378+
"description": "Display name of this ad source.",
379+
"type": "string"
380+
}
381+
},
382+
"type": "object"
383+
},
327384
"AdUnit": {
328385
"description": "Describes an AdMob ad unit.",
329386
"id": "AdUnit",
@@ -509,6 +566,24 @@
509566
},
510567
"type": "object"
511568
},
569+
"ListAdSourcesResponse": {
570+
"description": "Response for the ListAdSourcesRequest.",
571+
"id": "ListAdSourcesResponse",
572+
"properties": {
573+
"adSources": {
574+
"description": "The ad sources.",
575+
"items": {
576+
"$ref": "AdSource"
577+
},
578+
"type": "array"
579+
},
580+
"nextPageToken": {
581+
"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.",
582+
"type": "string"
583+
}
584+
},
585+
"type": "object"
586+
},
512587
"ListAdUnitsResponse": {
513588
"description": "Response for the ad units list request.",
514589
"id": "ListAdUnitsResponse",

0 commit comments

Comments
 (0)