Struct gapi_grpc::google::cloud::gaming::v1::GameServerConfig[][src]

pub struct GameServerConfig {
    pub name: String,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub labels: HashMap<String, String>,
    pub fleet_configs: Vec<FleetConfig>,
    pub scaling_configs: Vec<ScalingConfig>,
    pub description: String,
}

A game server config resource.

Fields

name: String

The resource name of the game server config. Uses the form:

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

projects/my-project/locations/global/gameServerDeployments/my-game/configs/my-config.

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 config. Each label is a key-value pair.

fleet_configs: Vec<FleetConfig>

FleetConfig contains a list of Agones fleet specs. Only one FleetConfig is allowed.

scaling_configs: Vec<ScalingConfig>

The autoscaling settings.

description: String

The description of the game server config.

Trait Implementations

impl Clone for GameServerConfig[src]

impl Debug for GameServerConfig[src]

impl Default for GameServerConfig[src]

impl Message for GameServerConfig[src]

impl PartialEq<GameServerConfig> for GameServerConfig[src]

impl StructuralPartialEq for GameServerConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for GameServerConfig

impl Send for GameServerConfig

impl Sync for GameServerConfig

impl Unpin for GameServerConfig

impl UnwindSafe for GameServerConfig

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]