feat(scaleway): new Scaleway cloud integration (French vendor)

Scaleway Cloud API, 5 commands: list/get instances, list security groups, list
projects. Secret-key (X-Auth-Token) auth, stdlib-only. py_compile clean.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Guillaume BOURGEOIS
2026-07-12 21:37:31 +02:00
parent d8bb41b4c5
commit 631292fcc7
6 changed files with 319 additions and 0 deletions
@@ -0,0 +1,53 @@
import json, os, sys, urllib.parse, urllib.request, urllib.error
BASE = "https://api.scaleway.com"
def _cfg():
return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}"))
def _inputs():
return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}"))
def _zone(cfg, inputs):
return (inputs.get("zone") if inputs else None) or cfg.get("default_zone") or "fr-par-1"
def request(method, path, cfg, params=None):
url = BASE + path
if params:
clean = {k: v for k, v in params.items() if v not in (None, "")}
if clean:
url += "?" + urllib.parse.urlencode(clean)
headers = {"X-Auth-Token": str(cfg.get("secret_key", "")), "Accept": "application/json"}
req = urllib.request.Request(url, headers=headers, method=method)
with urllib.request.urlopen(req, timeout=60) as r:
raw = r.read()
return json.loads(raw) if raw else {}
def _run(fn):
try:
print(json.dumps(fn(_cfg(), _inputs())))
except urllib.error.HTTPError as e:
print(json.dumps({"error": "HTTP " + str(e.code), "detail": e.read().decode("utf-8", "replace")}))
sys.exit(1)
except Exception as e:
print(json.dumps({"error": str(e)}))
sys.exit(1)
q = lambda v: urllib.parse.quote(str(v), safe="")
def main(cfg, inputs):
server_id = inputs.get("server_id")
if not server_id:
raise Exception("server_id is required")
zone = _zone(cfg, inputs)
return request("GET", "/instance/v1/zones/" + q(zone) + "/servers/" + q(server_id), cfg)
_run(main)