Skip to content

Commit 40f2752

Browse files
feat(all): auto-regenerate discovery clients (#3337)
1 parent 88c288c commit 40f2752

38 files changed

+82491
-42585
lines changed

‎appengine/v1beta/appengine-api.json‎

Lines changed: 63 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2690,7 +2690,7 @@
26902690
}
26912691
}
26922692
},
2693-
"revision": "20250930",
2693+
"revision": "20251005",
26942694
"rootUrl": "https://appengine.googleapis.com/",
26952695
"schemas": {
26962696
"ApiConfigHandler": {
@@ -4930,6 +4930,21 @@
49304930
},
49314931
"type": "object"
49324932
},
4933+
"SubnetworkKey": {
4934+
"description": "Subnetwork key message.",
4935+
"id": "SubnetworkKey",
4936+
"properties": {
4937+
"hostProjectId": {
4938+
"description": "Project id (name not number) of the project that hosts the network",
4939+
"type": "string"
4940+
},
4941+
"subnet": {
4942+
"description": "Short name of the subnetwork. e.g. SUBNET instead of projects/{PROJECT_NAME}/regions/{REGION}/subnetworks/{SUBNET}",
4943+
"type": "string"
4944+
}
4945+
},
4946+
"type": "object"
4947+
},
49334948
"TrafficSplit": {
49344949
"description": "Traffic routing configuration for versions within a single service. Traffic splits define how traffic directed to the service is assigned to versions.",
49354950
"id": "TrafficSplit",
@@ -5302,6 +5317,10 @@
53025317
"$ref": "VpcAccessConnector",
53035318
"description": "Enables VPC connectivity for standard apps."
53045319
},
5320+
"vpcEgress": {
5321+
"$ref": "VpcEgress",
5322+
"description": "Enables VPC egress connectivity for standard apps."
5323+
},
53055324
"zones": {
53065325
"description": "The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.",
53075326
"items": {
@@ -5357,6 +5376,49 @@
53575376
},
53585377
"type": "object"
53595378
},
5379+
"VpcEgress": {
5380+
"description": "Vpc Egress configuration.",
5381+
"id": "VpcEgress",
5382+
"properties": {
5383+
"egressSetting": {
5384+
"description": "The egress setting for the subnetwork, controlling what traffic is diverted through it.",
5385+
"enum": [
5386+
"EGRESS_SETTING_UNSPECIFIED",
5387+
"ALL_TRAFFIC",
5388+
"PRIVATE_IP_RANGES"
5389+
],
5390+
"enumDescriptions": [
5391+
"No value set; apply default behavior",
5392+
"Force all traffic to egress through the NetworkInterface (and configured VPC Network)",
5393+
"Force all Private IP Space traffic to egress through NetworkInterface (and configured VPC Network)"
5394+
],
5395+
"type": "string"
5396+
},
5397+
"networkTags": {
5398+
"description": "The network tags to apply to the instance.",
5399+
"items": {
5400+
"$ref": "VpcNetworkTag"
5401+
},
5402+
"type": "array"
5403+
},
5404+
"subnetworkKey": {
5405+
"$ref": "SubnetworkKey",
5406+
"description": "The subnetwork key."
5407+
}
5408+
},
5409+
"type": "object"
5410+
},
5411+
"VpcNetworkTag": {
5412+
"description": "Network tag message.",
5413+
"id": "VpcNetworkTag",
5414+
"properties": {
5415+
"value": {
5416+
"description": "value for the tag name",
5417+
"type": "string"
5418+
}
5419+
},
5420+
"type": "object"
5421+
},
53605422
"ZipInfo": {
53615423
"description": "The zip file information for a zip deployment.",
53625424
"id": "ZipInfo",

‎appengine/v1beta/appengine-gen.go‎

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

‎cloudbuild/v1/cloudbuild-api.json‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@
453453
"builds": {
454454
"methods": {
455455
"approve": {
456-
"description": "Approves or rejects a pending build. If approved, the returned LRO will be analogous to the LRO returned from a CreateBuild call. If rejected, the returned LRO will be immediately done.",
456+
"description": "Approves or rejects a pending build. If approved, the returned long-running operation (LRO) will be analogous to the LRO returned from a CreateBuild call. If rejected, the returned LRO will be immediately done.",
457457
"flatPath": "v1/projects/{projectsId}/builds/{buildsId}:approve",
458458
"httpMethod": "POST",
459459
"id": "cloudbuild.projects.builds.approve",
@@ -1136,7 +1136,7 @@
11361136
"builds": {
11371137
"methods": {
11381138
"approve": {
1139-
"description": "Approves or rejects a pending build. If approved, the returned LRO will be analogous to the LRO returned from a CreateBuild call. If rejected, the returned LRO will be immediately done.",
1139+
"description": "Approves or rejects a pending build. If approved, the returned long-running operation (LRO) will be analogous to the LRO returned from a CreateBuild call. If rejected, the returned LRO will be immediately done.",
11401140
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/builds/{buildsId}:approve",
11411141
"httpMethod": "POST",
11421142
"id": "cloudbuild.projects.locations.builds.approve",
@@ -2573,7 +2573,7 @@
25732573
}
25742574
}
25752575
},
2576-
"revision": "20250903",
2576+
"revision": "20250930",
25772577
"rootUrl": "https://cloudbuild.googleapis.com/",
25782578
"schemas": {
25792579
"ApprovalConfig": {

‎cloudbuild/v1/cloudbuild-gen.go‎

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

0 commit comments

Comments
 (0)