infoblox 2.0.2 → 2.0.3
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/.travis.yml +4 -4
- data/README.md +2 -0
- data/RELEASES.md +6 -0
- data/lib/infoblox/resource/lease.rb +16 -0
- data/lib/infoblox/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4b62d41eab653b02b14d6e366d4b8a64a57d2bc2
|
|
4
|
+
data.tar.gz: 3554301088065332b186e1cbf99a5b3c6aab33e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c70668f099a53af4280b0a8822d26714a411a186a5da2ac0ca6c4aaa73005eda65c90e75cee0cca58454dbf904a07a677ed232b09a8b569c2ae6853e38fcc983
|
|
7
|
+
data.tar.gz: 560b2e76d7c00391857d4824e4ee9b1a60673cd5149f43664571e4965b89d26e296c6cb89af84e20133d6551df52e56d4ee26bcbe06e56b31fa034dd6abc9be2
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -91,9 +91,11 @@ This pattern applies for interacting with every resource. Supported resources i
|
|
|
91
91
|
Infoblox::Arecord
|
|
92
92
|
Infoblox::Cname
|
|
93
93
|
Infoblox::FixedAddress
|
|
94
|
+
Infoblox::Grid
|
|
94
95
|
Infoblox::Host
|
|
95
96
|
Infoblox::HostIpv4addr
|
|
96
97
|
Infoblox::Ipv4address
|
|
98
|
+
Infoblox::Lease
|
|
97
99
|
Infoblox::Mx
|
|
98
100
|
Infoblox::Network
|
|
99
101
|
Infoblox::NetworkContainer
|
data/RELEASES.md
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
module Infoblox
|
|
2
|
+
# NB: Only exists on WAPI 1.1 and up
|
|
3
|
+
class Lease < Resource
|
|
4
|
+
remote_attr_reader :address,
|
|
5
|
+
:binding_state,
|
|
6
|
+
:client_hostname,
|
|
7
|
+
:ends,
|
|
8
|
+
:hardware,
|
|
9
|
+
:network,
|
|
10
|
+
:network_view,
|
|
11
|
+
:protocol,
|
|
12
|
+
:starts
|
|
13
|
+
|
|
14
|
+
wapi_object 'lease'
|
|
15
|
+
end
|
|
16
|
+
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.3
|
|
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-02-
|
|
11
|
+
date: 2017-02-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -122,6 +122,7 @@ files:
|
|
|
122
122
|
- lib/infoblox/resource/host.rb
|
|
123
123
|
- lib/infoblox/resource/host_ipv4addr.rb
|
|
124
124
|
- lib/infoblox/resource/ipv4address.rb
|
|
125
|
+
- lib/infoblox/resource/lease.rb
|
|
125
126
|
- lib/infoblox/resource/mx.rb
|
|
126
127
|
- lib/infoblox/resource/network.rb
|
|
127
128
|
- lib/infoblox/resource/network_container.rb
|