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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7ccd218d2d47a281043172b707bd01ab7056b75b
4
- data.tar.gz: f50d6e7191ea898ffb766dae82cbcb669a479050
3
+ metadata.gz: 4b62d41eab653b02b14d6e366d4b8a64a57d2bc2
4
+ data.tar.gz: 3554301088065332b186e1cbf99a5b3c6aab33e7
5
5
  SHA512:
6
- metadata.gz: 4aed5a4ca7779d968fb2b0901ec7a7c13c4776180ef3971530efebfbc2ee20528e345d8343e1872ac829dd4b7c706a16b70f923df5cce5802a8081720664f17f
7
- data.tar.gz: dd8cf46c64ac00dc6d33759a7c0e3f84ccede5c8618eef26362f438c493f350ba293a705f607c1ad50ae8be437fe11ba1a262d85acc5bdffb9e528ddc74b7c86
6
+ metadata.gz: c70668f099a53af4280b0a8822d26714a411a186a5da2ac0ca6c4aaa73005eda65c90e75cee0cca58454dbf904a07a677ed232b09a8b569c2ae6853e38fcc983
7
+ data.tar.gz: 560b2e76d7c00391857d4824e4ee9b1a60673cd5149f43664571e4965b89d26e296c6cb89af84e20133d6551df52e56d4ee26bcbe06e56b31fa034dd6abc9be2
data/.travis.yml CHANGED
@@ -1,11 +1,11 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.3.1
4
- - 2.2.4
5
- - 2.1.6
3
+ - 2.4.0
4
+ - 2.3.3
5
+ - 2.2.6
6
+ - 2.1.10
6
7
  - 1.9.3
7
8
  - jruby-19mode
8
- - jruby-head
9
9
  - 1.8.7
10
10
  before_install: gem install bundler
11
11
  script: bundle exec rspec
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
@@ -1,3 +1,9 @@
1
+ ## 2.0.3 - February 15 2017
2
+ * Added Lease resource
3
+
4
+ ## 2.0.2 - February 3 2017
5
+ * Move :view to Post only attributes on Arecord
6
+
1
7
  ## 2.0.1 - October 5 2016
2
8
  * Add TTL support to CNAME record
3
9
 
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Infoblox
2
- VERSION = "2.0.2"
2
+ VERSION = "2.0.3"
3
3
  end
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.2
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-03 00:00:00.000000000 Z
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