Sha256: d4fe667ace722aedeb1f27027163798da4bd0b4278bd904456920bb6d649df0d
Contents?: true
Size: 1.45 KB
Versions: 4
Compression:
Stored size: 1.45 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::ServiceFabric::Mgmt::V2018_02_01 module Models # # Port range details # class EndpointRangeDescription include MsRestAzure # @return [Integer] Starting port of a range of ports attr_accessor :start_port # @return [Integer] End port of a range of ports attr_accessor :end_port # # Mapper for EndpointRangeDescription class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EndpointRangeDescription', type: { name: 'Composite', class_name: 'EndpointRangeDescription', model_properties: { start_port: { client_side_validation: true, required: true, serialized_name: 'startPort', type: { name: 'Number' } }, end_port: { client_side_validation: true, required: true, serialized_name: 'endPort', type: { name: 'Number' } } } } } end end end end
Version data entries
4 entries across 4 versions & 1 rubygems