|
6 | 6 | <language>en-US</language> |
7 | 7 | <author>Enthusiastic Hugo User</author> |
8 | 8 | <rights>Copyright (c) 2014, Enthusiastic Hugo User; all rights reserved.</rights> |
9 | | - <updated>Wed, 13 Sep 2017 00:00:00 UTC</updated> |
| 9 | + <updated>Thu, 14 Sep 2017 00:00:00 UTC</updated> |
| 10 | + |
| 11 | + <item> |
| 12 | + <title>Release notes: September 14, 2017</title> |
| 13 | + <link>https://softlayer.github.io/release_notes/2017/20170914/</link> |
| 14 | + <pubDate>Thu, 14 Sep 2017 00:00:00 UTC</pubDate> |
| 15 | + <author>Enthusiastic Hugo User</author> |
| 16 | + <guid>https://softlayer.github.io/release_notes/2017/20170914/</guid> |
| 17 | + <description> |
| 18 | + |
| 19 | +<h4 id="portal">Portal</h4> |
| 20 | + |
| 21 | +<ul> |
| 22 | +<li>Fixed an issue where standard disk prices were being incorrectly hidden for some datacenters during the order process.</li> |
| 23 | +<li>Virtual Guest Family sizes are now live on the order form. You can read more about the Family sizes <a href="https://www.ibm.com/blogs/bluemix/2017/09/public-virtual-server-families/">here</a>.</li> |
| 24 | +<li>Added new functionality to the order forms to support multiple disk controllers for bare metal offerings.</li> |
| 25 | +<li>Added the following new offerings in the Bluemix catalog: <a href="https://console-regional.ng.bluemix.net/containers-kubernetes/home/registryGettingStarted?env_id=ibm%3Ayp%3Aus-south">Container Registry</a>, <a href="https://console-regional.ng.bluemix.net/catalog/services/informix-on-cloud?env_id=ibm%3Ayp%3Aus-south&amp;taxonomyNavigation=containers">Informix On Cloud</a>, <a href="https://console-regional.ng.bluemix.net/catalog/services/master-data-management-on-cloud?env_id=ibm%3Ayp%3Aus-south&amp;taxonomyNavigation=containers">Master Data Management on Cloud</a>, <a href="https://console-regional.ng.bluemix.net/catalog/services/information-server-on-cloud?env_id=ibm%3Ayp%3Aus-south&amp;taxonomyNavigation=containers">Information Server on Cloud</a>, <a href="https://console-regional.ng.bluemix.net/catalog/services/compose-for-janusgraph?env_id=ibm%3Ayp%3Aus-south&amp;taxonomyNavigation=containers">JanusGraph</a>, <a href="https://console-regional.ng.bluemix.net/catalog/services/monitoring?env_id=ibm%3Ayp%3Aus-south&amp;taxonomyNavigation=containers">Monitoring</a>, and <a href="https://console-regional.ng.bluemix.net/catalog/services/log-analysis?env_id=ibm%3Ayp%3Aus-south&amp;taxonomyNavigation=containers">Log Analysis</a>.</li> |
| 26 | +</ul> |
| 27 | + |
| 28 | +<h4 id="api">API</h4> |
| 29 | + |
| 30 | +<ul> |
| 31 | +<li>Fixed a bug where the results from <a href="http://sldn.softlayer.com/reference/services/softlayer_virtual_guest/generateordertemplate">SoftLayer_Virtual_Guest::generateOrderTemplate</a> were not showing the new Family Size Virtual Guests.<br /></li> |
| 32 | +<li>Introduced a new feature which enables customers to specify a backend router for bare metal server orders via API.</li> |
| 33 | +<li>The <a href="http://softlayer-python.readthedocs.io/en/latest/index.html">SoftLayer Python CLI</a> was updated for Family Sizes and Dedicated hosts. The virtual create-options command was updated to show flavors and the dedicated host options. The virtual create command was updated to accept a flavor key and a host id.</li> |
| 34 | +<li>Added the method <a href="http://sldn.softlayer.com/reference/services/SoftLayer_Network_SecurityGroup/getSupportedDataCenters">getSupportedDataCenters</a> to service <a href="http://sldn.softlayer.com/reference/services/SoftLayer_Network_SecurityGroup">SoftLayer_Network_SecurityGroup</a>. The new API will return a list of <a href="http://sldn.softlayer.com/reference/services/SoftLayer_Location_Datacenter">SoftLayer_Location_Datacenter</a> objects, which represent the datacenters where security groups are available.</li> |
| 35 | +</ul> |
| 36 | + |
| 37 | +<h4 id="backend">Backend</h4> |
| 38 | + |
| 39 | +<ul> |
| 40 | +<li>Corrected a bug that was causing customers to be unable to boot Virtual Guests in to our rescue environment.</li> |
| 41 | +</ul> |
| 42 | +</description> |
| 43 | + </item> |
10 | 44 |
|
11 | 45 | <item> |
12 | 46 | <title>Advanced Bare Metal Server Ordering</title> |
@@ -1172,29 +1206,6 @@ client = SoftLayer.Client() |
1172 | 1206 | getGuests = client['SoftLayer_Virtual_DedicatedHost'].getGuests(id=dhId) |
1173 | 1207 | pp(getGuests) |
1174 | 1208 | </code></pre> |
1175 | | -</description> |
1176 | | - </item> |
1177 | | - |
1178 | | - <item> |
1179 | | - <title>Migrate a VSI between dedicated hosts</title> |
1180 | | - <link>https://softlayer.github.io/python/migratededicatedinstance/</link> |
1181 | | - <pubDate>Fri, 04 Aug 2017 00:00:00 UTC</pubDate> |
1182 | | - <author>Enthusiastic Hugo User</author> |
1183 | | - <guid>https://softlayer.github.io/python/migratededicatedinstance/</guid> |
1184 | | - <description><p>This script will kick of an immediate migration of the Virtual Guest.</p> |
1185 | | - |
1186 | | -<pre><code>&quot;&quot;&quot; |
1187 | | -@author Ryan TIffany |
1188 | | -&quot;&quot;&quot; |
1189 | | -import SoftLayer |
1190 | | -from pprint import pprint as pp |
1191 | | - |
1192 | | -destinationHostId = 987654 |
1193 | | -vsiId = 1234567 |
1194 | | -client = SoftLayer.Client() |
1195 | | - |
1196 | | -migrateGuest = client['SoftLayer_Virtual_Guest'].migrateDedicatedHost(destinationHostId, id=vsiId) |
1197 | | -</code></pre> |
1198 | 1209 | </description> |
1199 | 1210 | </item> |
1200 | 1211 |
|
|
0 commit comments