As of January 1, 2020 this library no longer supports Python 2 on the latest released version. Library versions released prior to that date will continue to be available. For more information please visit Python 2 support on Google Cloud.

Source code for google.cloud.devtools.cloudbuild_v1.types.cloudbuild

# -*- coding: utf-8 -*-
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import proto  # type: ignore

from google.api import httpbody_pb2  # type: ignore
from google.protobuf import duration_pb2  # type: ignore
from google.protobuf import field_mask_pb2  # type: ignore
from google.protobuf import timestamp_pb2  # type: ignore


__protobuf__ = proto.module(
    package="google.devtools.cloudbuild.v1",
    manifest={
        "RetryBuildRequest",
        "RunBuildTriggerRequest",
        "StorageSource",
        "RepoSource",
        "StorageSourceManifest",
        "Source",
        "BuiltImage",
        "BuildStep",
        "Volume",
        "Results",
        "ArtifactResult",
        "Build",
        "Artifacts",
        "TimeSpan",
        "BuildOperationMetadata",
        "SourceProvenance",
        "FileHashes",
        "Hash",
        "Secrets",
        "InlineSecret",
        "SecretManagerSecret",
        "Secret",
        "CreateBuildRequest",
        "GetBuildRequest",
        "ListBuildsRequest",
        "ListBuildsResponse",
        "CancelBuildRequest",
        "ApproveBuildRequest",
        "BuildApproval",
        "ApprovalConfig",
        "ApprovalResult",
        "BuildTrigger",
        "GitHubEventsConfig",
        "PubsubConfig",
        "WebhookConfig",
        "PullRequestFilter",
        "PushFilter",
        "CreateBuildTriggerRequest",
        "GetBuildTriggerRequest",
        "ListBuildTriggersRequest",
        "ListBuildTriggersResponse",
        "DeleteBuildTriggerRequest",
        "UpdateBuildTriggerRequest",
        "BuildOptions",
        "ReceiveTriggerWebhookRequest",
        "ReceiveTriggerWebhookResponse",
        "WorkerPool",
        "PrivatePoolV1Config",
        "CreateWorkerPoolRequest",
        "GetWorkerPoolRequest",
        "DeleteWorkerPoolRequest",
        "UpdateWorkerPoolRequest",
        "ListWorkerPoolsRequest",
        "ListWorkerPoolsResponse",
        "CreateWorkerPoolOperationMetadata",
        "UpdateWorkerPoolOperationMetadata",
        "DeleteWorkerPoolOperationMetadata",
    },
)


