Sha256: eccf33e522133087f41fa0403479eab98d76e732847c743ce14b43a31067d016
Contents?: true
Size: 410 Bytes
Versions: 1
Compression:
Stored size: 410 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-azure-rm-0.1.2 | lib/fog/azurerm/models/application_gateway/frontend_port.rb |