infoblox 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/infoblox.rb +1 -0
- data/lib/infoblox/resource/host_ipv4addr.rb +19 -0
- data/lib/infoblox/version.rb +1 -1
- metadata +2 -1
data/lib/infoblox.rb
CHANGED
@@ -8,6 +8,7 @@ require 'infoblox/connection'
|
|
8
8
|
require 'infoblox/resource'
|
9
9
|
require 'infoblox/client'
|
10
10
|
require 'infoblox/resource/host'
|
11
|
+
require 'infoblox/resource/host_ipv4addr'
|
11
12
|
require 'infoblox/resource/ipv4addr'
|
12
13
|
require 'infoblox/resource/network'
|
13
14
|
require 'infoblox/resource/network_container'
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module Infoblox
|
2
|
+
class HostIpv4addr < Resource
|
3
|
+
remote_attr_accessor :network, :host, :ipv4addr
|
4
|
+
|
5
|
+
wapi_object "record:host_ipv4addr"
|
6
|
+
|
7
|
+
def post
|
8
|
+
raise "Not supported"
|
9
|
+
end
|
10
|
+
|
11
|
+
def put
|
12
|
+
raise "Not supported"
|
13
|
+
end
|
14
|
+
|
15
|
+
def delete
|
16
|
+
raise "Not supported"
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
data/lib/infoblox/version.rb
CHANGED
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.
|
4
|
+
version: 0.0.8
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -128,6 +128,7 @@ files:
|
|
128
128
|
- lib/infoblox/connection.rb
|
129
129
|
- lib/infoblox/resource.rb
|
130
130
|
- lib/infoblox/resource/host.rb
|
131
|
+
- lib/infoblox/resource/host_ipv4addr.rb
|
131
132
|
- lib/infoblox/resource/ipv4addr.rb
|
132
133
|
- lib/infoblox/resource/network.rb
|
133
134
|
- lib/infoblox/resource/network_container.rb
|