class Google::Apis::GameservicesV1::GameServerClusterConnectionInfo

The game server cluster connection information.

Attributes

gke_cluster_reference[RW]

A reference to a GKE cluster. Corresponds to the JSON property `gkeClusterReference` @return [Google::Apis::GameservicesV1::GkeClusterReference]

namespace[RW]

Namespace designated on the game server cluster where the Agones game server instances will be created. Existence of the namespace will be validated during creation. Corresponds to the JSON property `namespace` @return [String]

Public Class Methods

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