Class: Azure::ServiceFabric::V6_5_0_36::Models::ResourceLimits
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::V6_5_0_36::Models::ResourceLimits
- Includes:
- MsRestAzure
- Defined in:
- lib/6.5.0.36/generated/azure_service_fabric/models/resource_limits.rb
Overview
This type describes the resource limits for a given container. It describes the most amount of resources a container is allowed to use before being restarted.
Instance Attribute Summary collapse
-
#cpu ⇒ Float
supported.
-
#memory_in_gb ⇒ Float
The memory limit in GB.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ResourceLimits class as Ruby Hash.
Instance Attribute Details
#cpu ⇒ Float
supported.
22 23 24 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/resource_limits.rb', line 22 def cpu @cpu end |
#memory_in_gb ⇒ Float
Returns The memory limit in GB.
18 19 20 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/resource_limits.rb', line 18 def memory_in_gb @memory_in_gb end |
Class Method Details
.mapper ⇒ Object
Mapper for ResourceLimits class as Ruby Hash. This will be used for serialization/deserialization.
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/resource_limits.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ResourceLimits', type: { name: 'Composite', class_name: 'ResourceLimits', model_properties: { memory_in_gb: { client_side_validation: true, required: false, serialized_name: 'memoryInGB', type: { name: 'Double' } }, cpu: { client_side_validation: true, required: false, serialized_name: 'cpu', type: { name: 'Double' } } } } } end |