Struct google_ondemandscanning1::api::DeploymentOccurrence[][src]

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

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

This type is not used in any activity, and only used as part of another schema.

Fields

address: Option<String>

Address of the runtime element hosting this deployment.

config: Option<String>

Configuration used to create this deployment.

deploy_time: Option<String>

Required. Beginning of the lifetime of this deployment.

platform: Option<String>

Platform hosting this deployment.

resource_uri: Option<Vec<String>>

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

undeploy_time: Option<String>

End of the lifetime of this deployment.

user_email: Option<String>

Identity of the user that triggered this deployment.

Trait Implementations

impl Clone for DeploymentOccurrence[src]

impl Debug for DeploymentOccurrence[src]

impl Default for DeploymentOccurrence[src]

impl<'de> Deserialize<'de> for DeploymentOccurrence[src]

impl Part for DeploymentOccurrence[src]

impl Serialize for DeploymentOccurrence[src]

Auto Trait Implementations

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

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.