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

pub struct GameServerDeploymentRollout {
    pub name: String,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub default_game_server_config: String,
    pub game_server_config_overrides: Vec<GameServerConfigOverride>,
    pub etag: String,
}

The game server deployment rollout which represents the desired rollout state.

Fields

name: String

The resource name of the game server deployment rollout. Uses the form:

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

projects/my-project/locations/global/gameServerDeployments/my-deployment/rollout.

create_time: Option<Timestamp>

Output only. The creation time.

update_time: Option<Timestamp>

Output only. The last-modified time.

default_game_server_config: String

The default game server config is applied to all realms unless overridden in the rollout. For example,

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

game_server_config_overrides: Vec<GameServerConfigOverride>

Contains the game server config rollout overrides. Overrides are processed in the order they are listed. Once a match is found for a realm, the rest of the list is not processed.

etag: String

ETag of the resource.

Trait Implementations

impl Clone for GameServerDeploymentRollout[src]

impl Debug for GameServerDeploymentRollout[src]

impl Default for GameServerDeploymentRollout[src]

impl Message for GameServerDeploymentRollout[src]

impl PartialEq<GameServerDeploymentRollout> for GameServerDeploymentRollout[src]

impl StructuralPartialEq for GameServerDeploymentRollout[src]

Auto Trait Implementations

impl RefUnwindSafe for GameServerDeploymentRollout

impl Send for GameServerDeploymentRollout

impl Sync for GameServerDeploymentRollout

impl Unpin for GameServerDeploymentRollout

impl UnwindSafe for GameServerDeploymentRollout

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]