Sha256: 3a65d2069f3175ae779177390dfcb358a5d985e1b5e0b1795780452be73ec16a
Contents?: true
Size: 1.43 KB
Versions: 6
Compression:
Stored size: 1.43 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ContainerInstance::Mgmt::V2018_09_01 module Models # # The resource limits. # class ResourceLimits include MsRestAzure # @return [Float] The memory limit in GB of this container instance. attr_accessor :memory_in_gb # @return [Float] The CPU limit of this container instance. attr_accessor :cpu # # Mapper for ResourceLimits class as Ruby Hash. # This will be used for serialization/deserialization. # 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 end end end
Version data entries
6 entries across 6 versions & 1 rubygems