Class: Google::Apis::GameservicesV1beta::ScalingConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gameservices_v1beta/classes.rb,
lib/google/apis/gameservices_v1beta/representations.rb,
lib/google/apis/gameservices_v1beta/representations.rb

Overview

Autoscaling config for an Agones fleet.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ScalingConfig

Returns a new instance of ScalingConfig.



1943
1944
1945
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1943

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#fleet_autoscaler_specString

Required. Agones fleet autoscaler spec. Example spec: https://agones.dev/site/ docs/reference/fleetautoscaler/ Corresponds to the JSON property fleetAutoscalerSpec

Returns:

  • (String)


1924
1925
1926
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1924

def fleet_autoscaler_spec
  @fleet_autoscaler_spec
end

#nameString

Required. The name of the Scaling Config Corresponds to the JSON property name

Returns:

  • (String)


1929
1930
1931
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1929

def name
  @name
end

#schedulesArray<Google::Apis::GameservicesV1beta::Schedule>

The schedules to which this Scaling Config applies. Corresponds to the JSON property schedules



1934
1935
1936
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1934

def schedules
  @schedules
end

#selectorsArray<Google::Apis::GameservicesV1beta::LabelSelector>

Labels used to identify the game server clusters to which this Agones scaling config applies. A game server cluster is subject to this Agones scaling config if its labels match any of the selector entries. Corresponds to the JSON property selectors



1941
1942
1943
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1941

def selectors
  @selectors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1948
1949
1950
1951
1952
1953
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1948

def update!(**args)
  @fleet_autoscaler_spec = args[:fleet_autoscaler_spec] if args.key?(:fleet_autoscaler_spec)
  @name = args[:name] if args.key?(:name)
  @schedules = args[:schedules] if args.key?(:schedules)
  @selectors = args[:selectors] if args.key?(:selectors)
end