Struct gapi_grpc::grafeas::v1::DeploymentOccurrence[][src]

pub struct DeploymentOccurrence {
    pub user_email: String,
    pub deploy_time: Option<Timestamp>,
    pub undeploy_time: Option<Timestamp>,
    pub config: String,
    pub address: String,
    pub resource_uri: Vec<String>,
    pub platform: i32,
}

The period during which some deployable was active in a runtime.

Fields

user_email: String

Identity of the user that triggered this deployment.

deploy_time: Option<Timestamp>

Required. Beginning of the lifetime of this deployment.

undeploy_time: Option<Timestamp>

End of the lifetime of this deployment.

config: String

Configuration used to create this deployment.

address: String

Address of the runtime element hosting this deployment.

resource_uri: Vec<String>

Output only. Resource URI for the artifact being deployed taken from the deployable field with the same name.

platform: i32

Platform hosting this deployment.

Implementations

impl DeploymentOccurrence[src]

pub fn platform(&self) -> Platform[src]

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

pub fn set_platform(&mut self, value: Platform)[src]

Sets platform to the provided enum value.

Trait Implementations

impl Clone for DeploymentOccurrence[src]

impl Debug for DeploymentOccurrence[src]

impl Default for DeploymentOccurrence[src]

impl Message for DeploymentOccurrence[src]

impl PartialEq<DeploymentOccurrence> for DeploymentOccurrence[src]

impl StructuralPartialEq for DeploymentOccurrence[src]

Auto Trait Implementations

impl RefUnwindSafe for DeploymentOccurrence

impl Send for DeploymentOccurrence

impl Sync for DeploymentOccurrence

impl Unpin for DeploymentOccurrence

impl UnwindSafe for DeploymentOccurrence

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]