Class: Google::Apis::GameservicesV1beta::GameServerDeploymentRollout

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gameservices_v1beta/classes.rb,
lib/google/apis/gameservices_v1beta/representations.rb,
lib/google/apis/gameservices_v1beta/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GameServerDeploymentRollout

Returns a new instance of GameServerDeploymentRollout.



938
939
940
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 938

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#create_timeString

Output only. The creation time. Corresponds to the JSON property createTime

Returns:

  • (String)


904
905
906
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 904

def create_time
  @create_time
end

#default_game_server_configString

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

Returns:

  • (String)


911
912
913
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 911

def default_game_server_config
  @default_game_server_config
end

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


916
917
918
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 916

def etag
  @etag
end

#game_server_config_overridesArray<Google::Apis::GameservicesV1beta::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. Corresponds to the JSON property gameServerConfigOverrides



923
924
925
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 923

def game_server_config_overrides
  @game_server_config_overrides
end

#nameString

The resource name of the game server deployment rollout, in the following form: projects/project/locations/locationId/gameServerDeployments/ deploymentId/rollout. For example, projects/my-project/locations/global/ gameServerDeployments/my-deployment/rollout. Corresponds to the JSON property name

Returns:

  • (String)


931
932
933
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 931

def name
  @name
end

#update_timeString

Output only. The last-modified time. Corresponds to the JSON property updateTime

Returns:

  • (String)


936
937
938
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 936

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



943
944
945
946
947
948
949
950
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 943

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