Class: Google::Apis::RunV2::GoogleCloudRunV2RevisionScaling

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

Overview

Settings for revision-level scaling settings.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRunV2RevisionScaling

Returns a new instance of GoogleCloudRunV2RevisionScaling.



1918
1919
1920
# File 'lib/google/apis/run_v2/classes.rb', line 1918

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

Instance Attribute Details

#max_instance_countFixnum

Optional. Maximum number of serving instances that this resource should have. When unspecified, the field is set to the server default value of 100. For more information see https://cloud.google.com/run/docs/configuring/max- instances Corresponds to the JSON property maxInstanceCount

Returns:

  • (Fixnum)


1911
1912
1913
# File 'lib/google/apis/run_v2/classes.rb', line 1911

def max_instance_count
  @max_instance_count
end

#min_instance_countFixnum

Optional. Minimum number of serving instances that this resource should have. Corresponds to the JSON property minInstanceCount

Returns:

  • (Fixnum)


1916
1917
1918
# File 'lib/google/apis/run_v2/classes.rb', line 1916

def min_instance_count
  @min_instance_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

def update!(**args)
  @max_instance_count = args[:max_instance_count] if args.key?(:max_instance_count)
  @min_instance_count = args[:min_instance_count] if args.key?(:min_instance_count)
end