class Google::Apis::GameservicesV1::FetchDeploymentStateResponse

Response message for GameServerDeploymentsService.FetchDeploymentState.

Attributes

cluster_state[RW]

The state of the game server deployment in each game server cluster. Corresponds to the JSON property `clusterState` @return [Array<Google::Apis::GameservicesV1::DeployedClusterState>]

unavailable[RW]

List of locations that could not be reached. Corresponds to the JSON property `unavailable` @return [Array<String>]

Public Class Methods

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