class Google::Apis::GameservicesV1::TargetDetails
Details about the Agones resources.
Attributes
fleet_details[RW]
Agones fleet details for game server clusters and game server deployments. Corresponds to the JSON property `fleetDetails` @return [Array<Google::Apis::GameservicesV1::TargetFleetDetails>]
game_server_cluster_name[RW]
The game server cluster name. Uses the form: `projects/`project`/locations/` location`/realms/`realm`/gameServerClusters/`cluster“. Corresponds to the JSON property `gameServerClusterName` @return [String]
game_server_deployment_name[RW]
The game server deployment name. Uses the form: `projects/`project`/locations/` location`/gameServerDeployments/`deployment_id“. Corresponds to the JSON property `gameServerDeploymentName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/gameservices_v1/classes.rb, line 2102 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 2107 def update!(**args) @fleet_details = args[:fleet_details] if args.key?(:fleet_details) @game_server_cluster_name = args[:game_server_cluster_name] if args.key?(:game_server_cluster_name) @game_server_deployment_name = args[:game_server_deployment_name] if args.key?(:game_server_deployment_name) end