You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by ri...@apache.org on 2016/04/18 17:27:52 UTC

svn commit: r1739772 - in /brooklyn/site: ./ developers/code/ developers/committers/release-process/ learnmore/catalog/ meta/ style/js/catalog/

Author: richard
Date: Mon Apr 18 15:27:52 2016
New Revision: 1739772

URL: http://svn.apache.org/viewvc?rev=1739772&view=rev
Log:
Apache Brooklyn - website update from git source

Modified:
    brooklyn/site/LICENSE
    brooklyn/site/developers/code/index.html
    brooklyn/site/developers/committers/release-process/environment-variables.html
    brooklyn/site/learnmore/catalog/catalog-item.html
    brooklyn/site/meta/sitemap.html
    brooklyn/site/meta/versions.html
    brooklyn/site/style/js/catalog/common.js
    brooklyn/site/style/js/catalog/items.js

Modified: brooklyn/site/LICENSE
URL: http://svn.apache.org/viewvc/brooklyn/site/LICENSE?rev=1739772&r1=1739771&r2=1739772&view=diff
==============================================================================
--- brooklyn/site/LICENSE (original)
+++ brooklyn/site/LICENSE Mon Apr 18 15:27:52 2016
@@ -286,7 +286,7 @@ This project includes the software: jque
   Version used: 1.3.1
   Used under the following license: The MIT License (http://opensource.org/licenses/MIT)
   Copyright (c) Łukasz Pawełczak (2015)
-  
+
 This project includes the software: jQuery Form Plugin
   Available at: https://github.com/malsup/form
   Developed by: Mike Alsup (http://malsup.com/)

Modified: brooklyn/site/developers/code/index.html
URL: http://svn.apache.org/viewvc/brooklyn/site/developers/code/index.html?rev=1739772&r1=1739771&r2=1739772&view=diff
==============================================================================
--- brooklyn/site/developers/code/index.html (original)
+++ brooklyn/site/developers/code/index.html Mon Apr 18 15:27:52 2016
@@ -390,7 +390,7 @@ git submodule foreach <span class="s1">&
 
 mvn clean install</code></pre></div>
 
-<p>This will produce an artifact in <code>brooklyn-dist/dist/brooklyn-dist-0.9.0-SNAPSHOT-dist.tar.gz</code> <!-- BROOKLYN_VERSION -->
+<p>This will produce an artifact in <code>brooklyn-dist/dist/brooklyn-dist-0.10.0-SNAPSHOT-dist.tar.gz</code> <!-- BROOKLYN_VERSION -->
 which you can use <a href="/v/latest/start/running.html">in the usual way</a>.
 Some options which may be useful:</p>
 

Modified: brooklyn/site/developers/committers/release-process/environment-variables.html
URL: http://svn.apache.org/viewvc/brooklyn/site/developers/committers/release-process/environment-variables.html?rev=1739772&r1=1739771&r2=1739772&view=diff
==============================================================================
--- brooklyn/site/developers/committers/release-process/environment-variables.html (original)
+++ brooklyn/site/developers/committers/release-process/environment-variables.html Mon Apr 18 15:27:52 2016
@@ -380,7 +380,7 @@ under the License.
 releases. To allow these example commands to run unmodified, set these environment variables appropriately.</p>
 
 <div class="highlight"><pre><code class="language-bash" data-lang="bash"><span class="c"># The version currently set on the master branch (BROOKLYN_VERSION_BELOW)</span>
-<span class="nv">OLD_MASTER_VERSION</span><span class="o">=</span>0.9.0-SNAPSHOT
+<span class="nv">OLD_MASTER_VERSION</span><span class="o">=</span>0.10.0-SNAPSHOT
 <span class="c"># The next version to be set on the master branch</span>
 <span class="nv">NEW_MASTER_VERSION</span><span class="o">=</span>0.NNN+1.0-SNAPSHOT
 

Modified: brooklyn/site/learnmore/catalog/catalog-item.html
URL: http://svn.apache.org/viewvc/brooklyn/site/learnmore/catalog/catalog-item.html?rev=1739772&r1=1739771&r2=1739772&view=diff
==============================================================================
--- brooklyn/site/learnmore/catalog/catalog-item.html (original)
+++ brooklyn/site/learnmore/catalog/catalog-item.html Mon Apr 18 15:27:52 2016
@@ -424,15 +424,20 @@ under the License.
 
       document.title = 'Brooklyn ' + catalog_type + ' - ' + item.name;
 
-      item.config.forEach(function (element) { $("#configKeys").append(brooklyn.configKeyCard(element)); });
+      item.config.forEach(function (element) {
+        $("#configKeys").append(brooklyn.configKeyCard(element));
+      });
 
       if(args[0] == 'entities') {
         $("#sensorsTab").show();
         $("#effectorsTab").show();
-        
-        item.sensors.forEach(function (element) { $("#sensors").append(brooklyn.sensorCard(element)); });
+        item.sensors.forEach(function (element) {
+          $("#sensors").append(brooklyn.sensorCard(element));
+        });
         if (item.effectors != undefined) {
-          item.effectors.forEach(function (element) { $("#effectors").append(brooklyn.effectorCard(element)); });
+          item.effectors.forEach(function (element) {
+            $("#effectors").append(brooklyn.effectorCard(element));
+          });
         }
         
       } else {

Modified: brooklyn/site/meta/sitemap.html
URL: http://svn.apache.org/viewvc/brooklyn/site/meta/sitemap.html?rev=1739772&r1=1739771&r2=1739772&view=diff
==============================================================================
--- brooklyn/site/meta/sitemap.html (original)
+++ brooklyn/site/meta/sitemap.html Mon Apr 18 15:27:52 2016
@@ -3046,7 +3046,7 @@ under the License.
 <a id="guide/misc/index.md" name="guide/misc/index.md" href="javascript:void(0);"></a>
 <li>
  
-  <a href="/v/latest/misc/index.html">Other 0.9.0-SNAPSHOT Resources</a>
+  <a href="/v/latest/misc/index.html">Other 0.10.0-SNAPSHOT Resources</a>
   
    
    <ul>

Modified: brooklyn/site/meta/versions.html
URL: http://svn.apache.org/viewvc/brooklyn/site/meta/versions.html?rev=1739772&r1=1739771&r2=1739772&view=diff
==============================================================================
--- brooklyn/site/meta/versions.html (original)
+++ brooklyn/site/meta/versions.html Mon Apr 18 15:27:52 2016
@@ -386,7 +386,7 @@ under the License.
   <li><a href="/v/latest/misc/release-notes.html">Release Notes</a></li>
 </ul>
 
-<p>This documentation was generated 12 Apr 2016.</p>
+<p>This documentation was generated 18 Apr 2016.</p>
 
 <h2 id="version-history">Version History</h2>
 

Modified: brooklyn/site/style/js/catalog/common.js
URL: http://svn.apache.org/viewvc/brooklyn/site/style/js/catalog/common.js?rev=1739772&r1=1739771&r2=1739772&view=diff
==============================================================================
--- brooklyn/site/style/js/catalog/common.js (original)
+++ brooklyn/site/style/js/catalog/common.js Mon Apr 18 15:27:52 2016
@@ -74,9 +74,9 @@ var brooklyn = (function ($, _) {
             "<div class='card configKey'>" +
             "<div class='name'><%=name%></div>" +
             "<dl>" +
-            "<dt>description</dt><dd><%=(description||'&nbsp;')%></dd>" +
-            "<dt>value type</dt><dd class='java'><%=(type||'&nbsp;')%></dd>" +
-            "<dt>default value</dt><dd><%=(defaultValue||'&nbsp;')%></dd>" +
+            "<dt>description</dt><dd><% if (typeof description !== 'undefined') { %><%= description %><% } else { %>&nbsp;<% } %></dd>" +
+            "<dt>value type</dt><dd class='java'><% if (typeof type !== 'undefined') { %><%= type %><% } else { %>&nbsp;<% } %></dd>" +
+            "<dt>default value</dt><dd><% if (typeof defaultValue !== 'undefined') { %><%= defaultValue %><% } else { %>&nbsp;<% } %></dd>" +
             "</dl>" +
             "</div>"
         ),
@@ -84,8 +84,8 @@ var brooklyn = (function ($, _) {
             "<div class='card sensor'>" +
             "<div class='name'><%=name%></div>" +
             "<dl>" +
-            "<dt>description</dt><dd><%=(description||'&nbsp;')%></dd>" +
-            "<dt>value type</dt><dd class='java'><%=(type||'&nbsp;')%></dd>" +
+            "<dt>description</dt><dd><% if (typeof description !== 'undefined') { %><%= description %><% } else { %>&nbsp;<% } %></dd>" +
+            "<dt>value type</dt><dd class='java'><% if (typeof type !== 'undefined') { %><%= type %><% } else { %>&nbsp;<% } %></dd>" +
             "</dl>" +
             "</div>"
         ),
@@ -93,8 +93,8 @@ var brooklyn = (function ($, _) {
             "<div class='card effector'>" +
             "<div class='name'><%=name%></div>" +
             "<dl>" +
-            "<dt>description</dt><dd><%=(description||'&nbsp;')%></dd>" +
-            "<dt>return type</dt><dd class='java'><%=(returnType||'&nbsp;')%></dd>" +
+            "<dt>description</dt><dd><% if (typeof description !== 'undefined') { %><%= description %><% } else { %>&nbsp;<% } %></dd>" +
+            "<dt>return type</dt><dd class='java'><% if (typeof returnType !== 'undefined') { %><%= returnType %><% } else { %>&nbsp;<% } %></dd>" +
             "</dl>" +
             "</div>"
         )

Modified: brooklyn/site/style/js/catalog/items.js
URL: http://svn.apache.org/viewvc/brooklyn/site/style/js/catalog/items.js?rev=1739772&r1=1739771&r2=1739772&view=diff
==============================================================================
--- brooklyn/site/style/js/catalog/items.js (original)
+++ brooklyn/site/style/js/catalog/items.js Mon Apr 18 15:27:52 2016
@@ -355,7 +355,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -823,7 +823,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -1285,13 +1285,13 @@ var items = {
       "name" : "dynamiccluster.zone.failureDetector",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$ZoneFailureDetector",
       "description" : "Zone failure detector",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@689817c4",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@30053097",
       "reconfigurable" : false
     }, {
       "name" : "dynamiccluster.zone.placementStrategy",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$NodePlacementStrategy",
       "description" : "Node placement strategy",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@b75e00a",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@562ce6ad",
       "reconfigurable" : false
     }, {
       "name" : "enricher.service_state.children_and_members.quorum.running",
@@ -2050,7 +2050,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -2784,7 +2784,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -3374,7 +3374,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -4034,7 +4034,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -4839,13 +4839,13 @@ var items = {
       "name" : "dynamiccluster.zone.failureDetector",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$ZoneFailureDetector",
       "description" : "Zone failure detector",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@689817c4",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@30053097",
       "reconfigurable" : false
     }, {
       "name" : "dynamiccluster.zone.placementStrategy",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$NodePlacementStrategy",
       "description" : "Node placement strategy",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@b75e00a",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@562ce6ad",
       "reconfigurable" : false
     }, {
       "name" : "enricher.service_state.children_and_members.quorum.running",
@@ -5409,7 +5409,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -6036,7 +6036,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -6369,13 +6369,13 @@ var items = {
       "name" : "dynamiccluster.zone.failureDetector",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$ZoneFailureDetector",
       "description" : "Zone failure detector",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@689817c4",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@30053097",
       "reconfigurable" : false
     }, {
       "name" : "dynamiccluster.zone.placementStrategy",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$NodePlacementStrategy",
       "description" : "Node placement strategy",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@b75e00a",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@562ce6ad",
       "reconfigurable" : false
     }, {
       "name" : "enricher.service_state.children_and_members.quorum.running",
@@ -6814,13 +6814,13 @@ var items = {
       "name" : "dynamiccluster.zone.failureDetector",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$ZoneFailureDetector",
       "description" : "Zone failure detector",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@689817c4",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@30053097",
       "reconfigurable" : false
     }, {
       "name" : "dynamiccluster.zone.placementStrategy",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$NodePlacementStrategy",
       "description" : "Node placement strategy",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@b75e00a",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@562ce6ad",
       "reconfigurable" : false
     }, {
       "name" : "elasticsearch.cluster.name",
@@ -7241,7 +7241,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -7523,13 +7523,13 @@ var items = {
       "name" : "dynamiccluster.zone.failureDetector",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$ZoneFailureDetector",
       "description" : "Zone failure detector",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@689817c4",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@30053097",
       "reconfigurable" : false
     }, {
       "name" : "dynamiccluster.zone.placementStrategy",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$NodePlacementStrategy",
       "description" : "Node placement strategy",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@b75e00a",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@562ce6ad",
       "reconfigurable" : false
     }, {
       "name" : "enricher.service_state.children_and_members.quorum.running",
@@ -8074,7 +8074,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -8626,7 +8626,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -9217,7 +9217,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -9918,7 +9918,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -10668,7 +10668,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -11162,7 +11162,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -11646,7 +11646,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -12092,7 +12092,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -12551,7 +12551,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -12829,13 +12829,13 @@ var items = {
       "name" : "mongodb.configserver.spec",
       "type" : "org.apache.brooklyn.api.entity.EntitySpec",
       "description" : "Spec for Config Server instances",
-      "defaultValue" : "EntitySpec{type=interface org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBConfigServer}@6cc3881f",
+      "defaultValue" : "EntitySpec{type=interface org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBConfigServer}@1e697ad2",
       "reconfigurable" : false
     }, {
       "name" : "mongodb.replicaset.spec",
       "type" : "org.apache.brooklyn.api.entity.EntitySpec",
       "description" : "Spec for Replica Set",
-      "defaultValue" : "EntitySpec{type=interface org.apache.brooklyn.entity.nosql.mongodb.MongoDBReplicaSet}@7922a52f",
+      "defaultValue" : "EntitySpec{type=interface org.apache.brooklyn.entity.nosql.mongodb.MongoDBReplicaSet}@56ac4966",
       "reconfigurable" : false
     }, {
       "name" : "mongodb.router.cluster.initial.size",
@@ -12847,7 +12847,7 @@ var items = {
       "name" : "mongodb.router.spec",
       "type" : "org.apache.brooklyn.api.entity.EntitySpec",
       "description" : "Spec for Router instances",
-      "defaultValue" : "EntitySpec{type=interface org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBRouter}@191de302",
+      "defaultValue" : "EntitySpec{type=interface org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBRouter}@1efe8097",
       "reconfigurable" : false
     }, {
       "name" : "mongodb.router.up.timeout",
@@ -13137,7 +13137,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -13374,13 +13374,13 @@ var items = {
       "name" : "dynamiccluster.zone.failureDetector",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$ZoneFailureDetector",
       "description" : "Zone failure detector",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@689817c4",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@30053097",
       "reconfigurable" : false
     }, {
       "name" : "dynamiccluster.zone.placementStrategy",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$NodePlacementStrategy",
       "description" : "Node placement strategy",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@b75e00a",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@562ce6ad",
       "reconfigurable" : false
     }, {
       "name" : "enricher.service_state.children_and_members.quorum.running",
@@ -13896,7 +13896,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -14290,7 +14290,7 @@ var items = {
       "name" : "nginx.config.generator",
       "type" : "org.apache.brooklyn.entity.proxy.nginx.NginxConfigFileGenerator",
       "description" : "The server.conf generator class",
-      "defaultValue" : "org.apache.brooklyn.entity.proxy.nginx.NginxDefaultConfigGenerator@2630210a",
+      "defaultValue" : "org.apache.brooklyn.entity.proxy.nginx.NginxDefaultConfigGenerator@3826f8f7",
       "reconfigurable" : false
     }, {
       "name" : "nginx.config.staticContentArchiveUrl",
@@ -14457,7 +14457,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -14964,7 +14964,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -15490,7 +15490,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -16017,7 +16017,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -16488,7 +16488,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -16921,7 +16921,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -17188,13 +17188,13 @@ var items = {
       "name" : "dynamiccluster.zone.failureDetector",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$ZoneFailureDetector",
       "description" : "Zone failure detector",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@689817c4",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@30053097",
       "reconfigurable" : false
     }, {
       "name" : "dynamiccluster.zone.placementStrategy",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$NodePlacementStrategy",
       "description" : "Node placement strategy",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@b75e00a",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@562ce6ad",
       "reconfigurable" : false
     }, {
       "name" : "enricher.service_state.children_and_members.quorum.running",
@@ -17763,7 +17763,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -18466,7 +18466,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -18889,7 +18889,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -19094,7 +19094,7 @@ var items = {
       "name" : "dynamiccluster.memberspec",
       "type" : "org.apache.brooklyn.api.entity.EntitySpec",
       "description" : "entity spec for creating new cluster members",
-      "defaultValue" : "EntitySpec{type=interface org.apache.brooklyn.entity.machine.MachineEntity}@78016c69",
+      "defaultValue" : "EntitySpec{type=interface org.apache.brooklyn.entity.machine.MachineEntity}@22e41d90",
       "reconfigurable" : false
     }, {
       "name" : "dynamiccluster.numAvailabilityZones",
@@ -19132,13 +19132,13 @@ var items = {
       "name" : "dynamiccluster.zone.failureDetector",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$ZoneFailureDetector",
       "description" : "Zone failure detector",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@689817c4",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@30053097",
       "reconfigurable" : false
     }, {
       "name" : "dynamiccluster.zone.placementStrategy",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$NodePlacementStrategy",
       "description" : "Node placement strategy",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@b75e00a",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@562ce6ad",
       "reconfigurable" : false
     }, {
       "name" : "enricher.service_state.children_and_members.quorum.running",
@@ -19728,7 +19728,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -20331,7 +20331,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -21008,7 +21008,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -21583,7 +21583,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -22060,7 +22060,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -22457,7 +22457,7 @@ var items = {
       "name" : "softwareProcess.lifecycleTasks",
       "type" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks",
       "description" : "An object that handles lifecycle of an entity's associated machine.",
-      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@6ee1d8de",
+      "defaultValue" : "org.apache.brooklyn.entity.software.base.SoftwareProcessDriverLifecycleEffectorTasks@5d59d69c",
       "reconfigurable" : false
     }, {
       "name" : "softwareProcess.maxSensorRebindDelay",
@@ -22743,13 +22743,13 @@ var items = {
       "name" : "dynamiccluster.zone.failureDetector",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$ZoneFailureDetector",
       "description" : "Zone failure detector",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@689817c4",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.ProportionalZoneFailureDetector@30053097",
       "reconfigurable" : false
     }, {
       "name" : "dynamiccluster.zone.placementStrategy",
       "type" : "org.apache.brooklyn.entity.group.DynamicCluster$NodePlacementStrategy",
       "description" : "Node placement strategy",
-      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@b75e00a",
+      "defaultValue" : "org.apache.brooklyn.entity.group.zoneaware.BalancingNodePlacementStrategy@562ce6ad",
       "reconfigurable" : false
     }, {
       "name" : "enricher.service_state.children_and_members.quorum.running",
@@ -22928,7 +22928,7 @@ var items = {
     "config" : [ {
       "name" : "autoscaler.currentSizeOperator",
       "type" : "com.google.common.base.Function",
-      "defaultValue" : "org.apache.brooklyn.policy.autoscaling.AutoScalerPolicy$4@2c243551",
+      "defaultValue" : "org.apache.brooklyn.policy.autoscaling.AutoScalerPolicy$4@30cf0947",
       "reconfigurable" : false
     }, {
       "name" : "autoscaler.entityWithMetric",
@@ -23014,7 +23014,7 @@ var items = {
     }, {
       "name" : "autoscaler.resizeOperator",
       "type" : "org.apache.brooklyn.policy.autoscaling.ResizeOperator",
-      "defaultValue" : "org.apache.brooklyn.policy.autoscaling.AutoScalerPolicy$3@69aef2c7",
+      "defaultValue" : "org.apache.brooklyn.policy.autoscaling.AutoScalerPolicy$3@12c7639d",
       "reconfigurable" : false
     }, {
       "name" : "autoscaler.resizeUpIterationIncrement",
@@ -24093,7 +24093,7 @@ var items = {
       "name" : "imageChooser",
       "type" : "com.google.common.base.Function",
       "description" : "An image chooser function to control which images are preferred",
-      "defaultValue" : "org.apache.brooklyn.location.jclouds.BrooklynImageChooser$ImageChooserFromOrdering@7054365b",
+      "defaultValue" : "org.apache.brooklyn.location.jclouds.BrooklynImageChooser$ImageChooserFromOrdering@77a20d77",
       "reconfigurable" : false
     }, {
       "name" : "imageDescriptionRegex",
@@ -24131,7 +24131,7 @@ var items = {
       "name" : "jclouds.computeServiceRegistry",
       "type" : "org.apache.brooklyn.location.jclouds.ComputeServiceRegistry",
       "description" : "Registry/Factory for creating jclouds ComputeService; default is almost always fine, except where tests want to customize behaviour",
-      "defaultValue" : "org.apache.brooklyn.location.jclouds.ComputeServiceRegistryImpl@70c2754a",
+      "defaultValue" : "org.apache.brooklyn.location.jclouds.ComputeServiceRegistryImpl@5afa1882",
       "reconfigurable" : false
     }, {
       "name" : "jclouds.endpoint",