Class: Google::Apis::GameservicesV1beta::ScalingConfig
- Inherits:
-
Object
- Object
- Google::Apis::GameservicesV1beta::ScalingConfig
- 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
-
#fleet_autoscaler_spec ⇒ String
Required.
-
#name ⇒ String
Required.
-
#schedules ⇒ Array<Google::Apis::GameservicesV1beta::Schedule>
The schedules to which this Scaling Config applies.
-
#selectors ⇒ Array<Google::Apis::GameservicesV1beta::LabelSelector>
Labels used to identify the game server clusters to which this Agones scaling config applies.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ScalingConfig
constructor
A new instance of ScalingConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ScalingConfig
Returns a new instance of ScalingConfig.
1878 1879 1880 |
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1878 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fleet_autoscaler_spec ⇒ String
Required. Agones fleet autoscaler spec. Example spec: https://agones.dev/site/
docs/reference/fleetautoscaler/
Corresponds to the JSON property fleetAutoscalerSpec
1859 1860 1861 |
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1859 def fleet_autoscaler_spec @fleet_autoscaler_spec end |
#name ⇒ String
Required. The name of the Scaling Config
Corresponds to the JSON property name
1864 1865 1866 |
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1864 def name @name end |
#schedules ⇒ Array<Google::Apis::GameservicesV1beta::Schedule>
The schedules to which this Scaling Config applies.
Corresponds to the JSON property schedules
1869 1870 1871 |
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1869 def schedules @schedules end |
#selectors ⇒ Array<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
1876 1877 1878 |
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1876 def selectors @selectors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1883 1884 1885 1886 1887 1888 |
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1883 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 |