Sha256: d499ffbf95acc409c8e5399325f86759d011a645c5407cfa7941e7d34acbd121
Contents?: true
Size: 428 Bytes
Versions: 6
Compression:
Stored size: 428 Bytes
Contents
module Fog module ApplicationGateway class AzureRM # Frontenf Port model class for Application Gateway Service class FrontendPort < Fog::Model identity :name attribute :port def self.parse(frontend_port) hash = {} hash['name'] = frontend_port.name hash['port'] = frontend_port.port hash end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems