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

Merged
merged 1 commit into from
Jan 7, 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
56 changes: 55 additions & 1 deletion adsenseplatform/v1alpha/adsenseplatform-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,40 @@
},
"protocol": "rest",
"resources": {
"accounts": {
"resources": {
"platforms": {
"methods": {
"get": {
"description": "Gets a platform.",
"flatPath": "v1alpha/accounts/{accountsId}/platforms/{platformsId}",
"httpMethod": "GET",
"id": "adsenseplatform.accounts.platforms.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the platform to retrieve. Format: accounts/{account}/platforms/{platform}",
"location": "path",
"pattern": "^accounts/[^/]+/platforms/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1alpha/{+name}",
"response": {
"$ref": "Platform"
},
"scopes": [
"https://www.googleapis.com/auth/adsense",
"https://www.googleapis.com/auth/adsense.readonly"
]
}
}
}
}
},
"platforms": {
"resources": {
"accounts": {
Expand Down Expand Up @@ -446,7 +480,7 @@
}
}
},
"revision": "20241203",
"revision": "20250106",
"rootUrl": "https://adsenseplatform.googleapis.com/",
"schemas": {
"Account": {
Expand Down Expand Up @@ -657,6 +691,26 @@
},
"type": "object"
},
"Platform": {
"description": "Representation of a Transparent Platform.",
"id": "Platform",
"properties": {
"defaultPlatformGroup": {
"description": "Default platform group for the platform.",
"type": "string"
},
"description": {
"description": "Output only. Description of the platform.",
"readOnly": true,
"type": "string"
},
"name": {
"description": "Identifier. Resource name of a platform. Format: accounts/{account}/platforms/{platform}",
"type": "string"
}
},
"type": "object"
},
"RequestSiteReviewResponse": {
"description": "Response definition for the site request review rpc.",
"id": "RequestSiteReviewResponse",
Expand Down
164 changes: 164 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.

17 changes: 1 addition & 16 deletions connectors/v1/connectors-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2558,7 +2558,7 @@
}
}
},
"revision": "20241203",
"revision": "20250101",
"rootUrl": "https://connectors.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -4511,10 +4511,6 @@
"$ref": "EndPoint",
"description": "OPTION 1: Hit an endpoint when we receive an event."
},
"gsutil": {
"$ref": "GSUtil",
"description": "OPTION 2: Write the event to Cloud Storage bucket."
},
"serviceAccount": {
"description": "Service account needed for runtime plane to trigger IP workflow.",
"type": "string"
Expand Down Expand Up @@ -5176,17 +5172,6 @@
},
"type": "object"
},
"GSUtil": {
"description": "GSUtil message includes details of the Destination Cloud Storage bucket.",
"id": "GSUtil",
"properties": {
"gsutilUri": {
"description": "Required. The URI of the Cloud Storage bucket.",
"type": "string"
}
},
"type": "object"
},
"HPAConfig": {
"description": "Autoscaling config for connector deployment system metrics.",
"id": "HPAConfig",
Expand Down
25 changes: 0 additions & 25 deletions connectors/v1/connectors-gen.go

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

Loading