fog-brightbox 0.4.1 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/fog/brightbox/models/compute/load_balancer.rb +3 -0
- data/lib/fog/brightbox/requests/compute/create_load_balancer.rb +1 -0
- data/lib/fog/brightbox/requests/compute/update_load_balancer.rb +1 -0
- data/lib/fog/brightbox/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bf3d66886dcbcc3b322d8d7cbc9d2d1b44e170b0
|
4
|
+
data.tar.gz: 6b077cbd2c3247965692c8fa65da922d4d611817
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1adfefa1c678d7c4916d171a813c7b6de86e25bfcaf0c05e989de5994415ad60bf14f1fef8edd51e52867b4256d9302637a86e65e7f817af5c504b82002ded29
|
7
|
+
data.tar.gz: 0d6033997d99c661ff1cdb81f147c2e32d5d883c0b794ec4f631dab4250be57717e066145d58ac2db5a2ce776f5b4a712a0287777488f2357241ca5c32770fb0
|
data/CHANGELOG.md
CHANGED
@@ -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
|
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
|
+
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-
|
11
|
+
date: 2014-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fog-core
|