[docs]class RetryBuildRequest(proto.Message): r"""Specifies a build to retry. Attributes: name (str): The name of the ``Build`` to retry. Format: ``projects/{project}/locations/{location}/builds/{build}`` project_id (str): Required. ID of the project. id (str): Required. Build ID of the original build. """ name = proto.Field(proto.STRING, number=3,) project_id = proto.Field(proto.STRING, number=1,) id = proto.Field(proto.STRING, number=2,)
[docs]class RunBuildTriggerRequest(proto.Message): r"""Specifies a build trigger to run and the source to use. Attributes: name (str): The name of the ``Trigger`` to run. Format: ``projects/{project}/locations/{location}/triggers/{trigger}`` project_id (str): Required. ID of the project. trigger_id (str): Required. ID of the trigger. source (google.cloud.devtools.cloudbuild_v1.types.RepoSource): Source to build against this trigger. """ name = proto.Field(proto.STRING, number=4,) project_id = proto.Field(proto.STRING, number=1,) trigger_id = proto.Field(proto.STRING, number=2,) source = proto.Field(proto.MESSAGE, number=3, message="RepoSource",)
[docs]class StorageSource(proto.Message): r"""Location of the source in an archive file in Google Cloud Storage. Attributes: bucket (str): Google Cloud Storage bucket containing the source (see `Bucket Name Requirements <https://cloud.google.com/storage/docs/bucket-naming#requirements>`__). object_ (str): Google Cloud Storage object containing the source. This object must be a gzipped archive file (``.tar.gz``) containing source to build. generation (int): Google Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used. """ bucket = proto.Field(proto.STRING, number=1,) object_ = proto.Field(proto.STRING, number=2,) generation = proto.Field(proto.INT64, number=3,)
[docs]class RepoSource(proto.Message): r"""Location of the source in a Google Cloud Source Repository. Attributes: project_id (str): ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed. repo_name (str): Name of the Cloud Source Repository. branch_name (str): Regex matching branches to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax tag_name (str): Regex matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax commit_sha (str): Explicit commit SHA to build. dir_ (str): Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's ``dir`` is specified and is an absolute path, this value is ignored for that step's execution. invert_regex (bool): Only trigger a build if the revision regex does NOT match the revision regex. substitutions (Sequence[google.cloud.devtools.cloudbuild_v1.types.RepoSource.SubstitutionsEntry]): Substitutions to use in a triggered build. Should only be used with RunBuildTrigger """ project_id = proto.Field(proto.STRING, number=1,) repo_name = proto.Field(proto.STRING, number=2,) branch_name = proto.Field(proto.STRING, number=3, oneof="revision",) tag_name = proto.Field(proto.STRING, number=4, oneof="revision",) commit_sha = proto.Field(proto.STRING, number=5, oneof="revision",) dir_ = proto.Field(proto.STRING, number=7,) invert_regex = proto.Field(proto.BOOL, number=8,) substitutions = proto.MapField(proto.STRING, proto.STRING, number=9,)
[docs]class StorageSourceManifest(proto.Message): r"""Location of the source manifest in Google Cloud Storage. This feature is in Preview; see description `here <https://github.com/GoogleCloudPlatform/cloud-builders/tree/master/gcs-fetcher>`__. Attributes: bucket (str): Google Cloud Storage bucket containing the source manifest (see `Bucket Name Requirements <https://cloud.google.com/storage/docs/bucket-naming#requirements>`__). object_ (str): Google Cloud Storage object containing the source manifest. This object must be a JSON file. generation (int): Google Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used. """ bucket = proto.Field(proto.STRING, number=1,) object_ = proto.Field(proto.STRING, number=2,) generation = proto.Field(proto.INT64, number=3,)
[docs]class Source(proto.Message): r"""Location of the source in a supported storage service. Attributes: storage_source (google.cloud.devtools.cloudbuild_v1.types.StorageSource): If provided, get the source from this location in Google Cloud Storage. repo_source (google.cloud.devtools.cloudbuild_v1.types.RepoSource): If provided, get the source from this location in a Cloud Source Repository. storage_source_manifest (google.cloud.devtools.cloudbuild_v1.types.StorageSourceManifest): If provided, get the source from this manifest in Google Cloud Storage. This feature is in Preview; see description `here <https://github.com/GoogleCloudPlatform/cloud-builders/tree/master/gcs-fetcher>`__. """ storage_source = proto.Field( proto.MESSAGE, number=2, oneof="source", message="StorageSource", ) repo_source = proto.Field( proto.MESSAGE, number=3, oneof="source", message="RepoSource", ) storage_source_manifest = proto.Field( proto.MESSAGE, number=8, oneof="source", message="StorageSourceManifest", )
[docs]class BuiltImage(proto.Message): r"""An image built by the pipeline. Attributes: name (str): Name used to push the container image to Google Container Registry, as presented to ``docker push``. digest (str): Docker Registry 2.0 digest. push_timing (google.cloud.devtools.cloudbuild_v1.types.TimeSpan): Output only. Stores timing information for pushing the specified image. """ name = proto.Field(proto.STRING, number=1,) digest = proto.Field(proto.STRING, number=3,) push_timing = proto.Field(proto.MESSAGE, number=4, message="TimeSpan",)
[docs]class BuildStep(proto.Message): r"""A step in the build pipeline. Attributes: name (str): Required. The name of the container image that will run this particular build step. If the image is available in the host's Docker daemon's cache, it will be run directly. If not, the host will attempt to pull the image first, using the builder service account's credentials if necessary. The Docker daemon's cache will already have the latest versions of all of the officially supported build steps (https://github.com/GoogleCloudPlatform/cloud-builders). The Docker daemon will also have cached many of the layers for some popular images, like "ubuntu", "debian", but they will be refreshed at the time you attempt to use them. If you built an image in a previous build step, it will be stored in the host's Docker daemon's cache and is available to use as the name for a later build step. env (Sequence[str]): A list of environment variable definitions to be used when running a step. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE". args (Sequence[str]): A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the ``args`` are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments. dir_ (str): Working directory to use when running this step's container. If this value is a relative path, it is relative to the build's working directory. If this value is absolute, it may be outside the build's working directory, in which case the contents of the path may not be persisted across build step executions, unless a ``volume`` for that path is specified. If the build specifies a ``RepoSource`` with ``dir`` and a step with a ``dir``, which specifies an absolute path, the ``RepoSource`` ``dir`` is ignored for the step's execution. id (str): Unique identifier for this build step, used in ``wait_for`` to reference this build step as a dependency. wait_for (Sequence[str]): The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in ``wait_for`` have completed successfully. If ``wait_for`` is empty, this build step will start when all previous build steps in the ``Build.Steps`` list have completed successfully. entrypoint (str): Entrypoint to be used instead of the build step image's default entrypoint. If unset, the image's default entrypoint is used. secret_env (Sequence[str]): A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's ``Secret``. volumes (Sequence[google.cloud.devtools.cloudbuild_v1.types.Volume]): List of volumes to mount into the build step. Each volume is created as an empty volume prior to execution of the build step. Upon completion of the build, volumes and their contents are discarded. Using a named volume in only one step is not valid as it is indicative of a build request with an incorrect configuration. timing (google.cloud.devtools.cloudbuild_v1.types.TimeSpan): Output only. Stores timing information for executing this build step. pull_timing (google.cloud.devtools.cloudbuild_v1.types.TimeSpan): Output only. Stores timing information for pulling this build step's builder image only. timeout (google.protobuf.duration_pb2.Duration): Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out. status (google.cloud.devtools.cloudbuild_v1.types.Build.Status): Output only. Status of the build step. At this time, build step status is only updated on build completion; step status is not updated in real-time as the build progresses. script (str): A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args. """ name = proto.Field(proto.STRING, number=1,) env = proto.RepeatedField(proto.STRING, number=2,) args = proto.RepeatedField(proto.STRING, number=3,) dir_ = proto.Field(proto.STRING, number=4,) id = proto.Field(proto.STRING, number=5,) wait_for = proto.RepeatedField(proto.STRING, number=6,) entrypoint = proto.Field(proto.STRING, number=7,) secret_env = proto.RepeatedField(proto.STRING, number=8,) volumes = proto.RepeatedField(proto.MESSAGE, number=9, message="Volume",) timing = proto.Field(proto.MESSAGE, number=10, message="TimeSpan",) pull_timing = proto.Field(proto.MESSAGE, number=13, message="TimeSpan",) timeout = proto.Field(proto.MESSAGE, number=11, message=duration_pb2.Duration,) status = proto.Field(proto.ENUM, number=12, enum="Build.Status",) script = proto.Field(proto.STRING, number=19,)
[docs]class Volume(proto.Message): r"""Volume describes a Docker container volume which is mounted into build steps in order to persist files across build step execution. Attributes: name (str): Name of the volume to mount. Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps. path (str): Path at which to mount the volume. Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths. """ name = proto.Field(proto.STRING, number=1,) path = proto.Field(proto.STRING, number=2,)
[docs]class Results(proto.Message): r"""Artifacts created by the build pipeline. Attributes: images (Sequence[google.cloud.devtools.cloudbuild_v1.types.BuiltImage]): Container images that were built as a part of the build. build_step_images (Sequence[str]): List of build step digests, in the order corresponding to build step indices. artifact_manifest (str): Path to the artifact manifest. Only populated when artifacts are uploaded. num_artifacts (int): Number of artifacts uploaded. Only populated when artifacts are uploaded. build_step_outputs (Sequence[bytes]): List of build step outputs, produced by builder images, in the order corresponding to build step indices. `Cloud Builders <https://cloud.google.com/cloud-build/docs/cloud-builders>`__ can produce this output by writing to ``$BUILDER_OUTPUT/output``. Only the first 4KB of data is stored. artifact_timing (google.cloud.devtools.cloudbuild_v1.types.TimeSpan): Time to push all non-container artifacts. """ images = proto.RepeatedField(proto.MESSAGE, number=2, message="BuiltImage",) build_step_images = proto.RepeatedField(proto.STRING, number=3,) artifact_manifest = proto.Field(proto.STRING, number=4,) num_artifacts = proto.Field(proto.INT64, number=5,) build_step_outputs = proto.RepeatedField(proto.BYTES, number=6,) artifact_timing = proto.Field(proto.MESSAGE, number=7, message="TimeSpan",)
[docs]class ArtifactResult(proto.Message): r"""An artifact that was uploaded during a build. This is a single record in the artifact manifest JSON file. Attributes: location (str): The path of an artifact in a Google Cloud Storage bucket, with the generation number. For example, ``gs://mybucket/path/to/output.jar#generation``. file_hash (Sequence[google.cloud.devtools.cloudbuild_v1.types.FileHashes]): The file hash of the artifact. """ location = proto.Field(proto.STRING, number=1,) file_hash = proto.RepeatedField(proto.MESSAGE, number=2, message="FileHashes",)
[docs]class Build(proto.Message): r"""A build resource in the Cloud Build API. At a high level, a ``Build`` describes where to find source code, how to build it (for example, the builder image to run on the source), and where to store the built artifacts. Fields can include the following variables, which will be expanded when the build is created: - $PROJECT_ID: the project ID of the build. - $PROJECT_NUMBER: the project number of the build. - $BUILD_ID: the autogenerated ID of the build. - $REPO_NAME: the source repository name specified by RepoSource. - $BRANCH_NAME: the branch name specified by RepoSource. - $TAG_NAME: the tag name specified by RepoSource. - $REVISION_ID or $COMMIT_SHA: the commit SHA specified by RepoSource or resolved from the specified branch or tag. - $SHORT_SHA: first 7 characters of $REVISION_ID or $COMMIT_SHA. Attributes: name (str): Output only. The 'Build' name with format: ``projects/{project}/locations/{location}/builds/{build}``, where {build} is a unique identifier generated by the service. id (str): Output only. Unique identifier of the build. project_id (str): Output only. ID of the project. status (google.cloud.devtools.cloudbuild_v1.types.Build.Status): Output only. Status of the build. status_detail (str): Output only. Customer-readable message about the current status. source (google.cloud.devtools.cloudbuild_v1.types.Source): The location of the source files to build. steps (Sequence[google.cloud.devtools.cloudbuild_v1.types.BuildStep]): Required. The operations to be performed on the workspace. results (google.cloud.devtools.cloudbuild_v1.types.Results): Output only. Results of the build. create_time (google.protobuf.timestamp_pb2.Timestamp): Output only. Time at which the request to create the build was received. start_time (google.protobuf.timestamp_pb2.Timestamp): Output only. Time at which execution of the build was started. finish_time (google.protobuf.timestamp_pb2.Timestamp): Output only. Time at which execution of the build was finished. The difference between finish_time and start_time is the duration of the build's execution. timeout (google.protobuf.duration_pb2.Duration): Amount of time that this build should be allowed to run, to second granularity. If this amount of time elapses, work on the build will cease and the build status will be ``TIMEOUT``. ``timeout`` starts ticking from ``startTime``. Default time is ten minutes. images (Sequence[str]): A list of images to be pushed upon the successful completion of all build steps. The images are pushed using the builder service account's credentials. The digests of the pushed images will be stored in the ``Build`` resource's results field. If any of the images fail to be pushed, the build status is marked ``FAILURE``. queue_ttl (google.protobuf.duration_pb2.Duration): TTL in queue for this build. If provided and the build is enqueued longer than this value, the build will expire and the build status will be ``EXPIRED``. The TTL starts ticking from create_time. artifacts (google.cloud.devtools.cloudbuild_v1.types.Artifacts): Artifacts produced by the build that should be uploaded upon successful completion of all build steps. logs_bucket (str): Google Cloud Storage bucket where logs should be written (see `Bucket Name Requirements <https://cloud.google.com/storage/docs/bucket-naming#requirements>`__). Logs file names will be of the format ``${logs_bucket}/log-${build_id}.txt``. source_provenance (google.cloud.devtools.cloudbuild_v1.types.SourceProvenance): Output only. A permanent fixed identifier for source. build_trigger_id (str): Output only. The ID of the ``BuildTrigger`` that triggered this build, if it was triggered automatically. options (google.cloud.devtools.cloudbuild_v1.types.BuildOptions): Special options for this build. log_url (str): Output only. URL to logs for this build in Google Cloud Console. substitutions (Sequence[google.cloud.devtools.cloudbuild_v1.types.Build.SubstitutionsEntry]): Substitutions data for ``Build`` resource. tags (Sequence[str]): Tags for annotation of a ``Build``. These are not docker tags. secrets (Sequence[google.cloud.devtools.cloudbuild_v1.types.Secret]): Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use ``available_secrets`` to configure builds to access secrets from Secret Manager. For instructions, see: https://cloud.google.com/cloud-build/docs/securing-builds/use-secrets timing (Sequence[google.cloud.devtools.cloudbuild_v1.types.Build.TimingEntry]): Output only. Stores timing information for phases of the build. Valid keys are: - BUILD: time to execute all build steps. - PUSH: time to push all specified images. - FETCHSOURCE: time to fetch source. - SETUPBUILD: time to set up build. If the build does not specify source or images, these keys will not be included. approval (google.cloud.devtools.cloudbuild_v1.types.BuildApproval): Output only. Describes this build's approval configuration, status, and result. service_account (str): IAM service account whose credentials will be used at build runtime. Must be of the format ``projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}``. ACCOUNT can be email address or uniqueId of the service account. available_secrets (google.cloud.devtools.cloudbuild_v1.types.Secrets): Secrets and secret environment variables. warnings (Sequence[google.cloud.devtools.cloudbuild_v1.types.Build.Warning]): Output only. Non-fatal problems encountered during the execution of the build. failure_info (google.cloud.devtools.cloudbuild_v1.types.Build.FailureInfo): Output only. Contains information about the build when status=FAILURE. """
[docs] class Status(proto.Enum): r"""Possible status of a build or build step.""" STATUS_UNKNOWN = 0 PENDING = 10 QUEUED = 1 WORKING = 2 SUCCESS = 3 FAILURE = 4 INTERNAL_ERROR = 5 TIMEOUT = 6 CANCELLED = 7 EXPIRED = 9
[docs] class Warning(proto.Message): r"""A non-fatal problem encountered during the execution of the build. Attributes: text (str): Explanation of the warning generated. priority (google.cloud.devtools.cloudbuild_v1.types.Build.Warning.Priority): The priority for this warning. """
[docs] class Priority(proto.Enum): r"""The relative importance of this warning.""" PRIORITY_UNSPECIFIED = 0 INFO = 1 WARNING = 2 ALERT = 3
text = proto.Field(proto.STRING, number=1,) priority = proto.Field(proto.ENUM, number=2, enum="Build.Warning.Priority",)
[docs] class FailureInfo(proto.Message): r"""A fatal problem encountered during the execution of the build. Attributes: type_ (google.cloud.devtools.cloudbuild_v1.types.Build.FailureInfo.FailureType): The name of the failure. detail (str): Explains the failure issue in more detail using hard-coded text. """
[docs] class FailureType(proto.Enum): r"""The name of a fatal problem encountered during the execution of the build. """ FAILURE_TYPE_UNSPECIFIED = 0 PUSH_FAILED = 1 PUSH_IMAGE_NOT_FOUND = 2 PUSH_NOT_AUTHORIZED = 3 LOGGING_FAILURE = 4 USER_BUILD_STEP = 5 FETCH_SOURCE_FAILED = 6
type_ = proto.Field(proto.ENUM, number=1, enum="Build.FailureInfo.FailureType",) detail = proto.Field(proto.STRING, number=2,)
name = proto.Field(proto.STRING, number=45,) id = proto.Field(proto.STRING, number=1,) project_id = proto.Field(proto.STRING, number=16,) status = proto.Field(proto.ENUM, number=2, enum=Status,) status_detail = proto.Field(proto.STRING, number=24,) source = proto.Field(proto.MESSAGE, number=3, message="Source",) steps = proto.RepeatedField(proto.MESSAGE, number=11, message="BuildStep",) results = proto.Field(proto.MESSAGE, number=10, message="Results",) create_time = proto.Field(proto.MESSAGE, number=6, message=timestamp_pb2.Timestamp,) start_time = proto.Field(proto.MESSAGE, number=7, message=timestamp_pb2.Timestamp,) finish_time = proto.Field(proto.MESSAGE, number=8, message=timestamp_pb2.Timestamp,) timeout = proto.Field(proto.MESSAGE, number=12, message=duration_pb2.Duration,) images = proto.RepeatedField(proto.STRING, number=13,) queue_ttl = proto.Field(proto.MESSAGE, number=40, message=duration_pb2.Duration,) artifacts = proto.Field(proto.MESSAGE, number=37, message="Artifacts",) logs_bucket = proto.Field(proto.STRING, number=19,) source_provenance = proto.Field( proto.MESSAGE, number=21, message="SourceProvenance", ) build_trigger_id = proto.Field(proto.STRING, number=22,) options = proto.Field(proto.MESSAGE, number=23, message="BuildOptions",) log_url = proto.Field(proto.STRING, number=25,) substitutions = proto.MapField(proto.STRING, proto.STRING, number=29,) tags = proto.RepeatedField(proto.STRING, number=31,) secrets = proto.RepeatedField(proto.MESSAGE, number=32, message="Secret",) timing = proto.MapField(proto.STRING, proto.MESSAGE, number=33, message="TimeSpan",) approval = proto.Field(proto.MESSAGE, number=44, message="BuildApproval",) service_account = proto.Field(proto.STRING, number=42,) available_secrets = proto.Field(proto.MESSAGE, number=47, message="Secrets",) warnings = proto.RepeatedField(proto.MESSAGE, number=49, message=Warning,) failure_info = proto.Field(proto.MESSAGE, number=51, message=FailureInfo,)
[docs]class Artifacts(proto.Message): r"""Artifacts produced by a build that should be uploaded upon successful completion of all build steps. Attributes: images (Sequence[str]): A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE. objects (google.cloud.devtools.cloudbuild_v1.types.Artifacts.ArtifactObjects): A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE. """
[docs] class ArtifactObjects(proto.Message): r"""Files in the workspace to upload to Cloud Storage upon successful completion of all build steps. Attributes: location (str): Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/". (see `Bucket Name Requirements <https://cloud.google.com/storage/docs/bucket-naming#requirements>`__). Files in the workspace matching any path pattern will be uploaded to Cloud Storage with this location as a prefix. paths (Sequence[str]): Path globs used to match files in the build's workspace. timing (google.cloud.devtools.cloudbuild_v1.types.TimeSpan): Output only. Stores timing information for pushing all artifact objects. """ location = proto.Field(proto.STRING, number=1,) paths = proto.RepeatedField(proto.STRING, number=2,) timing = proto.Field(proto.MESSAGE, number=3, message="TimeSpan",)
images = proto.RepeatedField(proto.STRING, number=1,) objects = proto.Field(proto.MESSAGE, number=2, message=ArtifactObjects,)
[docs]class TimeSpan(proto.Message): r"""Start and end times for a build execution phase. Attributes: start_time (google.protobuf.timestamp_pb2.Timestamp): Start of time span. end_time (google.protobuf.timestamp_pb2.Timestamp): End of time span. """ start_time = proto.Field(proto.MESSAGE, number=1, message=timestamp_pb2.Timestamp,) end_time = proto.Field(proto.MESSAGE, number=2, message=timestamp_pb2.Timestamp,)
[docs]class BuildOperationMetadata(proto.Message): r"""Metadata for build operations. Attributes: build (google.cloud.devtools.cloudbuild_v1.types.Build): The build that the operation is tracking. """ build = proto.Field(proto.MESSAGE, number=1, message="Build",)
[docs]class SourceProvenance(proto.Message): r"""Provenance of the source. Ways to find the original source, or verify that some source was used for this build. Attributes: resolved_storage_source (google.cloud.devtools.cloudbuild_v1.types.StorageSource): A copy of the build's ``source.storage_source``, if exists, with any generations resolved. resolved_repo_source (google.cloud.devtools.cloudbuild_v1.types.RepoSource): A copy of the build's ``source.repo_source``, if exists, with any revisions resolved. resolved_storage_source_manifest (google.cloud.devtools.cloudbuild_v1.types.StorageSourceManifest): A copy of the build's ``source.storage_source_manifest``, if exists, with any revisions resolved. This feature is in Preview. file_hashes (Sequence[google.cloud.devtools.cloudbuild_v1.types.SourceProvenance.FileHashesEntry]): Output only. Hash(es) of the build source, which can be used to verify that the original source integrity was maintained in the build. Note that ``FileHashes`` will only be populated if ``BuildOptions`` has requested a ``SourceProvenanceHash``. The keys to this map are file paths used as build source and the values contain the hash values for those files. If the build source came in a single package such as a gzipped tarfile (``.tar.gz``), the ``FileHash`` will be for the single path to that file. """ resolved_storage_source = proto.Field( proto.MESSAGE, number=3, message="StorageSource", ) resolved_repo_source = proto.Field(proto.MESSAGE, number=6, message="RepoSource",) resolved_storage_source_manifest = proto.Field( proto.MESSAGE, number=9, message="StorageSourceManifest", ) file_hashes = proto.MapField( proto.STRING, proto.MESSAGE, number=4, message="FileHashes", )
[docs]class FileHashes(proto.Message): r"""Container message for hashes of byte content of files, used in SourceProvenance messages to verify integrity of source input to the build. Attributes: file_hash (Sequence[google.cloud.devtools.cloudbuild_v1.types.Hash]): Collection of file hashes. """ file_hash = proto.RepeatedField(proto.MESSAGE, number=1, message="Hash",)
[docs]class Hash(proto.Message): r"""Container message for hash values. Attributes: type_ (google.cloud.devtools.cloudbuild_v1.types.Hash.HashType): The type of hash that was performed. value (bytes): The hash value. """
[docs] class HashType(proto.Enum): r"""Specifies the hash algorithm, if any.""" NONE = 0 SHA256 = 1 MD5 = 2
type_ = proto.Field(proto.ENUM, number=1, enum=HashType,) value = proto.Field(proto.BYTES, number=2,)
[docs]class Secrets(proto.Message): r"""Secrets and secret environment variables. Attributes: secret_manager (Sequence[google.cloud.devtools.cloudbuild_v1.types.SecretManagerSecret]): Secrets in Secret Manager and associated secret environment variable. inline (Sequence[google.cloud.devtools.cloudbuild_v1.types.InlineSecret]): Secrets encrypted with KMS key and the associated secret environment variable. """ secret_manager = proto.RepeatedField( proto.MESSAGE, number=1, message="SecretManagerSecret", ) inline = proto.RepeatedField(proto.MESSAGE, number=2, message="InlineSecret",)
[docs]class InlineSecret(proto.Message): r"""Pairs a set of secret environment variables mapped to encrypted values with the Cloud KMS key to use to decrypt the value. Attributes: kms_key_name (str): Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects/\ */locations/*/keyRings/*/cryptoKeys/* env_map (Sequence[google.cloud.devtools.cloudbuild_v1.types.InlineSecret.EnvMapEntry]): Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets. """ kms_key_name = proto.Field(proto.STRING, number=1,) env_map = proto.MapField(proto.STRING, proto.BYTES, number=2,)
[docs]class SecretManagerSecret(proto.Message): r"""Pairs a secret environment variable with a SecretVersion in Secret Manager. Attributes: version_name (str): Resource name of the SecretVersion. In format: projects/\ */secrets/*/versions/\* env (str): Environment variable name to associate with the secret. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. """ version_name = proto.Field(proto.STRING, number=1,) env = proto.Field(proto.STRING, number=2,)
[docs]class Secret(proto.Message): r"""Pairs a set of secret environment variables containing encrypted values with the Cloud KMS key to use to decrypt the value. Note: Use ``kmsKeyName`` with ``available_secrets`` instead of using ``kmsKeyName`` with ``secret``. For instructions see: https://cloud.google.com/cloud-build/docs/securing-builds/use-encrypted-credentials. Attributes: kms_key_name (str): Cloud KMS key name to use to decrypt these envs. secret_env (Sequence[google.cloud.devtools.cloudbuild_v1.types.Secret.SecretEnvEntry]): Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets. """ kms_key_name = proto.Field(proto.STRING, number=1,) secret_env = proto.MapField(proto.STRING, proto.BYTES, number=3,)
[docs]class CreateBuildRequest(proto.Message): r"""Request to create a new build. Attributes: parent (str): The parent resource where this build will be created. Format: ``projects/{project}/locations/{location}`` project_id (str): Required. ID of the project. build (google.cloud.devtools.cloudbuild_v1.types.Build): Required. Build resource to create. """ parent = proto.Field(proto.STRING, number=4,) project_id = proto.Field(proto.STRING, number=1,) build = proto.Field(proto.MESSAGE, number=2, message="Build",)
[docs]class GetBuildRequest(proto.Message): r"""Request to get a build. Attributes: name (str): The name of the ``Build`` to retrieve. Format: ``projects/{project}/locations/{location}/builds/{build}`` project_id (str): Required. ID of the project. id (str): Required. ID of the build. """ name = proto.Field(proto.STRING, number=4,) project_id = proto.Field(proto.STRING, number=1,) id = proto.Field(proto.STRING, number=2,)
[docs]class ListBuildsRequest(proto.Message): r"""Request to list builds. Attributes: parent (str): The parent of the collection of ``Builds``. Format: ``projects/{project}/locations/location`` project_id (str): Required. ID of the project. page_size (int): Number of results to return in the list. page_token (str): The page token for the next page of Builds. If unspecified, the first page of results is returned. If the token is rejected for any reason, INVALID_ARGUMENT will be thrown. In this case, the token should be discarded, and pagination should be restarted from the first page of results. See https://google.aip.dev/158 for more. filter (str): The raw filter text to constrain the results. """ parent = proto.Field(proto.STRING, number=9,) project_id = proto.Field(proto.STRING, number=1,) page_size = proto.Field(proto.INT32, number=2,) page_token = proto.Field(proto.STRING, number=3,) filter = proto.Field(proto.STRING, number=8,)
[docs]class ListBuildsResponse(proto.Message): r"""Response including listed builds. Attributes: builds (Sequence[google.cloud.devtools.cloudbuild_v1.types.Build]): Builds will be sorted by ``create_time``, descending. next_page_token (str): Token to receive the next page of results. This will be absent if the end of the response list has been reached. """ @property def raw_page(self): return self builds = proto.RepeatedField(proto.MESSAGE, number=1, message="Build",) next_page_token = proto.Field(proto.STRING, number=2,)
[docs]class CancelBuildRequest(proto.Message): r"""Request to cancel an ongoing build. Attributes: name (str): The name of the ``Build`` to cancel. Format: ``projects/{project}/locations/{location}/builds/{build}`` project_id (str): Required. ID of the project. id (str): Required. ID of the build. """ name = proto.Field(proto.STRING, number=4,) project_id = proto.Field(proto.STRING, number=1,) id = proto.Field(proto.STRING, number=2,)
[docs]class ApproveBuildRequest(proto.Message): r"""Request to approve or reject a pending build. Attributes: name (str): Required. Name of the target build. For example: "projects/{$project_id}/builds/{$build_id}". approval_result (google.cloud.devtools.cloudbuild_v1.types.ApprovalResult): Approval decision and metadata. """ name = proto.Field(proto.STRING, number=1,) approval_result = proto.Field(proto.MESSAGE, number=2, message="ApprovalResult",)
[docs]class BuildApproval(proto.Message): r"""BuildApproval describes a build's approval configuration, state, and result. Attributes: state (google.cloud.devtools.cloudbuild_v1.types.BuildApproval.State): Output only. The state of this build's approval. config (google.cloud.devtools.cloudbuild_v1.types.ApprovalConfig): Output only. Configuration for manual approval of this build. result (google.cloud.devtools.cloudbuild_v1.types.ApprovalResult): Output only. Result of manual approval for this Build. """
[docs] class State(proto.Enum): r"""Specifies the current state of a build's approval.""" STATE_UNSPECIFIED = 0 PENDING = 1 APPROVED = 2 REJECTED = 3 CANCELLED = 5
state = proto.Field(proto.ENUM, number=1, enum=State,) config = proto.Field(proto.MESSAGE, number=2, message="ApprovalConfig",) result = proto.Field(proto.MESSAGE, number=3, message="ApprovalResult",)
[docs]class ApprovalConfig(proto.Message): r"""ApprovalConfig describes configuration for manual approval of a build. Attributes: approval_required (bool): Whether or not approval is needed. If this is set on a build, it will become pending when created, and will need to be explicitly approved to start. """ approval_required = proto.Field(proto.BOOL, number=1,)
[docs]class ApprovalResult(proto.Message): r"""ApprovalResult describes the decision and associated metadata of a manual approval of a build. Attributes: approver_account (str): Output only. Email of the user that called the ApproveBuild API to approve or reject a build at the time that the API was called. approval_time (google.protobuf.timestamp_pb2.Timestamp): Output only. The time when the approval decision was made. decision (google.cloud.devtools.cloudbuild_v1.types.ApprovalResult.Decision): Required. The decision of this manual approval. comment (str): Optional. An optional comment for this manual approval result. url (str): Optional. An optional URL tied to this manual approval result. This field is essentially the same as comment, except that it will be rendered by the UI differently. An example use case is a link to an external job that approved this Build. """
[docs] class Decision(proto.Enum): r"""Specifies whether or not this manual approval result is to approve or reject a build. """ DECISION_UNSPECIFIED = 0 APPROVED = 1 REJECTED = 2
approver_account = proto.Field(proto.STRING, number=2,) approval_time = proto.Field( proto.MESSAGE, number=3, message=timestamp_pb2.Timestamp, ) decision = proto.Field(proto.ENUM, number=4, enum=Decision,) comment = proto.Field(proto.STRING, number=5,) url = proto.Field(proto.STRING, number=6,)
[docs]class BuildTrigger(proto.Message): r"""Configuration for an automated build in response to source repository changes. Attributes: resource_name (str): The ``Trigger`` name with format: ``projects/{project}/locations/{location}/triggers/{trigger}``, where {trigger} is a unique identifier generated by the service. id (str): Output only. Unique identifier of the trigger. description (str): Human-readable description of this trigger. name (str): User-assigned name of the trigger. Must be unique within the project. Trigger names must meet the following requirements: + They must contain only alphanumeric characters and dashes. + They can be 1-64 characters long. + They must begin and end with an alphanumeric character. tags (Sequence[str]): Tags for annotation of a ``BuildTrigger`` trigger_template (google.cloud.devtools.cloudbuild_v1.types.RepoSource): Template describing the types of source changes to trigger a build. Branch and tag names in trigger templates are interpreted as regular expressions. Any branch or tag change that matches that regular expression will trigger a build. Mutually exclusive with ``github``. github (google.cloud.devtools.cloudbuild_v1.types.GitHubEventsConfig): GitHubEventsConfig describes the configuration of a trigger that creates a build whenever a GitHub event is received. Mutually exclusive with ``trigger_template``. pubsub_config (google.cloud.devtools.cloudbuild_v1.types.PubsubConfig): PubsubConfig describes the configuration of a trigger that creates a build whenever a Pub/Sub message is published. webhook_config (google.cloud.devtools.cloudbuild_v1.types.WebhookConfig): WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL. autodetect (bool): Autodetect build configuration. The following precedence is used (case insensitive): 1. cloudbuild.yaml 2. cloudbuild.yml 3. cloudbuild.json 4. Dockerfile Currently only available for GitHub App Triggers. build (google.cloud.devtools.cloudbuild_v1.types.Build): Contents of the build template. filename (str): Path, from the source root, to the build configuration file (i.e. cloudbuild.yaml). create_time (google.protobuf.timestamp_pb2.Timestamp): Output only. Time when the trigger was created. disabled (bool): If true, the trigger will never automatically execute a build. substitutions (Sequence[google.cloud.devtools.cloudbuild_v1.types.BuildTrigger.SubstitutionsEntry]): Substitutions for Build resource. The keys must match the following regular expression: ``^_[A-Z0-9_]+$``. ignored_files (Sequence[str]): ignored_files and included_files are file glob matches using https://golang.org/pkg/path/filepath/#Match extended with support for "**". If ignored_files and changed files are both empty, then they are not used to determine whether or not to trigger a build. If ignored_files is not empty, then we ignore any files that match any of the ignored_file globs. If the change has no files that are outside of the ignored_files globs, then we do not trigger a build. included_files (Sequence[str]): If any of the files altered in the commit pass the ignored_files filter and included_files is empty, then as far as this filter is concerned, we should trigger the build. If any of the files altered in the commit pass the ignored_files filter and included_files is not empty, then we make sure that at least one of those files matches a included_files glob. If not, then we do not trigger a build. filter (str): Optional. A Common Expression Language string. service_account (str): The service account used for all user-controlled operations including UpdateBuildTrigger, RunBuildTrigger, CreateBuild, and CancelBuild. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead. Format: ``projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT_ID_OR_EMAIL}`` """ resource_name = proto.Field(proto.STRING, number=34,) id = proto.Field(proto.STRING, number=1,) description = proto.Field(proto.STRING, number=10,) name = proto.Field(proto.STRING, number=21,) tags = proto.RepeatedField(proto.STRING, number=19,) trigger_template = proto.Field(proto.MESSAGE, number=7, message="RepoSource",) github = proto.Field(proto.MESSAGE, number=13, message="GitHubEventsConfig",) pubsub_config = proto.Field(proto.MESSAGE, number=29, message="PubsubConfig",) webhook_config = proto.Field(proto.MESSAGE, number=31, message="WebhookConfig",) autodetect = proto.Field(proto.BOOL, number=18, oneof="build_template",) build = proto.Field( proto.MESSAGE, number=4, oneof="build_template", message="Build", ) filename = proto.Field(proto.STRING, number=8, oneof="build_template",) create_time = proto.Field(proto.MESSAGE, number=5, message=timestamp_pb2.Timestamp,) disabled = proto.Field(proto.BOOL, number=9,) substitutions = proto.MapField(proto.STRING, proto.STRING, number=11,) ignored_files = proto.RepeatedField(proto.STRING, number=15,) included_files = proto.RepeatedField(proto.STRING, number=16,) filter = proto.Field(proto.STRING, number=30,) service_account = proto.Field(proto.STRING, number=33,)
[docs]class GitHubEventsConfig(proto.Message): r"""GitHubEventsConfig describes the configuration of a trigger that creates a build whenever a GitHub event is received. This message is experimental. Attributes: installation_id (int): The installationID that emits the GitHub event. owner (str): Owner of the repository. For example: The owner for https://github.com/googlecloudplatform/cloud- builders is "googlecloudplatform". name (str): Name of the repository. For example: The name for https://github.com/googlecloudplatform/cloud- builders is "cloud-builders". pull_request (google.cloud.devtools.cloudbuild_v1.types.PullRequestFilter): filter to match changes in pull requests. push (google.cloud.devtools.cloudbuild_v1.types.PushFilter): filter to match changes in refs like branches, tags. """ installation_id = proto.Field(proto.INT64, number=1,) owner = proto.Field(proto.STRING, number=6,) name = proto.Field(proto.STRING, number=7,) pull_request = proto.Field( proto.MESSAGE, number=4, oneof="event", message="PullRequestFilter", ) push = proto.Field(proto.MESSAGE, number=5, oneof="event", message="PushFilter",)
[docs]class PubsubConfig(proto.Message): r"""PubsubConfig describes the configuration of a trigger that creates a build whenever a Pub/Sub message is published. Attributes: subscription (str): Output only. Name of the subscription. Format is ``projects/{project}/subscriptions/{subscription}``. topic (str): The name of the topic from which this subscription is receiving messages. Format is ``projects/{project}/topics/{topic}``. service_account_email (str): Service account that will make the push request. state (google.cloud.devtools.cloudbuild_v1.types.PubsubConfig.State): Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests. """
[docs] class State(proto.Enum): r"""Enumerates potential issues with the underlying Pub/Sub subscription configuration. """ STATE_UNSPECIFIED = 0 OK = 1 SUBSCRIPTION_DELETED = 2 TOPIC_DELETED = 3 SUBSCRIPTION_MISCONFIGURED = 4
subscription = proto.Field(proto.STRING, number=1,) topic = proto.Field(proto.STRING, number=2,) service_account_email = proto.Field(proto.STRING, number=3,) state = proto.Field(proto.ENUM, number=4, enum=State,)
[docs]class WebhookConfig(proto.Message): r"""WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL. Attributes: secret (str): Required. Resource name for the secret required as a URL parameter. state (google.cloud.devtools.cloudbuild_v1.types.WebhookConfig.State): Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests. """
[docs] class State(proto.Enum): r"""Enumerates potential issues with the Secret Manager secret provided by the user. """ STATE_UNSPECIFIED = 0 OK = 1 SECRET_DELETED = 2
secret = proto.Field(proto.STRING, number=3, oneof="auth_method",) state = proto.Field(proto.ENUM, number=4, enum=State,)
[docs]class PullRequestFilter(proto.Message): r"""PullRequestFilter contains filter properties for matching GitHub Pull Requests. Attributes: branch (str): Regex of branches to match. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax comment_control (google.cloud.devtools.cloudbuild_v1.types.PullRequestFilter.CommentControl): Configure builds to run whether a repository owner or collaborator need to comment ``/gcbrun``. invert_regex (bool): If true, branches that do NOT match the git_ref will trigger a build. """
[docs] class CommentControl(proto.Enum): r"""Controls behavior of Pull Request comments.""" COMMENTS_DISABLED = 0 COMMENTS_ENABLED = 1 COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY = 2
branch = proto.Field(proto.STRING, number=2, oneof="git_ref",) comment_control = proto.Field(proto.ENUM, number=5, enum=CommentControl,) invert_regex = proto.Field(proto.BOOL, number=6,)
[docs]class PushFilter(proto.Message): r"""Push contains filter properties for matching GitHub git pushes. Attributes: branch (str): Regexes matching branches to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax tag (str): Regexes matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax invert_regex (bool): When true, only trigger a build if the revision regex does NOT match the git_ref regex. """ branch = proto.Field(proto.STRING, number=2, oneof="git_ref",) tag = proto.Field(proto.STRING, number=3, oneof="git_ref",) invert_regex = proto.Field(proto.BOOL, number=4,)
[docs]class CreateBuildTriggerRequest(proto.Message): r"""Request to create a new ``BuildTrigger``. Attributes: parent (str): The parent resource where this trigger will be created. Format: ``projects/{project}/locations/{location}`` project_id (str): Required. ID of the project for which to configure automatic builds. trigger (google.cloud.devtools.cloudbuild_v1.types.BuildTrigger): Required. ``BuildTrigger`` to create. """ parent = proto.Field(proto.STRING, number=3,) project_id = proto.Field(proto.STRING, number=1,) trigger = proto.Field(proto.MESSAGE, number=2, message="BuildTrigger",)
[docs]class GetBuildTriggerRequest(proto.Message): r"""Returns the ``BuildTrigger`` with the specified ID. Attributes: name (str): The name of the ``Trigger`` to retrieve. Format: ``projects/{project}/locations/{location}/triggers/{trigger}`` project_id (str): Required. ID of the project that owns the trigger. trigger_id (str): Required. Identifier (``id`` or ``name``) of the ``BuildTrigger`` to get. """ name = proto.Field(proto.STRING, number=3,) project_id = proto.Field(proto.STRING, number=1,) trigger_id = proto.Field(proto.STRING, number=2,)
[docs]class ListBuildTriggersRequest(proto.Message): r"""Request to list existing ``BuildTriggers``. Attributes: parent (str): The parent of the collection of ``Triggers``. Format: ``projects/{project}/locations/{location}`` project_id (str): Required. ID of the project for which to list BuildTriggers. page_size (int): Number of results to return in the list. page_token (str): Token to provide to skip to a particular spot in the list. """ parent = proto.Field(proto.STRING, number=4,) project_id = proto.Field(proto.STRING, number=1,) page_size = proto.Field(proto.INT32, number=2,) page_token = proto.Field(proto.STRING, number=3,)
[docs]class ListBuildTriggersResponse(proto.Message): r"""Response containing existing ``BuildTriggers``. Attributes: triggers (Sequence[google.cloud.devtools.cloudbuild_v1.types.BuildTrigger]): ``BuildTriggers`` for the project, sorted by ``create_time`` descending. next_page_token (str): Token to receive the next page of results. """ @property def raw_page(self): return self triggers = proto.RepeatedField(proto.MESSAGE, number=1, message="BuildTrigger",) next_page_token = proto.Field(proto.STRING, number=2,)
[docs]class DeleteBuildTriggerRequest(proto.Message): r"""Request to delete a ``BuildTrigger``. Attributes: name (str): The name of the ``Trigger`` to delete. Format: ``projects/{project}/locations/{location}/triggers/{trigger}`` project_id (str): Required. ID of the project that owns the trigger. trigger_id (str): Required. ID of the ``BuildTrigger`` to delete. """ name = proto.Field(proto.STRING, number=3,) project_id = proto.Field(proto.STRING, number=1,) trigger_id = proto.Field(proto.STRING, number=2,)
[docs]class UpdateBuildTriggerRequest(proto.Message): r"""Request to update an existing ``BuildTrigger``. Attributes: project_id (str): Required. ID of the project that owns the trigger. trigger_id (str): Required. ID of the ``BuildTrigger`` to update. trigger (google.cloud.devtools.cloudbuild_v1.types.BuildTrigger): Required. ``BuildTrigger`` to update. """ project_id = proto.Field(proto.STRING, number=1,) trigger_id = proto.Field(proto.STRING, number=2,) trigger = proto.Field(proto.MESSAGE, number=3, message="BuildTrigger",)
[docs]class BuildOptions(proto.Message): r"""Optional arguments to enable specific features of builds. Attributes: source_provenance_hash (Sequence[google.cloud.devtools.cloudbuild_v1.types.Hash.HashType]): Requested hash for SourceProvenance. requested_verify_option (google.cloud.devtools.cloudbuild_v1.types.BuildOptions.VerifyOption): Requested verifiability options. machine_type (google.cloud.devtools.cloudbuild_v1.types.BuildOptions.MachineType): Compute Engine machine type on which to run the build. disk_size_gb (int): Requested disk size for the VM that runs the build. Note that this is *NOT* "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 1000GB; builds that request more than the maximum are rejected with an error. substitution_option (google.cloud.devtools.cloudbuild_v1.types.BuildOptions.SubstitutionOption): Option to specify behavior when there is an error in the substitution checks. NOTE: this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden in the build configuration file. dynamic_substitutions (bool): Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file. log_streaming_option (google.cloud.devtools.cloudbuild_v1.types.BuildOptions.LogStreamingOption): Option to define build log streaming behavior to Google Cloud Storage. worker_pool (str): This field deprecated; please use ``pool.name`` instead. pool (google.cloud.devtools.cloudbuild_v1.types.BuildOptions.PoolOption): 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. logging (google.cloud.devtools.cloudbuild_v1.types.BuildOptions.LoggingMode): Option to specify the logging mode, which determines if and where build logs are stored. env (Sequence[str]): A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE". secret_env (Sequence[str]): A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's ``Secret``. These variables will be available to all build steps in this build. volumes (Sequence[google.cloud.devtools.cloudbuild_v1.types.Volume]): Global list of volumes to mount for ALL build steps Each volume is created as an empty volume prior to starting the build process. Upon completion of the build, volumes and their contents are discarded. Global volume names and paths cannot conflict with the volumes defined a build step. Using a global volume in a build with only one step is not valid as it is indicative of a build request with an incorrect configuration. """
[docs] class VerifyOption(proto.Enum): r"""Specifies the manner in which the build should be verified, if at all. """ NOT_VERIFIED = 0 VERIFIED = 1
[docs] class MachineType(proto.Enum): r"""Supported Compute Engine machine types. For more information, see `Machine types <https://cloud.google.com/compute/docs/machine-types>`__. """ UNSPECIFIED = 0 N1_HIGHCPU_8 = 1 N1_HIGHCPU_32 = 2 E2_HIGHCPU_8 = 5 E2_HIGHCPU_32 = 6
[docs] class SubstitutionOption(proto.Enum): r"""Specifies the behavior when there is an error in the substitution checks. """ MUST_MATCH = 0 ALLOW_LOOSE = 1
[docs] class LogStreamingOption(proto.Enum): r"""Specifies the behavior when writing build logs to Google Cloud Storage. """ STREAM_DEFAULT = 0 STREAM_ON = 1 STREAM_OFF = 2
[docs] class LoggingMode(proto.Enum): r"""Specifies the logging mode.""" LOGGING_UNSPECIFIED = 0 LEGACY = 1 GCS_ONLY = 2 STACKDRIVER_ONLY = 3 CLOUD_LOGGING_ONLY = 5 NONE = 4
[docs] class PoolOption(proto.Message): r"""Details about how a build should be executed 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. Attributes: name (str): The ``WorkerPool`` resource to execute the build on. You must have ``cloudbuild.workerpools.use`` on the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId} """ name = proto.Field(proto.STRING, number=1,)
source_provenance_hash = proto.RepeatedField( proto.ENUM, number=1, enum="Hash.HashType", ) requested_verify_option = proto.Field(proto.ENUM, number=2, enum=VerifyOption,) machine_type = proto.Field(proto.ENUM, number=3, enum=MachineType,) disk_size_gb = proto.Field(proto.INT64, number=6,) substitution_option = proto.Field(proto.ENUM, number=4, enum=SubstitutionOption,) dynamic_substitutions = proto.Field(proto.BOOL, number=17,) log_streaming_option = proto.Field(proto.ENUM, number=5, enum=LogStreamingOption,) worker_pool = proto.Field(proto.STRING, number=7,) pool = proto.Field(proto.MESSAGE, number=19, message=PoolOption,) logging = proto.Field(proto.ENUM, number=11, enum=LoggingMode,) env = proto.RepeatedField(proto.STRING, number=12,) secret_env = proto.RepeatedField(proto.STRING, number=13,) volumes = proto.RepeatedField(proto.MESSAGE, number=14, message="Volume",)
[docs]class ReceiveTriggerWebhookRequest(proto.Message): r"""ReceiveTriggerWebhookRequest [Experimental] is the request object accepted by the ReceiveTriggerWebhook method. Attributes: name (str): The name of the ``ReceiveTriggerWebhook`` to retrieve. Format: ``projects/{project}/locations/{location}/triggers/{trigger}`` body (google.api.httpbody_pb2.HttpBody): HTTP request body. project_id (str): Project in which the specified trigger lives trigger (str): Name of the trigger to run the payload against secret (str): Secret token used for authorization if an OAuth token isn't provided. """ name = proto.Field(proto.STRING, number=5,) body = proto.Field(proto.MESSAGE, number=1, message=httpbody_pb2.HttpBody,) project_id = proto.Field(proto.STRING, number=2,) trigger = proto.Field(proto.STRING, number=3,) secret = proto.Field(proto.STRING, number=4,)
[docs]class ReceiveTriggerWebhookResponse(proto.Message): r"""ReceiveTriggerWebhookResponse [Experimental] is the response object for the ReceiveTriggerWebhook method. """
[docs]class WorkerPool(proto.Message): r"""Configuration for a ``WorkerPool``. Cloud Build owns and maintains a pool of workers for general use and have no access to a project's private network. By default, builds submitted to Cloud Build will use a worker from this pool. If your build needs access to resources on a private network, create and use a ``WorkerPool`` to run your builds. Private ``WorkerPool``\ s give your builds access to any single VPC network that you administer, including any on-prem resources connected to that VPC network. For an overview of private pools, see `Private pools overview <https://cloud.google.com/build/docs/private-pools/private-pools-overview>`__. Attributes: name (str): Output only. The resource name of the ``WorkerPool``, with format ``projects/{project}/locations/{location}/workerPools/{worker_pool}``. The value of ``{worker_pool}`` is provided by ``worker_pool_id`` in ``CreateWorkerPool`` request and the value of ``{location}`` is determined by the endpoint accessed. display_name (str): A user-specified, human-readable name for the ``WorkerPool``. If provided, this value must be 1-63 characters. uid (str): Output only. A unique identifier for the ``WorkerPool``. annotations (Sequence[google.cloud.devtools.cloudbuild_v1.types.WorkerPool.AnnotationsEntry]): User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations. create_time (google.protobuf.timestamp_pb2.Timestamp): Output only. Time at which the request to create the ``WorkerPool`` was received. update_time (google.protobuf.timestamp_pb2.Timestamp): Output only. Time at which the request to update the ``WorkerPool`` was received. delete_time (google.protobuf.timestamp_pb2.Timestamp): Output only. Time at which the request to delete the ``WorkerPool`` was received. state (google.cloud.devtools.cloudbuild_v1.types.WorkerPool.State): Output only. ``WorkerPool`` state. private_pool_v1_config (google.cloud.devtools.cloudbuild_v1.types.PrivatePoolV1Config): Private Pool using a v1 configuration. etag (str): Output only. Checksum computed by the server. May be sent on update and delete requests to ensure that the client has an up-to-date value before proceeding. """
[docs] class State(proto.Enum): r"""State of the ``WorkerPool``.""" STATE_UNSPECIFIED = 0 CREATING = 1 RUNNING = 2 DELETING = 3 DELETED = 4
name = proto.Field(proto.STRING, number=1,) display_name = proto.Field(proto.STRING, number=2,) uid = proto.Field(proto.STRING, number=3,) annotations = proto.MapField(proto.STRING, proto.STRING, number=4,) create_time = proto.Field(proto.MESSAGE, number=5, message=timestamp_pb2.Timestamp,) update_time = proto.Field(proto.MESSAGE, number=6, message=timestamp_pb2.Timestamp,) delete_time = proto.Field(proto.MESSAGE, number=7, message=timestamp_pb2.Timestamp,) state = proto.Field(proto.ENUM, number=8, enum=State,) private_pool_v1_config = proto.Field( proto.MESSAGE, number=12, oneof="config", message="PrivatePoolV1Config", ) etag = proto.Field(proto.STRING, number=11,)
[docs]class PrivatePoolV1Config(proto.Message): r"""Configuration for a V1 ``PrivatePool``. Attributes: worker_config (google.cloud.devtools.cloudbuild_v1.types.PrivatePoolV1Config.WorkerConfig): Machine configuration for the workers in the pool. network_config (google.cloud.devtools.cloudbuild_v1.types.PrivatePoolV1Config.NetworkConfig): Network configuration for the pool. """
[docs] class WorkerConfig(proto.Message): r"""Defines the configuration to be used for creating workers in the pool. Attributes: machine_type (str): Machine type of a worker, such as ``e2-medium``. See `Worker pool config file <https://cloud.google.com/build/docs/private-pools/worker-pool-config-file-schema>`__. If left blank, Cloud Build will use a sensible default. disk_size_gb (int): Size of the disk attached to the worker, in GB. See `Worker pool config file <https://cloud.google.com/build/docs/private-pools/worker-pool-config-file-schema>`__. Specify a value of up to 1000. If ``0`` is specified, Cloud Build will use a standard disk size. """ machine_type = proto.Field(proto.STRING, number=1,) disk_size_gb = proto.Field(proto.INT64, number=2,)
[docs] class NetworkConfig(proto.Message): r"""Defines the network configuration for the pool. Attributes: peered_network (str): Required. Immutable. The network definition that the workers are peered to. If this section is left empty, the workers will be peered to ``WorkerPool.project_id`` on the service producer network. Must be in the format ``projects/{project}/global/networks/{network}``, where ``{project}`` is a project number, such as ``12345``, and ``{network}`` is the name of a VPC network in the project. See `Understanding network configuration options <https://cloud.google.com/build/docs/private-pools/set-up-private-pool-environment>`__ egress_option (google.cloud.devtools.cloudbuild_v1.types.PrivatePoolV1Config.NetworkConfig.EgressOption): Option to configure network egress for the workers. """
[docs] class EgressOption(proto.Enum): r"""Defines the egress option for the pool.""" EGRESS_OPTION_UNSPECIFIED = 0 NO_PUBLIC_EGRESS = 1 PUBLIC_EGRESS = 2
peered_network = proto.Field(proto.STRING, number=1,) egress_option = proto.Field( proto.ENUM, number=2, enum="PrivatePoolV1Config.NetworkConfig.EgressOption", )
worker_config = proto.Field(proto.MESSAGE, number=1, message=WorkerConfig,) network_config = proto.Field(proto.MESSAGE, number=2, message=NetworkConfig,)
[docs]class CreateWorkerPoolRequest(proto.Message): r"""Request to create a new ``WorkerPool``. Attributes: parent (str): Required. The parent resource where this worker pool will be created. Format: ``projects/{project}/locations/{location}``. worker_pool (google.cloud.devtools.cloudbuild_v1.types.WorkerPool): Required. ``WorkerPool`` resource to create. worker_pool_id (str): Required. Immutable. The ID to use for the ``WorkerPool``, which will become the final component of the resource name. This value should be 1-63 characters, and valid characters are /[a-z][0-9]-/. validate_only (bool): If set, validate the request and preview the response, but do not actually post it. """ parent = proto.Field(proto.STRING, number=1,) worker_pool = proto.Field(proto.MESSAGE, number=2, message="WorkerPool",) worker_pool_id = proto.Field(proto.STRING, number=3,) validate_only = proto.Field(proto.BOOL, number=4,)
[docs]class GetWorkerPoolRequest(proto.Message): r"""Request to get a ``WorkerPool`` with the specified name. Attributes: name (str): Required. The name of the ``WorkerPool`` to retrieve. Format: ``projects/{project}/locations/{location}/workerPools/{workerPool}``. """ name = proto.Field(proto.STRING, number=1,)
[docs]class DeleteWorkerPoolRequest(proto.Message): r"""Request to delete a ``WorkerPool``. Attributes: name (str): Required. The name of the ``WorkerPool`` to delete. Format: ``projects/{project}/locations/{workerPool}/workerPools/{workerPool}``. etag (str): Optional. If this is provided, it must match the server's etag on the workerpool for the request to be processed. allow_missing (bool): If set to true, and the ``WorkerPool`` is not found, the request will succeed but no action will be taken on the server. validate_only (bool): If set, validate the request and preview the response, but do not actually post it. """ name = proto.Field(proto.STRING, number=1,) etag = proto.Field(proto.STRING, number=2,) allow_missing = proto.Field(proto.BOOL, number=3,) validate_only = proto.Field(proto.BOOL, number=4,)
[docs]class UpdateWorkerPoolRequest(proto.Message): r"""Request to update a ``WorkerPool``. Attributes: worker_pool (google.cloud.devtools.cloudbuild_v1.types.WorkerPool): Required. The ``WorkerPool`` to update. The ``name`` field is used to identify the ``WorkerPool`` to update. Format: ``projects/{project}/locations/{location}/workerPools/{workerPool}``. update_mask (google.protobuf.field_mask_pb2.FieldMask): A mask specifying which fields in ``worker_pool`` to update. validate_only (bool): If set, validate the request and preview the response, but do not actually post it. """ worker_pool = proto.Field(proto.MESSAGE, number=1, message="WorkerPool",) update_mask = proto.Field( proto.MESSAGE, number=2, message=field_mask_pb2.FieldMask, ) validate_only = proto.Field(proto.BOOL, number=4,)
[docs]class ListWorkerPoolsRequest(proto.Message): r"""Request to list ``WorkerPool``\ s. Attributes: parent (str): Required. The parent of the collection of ``WorkerPools``. Format: ``projects/{project}/locations/{location}``. page_size (int): The maximum number of ``WorkerPool``\ s to return. The service may return fewer than this value. If omitted, the server will use a sensible default. page_token (str): A page token, received from a previous ``ListWorkerPools`` call. Provide this to retrieve the subsequent page. """ parent = proto.Field(proto.STRING, number=1,) page_size = proto.Field(proto.INT32, number=2,) page_token = proto.Field(proto.STRING, number=3,)
[docs]class ListWorkerPoolsResponse(proto.Message): r"""Response containing existing ``WorkerPools``. Attributes: worker_pools (Sequence[google.cloud.devtools.cloudbuild_v1.types.WorkerPool]): ``WorkerPools`` for the specified project. next_page_token (str): Continuation token used to page through large result sets. Provide this value in a subsequent ListWorkerPoolsRequest to return the next page of results. """ @property def raw_page(self): return self worker_pools = proto.RepeatedField(proto.MESSAGE, number=1, message="WorkerPool",) next_page_token = proto.Field(proto.STRING, number=2,)
[docs]class CreateWorkerPoolOperationMetadata(proto.Message): r"""Metadata for the ``CreateWorkerPool`` operation. Attributes: worker_pool (str): The resource name of the ``WorkerPool`` to create. Format: ``projects/{project}/locations/{location}/workerPools/{worker_pool}``. create_time (google.protobuf.timestamp_pb2.Timestamp): Time the operation was created. complete_time (google.protobuf.timestamp_pb2.Timestamp): Time the operation was completed. """ worker_pool = proto.Field(proto.STRING, number=1,) create_time = proto.Field(proto.MESSAGE, number=2, message=timestamp_pb2.Timestamp,) complete_time = proto.Field( proto.MESSAGE, number=3, message=timestamp_pb2.Timestamp, )
[docs]class UpdateWorkerPoolOperationMetadata(proto.Message): r"""Metadata for the ``UpdateWorkerPool`` operation. Attributes: worker_pool (str): The resource name of the ``WorkerPool`` being updated. Format: ``projects/{project}/locations/{location}/workerPools/{worker_pool}``. create_time (google.protobuf.timestamp_pb2.Timestamp): Time the operation was created. complete_time (google.protobuf.timestamp_pb2.Timestamp): Time the operation was completed. """ worker_pool = proto.Field(proto.STRING, number=1,) create_time = proto.Field(proto.MESSAGE, number=2, message=timestamp_pb2.Timestamp,) complete_time = proto.Field( proto.MESSAGE, number=3, message=timestamp_pb2.Timestamp, )
[docs]class DeleteWorkerPoolOperationMetadata(proto.Message): r"""Metadata for the ``DeleteWorkerPool`` operation. Attributes: worker_pool (str): The resource name of the ``WorkerPool`` being deleted. Format: ``projects/{project}/locations/{location}/workerPools/{worker_pool}``. create_time (google.protobuf.timestamp_pb2.Timestamp): Time the operation was created. complete_time (google.protobuf.timestamp_pb2.Timestamp): Time the operation was completed. """ worker_pool = proto.Field(proto.STRING, number=1,) create_time = proto.Field(proto.MESSAGE, number=2, message=timestamp_pb2.Timestamp,) complete_time = proto.Field( proto.MESSAGE, number=3, message=timestamp_pb2.Timestamp, )
__all__ = tuple(sorted(__protobuf__.manifest))