google_cloudevents::google::events::cloud::cloudbuild::v1

Struct BuildEventData

Source
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: String

Unique identifier of the build.

§project_id: String

ID of the project.

§status: i32

Status of the build.

§status_detail: String

Customer-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: 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.

§source_provenance: Option<SourceProvenance>

A permanent fixed identifier for source.

§build_trigger_id: String

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

§options: Option<BuildOptions>

Special options for this build.

§log_url: String

URL to logs for this build in Google Cloud Console.

§substitutions: HashMap<String, String>

Substitutions data for Build resource.

§tags: Vec<String>

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§

Source§

impl BuildEventData

Source

pub fn status(&self) -> Status

Returns the enum value of status, or the default if the field is set to an invalid enum value.

Source

pub fn set_status(&mut self, value: Status)

Sets status to the provided enum value.

Trait Implementations§

Source§

impl Clone for BuildEventData

Source§

fn clone(&self) -> BuildEventData

Returns a copy 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 BuildEventData

Source§

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

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

impl Default for BuildEventData

Source§

fn default() -> Self

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

impl<'de> Deserialize<'de> for BuildEventData

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 Message for BuildEventData

Source§

fn encoded_len(&self) -> usize

Returns the encoded length of the message without a length delimiter.
Source§

fn clear(&mut self)

Clears the message, resetting all fields to their default.
Source§

fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>
where Self: Sized,

Encodes the message to a buffer. Read more
Source§

fn encode_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message to a newly allocated buffer.
Source§

fn encode_length_delimited( &self, buf: &mut impl BufMut, ) -> Result<(), EncodeError>
where Self: Sized,

Encodes the message with a length-delimiter to a buffer. Read more
Source§

fn encode_length_delimited_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message with a length-delimiter to a newly allocated buffer.
Source§

fn decode(buf: impl Buf) -> Result<Self, DecodeError>
where Self: Default,

Decodes an instance of the message from a buffer. Read more
Source§

fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>
where Self: Default,

Decodes a length-delimited instance of the message from the buffer.
Source§

fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>
where Self: Sized,

Decodes an instance of the message from a buffer, and merges it into self. Read more
Source§

fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>
where Self: Sized,

Decodes a length-delimited instance of the message from buffer, and merges it into self.
Source§

impl PartialEq for BuildEventData

Source§

fn eq(&self, other: &BuildEventData) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for BuildEventData

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 StructuralPartialEq for BuildEventData

Auto Trait Implementations§

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, dst: *mut u8)

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> 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> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,