Skip to content

Commit 27cb014

Browse files
authoredFeb 13, 2025··
feat(all): auto-regenerate discovery clients (#3014)
1 parent 3bdd389 commit 27cb014

32 files changed

+3139
-538
lines changed
 

‎apigee/v1/apigee-api.json

+27-3
Original file line numberDiff line numberDiff line change
@@ -10425,7 +10425,7 @@
1042510425
}
1042610426
}
1042710427
},
10428-
"revision": "20250129",
10428+
"revision": "20250207",
1042910429
"rootUrl": "https://apigee.googleapis.com/",
1043010430
"schemas": {
1043110431
"EdgeConfigstoreBundleBadBundle": {
@@ -10779,6 +10779,30 @@
1077910779
},
1078010780
"type": "object"
1078110781
},
10782+
"GoogleCloudApigeeV1ApiDebugSession": {
10783+
"description": "Session carries the debug session id and its creation time.",
10784+
"id": "GoogleCloudApigeeV1ApiDebugSession",
10785+
"properties": {
10786+
"apiProxyRevisionId": {
10787+
"description": "The revision ID of the deployed API proxy.",
10788+
"type": "string"
10789+
},
10790+
"createTime": {
10791+
"description": "The first transaction creation timestamp in millisecond, recorded by UAP.",
10792+
"format": "google-datetime",
10793+
"type": "string"
10794+
},
10795+
"environmentId": {
10796+
"description": "The environment ID of the deployed API proxy.",
10797+
"type": "string"
10798+
},
10799+
"id": {
10800+
"description": "The debug session ID.",
10801+
"type": "string"
10802+
}
10803+
},
10804+
"type": "object"
10805+
},
1078210806
"GoogleCloudApigeeV1ApiDoc": {
1078310807
"description": "`ApiDoc` represents an API catalog item. Catalog items are used in two ways in a portal: - Users can browse and interact with a visual representation of the API documentation - The `api_product_name` field provides a link to a backing [API product] (/apigee/docs/reference/apis/apigee/rest/v1/organizations.apiproducts). Through this link, portal users can create and manage developer apps linked to one or more API products.",
1078410808
"id": "GoogleCloudApigeeV1ApiDoc",
@@ -14526,9 +14550,9 @@
1452614550
"type": "string"
1452714551
},
1452814552
"sessions": {
14529-
"description": "Session info that includes debug session ID and the first transaction creation timestamp.",
14553+
"description": "Session info that includes debug session ID, environment ID, api proxy revision ID and the first transaction creation timestamp.",
1453014554
"items": {
14531-
"$ref": "GoogleCloudApigeeV1Session"
14555+
"$ref": "GoogleCloudApigeeV1ApiDebugSession"
1453214556
},
1453314557
"type": "array"
1453414558
}

‎apigee/v1/apigee-gen.go

+33-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎cloudbuild/v1/cloudbuild-api.json

