Sha256: f6824f750bc80c0ae86432913fca4e60e466f68bb275d76663a931ad3e6678bf
Contents?: true
Size: 1.39 KB
Versions: 15
Compression:
Stored size: 1.39 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::Compute::Mgmt::V2018_06_01 module Models # # Describes the resource range. # class ResourceRange include MsRestAzure # @return [Integer] The minimum number of the resource. attr_accessor :min # @return [Integer] The maximum number of the resource. attr_accessor :max # # Mapper for ResourceRange class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ResourceRange', type: { name: 'Composite', class_name: 'ResourceRange', model_properties: { min: { client_side_validation: true, required: false, serialized_name: 'min', type: { name: 'Number' } }, max: { client_side_validation: true, required: false, serialized_name: 'max', type: { name: 'Number' } } } } } end end end end
Version data entries
15 entries across 15 versions & 1 rubygems