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/requests/compute/describe_vpc_attribute.rb

56 lines
2.1 KiB
Ruby
Raw Normal View History

module Fog
module Compute
2015-01-02 12:34:40 -05:00
class AWS
class Real
require 'fog/aws/parsers/compute/describe_vpc_attribute'
# Describes a vpc attribute value
#
# ==== Parameters
# * vpc_id<~String> - The ID of the VPC you want to describe an attribute of
# * attribute<~String> - The attribute to describe, must be one of 'enableDnsSupport' or 'enableDnsHostnames'
#
# === Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'requestId'<~String> - Id of request
# * 'vpcId'<~String> - The ID of the VPC
# * 'enableDnsSupport'<~Boolean> - Flag indicating whether DNS resolution is enabled for the VPC (if requested)
# * 'enableDnsHostnames'<~Boolean> - Flag indicating whether the instances launched in the VPC get DNS hostnames (if requested)
#
2015-01-02 12:34:40 -05:00
# (Amazon API Reference)[http://docs.amazonwebservices.com/AWSEC2/2014-02-01/APIReference/ApiReference-query-DescribeVpcAttribute.html]
def describe_vpc_attribute(vpc_id, attribute)
request(
'Action' => 'DescribeVpcAttribute',
'VpcId' => vpc_id,
'Attribute' => attribute,
:parser => Fog::Parsers::Compute::AWS::DescribeVpcAttribute.new
)
end
end
class Mock
def describe_vpc_attribute(vpc_id, attribute)
response = Excon::Response.new
if vpc = self.data[:vpcs].find{ |v| v['vpcId'] == vpc_id }
response.status = 200
response.body = {
'requestId' => Fog::AWS::Mock.request_id,
'vpcId' => vpc_id
}
case attribute
when 'enableDnsSupport', 'enableDnsHostnames'
response.body[attribute] = vpc[attribute]
else
raise Fog::Compute::AWS::Error.new("Illegal attribute '#{attribute}' specified")
end
response
else
raise Fog::Compute::AWS::NotFound.new("The VPC '#{vpc_id}' does not exist")
end
end
end
end
end
end