summaryrefslogtreecommitdiffstats
path: root/cli/objects
diff options
context:
space:
mode:
Diffstat (limited to 'cli/objects')
-rw-r--r--cli/objects/client.py8
-rw-r--r--cli/objects/disks.py4
-rw-r--r--cli/objects/images.py2
-rw-r--r--cli/objects/scopes.py7
4 files changed, 13 insertions, 8 deletions
diff --git a/cli/objects/client.py b/cli/objects/client.py
index bd84dd8..c250470 100644
--- a/cli/objects/client.py
+++ b/cli/objects/client.py
@@ -7,12 +7,14 @@
import argparse
+from cli.utils import print_json
+
class OgClient():
@staticmethod
def list_clients(rest):
r = rest.get('/clients')
- print(r.text)
+ print_json(r.text)
@staticmethod
def list_client_hardware(rest, args):
@@ -26,7 +28,7 @@ class OgClient():
payload = {'client': parsed_args.client_ip}
r = rest.get('/hardware', payload=payload)
- print(r.text)
+ print_json(r.text)
@staticmethod
def get_client_properties(rest, args):
@@ -39,4 +41,4 @@ class OgClient():
payload = {'client': parsed_args.client_ip}
r = rest.get('/client/info', payload=payload)
- print(r.text)
+ print_json(r.text)
diff --git a/cli/objects/disks.py b/cli/objects/disks.py
index 064a43e..77955fa 100644
--- a/cli/objects/disks.py
+++ b/cli/objects/disks.py
@@ -8,6 +8,8 @@
import argparse
import re
+from cli.utils import print_json
+
class OgDisk():
@staticmethod
@@ -21,7 +23,7 @@ class OgDisk():
payload = {'client': [parsed_args.client_ip]}
r = rest.get('/client/setup', payload=payload)
- print(r.text)
+ print_json(r.text)
@staticmethod
def setup_disk(rest, args):
diff --git a/cli/objects/images.py b/cli/objects/images.py
index c696d53..8299923 100644
--- a/cli/objects/images.py
+++ b/cli/objects/images.py
@@ -15,7 +15,7 @@ class OgImage():
@staticmethod
def list_images(rest):
r = rest.get('/images')
- print(r.text)
+ print_json(r.text)
@staticmethod
def restore_image(rest, args):
diff --git a/cli/objects/scopes.py b/cli/objects/scopes.py
index 3517e43..5383932 100644
--- a/cli/objects/scopes.py
+++ b/cli/objects/scopes.py
@@ -5,12 +5,13 @@
# Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
-import json
+import argparse
+
+from cli.utils import print_json
class OgScope():
@staticmethod
def list_scopes(rest):
r = rest.get('/scopes')
- payload = json.loads(r.text)
- print(json.dumps(payload, sort_keys=True, indent=2))
+ print_json(r.text)