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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3b86137af7e5cd5ad985e5a75bd6c87f05ad808f
4
- data.tar.gz: 34cf13e277ee6e8b1d9bf6bd5d9f73e2fdddcb0d
3
+ metadata.gz: f2adc338dbb18becd75ccbc3583871e36aac7668
4
+ data.tar.gz: 389cbe8d4d6887e8f098f112f3ef3b83e453eb6f
5
5
  SHA512:
6
- metadata.gz: e7c20495536e73c7c7443508be8675cbab7bb0a62a483970117b68200d76c0c5be2fe625093e3db21ce3b29838137d78acd9a13d978afc45bcb1e96458c47764
7
- data.tar.gz: 4e56f4c60f56e0c2fd3f90bfdfdaf220b9c9d350f260cb21b5091a3e92e49c7b1b62205cc52989c4a8281160ebc01701e9c0d9910b5d32e88936e0009b12ef74
6
+ metadata.gz: 5d91c6e7fecb484852ca5698043f98077e4f6561c4c5ff263c53d5d39e9c6486077831f8e6e5a7fa7ad8c87adb31d2bbc3819e96af297bbabb6a3b99ec03ffc2
7
+ data.tar.gz: 8ce3f9d1467209f38342daacbf0327dcd2ec32ba3ad67be4306d355427a5ffabe88a983a421378397d983193d445d6b486d4f9d83a74dd4b69f69afdfbb410dc
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 GovDelivery, Inc.
1
+ Copyright (c) 2017 Granicus
2
2
 
3
3
  MIT License
4
4
 
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::FixedAddress
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 FixedAddress and AAAARecord). For best results, set the version using the `WAPI_VERSION` environment variable. For example:
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
 
@@ -1,3 +1,6 @@
1
+ ## 2.0.5 - August 28 2017
2
+ * Added ZoneForward resource
3
+
1
4
  ## 2.0.4 - March 8 2017
2
5
  * Added RoamingHost resource
3
6
  * Added fields to FixedAddress
@@ -0,0 +1,14 @@
1
+ module Infoblox
2
+ class ZoneForward < Infoblox::Resource
3
+ remote_attr_accessor :comment,
4
+ :disable,
5
+ :forward_to,
6
+ :view
7
+
8
+ remote_post_accessor :fqdn
9
+
10
+ remote_attr_reader :parent
11
+
12
+ wapi_object 'zone_forward'
13
+ end
14
+ end
@@ -1,3 +1,3 @@
1
1
  module Infoblox
2
- VERSION = "2.0.4"
2
+ VERSION = "2.0.5"
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.4
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-03-08 00:00:00.000000000 Z
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: