class Google::Apis::GameservicesV1beta::GameServerDeploymentRollout

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

Attributes

create_time[RW]

Output only. The creation time. Corresponds to the JSON property `createTime` @return [String]

default_game_server_config[RW]

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`. Corresponds to the JSON property `defaultGameServerConfig` @return [String]

etag[RW]

ETag of the resource. Corresponds to the JSON property `etag` @return [String]

game_server_config_overrides[RW]

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. Corresponds to the JSON property `gameServerConfigOverrides` @return [Array<Google::Apis::GameservicesV1beta::GameServerConfigOverride>]

name[RW]

The resource name of the game server deployment rollout, in the following form: `projects/`project`/locations/`location`/gameServerDeployments/`deployment`/ rollout`. For example, `projects/my-project/locations/global/ gameServerDeployments/my-deployment/rollout`. Corresponds to the JSON property `name` @return [String]

update_time[RW]

Output only. The last-modified time. Corresponds to the JSON property `updateTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/gameservices_v1beta/classes.rb, line 958
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/gameservices_v1beta/classes.rb, line 963
def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @default_game_server_config = args[:default_game_server_config] if args.key?(:default_game_server_config)
  @etag = args[:etag] if args.key?(:etag)
  @game_server_config_overrides = args[:game_server_config_overrides] if args.key?(:game_server_config_overrides)
  @name = args[:name] if args.key?(:name)
  @update_time = args[:update_time] if args.key?(:update_time)
end