class Google::Apis::GameservicesV1::ListGameServerDeploymentsResponse
Response message for GameServerDeploymentsService.ListGameServerDeployments.
Attributes
game_server_deployments[RW]
The list of game server deployments. Corresponds to the JSON property `gameServerDeployments` @return [Array<Google::Apis::GameservicesV1::GameServerDeployment>]
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 1138 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 1143 def update!(**args) @game_server_deployments = args[:game_server_deployments] if args.key?(:game_server_deployments) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end