blob: cad1c3914dd4184a055f436d0e04dbdfb72fe207 [file] [log] [blame]
{
"documentationLink": "https://cloud.google.com/container-builder/docs/",
"id": "cloudbuild:v1",
"revision": "20170323",
"discoveryVersion": "v1",
"version_module": "True",
"schemas": {
"Source": {
"description": "Source describes the location of the source in a supported storage\nservice.",
"type": "object",
"properties": {
"storageSource": {
"$ref": "StorageSource",
"description": "If provided, get the source from this location in in Google Cloud\nStorage."
},
"repoSource": {
"description": "If provided, get source from this location in a Cloud Repo.",
"$ref": "RepoSource"
}
},
"id": "Source"
},
"BuildOptions": {
"description": "Optional arguments to enable specific features of builds.",
"type": "object",
"properties": {
"sourceProvenanceHash": {
"description": "Requested hash for SourceProvenance.",
"type": "array",
"items": {
"enum": [
"NONE",
"SHA256"
],
"type": "string"
},
"enumDescriptions": [
"No hash requested.",
"Use a sha256 hash."
]
},
"requestedVerifyOption": {
"description": "Requested verifiability options.",
"type": "string",
"enumDescriptions": [
"Not a verifiable build. (default)",
"Verified build."
],
"enum": [
"NOT_VERIFIED",
"VERIFIED"
]
}
},
"id": "BuildOptions"
},
"StorageSource": {
"id": "StorageSource",
"description": "StorageSource describes the location of the source in an archive file in\nGoogle Cloud Storage.",
"type": "object",
"properties": {
"bucket": {
"description": "Google Cloud Storage bucket containing source (see\n[Bucket Name\nRequirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)).",
"type": "string"
},
"object": {
"description": "Google Cloud Storage object containing source.\n\nThis object must be a gzipped archive file (.tar.gz) containing source to\nbuild.",
"type": "string"
},
"generation": {
"description": "Google Cloud Storage generation for the object. If the generation is\nomitted, the latest generation will be used.",
"format": "int64",
"type": "string"
}
}
},
"Results": {
"description": "Results describes the artifacts created by the build pipeline.",
"type": "object",
"properties": {
"buildStepImages": {
"description": "List of build step digests, in order corresponding to build step indices.",
"type": "array",
"items": {
"type": "string"
}
},
"images": {
"description": "Images that were built as a part of the build.",
"type": "array",
"items": {
"$ref": "BuiltImage"
}
}
},
"id": "Results"
},
"BuildOperationMetadata": {
"type": "object",
"properties": {
"build": {
"description": "The build that the operation is tracking.",
"$ref": "Build"
}
},
"id": "BuildOperationMetadata",
"description": "Metadata for build operations."
},
"SourceProvenance": {
"id": "SourceProvenance",
"description": "Provenance of the source. Ways to find the original source, or verify that\nsome source was used for this build.",
"type": "object",
"properties": {
"resolvedRepoSource": {
"description": "A copy of the build's source.repo_source, if exists, with any\nrevisions resolved.",
"$ref": "RepoSource"
},
"resolvedStorageSource": {
"$ref": "StorageSource",
"description": "A copy of the build's source.storage_source, if exists, with any\ngenerations resolved."
},
"fileHashes": {
"additionalProperties": {
"$ref": "FileHashes"
},
"description": "Hash(es) of the build source, which can be used to verify that the original\nsource integrity was maintained in the build. Note that FileHashes will\nonly be populated if BuildOptions has requested a SourceProvenanceHash.\n\nThe keys to this map are file paths used as build source and the values\ncontain the hash values for those files.\n\nIf the build source came in a single package such as a gzipped tarfile\n(.tar.gz), the FileHash will be for the single path to that file.\n@OutputOnly",
"type": "object"
}
}
},
"CancelOperationRequest": {
"description": "The request message for Operations.CancelOperation.",
"type": "object",
"properties": {},
"id": "CancelOperationRequest"
},
"Operation": {
"id": "Operation",
"description": "This resource represents a long-running operation that is the result of a\nnetwork API call.",
"type": "object",
"properties": {
"done": {
"description": "If the value is `false`, it means the operation is still in progress.\nIf true, the operation is completed, and either `error` or `response` is\navailable.",
"type": "boolean"
},
"response": {
"additionalProperties": {
"description": "Properties of the object. Contains field @type with type URL.",
"type": "any"
},
"description": "The normal response of the operation in case of success. If the original\nmethod returns no data on success, such as `Delete`, the response is\n`google.protobuf.Empty`. If the original method is standard\n`Get`/`Create`/`Update`, the response should be the resource. For other\nmethods, the response should have the type `XxxResponse`, where `Xxx`\nis the original method name. For example, if the original method name\nis `TakeSnapshot()`, the inferred response type is\n`TakeSnapshotResponse`.",
"type": "object"
},
"name": {
"type": "string",
"description": "The server-assigned name, which is only unique within the same service that\noriginally returns it. If you use the default HTTP mapping, the\n`name` should have the format of `operations/some/unique/name`."
},
"error": {
"description": "The error result of the operation in case of failure or cancellation.",
"$ref": "Status"
},
"metadata": {
"additionalProperties": {
"description": "Properties of the object. Contains field @type with type URL.",
"type": "any"
},
"description": "Service-specific metadata associated with the operation. It typically\ncontains progress information and common metadata such as create time.\nSome services might not provide such metadata. Any method that returns a\nlong-running operation should document the metadata type, if any.",
"type": "object"
}
}
},
"ListBuildTriggersResponse": {
"type": "object",
"properties": {
"triggers": {
"description": "BuildTriggers for the project, sorted by create_time descending.",
"type": "array",
"items": {
"$ref": "BuildTrigger"
}
}
},
"id": "ListBuildTriggersResponse",
"description": "Response containing existing BuildTriggers."
},
"BuiltImage": {
"description": "BuiltImage describes an image built by the pipeline.",
"type": "object",
"properties": {
"name": {
"description": "Name used to push the container image to Google Container Registry, as\npresented to `docker push`.",
"type": "string"
},
"digest": {
"description": "Docker Registry 2.0 digest.",
"type": "string"
}
},
"id": "BuiltImage"
},
"BuildStep": {
"description": "BuildStep describes a step to perform in the build pipeline.",
"type": "object",
"properties": {
"dir": {
"description": "Working directory (relative to project source root) to use when running\nthis operation's container.",
"type": "string"
},
"env": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of environment variable definitions to be used when running a step.\n\nThe elements are of the form \"KEY=VALUE\" for the environment variable \"KEY\"\nbeing given the value \"VALUE\"."
},
"waitFor": {
"description": "The ID(s) of the step(s) that this build step depends on.\nThis build step will not start until all the build steps in wait_for\nhave completed successfully. If wait_for is empty, this build step will\nstart when all previous build steps in the Build.Steps list have completed\nsuccessfully.",
"type": "array",
"items": {
"type": "string"
}
},
"args": {
"description": "A list of arguments that will be presented to the step when it is started.\n\nIf the image used to run the step's container has an entrypoint, these args\nwill be used as arguments to that entrypoint. If the image does not define\nan entrypoint, the first element in args will be used as the entrypoint,\nand the remainder will be used as arguments.",
"type": "array",
"items": {
"type": "string"
}
},
"name": {
"description": "The name of the container image that will run this particular build step.\n\nIf the image is already available in the host's Docker daemon's cache, it\nwill be run directly. If not, the host will attempt to pull the image\nfirst, using the builder service account's credentials if necessary.\n\nThe Docker daemon's cache will already have the latest versions of all of\nthe officially supported build steps\n([https://github.com/GoogleCloudPlatform/cloud-builders](https://github.com/GoogleCloudPlatform/cloud-builders)).\nThe Docker daemon will also have cached many of the layers for some popular\nimages, like \"ubuntu\", \"debian\", but they will be refreshed at the time you\nattempt to use them.\n\nIf you built an image in a previous build step, it will be stored in the\nhost's Docker daemon's cache and is available to use as the name for a\nlater build step.",
"type": "string"
},
"entrypoint": {
"description": "Optional entrypoint to be used instead of the build step image's default\nIf unset, the image's default will be used.",
"type": "string"
},
"id": {
"description": "Optional unique identifier for this build step, used in wait_for to\nreference this build step as a dependency.",
"type": "string"
}
},
"id": "BuildStep"
},
"RepoSource": {
"description": "RepoSource describes the location of the source in a Google Cloud Source\nRepository.",
"type": "object",
"properties": {
"projectId": {
"description": "ID of the project that owns the repo. If omitted, the project ID requesting\nthe build is assumed.",
"type": "string"
},
"repoName": {
"description": "Name of the repo. If omitted, the name \"default\" is assumed.",
"type": "string"
},
"branchName": {
"description": "Name of the branch to build.",
"type": "string"
},
"tagName": {
"description": "Name of the tag to build.",
"type": "string"
},
"commitSha": {
"type": "string",
"description": "Explicit commit SHA to build."
}
},
"id": "RepoSource"
},
"Hash": {
"description": "Container message for hash values.",
"type": "object",
"properties": {
"type": {
"enumDescriptions": [
"No hash requested.",
"Use a sha256 hash."
],
"enum": [
"NONE",
"SHA256"
],
"description": "The type of hash that was performed.",
"type": "string"
},
"value": {
"description": "The hash value.",
"format": "byte",
"type": "string"
}
},
"id": "Hash"
},
"FileHashes": {
"type": "object",
"properties": {
"fileHash": {
"description": "Collection of file hashes.",
"type": "array",
"items": {
"$ref": "Hash"
}
}
},
"id": "FileHashes",
"description": "Container message for hashes of byte content of files, used in\nSourceProvenance messages to verify integrity of source input to the build."
},
"Status": {
"description": "The `Status` type defines a logical error model that is suitable for different\nprogramming environments, including REST APIs and RPC APIs. It is used by\n[gRPC](https://github.com/grpc). The error model is designed to be:\n\n- Simple to use and understand for most users\n- Flexible enough to meet unexpected needs\n\n# Overview\n\nThe `Status` message contains three pieces of data: error code, error message,\nand error details. The error code should be an enum value of\ngoogle.rpc.Code, but it may accept additional error codes if needed. The\nerror message should be a developer-facing English message that helps\ndevelopers *understand* and *resolve* the error. If a localized user-facing\nerror message is needed, put the localized message in the error details or\nlocalize it in the client. The optional error details may contain arbitrary\ninformation about the error. There is a predefined set of error detail types\nin the package `google.rpc` which can be used for common error conditions.\n\n# Language mapping\n\nThe `Status` message is the logical representation of the error model, but it\nis not necessarily the actual wire format. When the `Status` message is\nexposed in different client libraries and different wire protocols, it can be\nmapped differently. For example, it will likely be mapped to some exceptions\nin Java, but more likely mapped to some error codes in C.\n\n# Other uses\n\nThe error model and the `Status` message can be used in a variety of\nenvironments, either with or without APIs, to provide a\nconsistent developer experience across different environments.\n\nExample uses of this error model include:\n\n- Partial errors. If a service needs to return partial errors to the client,\n it may embed the `Status` in the normal response to indicate the partial\n errors.\n\n- Workflow errors. A typical workflow has multiple steps. Each step may\n have a `Status` message for error reporting purpose.\n\n- Batch operations. If a client uses batch request and batch response, the\n `Status` message should be used directly inside batch response, one for\n each error sub-response.\n\n- Asynchronous operations. If an API call embeds asynchronous operation\n results in its response, the status of those operations should be\n represented directly using the `Status` message.\n\n- Logging. If some API errors are stored in logs, the message `Status` could\n be used directly after any stripping needed for security/privacy reasons.",
"type": "object",
"properties": {
"code": {
"description": "The status code, which should be an enum value of google.rpc.Code.",
"format": "int32",
"type": "integer"
},
"message": {
"description": "A developer-facing error message, which should be in English. Any\nuser-facing error message should be localized and sent in the\ngoogle.rpc.Status.details field, or localized by the client.",
"type": "string"
},
"details": {
"description": "A list of messages that carry the error details. There will be a\ncommon set of message types for APIs to use.",
"type": "array",
"items": {
"type": "object",
"additionalProperties": {
"description": "Properties of the object. Contains field @type with type URL.",
"type": "any"
}
}
}
},
"id": "Status"
},
"Empty": {
"description": "A generic empty message that you can re-use to avoid defining duplicated\nempty messages in your APIs. A typical example is to use it as the request\nor the response type of an API method. For instance:\n\n service Foo {\n rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);\n }\n\nThe JSON representation for `Empty` is empty JSON object `{}`.",
"type": "object",
"properties": {},
"id": "Empty"
},
"BuildTrigger": {
"description": "Configuration for an automated build in response to source repository\nchanges.",
"type": "object",
"properties": {
"id": {
"description": "Unique identifier of the trigger.\n\n@OutputOnly",
"type": "string"
},
"build": {
"description": "Contents of the build template.",
"$ref": "Build"
},
"substitutions": {
"description": "Substitutions data for Build resource.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"description": {
"description": "Human-readable description of this trigger.",
"type": "string"
},
"disabled": {
"description": "If true, the trigger will never result in a build.",
"type": "boolean"
},
"createTime": {
"description": "Time when the trigger was created.\n\n@OutputOnly",
"format": "google-datetime",
"type": "string"
},
"triggerTemplate": {
"$ref": "RepoSource",
"description": "Template describing the types of source changes to trigger a build.\n\nBranch and tag names in trigger templates are interpreted as regular\nexpressions. Any branch or tag change that matches that regular expression\nwill trigger a build."
},
"filename": {
"description": "Path, from the source root, to a file whose contents is used for the\ntemplate.",
"type": "string"
}
},
"id": "BuildTrigger"
},
"Build": {
"description": "A build resource in the Container Builder API.\n\nAt a high level, a Build describes where to find source code, how to build\nit (for example, the builder image to run on the source), and what tag to\napply to the built image when it is pushed to Google Container Registry.\n\nFields can include the following variables which will be expanded when the\nbuild is created:\n\n- $PROJECT_ID: the project ID of the build.\n- $BUILD_ID: the autogenerated ID of the build.\n- $REPO_NAME: the source repository name specified by RepoSource.\n- $BRANCH_NAME: the branch name specified by RepoSource.\n- $TAG_NAME: the tag name specified by RepoSource.\n- $REVISION_ID or $COMMIT_SHA: the commit SHA specified by RepoSource or\n resolved from the specified branch or tag.",
"type": "object",
"properties": {
"options": {
"description": "Special options for this build.",
"$ref": "BuildOptions"
},
"source": {
"$ref": "Source",
"description": "Describes where to find the source files to build."
},
"timeout": {
"description": "Amount of time that this build should be allowed to run, to second\ngranularity. If this amount of time elapses, work on the build will cease\nand the build status will be TIMEOUT.\n\nDefault time is ten minutes.",
"format": "google-duration",
"type": "string"
},
"status": {
"enumDescriptions": [
"Status of the build is unknown.",
"Build is queued; work has not yet begun.",
"Build is being executed.",
"Build finished successfully.",
"Build failed to complete successfully.",
"Build failed due to an internal cause.",
"Build took longer than was allowed.",
"Build was canceled by a user."
],
"enum": [
"STATUS_UNKNOWN",
"QUEUED",
"WORKING",
"SUCCESS",
"FAILURE",
"INTERNAL_ERROR",
"TIMEOUT",
"CANCELLED"
],
"description": "Status of the build.\n@OutputOnly",
"type": "string"
},
"statusDetail": {
"description": "Customer-readable message about the current status.\n@OutputOnly",
"type": "string"
},
"results": {
"description": "Results of the build.\n@OutputOnly",
"$ref": "Results"
},
"logsBucket": {
"description": "Google Cloud Storage bucket where logs should be written (see\n[Bucket Name\nRequirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)).\nLogs file names will be of the format `${logs_bucket}/log-${build_id}.txt`.",
"type": "string"
},
"steps": {
"type": "array",
"items": {
"$ref": "BuildStep"
},
"description": "Describes the operations to be performed on the workspace."
},
"buildTriggerId": {
"description": "The ID of the BuildTrigger that triggered this build, if it was\ntriggered automatically.\n@OutputOnly",
"type": "string"
},
"id": {
"description": "Unique identifier of the build.\n@OutputOnly",
"type": "string"
},
"startTime": {
"description": "Time at which execution of the build was started.\n@OutputOnly",
"format": "google-datetime",
"type": "string"
},
"substitutions": {
"description": "Substitutions data for Build resource.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"createTime": {
"description": "Time at which the request to create the build was received.\n@OutputOnly",
"format": "google-datetime",
"type": "string"
},
"sourceProvenance": {
"$ref": "SourceProvenance",
"description": "A permanent fixed identifier for source.\n@OutputOnly"
},
"images": {
"description": "A list of images to be pushed upon the successful completion of all build\nsteps.\n\nThe images will be pushed using the builder service account's credentials.\n\nThe digests of the pushed images will be stored in the Build resource's\nresults field.\n\nIf any of the images fail to be pushed, the build is marked FAILURE.",
"type": "array",
"items": {
"type": "string"
}
},
"projectId": {
"description": "ID of the project.\n@OutputOnly.",
"type": "string"
},
"logUrl": {
"description": "URL to logs for this build in Google Cloud Logging.\n@OutputOnly",
"type": "string"
},
"finishTime": {
"description": "Time at which execution of the build was finished.\n\nThe difference between finish_time and start_time is the duration of the\nbuild's execution.\n@OutputOnly",
"format": "google-datetime",
"type": "string"
}
},
"id": "Build"
},
"CancelBuildRequest": {
"id": "CancelBuildRequest",
"description": "Request to cancel an ongoing build.",
"type": "object",
"properties": {}
},
"ListBuildsResponse": {
"properties": {
"nextPageToken": {
"description": "Token to receive the next page of results.",
"type": "string"
},
"builds": {
"description": "Builds will be sorted by create_time, descending.",
"type": "array",
"items": {
"$ref": "Build"
}
}
},
"id": "ListBuildsResponse",
"description": "Response including listed builds.",
"type": "object"
},
"ListOperationsResponse": {
"description": "The response message for Operations.ListOperations.",
"type": "object",
"properties": {
"operations": {
"type": "array",
"items": {
"$ref": "Operation"
},
"description": "A list of operations that matches the specified filter in the request."
},
"nextPageToken": {
"description": "The standard List next-page token.",
"type": "string"
}
},
"id": "ListOperationsResponse"
}
},
"protocol": "rest",
"icons": {
"x32": "http://www.google.com/images/icons/product/search-32.gif",
"x16": "http://www.google.com/images/icons/product/search-16.gif"
},
"canonicalName": "Cloud Build",
"auth": {
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/cloud-platform": {
"description": "View and manage your data across Google Cloud Platform services"
}
}
}
},
"rootUrl": "https://cloudbuild.googleapis.com/",
"ownerDomain": "google.com",
"name": "cloudbuild",
"batchPath": "batch",
"title": "Google Cloud Container Builder API",
"ownerName": "Google",
"resources": {
"operations": {
"methods": {
"cancel": {
"response": {
"$ref": "Empty"
},
"parameterOrder": [
"name"
],
"httpMethod": "POST",
"parameters": {
"name": {
"description": "The name of the operation resource to be cancelled.",
"required": true,
"type": "string",
"pattern": "^operations/.+$",
"location": "path"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"flatPath": "v1/operations/{operationsId}:cancel",
"path": "v1/{+name}:cancel",
"id": "cloudbuild.operations.cancel",
"request": {
"$ref": "CancelOperationRequest"
},
"description": "Starts asynchronous cancellation on a long-running operation. The server\nmakes a best effort to cancel the operation, but success is not\nguaranteed. If the server doesn't support this method, it returns\n`google.rpc.Code.UNIMPLEMENTED`. Clients can use\nOperations.GetOperation or\nother methods to check whether the cancellation succeeded or whether the\noperation completed despite cancellation. On successful cancellation,\nthe operation is not deleted; instead, it becomes an operation with\nan Operation.error value with a google.rpc.Status.code of 1,\ncorresponding to `Code.CANCELLED`."
},
"list": {
"description": "Lists operations that match the specified filter in the request. If the\nserver doesn't support this method, it returns `UNIMPLEMENTED`.\n\nNOTE: the `name` binding below allows API services to override the binding\nto use different resource name schemes, such as `users/*/operations`.",
"httpMethod": "GET",
"parameterOrder": [
"name"
],
"response": {
"$ref": "ListOperationsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"parameters": {
"filter": {
"description": "The standard list filter.",
"type": "string",
"location": "query"
},
"name": {
"pattern": "^operations$",
"location": "path",
"description": "The name of the operation collection.",
"required": true,
"type": "string"
},
"pageToken": {
"location": "query",
"description": "The standard list page token.",
"type": "string"
},
"pageSize": {
"type": "integer",
"location": "query",
"description": "The standard list page size.",
"format": "int32"
}
},
"flatPath": "v1/operations",
"id": "cloudbuild.operations.list",
"path": "v1/{+name}"
},
"get": {
"id": "cloudbuild.operations.get",
"path": "v1/{+name}",
"description": "Gets the latest state of a long-running operation. Clients can use this\nmethod to poll the operation result at intervals as recommended by the API\nservice.",
"httpMethod": "GET",
"parameterOrder": [
"name"
],
"response": {
"$ref": "Operation"
},
"parameters": {
"name": {
"location": "path",
"description": "The name of the operation resource.",
"required": true,
"type": "string",
"pattern": "^operations/.+$"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"flatPath": "v1/operations/{operationsId}"
}
}
},
"projects": {
"resources": {
"triggers": {
"methods": {
"get": {
"description": "Gets information about a BuildTrigger.\n\nThis API is experimental.",
"response": {
"$ref": "BuildTrigger"
},
"parameterOrder": [
"projectId",
"triggerId"
],
"httpMethod": "GET",
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"parameters": {
"triggerId": {
"description": "ID of the BuildTrigger to get.",
"required": true,
"type": "string",
"location": "path"
},
"projectId": {
"description": "ID of the project that owns the trigger.",
"required": true,
"type": "string",
"location": "path"
}
},
"flatPath": "v1/projects/{projectId}/triggers/{triggerId}",
"path": "v1/projects/{projectId}/triggers/{triggerId}",
"id": "cloudbuild.projects.triggers.get"
},
"list": {
"description": "Lists existing BuildTrigger.\n\nThis API is experimental.",
"response": {
"$ref": "ListBuildTriggersResponse"
},
"parameterOrder": [
"projectId"
],
"httpMethod": "GET",
"parameters": {
"projectId": {
"location": "path",
"description": "ID of the project for which to list BuildTriggers.",
"required": true,
"type": "string"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"flatPath": "v1/projects/{projectId}/triggers",
"path": "v1/projects/{projectId}/triggers",
"id": "cloudbuild.projects.triggers.list"
},
"patch": {
"id": "cloudbuild.projects.triggers.patch",
"path": "v1/projects/{projectId}/triggers/{triggerId}",
"request": {
"$ref": "BuildTrigger"
},
"description": "Updates an BuildTrigger by its project ID and trigger ID.\n\nThis API is experimental.",
"httpMethod": "PATCH",
"parameterOrder": [
"projectId",
"triggerId"
],
"response": {
"$ref": "BuildTrigger"
},
"parameters": {
"triggerId": {
"description": "ID of the BuildTrigger to update.",
"required": true,
"type": "string",
"location": "path"
},
"projectId": {
"description": "ID of the project that owns the trigger.",
"required": true,
"type": "string",
"location": "path"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"flatPath": "v1/projects/{projectId}/triggers/{triggerId}"
},
"create": {
"description": "Creates a new BuildTrigger.\n\nThis API is experimental.",
"request": {
"$ref": "BuildTrigger"
},
"httpMethod": "POST",
"parameterOrder": [
"projectId"
],
"response": {
"$ref": "BuildTrigger"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"parameters": {
"projectId": {
"location": "path",
"description": "ID of the project for which to configure automatic builds.",
"required": true,
"type": "string"
}
},
"flatPath": "v1/projects/{projectId}/triggers",
"id": "cloudbuild.projects.triggers.create",
"path": "v1/projects/{projectId}/triggers"
},
"delete": {
"path": "v1/projects/{projectId}/triggers/{triggerId}",
"id": "cloudbuild.projects.triggers.delete",
"description": "Deletes an BuildTrigger by its project ID and trigger ID.\n\nThis API is experimental.",
"response": {
"$ref": "Empty"
},
"parameterOrder": [
"projectId",
"triggerId"
],
"httpMethod": "DELETE",
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"parameters": {
"triggerId": {
"description": "ID of the BuildTrigger to delete.",
"required": true,
"type": "string",
"location": "path"
},
"projectId": {
"location": "path",
"description": "ID of the project that owns the trigger.",
"required": true,
"type": "string"
}
},
"flatPath": "v1/projects/{projectId}/triggers/{triggerId}"
}
}
},
"builds": {
"methods": {
"cancel": {
"httpMethod": "POST",
"parameterOrder": [
"projectId",
"id"
],
"response": {
"$ref": "Build"
},
"parameters": {
"projectId": {
"description": "ID of the project.",
"required": true,
"type": "string",
"location": "path"
},
"id": {
"location": "path",
"description": "ID of the build.",
"required": true,
"type": "string"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"flatPath": "v1/projects/{projectId}/builds/{id}:cancel",
"id": "cloudbuild.projects.builds.cancel",
"path": "v1/projects/{projectId}/builds/{id}:cancel",
"request": {
"$ref": "CancelBuildRequest"
},
"description": "Cancels a requested build in progress."
},
"get": {
"description": "Returns information about a previously requested build.\n\nThe Build that is returned includes its status (e.g., success or failure,\nor in-progress), and timing information.",
"response": {
"$ref": "Build"
},
"parameterOrder": [
"projectId",
"id"
],
"httpMethod": "GET",
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"parameters": {
"projectId": {
"location": "path",
"description": "ID of the project.",
"required": true,
"type": "string"
},
"id": {
"location": "path",
"description": "ID of the build.",
"required": true,
"type": "string"
}
},
"flatPath": "v1/projects/{projectId}/builds/{id}",
"path": "v1/projects/{projectId}/builds/{id}",
"id": "cloudbuild.projects.builds.get"
},
"list": {
"httpMethod": "GET",
"parameterOrder": [
"projectId"
],
"response": {
"$ref": "ListBuildsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"parameters": {
"filter": {
"description": "The raw filter text to constrain the results.",
"type": "string",
"location": "query"
},
"pageToken": {
"location": "query",
"description": "Token to provide to skip to a particular spot in the list.",
"type": "string"
},
"pageSize": {
"location": "query",
"description": "Number of results to return in the list.",
"format": "int32",
"type": "integer"
},
"projectId": {
"location": "path",
"description": "ID of the project.",
"required": true,
"type": "string"
}
},
"flatPath": "v1/projects/{projectId}/builds",
"id": "cloudbuild.projects.builds.list",
"path": "v1/projects/{projectId}/builds",
"description": "Lists previously requested builds.\n\nPreviously requested builds may still be in-progress, or may have finished\nsuccessfully or unsuccessfully."
},
"create": {
"flatPath": "v1/projects/{projectId}/builds",
"path": "v1/projects/{projectId}/builds",
"id": "cloudbuild.projects.builds.create",
"request": {
"$ref": "Build"
},
"description": "Starts a build with the specified configuration.\n\nThe long-running Operation returned by this method will include the ID of\nthe build, which can be passed to GetBuild to determine its status (e.g.,\nsuccess or failure).",
"response": {
"$ref": "Operation"
},
"parameterOrder": [
"projectId"
],
"httpMethod": "POST",
"parameters": {
"projectId": {
"description": "ID of the project.",
"required": true,
"type": "string",
"location": "path"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
}
}
}
},
"parameters": {
"key": {
"description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
"type": "string",
"location": "query"
},
"access_token": {
"location": "query",
"description": "OAuth access token.",
"type": "string"
},
"quotaUser": {
"type": "string",
"location": "query",
"description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters."
},
"pp": {
"type": "boolean",
"default": "true",
"location": "query",
"description": "Pretty-print response."
},
"oauth_token": {
"description": "OAuth 2.0 token for the current user.",
"type": "string",
"location": "query"
},
"bearer_token": {
"type": "string",
"location": "query",
"description": "OAuth bearer token."
},
"upload_protocol": {
"location": "query",
"description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
"type": "string"
},
"prettyPrint": {
"location": "query",
"description": "Returns response with indentations and line breaks.",
"type": "boolean",
"default": "true"
},
"uploadType": {
"type": "string",
"location": "query",
"description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\")."
},
"fields": {
"location": "query",
"description": "Selector specifying which fields to include in a partial response.",
"type": "string"
},
"$.xgafv": {
"enumDescriptions": [
"v1 error format",
"v2 error format"
],
"location": "query",
"enum": [
"1",
"2"
],
"description": "V1 error format.",
"type": "string"
},
"callback": {
"description": "JSONP",
"type": "string",
"location": "query"
},
"alt": {
"type": "string",
"enumDescriptions": [
"Responses with Content-Type of application/json",
"Media download with context-dependent Content-Type",
"Responses with Content-Type of application/x-protobuf"
],
"location": "query",
"description": "Data format for response.",
"default": "json",
"enum": [
"json",
"media",
"proto"
]
}
},
"version": "v1",
"baseUrl": "https://cloudbuild.googleapis.com/",
"kind": "discovery#restDescription",
"description": "Builds container images in the cloud.",
"servicePath": "",
"basePath": ""
}