[][src]Struct gcp_client::google::appengine::v1::Deployment

pub struct Deployment {
    pub files: HashMap<String, FileInfo>,
    pub container: Option<ContainerInfo>,
    pub zip: Option<ZipInfo>,
}

Code and application artifacts used to deploy a version to App Engine.

Fields

files: HashMap<String, FileInfo>

Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.

container: Option<ContainerInfo>

A Docker image that App Engine uses to run the version. Only applicable for instances in App Engine flexible environment.

zip: Option<ZipInfo>

The zip file for this deployment, if this is a zip deployment.

Trait Implementations

impl Clone for Deployment[src]

impl Debug for Deployment[src]

impl Default for Deployment[src]

impl Message for Deployment[src]

impl PartialEq<Deployment> for Deployment[src]

impl StructuralPartialEq for Deployment[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> 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> 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>, 

impl<T> WithSubscriber for T[src]