class Google::Apis::GameservicesV1::DeployedClusterState

The game server cluster changes made by the game server deployment.

Attributes

cluster[RW]

The name of the cluster. Corresponds to the JSON property `cluster` @return [String]

fleet_details[RW]

The details about the Agones fleets and autoscalers created in the game server cluster. Corresponds to the JSON property `fleetDetails` @return [Array<Google::Apis::GameservicesV1::DeployedFleetDetails>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/gameservices_v1/classes.rb, line 391
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_v1/classes.rb, line 396
def update!(**args)
  @cluster = args[:cluster] if args.key?(:cluster)
  @fleet_details = args[:fleet_details] if args.key?(:fleet_details)
end