Skip to content

Commit 5085dcf

Browse files
feat(all): auto-regenerate discovery clients (#2962)
1 parent 18f18fc commit 5085dcf

33 files changed

+1159
-1743
lines changed

adsenseplatform/v1alpha/adsenseplatform-api.json

Lines changed: 86 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,53 @@
175175
"https://www.googleapis.com/auth/adsense.readonly"
176176
]
177177
}
178+
},
179+
"resources": {
180+
"childAccounts": {
181+
"resources": {
182+
"sites": {
183+
"methods": {
184+
"list": {
185+
"description": "Lists Platform Child Sites for a specified Platform Child Account.",
186+
"flatPath": "v1alpha/accounts/{accountsId}/platforms/{platformsId}/childAccounts/{childAccountsId}/sites",
187+
"httpMethod": "GET",
188+
"id": "adsenseplatform.accounts.platforms.childAccounts.sites.list",
189+
"parameterOrder": [
190+
"parent"
191+
],
192+
"parameters": {
193+
"pageSize": {
194+
"description": "Optional. The maximum number of children to include in the response, used for paging. If unspecified, at most 10000 platforms will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000.",
195+
"format": "int32",
196+
"location": "query",
197+
"type": "integer"
198+
},
199+
"pageToken": {
200+
"description": "Optional. A page token, received from a previous `ListPlatformChildren` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListPlatformChildren` must match the call that provided the page token.",
201+
"location": "query",
202+
"type": "string"
203+
},
204+
"parent": {
205+
"description": "Required. The name of the platform to retrieve. Format: accounts/{account}/platforms/{platform}/childAccounts/{child_publisher_code}",
206+
"location": "path",
207+
"pattern": "^accounts/[^/]+/platforms/[^/]+/childAccounts/[^/]+$",
208+
"required": true,
209+
"type": "string"
210+
}
211+
},
212+
"path": "v1alpha/{+parent}/sites",
213+
"response": {
214+
"$ref": "ListPlatformChildSitesResponse"
215+
},
216+
"scopes": [
217+
"https://www.googleapis.com/auth/adsense",
218+
"https://www.googleapis.com/auth/adsense.readonly"
219+
]
220+
}
221+
}
222+
}
223+
}
224+
}
178225
}
179226
}
180227
}
@@ -517,7 +564,7 @@
517564
}
518565
}
519566
},
520-
"revision": "20250108",
567+
"revision": "20250114",
521568
"rootUrl": "https://adsenseplatform.googleapis.com/",
522569
"schemas": {
523570
"Account": {
@@ -699,6 +746,24 @@
699746
},
700747
"type": "object"
701748
},
749+
"ListPlatformChildSitesResponse": {
750+
"description": "Response definition for the list platform child sites rpc.",
751+
"id": "ListPlatformChildSitesResponse",
752+
"properties": {
753+
"nextPageToken": {
754+
"description": "Continuation token used to page through platforms. To retrieve the next page of the results, set the next request's \"page_token\" value to this.",
755+
"type": "string"
756+
},
757+
"platformChildSites": {
758+
"description": "The platform child sites returned in this list response.",
759+
"items": {
760+
"$ref": "PlatformChildSite"
761+
},
762+
"type": "array"
763+
}
764+
},
765+
"type": "object"
766+
},
702767
"ListPlatformsResponse": {
703768
"description": "Response definition for the platform list rpc.",
704769
"id": "ListPlatformsResponse",
@@ -766,6 +831,26 @@
766831
},
767832
"type": "object"
768833
},
834+
"PlatformChildSite": {
835+
"description": "Representation of a Transparent Platform Child Site.",
836+
"id": "PlatformChildSite",
837+
"properties": {
838+
"domain": {
839+
"description": "Output only. Domain URL of the Platform Child Site. Part of the PlatformChildSite name.",
840+
"readOnly": true,
841+
"type": "string"
842+
},
843+
"name": {
844+
"description": "Identifier. Format: accounts/{account}/platforms/{platform}/childAccounts/{child}/sites/{platformChildSite}",
845+
"type": "string"
846+
},
847+
"platformGroup": {
848+
"description": "Resource name of the Platform Group of the Platform Child Site.",
849+
"type": "string"
850+
}
851+
},
852+
"type": "object"
853+
},
769854
"RequestSiteReviewResponse": {
770855
"description": "Response definition for the site request review rpc.",
771856
"id": "RequestSiteReviewResponse",

adsenseplatform/v1alpha/adsenseplatform-gen.go

Lines changed: 235 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)