pub struct BuildEventData {Show 23 fields
pub id: String,
pub project_id: String,
pub status: i32,
pub status_detail: String,
pub source: Option<Source>,
pub steps: Vec<BuildStep>,
pub results: Option<Results>,
pub create_time: Option<Timestamp>,
pub start_time: Option<Timestamp>,
pub finish_time: Option<Timestamp>,
pub timeout: Option<Duration>,
pub images: Vec<String>,
pub queue_ttl: Option<Duration>,
pub artifacts: Option<Artifacts>,
pub logs_bucket: String,
pub source_provenance: Option<SourceProvenance>,
pub build_trigger_id: String,
pub options: Option<BuildOptions>,
pub log_url: String,
pub substitutions: HashMap<String, String>,
pub tags: Vec<String>,
pub secrets: Vec<Secret>,
pub timing: HashMap<String, TimeSpan>,
}Expand description
Build event data for Google Cloud Platform API operations.
Fields§
§id: StringUnique identifier of the build.
project_id: StringID of the project.
status: i32Status of the build.
status_detail: StringCustomer-readable message about the current status.
source: Option<Source>The location of the source files to build.
steps: Vec<BuildStep>The operations to be performed on the workspace.
results: Option<Results>Results of the build.
create_time: Option<Timestamp>Time at which the request to create the build was received.
start_time: Option<Timestamp>Time at which execution of the build was started.
finish_time: Option<Timestamp>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: 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.
images: 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.
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.
artifacts: Option<Artifacts>Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
logs_bucket: StringGoogle 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.
source_provenance: Option<SourceProvenance>A permanent fixed identifier for source.
build_trigger_id: StringThe ID of the BuildTrigger that triggered this build, if it
was triggered automatically.
options: Option<BuildOptions>Special options for this build.
log_url: StringURL to logs for this build in Google Cloud Console.
substitutions: HashMap<String, String>Substitutions data for Build resource.
Tags for annotation of a Build. These are not docker tags.
secrets: Vec<Secret>Secrets to decrypt using Cloud Key Management Service.
timing: HashMap<String, TimeSpan>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.
Implementations§
Trait Implementations§
Source§impl Clone for BuildEventData
impl Clone for BuildEventData
Source§fn clone(&self) -> BuildEventData
fn clone(&self) -> BuildEventData
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for BuildEventData
impl Debug for BuildEventData
Source§impl Default for BuildEventData
impl Default for BuildEventData
Source§impl<'de> Deserialize<'de> for BuildEventData
impl<'de> Deserialize<'de> for BuildEventData
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>,
Source§impl Message for BuildEventData
impl Message for BuildEventData
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self.