Sha256: c894c613cc00b90a9aa8045ef3ae6158e434562877aa47f6ef2bd01f03323d90

Contents?: true

Size: 1.12 KB

Versions: 6

Compression:

Stored size: 1.12 KB

Contents

require 'fog/core/collection'
require 'fog/aliyun/models/compute/route_entry'

module Fog
  module Compute
    class Aliyun
      class RouteEntrys < Fog::Collection
        attribute :route_table

        model Fog::Compute::Aliyun::RouteEntry

        def all(options = {})
          requires :route_table
          options[:routeTableId] = route_table.id
          data = Fog::JSON.decode(service.list_route_tables(route_table.v_router_id, options).body)['RouteTables']['RouteTable'][0]['RouteEntrys']['RouteEntry']
          load(data)
        end

        def get(cidr_block)
          requires :route_table
          data = self.class.new(service: service, route_table: route_table).all
          result = nil
          data.each do |i|
            if i.cidr_block == cidr_block
              result = i
              break
            end
          end
          result
        end

        # def get(routeTableId)
        #   requires :v_router
        #   if routeTableId
        #     self.class.new(:service => service,:v_router=>v_router).all(:routeTableId=>routeTableId)[0]
        #   end
        # end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
fog-aliyun-0.3.0 lib/fog/aliyun/models/compute/route_entrys.rb
fog-aliyun-0.2.2 lib/fog/aliyun/models/compute/route_entrys.rb
fog-xiaozhu-0.2.2 lib/fog/aliyun/models/compute/route_entrys.rb
fog-xiaozhu-0.2.1 lib/fog/aliyun/models/compute/route_entrys.rb
fog-aliyun-0.2.1 lib/fog/aliyun/models/compute/route_entrys.rb
fog-aliyun-0.2.0 lib/fog/aliyun/models/compute/route_entrys.rb