infoblox 2.0.1 → 2.0.2
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.
- checksums.yaml +4 -4
- data/lib/infoblox/resource/arecord.rb +7 -4
- data/lib/infoblox/version.rb +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ccd218d2d47a281043172b707bd01ab7056b75b
|
|
4
|
+
data.tar.gz: f50d6e7191ea898ffb766dae82cbcb669a479050
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4aed5a4ca7779d968fb2b0901ec7a7c13c4776180ef3971530efebfbc2ee20528e345d8343e1872ac829dd4b7c706a16b70f923df5cce5802a8081720664f17f
|
|
7
|
+
data.tar.gz: dd8cf46c64ac00dc6d33759a7c0e3f84ccede5c8618eef26362f438c493f350ba293a705f607c1ad50ae8be437fe11ba1a262d85acc5bdffb9e528ddc74b7c86
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
module Infoblox
|
|
2
|
+
# Maps FQDN to IPAddress
|
|
2
3
|
class Arecord < Resource
|
|
3
4
|
remote_attr_accessor :comment,
|
|
4
5
|
:disable,
|
|
@@ -6,11 +7,13 @@ module Infoblox
|
|
|
6
7
|
:extensible_attributes,
|
|
7
8
|
:ipv4addr,
|
|
8
9
|
:name,
|
|
9
|
-
:ttl
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
:ttl
|
|
11
|
+
|
|
12
|
+
# view can not be updated
|
|
13
|
+
remote_post_accessor :view
|
|
14
|
+
|
|
12
15
|
remote_attr_reader :zone
|
|
13
16
|
|
|
14
|
-
wapi_object
|
|
17
|
+
wapi_object 'record:a'
|
|
15
18
|
end
|
|
16
19
|
end
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Billy Reisinger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-02-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -184,4 +184,3 @@ test_files:
|
|
|
184
184
|
- spec/resource_spec.rb
|
|
185
185
|
- spec/search_spec.rb
|
|
186
186
|
- spec/spec_helper.rb
|
|
187
|
-
has_rdoc:
|