Class: Google::Apis::GameservicesV1::GameServerDeploymentRollout
- Inherits:
-
Object
- Object
- Google::Apis::GameservicesV1::GameServerDeploymentRollout
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gameservices_v1/classes.rb,
lib/google/apis/gameservices_v1/representations.rb,
lib/google/apis/gameservices_v1/representations.rb
Overview
The game server deployment rollout which represents the desired rollout state.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#default_game_server_config ⇒ String
The default game server config is applied to all realms unless overridden in the rollout.
-
#etag ⇒ String
ETag of the resource.
-
#game_server_config_overrides ⇒ Array<Google::Apis::GameservicesV1::GameServerConfigOverride>
Contains the game server config rollout overrides.
-
#name ⇒ String
The resource name of the game server deployment rollout, in the following form:
projects/
project/locations/
locationId/gameServerDeployments/
deploymentId/rollout
. -
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GameServerDeploymentRollout
constructor
A new instance of GameServerDeploymentRollout.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GameServerDeploymentRollout
Returns a new instance of GameServerDeploymentRollout.
937 938 939 |
# File 'lib/google/apis/gameservices_v1/classes.rb', line 937 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The creation time.
Corresponds to the JSON property createTime
903 904 905 |
# File 'lib/google/apis/gameservices_v1/classes.rb', line 903 def create_time @create_time end |
#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
.
Corresponds to the JSON property defaultGameServerConfig
910 911 912 |
# File 'lib/google/apis/gameservices_v1/classes.rb', line 910 def default_game_server_config @default_game_server_config end |
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
915 916 917 |
# File 'lib/google/apis/gameservices_v1/classes.rb', line 915 def etag @etag end |
#game_server_config_overrides ⇒ Array<Google::Apis::GameservicesV1::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
922 923 924 |
# File 'lib/google/apis/gameservices_v1/classes.rb', line 922 def game_server_config_overrides @game_server_config_overrides end |
#name ⇒ String
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
930 931 932 |
# File 'lib/google/apis/gameservices_v1/classes.rb', line 930 def name @name end |
#update_time ⇒ String
Output only. The last-modified time.
Corresponds to the JSON property updateTime
935 936 937 |
# File 'lib/google/apis/gameservices_v1/classes.rb', line 935 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
942 943 944 945 946 947 948 949 |
# File 'lib/google/apis/gameservices_v1/classes.rb', line 942 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 |