1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/models/compute/subnets.rb
Paulo Henrique Lopes Ribeiro 722bbdfa45 Remove unecessary requires
2015-04-06 11:23:35 -03:00

94 lines
2.4 KiB
Ruby

require 'fog/aws/models/compute/subnet'
module Fog
module Compute
class AWS
class Subnets < Fog::Collection
attribute :filters
model Fog::Compute::AWS::Subnet
# Creates a new subnet
#
# AWS.subnets.new
#
# ==== Returns
#
# Returns the details of the new Subnet
#
#>> AWS.subnets.new
# <Fog::AWS::Compute::Subnet
# subnet_id=subnet-someId,
# state=[pending|available],
# vpc_id=vpc-someId
# cidr_block=someIpRange
# available_ip_address_count=someInt
# tagset=nil
# >
#
def initialize(attributes)
self.filters ||= {}
super
end
# Returns an array of all Subnets that have been created
#
# AWS.subnets.all
#
# ==== Returns
#
# Returns an array of all VPCs
#
#>> AWS.subnets.all
# <Fog::AWS::Compute::Subnet
# filters={}
# [
# subnet_id=subnet-someId,
# state=[pending|available],
# vpc_id=vpc-someId
# cidr_block=someIpRange
# available_ip_address_count=someInt
# tagset=nil
# ]
# >
#
def all(filters_arg = filters)
unless filters_arg.is_a?(Hash)
Fog::Logger.warning("all with #{filters_arg.class} param is deprecated, use all('subnet-id' => []) instead [light_black](#{caller.first})[/]")
filters_arg = {'subnet-id' => [*filters_arg]}
end
filters = filters_arg
data = service.describe_subnets(filters).body
load(data['subnetSet'])
end
# Used to retrieve a Subnet
# subnet-id is required to get the associated VPC information.
#
# You can run the following command to get the details:
# AWS.subnets.get("subnet-12345678")
#
# ==== Returns
#
#>> AWS.subnets.get("subnet-12345678")
# <Fog::AWS::Compute::Subnet
# subnet_id=subnet-someId,
# state=[pending|available],
# vpc_id=vpc-someId
# cidr_block=someIpRange
# available_ip_address_count=someInt
# tagset=nil
# >
#
def get(subnet_id)
if subnet_id
self.class.new(:service => service).all('subnet-id' => subnet_id).first
end
end
end
end
end
end