You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by an...@apache.org on 2017/04/02 02:03:25 UTC

[2/5] libcloud git commit: Fix for documentation

Fix for documentation


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/e8d08aa2
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/e8d08aa2
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/e8d08aa2

Branch: refs/heads/trunk
Commit: e8d08aa2e7f69f2aa96da60151789828a2d02c83
Parents: 3f7a8ce
Author: John Baublitz <jo...@cambridgesemantics.com>
Authored: Tue Nov 29 11:00:18 2016 -0500
Committer: John Baublitz <jo...@cambridgesemantics.com>
Committed: Tue Nov 29 11:00:18 2016 -0500

----------------------------------------------------------------------
 libcloud/compute/drivers/gce.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/e8d08aa2/libcloud/compute/drivers/gce.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/gce.py b/libcloud/compute/drivers/gce.py
index bc09ef6..8261c11 100644
--- a/libcloud/compute/drivers/gce.py
+++ b/libcloud/compute/drivers/gce.py
@@ -4537,6 +4537,11 @@ class GCENodeDriver(NodeDriver):
                                   send/receive non-matching src/dst packets.
         :type     ex_can_ip_forward: ``bool`` or ``None``
 
+        :keyword  ex_preemptible: Defines whether the instance is preemptible.
+                                        (If not supplied, the instance will
+                                         not be preemptible)
+        :type     ex_preemptible: ``bool`` or ``None``
+
         :keyword  ex_disks_gce_struct: Support for passing in the GCE-specific
                                        formatted disks[] structure. No attempt
                                        is made to ensure proper formatting of
@@ -4581,11 +4586,6 @@ class GCENodeDriver(NodeDriver):
         :return:  A list of Node objects for the new nodes.
         :rtype:   ``list`` of :class:`Node`
 
-        :keyword  ex_preemptible: Defines whether the instance is preemptible.
-                                        (If not supplied, the instance will
-                                         not be preemptible)
-        :type     ex_preemptible: ``bool`` or ``None``
-
         """
         if image and ex_disks_gce_struct:
             raise ValueError("Cannot specify both 'image' and "