+70-1
Original file line numberDiff line numberDiff line change
@@ -2563,7 +2563,7 @@
25632563
}
25642564
}
25652565
},
2566-
"revision": "20250114",
2566+
"revision": "20250211",
25672567
"rootUrl": "https://cloudbuild.googleapis.com/",
25682568
"schemas": {
25692569
"ApprovalConfig": {
@@ -3017,6 +3017,13 @@
30173017
"readOnly": true,
30183018
"type": "string"
30193019
},
3020+
"dependencies": {
3021+
"description": "Optional. Dependencies that the Cloud Build worker will fetch before executing user steps.",
3022+
"items": {
3023+
"$ref": "Dependency"
3024+
},
3025+
"type": "array"
3026+
},
30203027
"failureInfo": {
30213028
"$ref": "FailureInfo",
30223029
"description": "Output only. Contains information about the build when status=FAILURE.",
@@ -3345,6 +3352,10 @@
33453352
"$ref": "PoolOption",
33463353
"description": "Optional. Specification for execution on a `WorkerPool`. See [running builds in a private pool](https://cloud.google.com/build/docs/private-pools/run-builds-in-private-pool) for more information."
33473354
},
3355+
"pubsubTopic": {
3356+
"description": "Optional. Option to specify the Pub/Sub topic to receive build status updates.",
3357+
"type": "string"
3358+
},
33483359
"requestedVerifyOption": {
33493360
"description": "Requested verifiability options.",
33503361
"enum": [
@@ -3970,6 +3981,21 @@
39703981
},
39713982
"type": "object"
39723983
},
3984+
"Dependency": {
3985+
"description": "A dependency that the Cloud Build worker will fetch before executing user steps.",
3986+
"id": "Dependency",
3987+
"properties": {
3988+
"empty": {
3989+
"description": "If set to true disable all dependency fetching (ignoring the default source as well).",
3990+
"type": "boolean"
3991+
},
3992+
"gitSource": {
3993+
"$ref": "GitSourceDependency",
3994+
"description": "Represents a git repository as a build dependency."
3995+
}
3996+
},
3997+
"type": "object"
3998+
},
39733999
"DeveloperConnectConfig": {
39744000
"description": "This config defines the location of a source through Developer Connect.",
39754001
"id": "DeveloperConnectConfig",
@@ -4467,6 +4493,49 @@
44674493
},
44684494
"type": "object"
44694495
},
4496+
"GitSourceDependency": {
4497+
"description": "Represents a git repository as a build dependency.",
4498+
"id": "GitSourceDependency",
4499+
"properties": {
4500+
"depth": {
4501+
"description": "Optional. How much history should be fetched for the build (default 1, -1 for all history).",
4502+
"format": "int64",
4503+
"type": "string"
4504+
},
4505+
"destPath": {
4506+
"description": "Required. Where should the files be placed on the worker.",
4507+
"type": "string"
4508+
},
4509+
"recurseSubmodules": {
4510+
"description": "Optional. True if submodules should be fetched too (default false).",
4511+
"type": "boolean"
4512+
},
4513+
"repository": {
4514+
"$ref": "GitSourceRepository",
4515+
"description": "Required. The kind of repo (url or dev connect)."
4516+
},
4517+
"revision": {
4518+
"description": "Required. The revision that we will fetch the repo at.",
4519+
"type": "string"
4520+
}
4521+
},
4522+
"type": "object"
4523+
},
4524+
"GitSourceRepository": {
4525+
"description": "A repository for a git source.",
4526+
"id": "GitSourceRepository",
4527+
"properties": {
4528+
"developerConnect": {
4529+
"description": "The Developer Connect Git repository link or the url that matches a repository link in the current project, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*`",
4530+
"type": "string"
4531+
},
4532+
"url": {
4533+
"description": "Location of the Git repository.",
4534+
"type": "string"
4535+
}
4536+
},
4537+
"type": "object"
4538+
},
44704539
"GoModule": {
44714540
"description": "Go module to upload to Artifact Registry upon successful completion of all build steps. A module refers to all dependencies in a go.mod file.",
44724541
"id": "GoModule",

‎cloudbuild/v1/cloudbuild-gen.go

+90
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎cloudbuild/v2/cloudbuild-api.json

+25-1
Original file line numberDiff line numberDiff line change
@@ -582,6 +582,11 @@
582582
"pattern": "^projects/[^/]+/locations/[^/]+$",
583583
"required": true,
584584
"type": "string"
585+
},
586+
"returnPartialSuccess": {
587+
"description": "Optional. If set to true, the response will return partial results when some regions are unreachable. If set to false, the response will fail if any region is unreachable.",
588+
"location": "query",
589+
"type": "boolean"
585590
}
586591
},
587592
"path": "v2/{+parent}/connections",
@@ -985,6 +990,11 @@
985990
"pattern": "^projects/[^/]+/locations/[^/]+/connections/[^/]+$",
986991
"required": true,
987992
"type": "string"
993+
},
994+
"returnPartialSuccess": {
995+
"description": "Optional. If set to true, the response will return partial results when some regions are unreachable. If set to false, the response will fail if any region is unreachable.",
996+
"location": "query",
997+
"type": "boolean"
988998
}
989999
},
9901000
"path": "v2/{+parent}/repositories",
@@ -1061,7 +1071,7 @@
10611071
}
10621072
}
10631073
},
1064-
"revision": "20250129",
1074+
"revision": "20250211",
10651075
"rootUrl": "https://cloudbuild.googleapis.com/",
10661076
"schemas": {
10671077
"AuditConfig": {
@@ -1818,6 +1828,13 @@
18181828
"nextPageToken": {
18191829
"description": "A token identifying a page of results the server should return.",
18201830
"type": "string"
1831+
},
1832+
"unreachable": {
1833+
"description": "Locations that could not be reached.",
1834+
"items": {
1835+
"type": "string"
1836+
},
1837+
"type": "array"
18211838
}
18221839
},
18231840
"type": "object"
@@ -1854,6 +1871,13 @@
18541871
"$ref": "Repository"
18551872
},
18561873
"type": "array"
1874+
},
1875+
"unreachable": {
1876+
"description": "Locations that could not be reached.",
1877+
"items": {
1878+
"type": "string"
1879+
},
1880+
"type": "array"
18571881
}
18581882
},
18591883
"type": "object"

0 commit comments

Comments
 (0)
Please sign in to comment.