class Google::Apis::GameservicesV1::ListGameServerConfigsResponse

Response message for GameServerConfigsService.ListGameServerConfigs.

Attributes

game_server_configs[RW]

The list of game server configs. Corresponds to the JSON property `gameServerConfigs` @return [Array<Google::Apis::GameservicesV1::GameServerConfig>]

next_page_token[RW]

Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property `nextPageToken` @return [String]

unreachable[RW]

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

Public Class Methods

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