softlayer_api 3.2.0 → 3.2.1
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.textile +7 -0
- data/lib/softlayer/BareMetalServerOrder.rb +1 -1
- data/lib/softlayer/base.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 04b38f09f536b94748efab61b6883ff8154e6f37
|
|
4
|
+
data.tar.gz: a85b688249dd6b238e31721a38d079f713ec305a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37c5e2e9943594b49abcbf5b83f44f0cd911d07fa25ce2d875743ac16be33f5ca505b59fd7b394cc9d7f1d6571c04c14d00469cab2f657aa118564dfb5e77973
|
|
7
|
+
data.tar.gz: aa5cde5e62543b5be95987eaddec42ddd16da4f75ad1c3fa8c2cffe75ea1d87fee3e6f2cf99ebaed865a595119c06e833da7f75ad9c413e8c7c1b016166e9501
|
data/CHANGELOG.textile
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
|
+
*3.2.1*
|
|
2
|
+
Fix a crashing issue where a Bare Metal server order tried to retrieve the hardware ordered before it has been provisioned.
|
|
3
|
+
|
|
1
4
|
*3.2*
|
|
2
5
|
* Add password-based authentication with `SoftLayer::Client.with_password(username: '...', password: '...', ...)`.
|
|
3
6
|
|
|
7
|
+
*3.1.0*
|
|
8
|
+
* Many SoftLayer Attributes are now shadowed with snake_case names. The old CamelCase versions are deprecated and will be removed in the next major release
|
|
9
|
+
* New functionality related to network monitoring has been added
|
|
10
|
+
|
|
4
11
|
*3.0*
|
|
5
12
|
* Substantially rewrote the ObjectFilter class. ObjectFilters used to be hashes which made it easy to manipulate their content incorrectly. The new implementation has a strict interface that makes it harder to manipulate filters incorrectly.
|
|
6
13
|
* Added a model for Virtual Server Image Templates (SoftLayer::ImageTemplate) - VirtualServerOrder now requires an instance of this class rather than allowing you to provide the global_id of an image
|
|
@@ -133,7 +133,7 @@ module SoftLayer
|
|
|
133
133
|
order_template = yield order_template if block_given?
|
|
134
134
|
|
|
135
135
|
server_hash = @softlayer_client[:Hardware].createObject(order_template)
|
|
136
|
-
|
|
136
|
+
return server_hash
|
|
137
137
|
end
|
|
138
138
|
|
|
139
139
|
protected
|
data/lib/softlayer/base.rb
CHANGED
|
@@ -12,7 +12,7 @@ require 'rubygems'
|
|
|
12
12
|
module SoftLayer
|
|
13
13
|
# The version number (including major, minor, and bugfix numbers)
|
|
14
14
|
# This should change in accordance with the concept of Semantic Versioning
|
|
15
|
-
VERSION = "3.2.
|
|
15
|
+
VERSION = "3.2.1" # version history in the CHANGELOG.textile file at the root of the source
|
|
16
16
|
|
|
17
17
|
# The base URL of the SoftLayer API available to the public internet.
|
|
18
18
|
API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3/'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: softlayer_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- SoftLayer Development Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-01-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: configparser
|
|
@@ -183,7 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
183
183
|
version: '0'
|
|
184
184
|
requirements: []
|
|
185
185
|
rubyforge_project:
|
|
186
|
-
rubygems_version: 2.4.
|
|
186
|
+
rubygems_version: 2.4.8
|
|
187
187
|
signing_key:
|
|
188
188
|
specification_version: 4
|
|
189
189
|
summary: Library for accessing the SoftLayer API
|