infoblox 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
data/lib/infoblox.rb CHANGED
@@ -7,6 +7,7 @@ require 'infoblox/version'
7
7
  require 'infoblox/connection'
8
8
  require 'infoblox/resource'
9
9
  require 'infoblox/client'
10
+ require 'infoblox/resource/cname'
10
11
  require 'infoblox/resource/host'
11
12
  require 'infoblox/resource/host_ipv4addr'
12
13
  require 'infoblox/resource/ipv4addr'
@@ -0,0 +1,9 @@
1
+ module Infoblox
2
+ class Cname < Resource
3
+ remote_attr_accessor :name, :canonical,
4
+ :extensible_attributes
5
+ attr_accessor :view
6
+
7
+ wapi_object "record:cname"
8
+ end
9
+ end
@@ -1,3 +1,3 @@
1
1
  module Infoblox
2
- VERSION = "0.0.9"
2
+ VERSION = "0.0.10"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: infoblox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-08-23 00:00:00.000000000 Z
12
+ date: 2013-08-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: faraday
@@ -127,6 +127,7 @@ files:
127
127
  - lib/infoblox/client.rb
128
128
  - lib/infoblox/connection.rb
129
129
  - lib/infoblox/resource.rb
130
+ - lib/infoblox/resource/cname.rb
130
131
  - lib/infoblox/resource/host.rb
131
132
  - lib/infoblox/resource/host_ipv4addr.rb
132
133
  - lib/infoblox/resource/ipv4addr.rb