Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#1527)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed May 2, 2022
1 parent aff4922 commit 5cdbe26
Show file tree
Hide file tree
Showing 115 changed files with 20,171 additions and 4,468 deletions.
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

0 comments on commit 5cdbe26

Please sign in to comment.