Class: Fog::Ecloud::MockDataClasses::MockPublicIpInternetServiceNodes

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/ecloud/mock_data_classes.rb

Instance Method Summary collapse

Methods inherited from Base

#_parent, base_url, #base_url, base_url=, #first, #initialize, #inspect, #last

Constructor Details

This class inherits a constructor from Fog::Ecloud::MockDataClasses::Base

Instance Method Details

#hrefObject



723
724
725
# File 'lib/fog/ecloud/mock_data_classes.rb', line 723

def href
  _parent.href + "/nodeServices"
end

#itemsObject



727
728
729
730
731
732
733
734
735
736
# File 'lib/fog/ecloud/mock_data_classes.rb', line 727

def items
  @items ||= [].tap do |node_array|
    node_array.instance_variable_set("@default_port", _parent.port)

    def node_array.<<(node)
      node[:port] ||= @default_port
      super
    end
  end
end