Struct google_cloudbuild1::Build
source · pub struct Build {Show 22 fields
pub status: Option<String>,
pub start_time: Option<String>,
pub tags: Option<Vec<String>>,
pub results: Option<Results>,
pub create_time: Option<String>,
pub status_detail: Option<String>,
pub timing: Option<HashMap<String, TimeSpan>>,
pub source_provenance: Option<SourceProvenance>,
pub images: Option<Vec<String>>,
pub id: Option<String>,
pub secrets: Option<Vec<Secret>>,
pub finish_time: Option<String>,
pub build_trigger_id: Option<String>,
pub artifacts: Option<Artifacts>,
pub project_id: Option<String>,
pub substitutions: Option<HashMap<String, String>>,
pub source: Option<Source>,
pub steps: Option<Vec<BuildStep>>,
pub timeout: Option<String>,
pub logs_bucket: Option<String>,
pub options: Option<BuildOptions>,
pub log_url: Option<String>,
}Expand description
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.
- $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.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- builds cancel projects (response)
- builds create projects (request)
- builds get projects (response)
Fields§
§status: Option<String>Output only. Status of the build.
start_time: Option<String>Output only. Time at which execution of the build was started.
Tags for annotation of a Build. These are not docker tags.
results: Option<Results>Output only. Results of the build.
create_time: Option<String>Output only. Time at which the request to create the build was received.
status_detail: Option<String>Output only. Customer-readable message about the current status.
timing: Option<HashMap<String, TimeSpan>>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.
If the build does not specify source or images, these keys will not be included.
source_provenance: Option<SourceProvenance>Output only. A permanent fixed identifier for source.
images: Option<Vec<String>>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.
id: Option<String>Output only. Unique identifier of the build.
secrets: Option<Vec<Secret>>Secrets to decrypt using Cloud Key Management Service.
finish_time: Option<String>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.
build_trigger_id: Option<String>Output only. The ID of the BuildTrigger that triggered this build, if it
was triggered automatically.
artifacts: Option<Artifacts>Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
project_id: Option<String>Output only. ID of the project.
substitutions: Option<HashMap<String, String>>Substitutions data for Build resource.
source: Option<Source>The location of the source files to build.
steps: Option<Vec<BuildStep>>Required. The operations to be performed on the workspace.
timeout: Option<String>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.
Default time is ten minutes.
logs_bucket: Option<String>Google Cloud Storage bucket where logs should be written (see
Bucket Name
Requirements).
Logs file names will be of the format ${logs_bucket}/log-${build_id}.txt.
options: Option<BuildOptions>Special options for this build.
log_url: Option<String>Output only. URL to logs for this build in Google Cloud Console.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Build
impl<'de> Deserialize<'de> for Build
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for Build
impl ResponseResult for Build
Auto Trait Implementations§
impl Freeze for Build
impl RefUnwindSafe for Build
impl Send for Build
impl Sync for Build
impl Unpin for Build
impl UnwindSafe for Build
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more