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 #2962

Merged
merged 1 commit into from
Jan 15, 2025
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 86 additions & 1 deletion adsenseplatform/v1alpha/adsenseplatform-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,53 @@
"https://www.googleapis.com/auth/adsense.readonly"
]
}
},
"resources": {
"childAccounts": {
"resources": {
"sites": {
"methods": {
"list": {
"description": "Lists Platform Child Sites for a specified Platform Child Account.",
"flatPath": "v1alpha/accounts/{accountsId}/platforms/{platformsId}/childAccounts/{childAccountsId}/sites",
"httpMethod": "GET",
"id": "adsenseplatform.accounts.platforms.childAccounts.sites.list",
"parameterOrder": [
"parent"
],
"parameters": {
"pageSize": {
"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.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"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.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The name of the platform to retrieve. Format: accounts/{account}/platforms/{platform}/childAccounts/{child_publisher_code}",
"location": "path",
"pattern": "^accounts/[^/]+/platforms/[^/]+/childAccounts/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1alpha/{+parent}/sites",
"response": {
"$ref": "ListPlatformChildSitesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/adsense",
"https://www.googleapis.com/auth/adsense.readonly"
]
}
}
}
}
}
}
}
}
Expand Down Expand Up @@ -517,7 +564,7 @@
}
}
},
"revision": "20250108",
"revision": "20250114",
"rootUrl": "https://adsenseplatform.googleapis.com/",
"schemas": {
"Account": {
Expand Down Expand Up @@ -699,6 +746,24 @@
},
"type": "object"
},
"ListPlatformChildSitesResponse": {
"description": "Response definition for the list platform child sites rpc.",
"id": "ListPlatformChildSitesResponse",
"properties": {
"nextPageToken": {
"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.",
"type": "string"
},
"platformChildSites": {
"description": "The platform child sites returned in this list response.",
"items": {
"$ref": "PlatformChildSite"
},
"type": "array"
}
},
"type": "object"
},
"ListPlatformsResponse": {
"description": "Response definition for the platform list rpc.",
"id": "ListPlatformsResponse",
Expand Down Expand Up @@ -766,6 +831,26 @@
},
"type": "object"
},
"PlatformChildSite": {
"description": "Representation of a Transparent Platform Child Site.",
"id": "PlatformChildSite",
"properties": {
"domain": {
"description": "Output only. Domain URL of the Platform Child Site. Part of the PlatformChildSite name.",
"readOnly": true,
"type": "string"
},
"name": {
"description": "Identifier. Format: accounts/{account}/platforms/{platform}/childAccounts/{child}/sites/{platformChildSite}",
"type": "string"
},
"platformGroup": {
"description": "Resource name of the Platform Group of the Platform Child Site.",
"type": "string"
}
},
"type": "object"
},
"RequestSiteReviewResponse": {
"description": "Response definition for the site request review rpc.",
"id": "RequestSiteReviewResponse",
Expand Down
235 changes: 235 additions & 0 deletions adsenseplatform/v1alpha/adsenseplatform-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading