mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
eb523fb80a
have added each of the Route 53 functions list_hosted_zones is working. rest still need to be tested [aws|linode|slicehost|zerigo|dns] added complete test cases for linode & slicehost DNS. Also added initial support for AWS Route 53
47 lines
1.1 KiB
Ruby
47 lines
1.1 KiB
Ruby
module Fog
|
|
module AWS
|
|
class DNS
|
|
class Real
|
|
|
|
require 'fog/aws/parsers/dns/get_change'
|
|
|
|
# returns the current state of a change request
|
|
#
|
|
# ==== Parameters
|
|
# * change_id<~String>
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
# * 'Id'<~String>
|
|
# * 'Status'<~String>
|
|
# * 'SubmittedAt'<~String>
|
|
# * status<~Integer> - 200 when successful
|
|
def get_change( change_id )
|
|
|
|
# AWS methods return change_ids that looks like '/change/id'. Let the caller either use
|
|
# that form or just the actual id (which is what this request needs)
|
|
change_id = change_id.sub('/change/', '')
|
|
|
|
request({
|
|
:expects => 200,
|
|
:parser => Fog::Parsers::AWS::DNS::GetChange.new,
|
|
:method => 'GET',
|
|
:path => "change/#{change_id}"
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
class Mock
|
|
|
|
def get_change( change_id )
|
|
Fog::Mock.not_implemented
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|