mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[dns|aws] move aws dns to its own shared area (namespacing should probably be corrected)
This commit is contained in:
parent
5e2a7f3c9d
commit
487046d85b
20 changed files with 13 additions and 13 deletions
|
@ -10,7 +10,7 @@ module Fog
|
|||
service(:compute, 'compute/aws')
|
||||
service(:cloud_formation, 'aws/cloud_formation')
|
||||
service(:cloud_watch, 'aws/cloud_watch')
|
||||
service(:dns, 'dns/aws')
|
||||
service(:dns, 'aws/dns')
|
||||
service(:elb, 'aws/elb')
|
||||
service(:iam, 'aws/iam')
|
||||
service(:rds, 'aws/rds')
|
||||
|
|
|
@ -5,13 +5,13 @@ module Fog
|
|||
requires :aws_access_key_id, :aws_secret_access_key
|
||||
recognizes :host, :path, :port, :scheme, :version, :persistent
|
||||
|
||||
model_path 'fog/dns/models/aws'
|
||||
model_path 'fog/aws/models/dns'
|
||||
model :record
|
||||
collection :records
|
||||
model :zone
|
||||
collection :zones
|
||||
|
||||
request_path 'fog/dns/requests/aws'
|
||||
request_path 'fog/aws/requests/dns'
|
||||
request :create_hosted_zone
|
||||
request :get_hosted_zone
|
||||
request :delete_hosted_zone
|
|
@ -1,5 +1,5 @@
|
|||
require 'fog/core/collection'
|
||||
require 'fog/dns/models/aws/record'
|
||||
require 'fog/aws/models/dns/record'
|
||||
|
||||
module Fog
|
||||
module DNS
|
|
@ -1,5 +1,5 @@
|
|||
require 'fog/core/model'
|
||||
# require 'fog/dns/models/aws/records'
|
||||
# require 'fog/aws/models/dns/records'
|
||||
|
||||
module Fog
|
||||
module DNS
|
|
@ -1,5 +1,5 @@
|
|||
require 'fog/core/collection'
|
||||
require 'fog/dns/models/aws/zone'
|
||||
require 'fog/aws/models/dns/zone'
|
||||
|
||||
module Fog
|
||||
module DNS
|
|
@ -3,7 +3,7 @@ module Fog
|
|||
class AWS
|
||||
class Real
|
||||
|
||||
require 'fog/dns/parsers/aws/change_resource_record_sets'
|
||||
require 'fog/aws/parsers/dns/change_resource_record_sets'
|
||||
|
||||
# Use this action to create or change your authoritative DNS information for a zone
|
||||
#
|
|
@ -3,7 +3,7 @@ module Fog
|
|||
class AWS
|
||||
class Real
|
||||
|
||||
require 'fog/dns/parsers/aws/create_hosted_zone'
|
||||
require 'fog/aws/parsers/dns/create_hosted_zone'
|
||||
|
||||
# Creates a new hosted zone
|
||||
#
|
|
@ -3,7 +3,7 @@ module Fog
|
|||
class AWS
|
||||
class Real
|
||||
|
||||
require 'fog/dns/parsers/aws/delete_hosted_zone'
|
||||
require 'fog/aws/parsers/dns/delete_hosted_zone'
|
||||
|
||||
# Delete a hosted zone
|
||||
#
|
|
@ -3,7 +3,7 @@ module Fog
|
|||
class AWS
|
||||
class Real
|
||||
|
||||
require 'fog/dns/parsers/aws/get_change'
|
||||
require 'fog/aws/parsers/dns/get_change'
|
||||
|
||||
# returns the current state of a change request
|
||||
#
|
|
@ -3,7 +3,7 @@ module Fog
|
|||
class AWS
|
||||
class Real
|
||||
|
||||
require 'fog/dns/parsers/aws/get_hosted_zone'
|
||||
require 'fog/aws/parsers/dns/get_hosted_zone'
|
||||
|
||||
# retrieve information about a hosted zone
|
||||
#
|
|
@ -3,7 +3,7 @@ module Fog
|
|||
class AWS
|
||||
class Real
|
||||
|
||||
require 'fog/dns/parsers/aws/list_hosted_zones'
|
||||
require 'fog/aws/parsers/dns/list_hosted_zones'
|
||||
|
||||
# Describe all or specified instances
|
||||
#
|
|
@ -3,7 +3,7 @@ module Fog
|
|||
class AWS
|
||||
class Real
|
||||
|
||||
require 'fog/dns/parsers/aws/list_resource_record_sets'
|
||||
require 'fog/aws/parsers/dns/list_resource_record_sets'
|
||||
|
||||
# list your resource record sets
|
||||
#
|
Loading…
Reference in a new issue