Class: Google::Apis::RunV1alpha1::ResourceRequirements

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

Overview

ResourceRequirements describes the compute resource requirements.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ResourceRequirements

Returns a new instance of ResourceRequirements



3092
3093
3094
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3092

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

Instance Attribute Details

#limitsHash<String,String>

Limits describes the maximum amount of compute resources allowed. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/ apimachinery/pkg/api/resource/quantity.go Corresponds to the JSON property limits

Returns:

  • (Hash<String,String>)


3060
3061
3062
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3060

def limits
  @limits
end

#limits_in_mapHash<String,Google::Apis::RunV1alpha1::Quantity>

Limits describes the maximum amount of compute resources allowed. This is a temporary field created to migrate away from the map limits field. This is done to become compliant with k8s style API. This field is deprecated in favor of limits field. Corresponds to the JSON property limitsInMap

Returns:



3069
3070
3071
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3069

def limits_in_map
  @limits_in_map
end

#requestsHash<String,String>

Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/ apimachinery/pkg/api/resource/quantity.go Corresponds to the JSON property requests

Returns:

  • (Hash<String,String>)


3079
3080
3081
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3079

def requests
  @requests
end

#requests_in_mapHash<String,Google::Apis::RunV1alpha1::Quantity>

Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. This is a temporary field created to migrate away from the map requests field. This is done to become compliant with k8s style API. This field is deprecated in favor of requests field. Corresponds to the JSON property requestsInMap

Returns:



3090
3091
3092
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3090

def requests_in_map
  @requests_in_map
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3097
3098
3099
3100
3101
3102
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3097

def update!(**args)
  @limits = args[:limits] if args.key?(:limits)
  @limits_in_map = args[:limits_in_map] if args.key?(:limits_in_map)
  @requests = args[:requests] if args.key?(:requests)
  @requests_in_map = args[:requests_in_map] if args.key?(:requests_in_map)
end