Sha256: 95f00503c74eebae641a0fcbc3f9a160bf4a20777de87f7413e949a0c8316681
Contents?: true
Size: 853 Bytes
Versions: 53
Compression:
Stored size: 853 Bytes
Contents
module Fog module Network class AzureRM # InboundNatPool model for Network Service class InboundNatPool < Fog::Model identity :name attribute :id attribute :protocol attribute :frontend_port_range_start attribute :frontend_port_range_end attribute :backend_port def self.parse(inbound_nat_pool) hash = {} hash['id'] = inbound_nat_pool.id hash['name'] = inbound_nat_pool.name hash['protocol'] = inbound_nat_pool.protocol hash['frontend_port_range_start'] = inbound_nat_pool.frontend_port_range_start hash['frontend_port_range_end'] = inbound_nat_pool.frontend_port_range_end hash['backend_port'] = inbound_nat_pool.backend_port hash end end end end end
Version data entries
53 entries across 53 versions & 4 rubygems