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