# File lib/fog/aws/models/compute/dhcp_options.rb, line 53 def all(filters_arg = filters) unless filters_arg.is_a?(Hash) Fog::Logger.warning("all with #{filters_arg.class} param is deprecated, use all('internet-gateway-id' => []) instead [light_black](#{caller.first})[/]") filters_arg = {'dhcp-options-id' => [*filters_arg]} end filters = filters_arg data = service.describe_dhcp_options(filters).body load(data['dhcpOptionsSet']) end