2019-07-17 14:58:39 +00:00
|
|
|
import click
|
|
|
|
import json
|
|
|
|
import requests
|
|
|
|
|
|
|
|
from decouple import config
|
2019-07-18 13:59:57 +00:00
|
|
|
from .helper import OTPCredentials
|
2019-07-17 14:58:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
@click.group()
|
|
|
|
def image():
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
@image.command("list")
|
|
|
|
@click.option("--public", is_flag=True)
|
|
|
|
@click.option("--private", is_flag=True)
|
|
|
|
def list(public, private):
|
|
|
|
if public:
|
|
|
|
r = requests.get(f"{config('UCLOUD_API_SERVER')}/image/list-public")
|
|
|
|
print(json.loads(r.content))
|
|
|
|
|
|
|
|
|
|
|
|
@image.command("create-from-file")
|
|
|
|
@click.option("--name", required=True)
|
|
|
|
@click.option("--uuid", required=True)
|
|
|
|
@click.option("--image_store_name", required=True)
|
|
|
|
def create_from_file(name, uuid, image_store_name):
|
|
|
|
data = {"name": name, "uuid": uuid, "image_store": image_store_name}
|
2019-08-01 10:05:38 +00:00
|
|
|
r = requests.post(f"{config('UCLOUD_API_SERVER')}/image/create", json=data)
|
2019-07-17 14:58:39 +00:00
|
|
|
print(r.content.decode("utf-8"))
|