fog-brightbox 0.4.1 → 0.5.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: bf1a1d6f31feee79821fe5e360ce118a31383b6d
4
- data.tar.gz: c3db5c301809e5ed976a244331472bf0eecdd53a
3
+ metadata.gz: bf3d66886dcbcc3b322d8d7cbc9d2d1b44e170b0
4
+ data.tar.gz: 6b077cbd2c3247965692c8fa65da922d4d611817
5
5
  SHA512:
6
- metadata.gz: ad5985ef503df48c4465c26abaa3b565fcb6ecf98a3adbaaccbc55c2cd876265ddb73f8cccd2f8fdb481a36c85209ca63e0da0b0e8095c2904b0851cdb705a62
7
- data.tar.gz: cf4f4ecb450b41baab841de773bc6339d34f36f42a30a5c2c00621ceda041ad7a479b45d4b026c59d34e096c072e890da5976e30c80242171e1a659242b3def5
6
+ metadata.gz: 1adfefa1c678d7c4916d171a813c7b6de86e25bfcaf0c05e989de5994415ad60bf14f1fef8edd51e52867b4256d9302637a86e65e7f817af5c504b82002ded29
7
+ data.tar.gz: 0d6033997d99c661ff1cdb81f147c2e32d5d883c0b794ec4f631dab4250be57717e066145d58ac2db5a2ce776f5b4a712a0287777488f2357241ca5c32770fb0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### 0.5.0 / 2014-09-01
2
+
3
+ Enhancements:
4
+
5
+ * Allow setting of Load Balancer buffer sizes during create and update calls.
6
+
1
7
  ### 0.4.1 / 2014-08-28
2
8
 
3
9
  Bug fixes:
@@ -14,6 +14,8 @@ module Fog
14
14
  attribute :name
15
15
  attribute :status
16
16
 
17
+ attribute :buffer_size
18
+
17
19
  attribute :policy
18
20
  attribute :nodes
19
21
  attribute :healthcheck
@@ -51,6 +53,7 @@ module Fog
51
53
  :healthcheck => healthcheck,
52
54
  :policy => policy,
53
55
  :name => name,
56
+ :buffer_size => buffer_size,
54
57
  :certificate_pem => certificate_pem,
55
58
  :certificate_private_key => certificate_private_key
56
59
  }.delete_if { |k, v| v.nil? || v == "" }
@@ -6,6 +6,7 @@ module Fog
6
6
  #
7
7
  # @param [Hash] options
8
8
  # @option options [String] :name Editable label
9
+ # @option options [Integer] :buffer_size Buffer size of load balancer. Default is 4096.
9
10
  # @option options [Array] :nodes Array of Node parameters
10
11
  # @option options [String] :policy Method of Load balancing to use
11
12
  # @option options [String] :certificate_pem A X509 SSL certificate in PEM format. Must be included along with 'certificate_key'. If intermediate certificates are required they should be concatenated after the main certificate
@@ -7,6 +7,7 @@ module Fog
7
7
  # @param [String] identifier Unique reference to identify the resource
8
8
  # @param [Hash] options
9
9
  # @option options [String] :name Editable label
10
+ # @option options [Integer] :buffer_size Buffer size of load balancer. Default is 4096.
10
11
  # @option options [Array] :nodes Array of Node parameters
11
12
  # @option options [String] :policy Method of Load balancing to use
12
13
  # @option options [String] :certificate_pem A X509 SSL certificate in PEM format. Must be included along with 'certificate_key'. If intermediate certificates are required they should be concatenated after the main certificate
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module Brightbox
3
- VERSION = "0.4.1"
3
+ VERSION = "0.5.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.4.1
4
+ version: 0.5.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: 2014-08-28 00:00:00.000000000 Z
11
+ date: 2014-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-core