softlayer_api 3.1.0 → 3.1.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 +0 -3
- data/lib/softlayer/ProductItemCategory.rb +1 -1
- data/lib/softlayer/base.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: 5c592fff0c34d44716f474b0101d6d95869bd484
|
|
4
|
+
data.tar.gz: e42665ad820a87205f408bf4dff68e5ae2542f46
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27b24d2c5edd44cd8c0c01f17bd71b599991ee82450e6d282e574b08ea51960c005cbed42f4aecb0ffa4f65bef2b0c4f78f4a3dfc2584b835ca093f9509725ce
|
|
7
|
+
data.tar.gz: db3326f41a4a44f9ed30c53166eae2f99df8cb5ff4d4c0ee823f7099d0c4603bfbaf5ca4f1166e075691e38cafd10051facf9644cc743059eb43802a3a458a08
|
data/CHANGELOG.textile
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
*3.1.0*
|
|
2
|
-
* 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
|
|
3
|
-
* New functionality related to network monitoring has been added
|
|
4
1
|
*3.0*
|
|
5
2
|
* 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
3
|
* 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
|
|
@@ -14,7 +14,7 @@ module SoftLayer
|
|
|
14
14
|
# DEPRECATION WARNING: The following configuration option keys have been deprecated and
|
|
15
15
|
# will be removed with the next major version: capacityRestrictionMaximum, capacityRestrictionMinimum,
|
|
16
16
|
# capacityRestrictionType, hourlyRecurringFee, laborFee, oneTimeFee, recurringFee, requiredCoreCount, setupFee
|
|
17
|
-
class ProductConfigurationOption < Struct.new(:capacity, :capacityRestrictionMaximum, :
|
|
17
|
+
class ProductConfigurationOption < Struct.new(:capacity, :capacityRestrictionMaximum, :capacity_restriction_maximum,
|
|
18
18
|
:capacityRestrictionMinimum, :capacity_restriction_minimum, :capacityRestrictionType, :capacity_restriction_type,
|
|
19
19
|
:description, :hourlyRecurringFee, :hourly_recurring_fee, :laborFee, :labor_fee, :oneTimeFee, :one_time_fee,
|
|
20
20
|
:price_id, :recurringFee, :recurring_fee, :requiredCoreCount, :required_core_count, :setupFee, :setup_fee, :units)
|
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.1.
|
|
15
|
+
VERSION = "3.1.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.1.
|
|
4
|
+
version: 3.1.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: 2015-
|
|
11
|
+
date: 2015-09-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: configparser
|