Struct Build

Source
pub struct Build {
Show 30 fields pub approval: Option<BuildApproval>, pub artifacts: Option<Artifacts>, pub available_secrets: Option<Secrets>, pub build_trigger_id: Option<String>, pub create_time: Option<DateTime<Utc>>, pub failure_info: Option<FailureInfo>, pub finish_time: Option<DateTime<Utc>>, pub git_config: Option<GitConfig>, pub id: Option<String>, pub images: Option<Vec<String>>, pub log_url: Option<String>, pub logs_bucket: Option<String>, pub name: Option<String>, pub options: Option<BuildOptions>, pub project_id: Option<String>, pub queue_ttl: Option<Duration>, pub results: Option<Results>, pub secrets: Option<Vec<Secret>>, pub service_account: Option<String>, pub source: Option<Source>, pub source_provenance: Option<SourceProvenance>, pub start_time: Option<DateTime<Utc>>, pub status: Option<String>, pub status_detail: Option<String>, pub steps: Option<Vec<BuildStep>>, pub substitutions: Option<HashMap<String, String>>, pub tags: Option<Vec<String>>, pub timeout: Option<Duration>, pub timing: Option<HashMap<String, TimeSpan>>, pub warnings: Option<Vec<Warning>>,
}
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. - $PROJECT_NUMBER: the project number of the build. - $LOCATION: the location/region 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).

Fields§

§approval: Option<BuildApproval>

Output only. Describes this build’s approval configuration, status, and result.

§artifacts: Option<Artifacts>

Artifacts produced by the build that should be uploaded upon successful completion of all build steps.

§available_secrets: Option<Secrets>

Secrets and secret environment variables.

§build_trigger_id: Option<String>

Output only. The ID of the BuildTrigger that triggered this build, if it was triggered automatically.

§create_time: Option<DateTime<Utc>>

Output only. Time at which the request to create the build was received.

§failure_info: Option<FailureInfo>

Output only. Contains information about the build when status=FAILURE.

§finish_time: Option<DateTime<Utc>>

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.

§git_config: Option<GitConfig>

Optional. Configuration for git operations.

§id: Option<String>

Output only. Unique identifier of the build.

§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.

§log_url: Option<String>

Output only. URL to logs for this build in Google Cloud Console.

§logs_bucket: Option<String>

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.

§name: Option<String>

Output only. The ‘Build’ name with format: projects/{project}/locations/{location}/builds/{build}, where {build} is a unique identifier generated by the service.

§options: Option<BuildOptions>

Special options for this build.

§project_id: Option<String>

Output only. ID of the project.

§queue_ttl: Option<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.

§results: Option<Results>

Output only. Results of the build.

§secrets: Option<Vec<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

§service_account: Option<String>

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.

§source: Option<Source>

Optional. The location of the source files to build.

§source_provenance: Option<SourceProvenance>

Output only. A permanent fixed identifier for source.

§start_time: Option<DateTime<Utc>>

Output only. Time at which execution of the build was started.

§status: Option<String>

Output only. Status of the build.

§status_detail: Option<String>

Output only. Customer-readable message about the current status.

§steps: Option<Vec<BuildStep>>

Required. The operations to be performed on the workspace.

§substitutions: Option<HashMap<String, String>>

Substitutions data for Build resource.

§tags: Option<Vec<String>>

Tags for annotation of a Build. These are not docker tags.

§timeout: Option<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 60 minutes.

§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 artifacts including docker images and non docker artifacts. * 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.

§warnings: Option<Vec<Warning>>

Output only. Non-fatal problems encountered during the execution of the build.

Trait Implementations§

Source§

impl Clone for Build

Source§

fn clone(&self) -> Build

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Build

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Build

Source§

fn default() -> Build

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Build

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for Build

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl RequestValue for Build

Source§

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,