24 lines
779 B
Python
24 lines
779 B
Python
from hcloud import Client
|
|
|
|
with open("token.txt", "r") as file:
|
|
api_token = file.read().strip()
|
|
|
|
client = Client(token=api_token)
|
|
|
|
PREFIX = "s478873"
|
|
|
|
servers = client.servers.get_all()
|
|
print(f"Usuwanie {len(servers)} serwerów")
|
|
for s in servers:
|
|
if s.data_model.name.startswith(PREFIX):
|
|
action = client.servers.delete(s)
|
|
print(f"Usuwanie serwera {s.data_model.name} ({s.data_model.public_net.ipv4.ip}): {action.data_model.status}")
|
|
|
|
volumes = client.volumes.get_all()
|
|
print(f"Usuwanie {len(volumes)} wolumenów")
|
|
for v in volumes:
|
|
if s.data_model.name.startswith(PREFIX):
|
|
action = client.volumes.detach(v)
|
|
action.wait_until_finished()
|
|
action = client.volumes.delete(v)
|
|
print(f"\tUsuwanie wolumenu {v.name}: {action}") |