Class: Google::Apis::GameservicesV1beta::ListGameServerDeploymentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::GameservicesV1beta::ListGameServerDeploymentsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/gameservices_v1beta/classes.rb,
generated/google/apis/gameservices_v1beta/representations.rb,
generated/google/apis/gameservices_v1beta/representations.rb
Overview
Response message for GameServerDeploymentsService.ListGameServerDeployments.
Instance Attribute Summary collapse
-
#game_server_deployments ⇒ Array<Google::Apis::GameservicesV1beta::GameServerDeployment>
The list of game server deployments.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
-
#unreachable ⇒ Array<String>
List of locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListGameServerDeploymentsResponse
constructor
A new instance of ListGameServerDeploymentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListGameServerDeploymentsResponse
Returns a new instance of ListGameServerDeploymentsResponse.
1077 1078 1079 |
# File 'generated/google/apis/gameservices_v1beta/classes.rb', line 1077 def initialize(**args) update!(**args) end |
Instance Attribute Details
#game_server_deployments ⇒ Array<Google::Apis::GameservicesV1beta::GameServerDeployment>
The list of game server deployments.
Corresponds to the JSON property gameServerDeployments
1064 1065 1066 |
# File 'generated/google/apis/gameservices_v1beta/classes.rb', line 1064 def game_server_deployments @game_server_deployments end |
#next_page_token ⇒ String
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
1070 1071 1072 |
# File 'generated/google/apis/gameservices_v1beta/classes.rb', line 1070 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
List of locations that could not be reached.
Corresponds to the JSON property unreachable
1075 1076 1077 |
# File 'generated/google/apis/gameservices_v1beta/classes.rb', line 1075 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1082 1083 1084 1085 1086 |
# File 'generated/google/apis/gameservices_v1beta/classes.rb', line 1082 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 |