infoblox 2.0.4 → 2.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/README.md +4 -2
- data/RELEASES.md +3 -0
- data/lib/infoblox/resource/zone_forward.rb +14 -0
- data/lib/infoblox/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f2adc338dbb18becd75ccbc3583871e36aac7668
|
4
|
+
data.tar.gz: 389cbe8d4d6887e8f098f112f3ef3b83e453eb6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d91c6e7fecb484852ca5698043f98077e4f6561c4c5ff263c53d5d39e9c6486077831f8e6e5a7fa7ad8c87adb31d2bbc3819e96af297bbabb6a3b99ec03ffc2
|
7
|
+
data.tar.gz: 8ce3f9d1467209f38342daacbf0327dcd2ec32ba3ad67be4306d355427a5ffabe88a983a421378397d983193d445d6b486d4f9d83a74dd4b69f69afdfbb410dc
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -90,7 +90,7 @@ This pattern applies for interacting with every resource. Supported resources i
|
|
90
90
|
Infoblox::AAAArecord
|
91
91
|
Infoblox::Arecord
|
92
92
|
Infoblox::Cname
|
93
|
-
Infoblox::
|
93
|
+
Infoblox::Fixedaddress
|
94
94
|
Infoblox::Grid
|
95
95
|
Infoblox::Host
|
96
96
|
Infoblox::HostIpv4addr
|
@@ -101,10 +101,12 @@ This pattern applies for interacting with every resource. Supported resources i
|
|
101
101
|
Infoblox::NetworkContainer
|
102
102
|
Infoblox::Ptr
|
103
103
|
Infoblox::Range
|
104
|
+
Infoblox::RoamingHost
|
104
105
|
Infoblox::Search
|
105
106
|
Infoblox::Srv
|
106
107
|
Infoblox::Txt
|
107
108
|
Infoblox::ZoneAuth
|
109
|
+
Infoblox::ZoneForward
|
108
110
|
|
109
111
|
The specific attributes supported by each resource are listed in the source code. Adding a new resource class is easy, and pull requests are encouraged.
|
110
112
|
|
@@ -186,7 +188,7 @@ Extensible attributes are supported in this client. It should be noted that in
|
|
186
188
|
|
187
189
|
## Infoblox Version Compatibility
|
188
190
|
|
189
|
-
This gem is known to be compatible with Infoblox versions 1.0 through 2.0. While Infoblox claims that their API is backwards-compatible, one caveat remains with the Extensible Attributes (see elsewhere in this document). Some features are only available in newer versions (such as
|
191
|
+
This gem is known to be compatible with Infoblox versions 1.0 through 2.0. While Infoblox claims that their API is backwards-compatible, one caveat remains with the Extensible Attributes (see elsewhere in this document). Some features are only available in newer versions (such as Fixedaddress and AAAARecord). For best results, set the version using the `WAPI_VERSION` environment variable. For example:
|
190
192
|
|
191
193
|
WAPI_VERSION=1.2 ruby my_script.rb
|
192
194
|
|
data/RELEASES.md
CHANGED
data/lib/infoblox/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: infoblox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Billy Reisinger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -133,6 +133,7 @@ files:
|
|
133
133
|
- lib/infoblox/resource/srv.rb
|
134
134
|
- lib/infoblox/resource/txt.rb
|
135
135
|
- lib/infoblox/resource/zone_auth.rb
|
136
|
+
- lib/infoblox/resource/zone_forward.rb
|
136
137
|
- lib/infoblox/version.rb
|
137
138
|
- spec/connection_spec.rb
|
138
139
|
- spec/host_ipv4addr_spec.rb
|
@@ -186,3 +187,4 @@ test_files:
|
|
186
187
|
- spec/resource_spec.rb
|
187
188
|
- spec/search_spec.rb
|
188
189
|
- spec/spec_helper.rb
|
190
|
+
has_rdoc:
|