fog-brightbox 0.5.1 → 0.6.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 +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +1 -1
- data/lib/fog/brightbox/models/compute/load_balancer.rb +7 -1
- 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: e52861cd49b6672c8e07c36492af9e06ad51267a
|
|
4
|
+
data.tar.gz: 3f8511a4b6e478f95cb1df5293f9e7ffe4bdd8cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb2c36f4c703e0602025d94b2509f18e50859d916e68e5061bf43a9b5ffd92f826fd0baa554cd281516f07936adde58d2141c3d34c7de6ea01ff6cc3b6693bba
|
|
7
|
+
data.tar.gz: e34c095c04b7ed30390110a88afa4dc3f626a409e9d11ce47517add0e256e8f0c627da833b7e6e5af67a7eb2e73715484d02cdc13b118d428b05d192cdc8f2ca
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Brightbox Cloud module for fog (The Ruby cloud services library)
|
|
2
2
|
|
|
3
|
-
This gem is a
|
|
3
|
+
This gem is a module for the `fog` gem that allows you to manage resources in
|
|
4
4
|
the Brightbox Cloud.
|
|
5
5
|
|
|
6
6
|
It is included by the main `fog` metagem but can used as an independent library
|
|
@@ -30,6 +30,7 @@ module Fog
|
|
|
30
30
|
attribute :certificate_expires_at
|
|
31
31
|
attribute :certificate_issuer
|
|
32
32
|
attribute :certificate_subject
|
|
33
|
+
attribute :certificate_enable_ssl3
|
|
33
34
|
|
|
34
35
|
# Times
|
|
35
36
|
attribute :created_at, :type => :time
|
|
@@ -55,7 +56,8 @@ module Fog
|
|
|
55
56
|
:name => name,
|
|
56
57
|
:buffer_size => buffer_size,
|
|
57
58
|
:certificate_pem => certificate_pem,
|
|
58
|
-
:certificate_private_key => certificate_private_key
|
|
59
|
+
:certificate_private_key => certificate_private_key,
|
|
60
|
+
:sslv3 => ssl3?
|
|
59
61
|
}.delete_if { |k, v| v.nil? || v == "" }
|
|
60
62
|
data = service.create_load_balancer(options)
|
|
61
63
|
merge_attributes(data)
|
|
@@ -98,6 +100,10 @@ module Fog
|
|
|
98
100
|
end
|
|
99
101
|
end
|
|
100
102
|
|
|
103
|
+
def ssl3?
|
|
104
|
+
attributes[:sslv3]
|
|
105
|
+
end
|
|
106
|
+
|
|
101
107
|
private
|
|
102
108
|
|
|
103
109
|
def time_or_original(value)
|
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.6.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-10-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fog-core
|