class Fog::ApplicationGateway::AzureRM::FrontendPort

Frontenf Port model class for Application Gateway Service

Public Class Methods

parse(frontend_port) click to toggle source
# File lib/fog/azurerm/models/application_gateway/frontend_port.rb, line 10
def self.parse(frontend_port)
  hash = {}
  hash['id'] = frontend_port.id
  hash['name'] = frontend_port.name
  hash['port'] = frontend_port.port
  hash
end