Skip to content
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
30 changes: 27 additions & 3 deletions apigee/v1/apigee-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -10425,7 +10425,7 @@
}
}
},
"revision": "20250129",
"revision": "20250207",
"rootUrl": "https://apigee.googleapis.com/",
"schemas": {
"EdgeConfigstoreBundleBadBundle": {
Expand Down Expand Up @@ -10779,6 +10779,30 @@
},
"type": "object"
},
"GoogleCloudApigeeV1ApiDebugSession": {
"description": "Session carries the debug session id and its creation time.",
"id": "GoogleCloudApigeeV1ApiDebugSession",
"properties": {
"apiProxyRevisionId": {
"description": "The revision ID of the deployed API proxy.",
"type": "string"
},
"createTime": {
"description": "The first transaction creation timestamp in millisecond, recorded by UAP.",
"format": "google-datetime",
"type": "string"
},
"environmentId": {
"description": "The environment ID of the deployed API proxy.",
"type": "string"
},
"id": {
"description": "The debug session ID.",
"type": "string"
}
},
"type": "object"
},
"GoogleCloudApigeeV1ApiDoc": {
"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.",
"id": "GoogleCloudApigeeV1ApiDoc",
Expand Down Expand Up @@ -14526,9 +14550,9 @@
"type": "string"
},
"sessions": {
"description": "Session info that includes debug session ID and the first transaction creation timestamp.",
"description": "Session info that includes debug session ID, environment ID, api proxy revision ID and the first transaction creation timestamp.",
"items": {
"$ref": "GoogleCloudApigeeV1Session"
"$ref": "GoogleCloudApigeeV1ApiDebugSession"
},
"type": "array"
}
Expand Down
36 changes: 33 additions & 3 deletions apigee/v1/apigee-gen.go

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

71 changes: 70 additions & 1 deletion cloudbuild/v1/cloudbuild-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2563,7 +2563,7 @@
}
}
},
"revision": "20250114",
"revision": "20250211",
"rootUrl": "https://cloudbuild.googleapis.com/",
"schemas": {
"ApprovalConfig": {
Expand Down Expand Up @@ -3017,6 +3017,13 @@
"readOnly": true,
"type": "string"
},
"dependencies": {
"description": "Optional. Dependencies that the Cloud Build worker will fetch before executing user steps.",
"items": {
"$ref": "Dependency"
},
"type": "array"
},
"failureInfo": {
"$ref": "FailureInfo",
"description": "Output only. Contains information about the build when status=FAILURE.",
Expand Down Expand Up @@ -3345,6 +3352,10 @@
"$ref": "PoolOption",
"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."
},
"pubsubTopic": {
"description": "Optional. Option to specify the Pub/Sub topic to receive build status updates.",
"type": "string"
},
"requestedVerifyOption": {
"description": "Requested verifiability options.",
"enum": [
Expand Down Expand Up @@ -3970,6 +3981,21 @@
},
"type": "object"
},
"Dependency": {
"description": "A dependency that the Cloud Build worker will fetch before executing user steps.",
"id": "Dependency",
"properties": {
"empty": {
"description": "If set to true disable all dependency fetching (ignoring the default source as well).",
"type": "boolean"
},
"gitSource": {
"$ref": "GitSourceDependency",
"description": "Represents a git repository as a build dependency."
}
},
"type": "object"
},
"DeveloperConnectConfig": {
"description": "This config defines the location of a source through Developer Connect.",
"id": "DeveloperConnectConfig",
Expand Down Expand Up @@ -4467,6 +4493,49 @@
},
"type": "object"
},
"GitSourceDependency": {
"description": "Represents a git repository as a build dependency.",
"id": "GitSourceDependency",
"properties": {
"depth": {
"description": "Optional. How much history should be fetched for the build (default 1, -1 for all history).",
"format": "int64",
"type": "string"
},
"destPath": {
"description": "Required. Where should the files be placed on the worker.",
"type": "string"
},
"recurseSubmodules": {
"description": "Optional. True if submodules should be fetched too (default false).",
"type": "boolean"
},
"repository": {
"$ref": "GitSourceRepository",
"description": "Required. The kind of repo (url or dev connect)."
},
"revision": {
"description": "Required. The revision that we will fetch the repo at.",
"type": "string"
}
},
"type": "object"
},
"GitSourceRepository": {
"description": "A repository for a git source.",
"id": "GitSourceRepository",
"properties": {
"developerConnect": {
"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/*`",
"type": "string"
},
"url": {
"description": "Location of the Git repository.",
"type": "string"
}
},
"type": "object"
},
"GoModule": {
"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.",
"id": "GoModule",
Expand Down
90 changes: 90 additions & 0 deletions cloudbuild/v1/cloudbuild-gen.go

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

26 changes: 25 additions & 1 deletion cloudbuild/v2/cloudbuild-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,11 @@
"pattern": "^projects/[^/]+/locations/[^/]+$",
"required": true,
"type": "string"
},
"returnPartialSuccess": {
"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.",
"location": "query",
"type": "boolean"
}
},
"path": "v2/{+parent}/connections",
Expand Down Expand Up @@ -985,6 +990,11 @@
"pattern": "^projects/[^/]+/locations/[^/]+/connections/[^/]+$",
"required": true,
"type": "string"
},
"returnPartialSuccess": {
"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.",
"location": "query",
"type": "boolean"
}
},
"path": "v2/{+parent}/repositories",
Expand Down Expand Up @@ -1061,7 +1071,7 @@
}
}
},
"revision": "20250129",
"revision": "20250211",
"rootUrl": "https://cloudbuild.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -1818,6 +1828,13 @@
"nextPageToken": {
"description": "A token identifying a page of results the server should return.",
"type": "string"
},
"unreachable": {
"description": "Locations that could not be reached.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
Expand Down Expand Up @@ -1854,6 +1871,13 @@
"$ref": "Repository"
},
"type": "array"
},
"unreachable": {
"description": "Locations that could not be reached.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
Expand Down
Loading
Loading