Struct gapi_grpc::google::cloud::binaryauthorization::v1beta1::continuous_validation_event::ContinuousValidationPodEvent[][src]

pub struct ContinuousValidationPodEvent {
    pub pod: String,
    pub deploy_time: Option<Timestamp>,
    pub end_time: Option<Timestamp>,
    pub verdict: i32,
    pub images: Vec<ImageDetails>,
}

An auditing event for one Pod.

Fields

pod: String

The name of the Pod.

deploy_time: Option<Timestamp>

Deploy time of the Pod from k8s.

end_time: Option<Timestamp>

Termination time of the Pod from k8s, or nothing if still running.

verdict: i32

Auditing verdict for this Pod.

images: Vec<ImageDetails>

List of images with auditing details.

Implementations

impl ContinuousValidationPodEvent[src]

pub fn verdict(&self) -> PolicyConformanceVerdict[src]

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

pub fn set_verdict(&mut self, value: PolicyConformanceVerdict)[src]

Sets verdict to the provided enum value.

Trait Implementations

impl Clone for ContinuousValidationPodEvent[src]

impl Debug for ContinuousValidationPodEvent[src]

impl Default for ContinuousValidationPodEvent[src]

impl Message for ContinuousValidationPodEvent[src]

impl PartialEq<ContinuousValidationPodEvent> for ContinuousValidationPodEvent[src]

impl StructuralPartialEq for ContinuousValidationPodEvent[src]

Auto Trait Implementations

impl RefUnwindSafe for ContinuousValidationPodEvent

impl Send for ContinuousValidationPodEvent

impl Sync for ContinuousValidationPodEvent

impl Unpin for ContinuousValidationPodEvent

impl UnwindSafe for ContinuousValidationPodEvent

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]