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

Version Path
fog-azure-rm-0.1.1 lib/fog/azurerm/models/application_gateway/frontend_port.rb
fog-azure-rm-0.1.0 lib/fog/azurerm/models/application_gateway/frontend_port.rb
fog-azure-rm-0.0.9 lib/fog/azurerm/models/application_gateway/frontend_port.rb
fog-azure-rm-0.0.8 lib/fog/azurerm/models/application_gateway/frontend_port.rb
fog-azure-rm-0.0.6 lib/fog/azurerm/models/application_gateway/frontend_port.rb
fog-azure-rm-0.0.5 lib/fog/azurerm/models/application_gateway/frontend_port.rb