fog-brightbox 0.12.0 → 0.13.0

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: f2310b1ba021705f6f588c79f948b4da36603b73
4
- data.tar.gz: 08d7361511400bb0446fbe9f6c56b93a1be50210
3
+ metadata.gz: 7cd8735538d2a88667029cca89e20489a6be746a
4
+ data.tar.gz: 8ec08a6ce320858bd2b27c4abb46844772d904ad
5
5
  SHA512:
6
- metadata.gz: 4aa4de701de5ae6712607e73bbfaec9538bab7e60fe8eabdf0e749e28675d838dd6e2740054ec0485cae9d377a6636647c2030527f72eace4a0b30cff11bce44
7
- data.tar.gz: f7defbd721be6ef8a812529de764f7706b925b11da4df0cbe30aae32e947f3a88f0ea6215fe31aa38f0cc5e5cde4f9bca9ff67215fbb5d0ac28041a385cd9e8b
6
+ metadata.gz: f9c0c2eb4061346340cfe8334d330d9700bc2028ad5fd33071675f8e5fe03634d0fb873b77eb444d7a069f4ea6a7af5ed80a0be9de1705794fa065e188e864ef
7
+ data.tar.gz: e03daebe3995bbb19500e3aa194b8e8f5161889420a3580902f0d190bfe6bb214e7d8dc4a8e049e11a9f3304b1db0bdb25231e85fc6f4d4e735bc72f1c0a1720
@@ -1,3 +1,11 @@
1
+ ### 0.13.0 / 2017-08-01
2
+
3
+ Enhancements:
4
+
5
+ * Added `cloud_ip` argument to server creation to request an immediate mapping
6
+ when a server build has completed. Either to a known cloud IP using its
7
+ identifier or by using `true` to allocate a new IP for the operation.
8
+
1
9
  ### 0.12.0 / 2017-07-19
2
10
 
3
11
  Enhancements:
@@ -32,6 +32,7 @@ module Fog
32
32
  attribute :image_id, :aliases => "image", :squash => "id"
33
33
 
34
34
  attribute :snapshots
35
+ attribute :cloud_ip # Creation option only
35
36
  attribute :cloud_ips
36
37
  attribute :interfaces
37
38
  attribute :server_groups
@@ -186,6 +187,7 @@ module Fog
186
187
  }.delete_if { |_k, v| v.nil? || v == "" }
187
188
 
188
189
  options.merge!(:server_type => flavor_id) unless flavor_id.nil? || flavor_id == ""
190
+ options.merge!(:cloud_ip => cloud_ip) unless cloud_ip.nil? || cloud_ip == ""
189
191
 
190
192
  data = service.create_server(options)
191
193
  merge_attributes(data)
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module Brightbox
3
- VERSION = "0.12.0"
3
+ VERSION = "0.13.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-brightbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Thornthwaite
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-19 00:00:00.000000000 Z
11
+ date: 2017-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-core