[][src]Struct gcp_client::google::cloud::gaming::v1beta::GameServerDeployment

pub struct GameServerDeployment {
    pub name: String,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub labels: HashMap<String, String>,
    pub etag: String,
    pub description: String,
}

A Game Server Deployment resource.

Fields

name: String

The resource name of the Game Server Deployment. Uses the form:

projects/{project}/locations/{location}/gameServerDeployments/{deployment}. For example,

projects/my-project/locations/{location}/gameServerDeployments/my-deployment.

create_time: Option<Timestamp>

Output only. The creation time.

update_time: Option<Timestamp>

Output only. The last-modified time.

labels: HashMap<String, String>

The labels associated with this Game Server Deployment. Each label is a key-value pair.

etag: String

ETag of the resource.

description: String

Human readable description of the Game Server Deployment.

Trait Implementations

impl Clone for GameServerDeployment[src]

impl Debug for GameServerDeployment[src]

impl Default for GameServerDeployment[src]

impl Message for GameServerDeployment[src]

impl PartialEq<GameServerDeployment> for GameServerDeployment[src]

impl StructuralPartialEq for GameServerDeployment[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]