mirror of
https://github.com/ThomasGsp/HyperProxmox.git
synced 2025-02-14 20:22:13 +00:00
Update mapping API for clusters, disks and sto
This commit is contained in:
parent
413e79315a
commit
dc65633f4d
1 changed files with 19 additions and 2 deletions
|
@ -90,18 +90,35 @@ if __name__ == "__main__":
|
|||
'/api/v1/administration/cluster/new', 'Cluster',
|
||||
|
||||
# CACHE DATA (MONGO)
|
||||
|
||||
# date/cluster/node/vmid
|
||||
|
||||
# Cluster mapping
|
||||
'/api/v1/static/(cluster)/([0-9]+)/', 'QueryCache_Infra',
|
||||
|
||||
# Disks mapping
|
||||
'/api/v1/static/(disks)/([0-9]+)/([0-9a-zA-Z]+)/([0-9a-zA-Z]+)/([0-9]+)', 'QueryCache_Infra',
|
||||
'/api/v1/static/(disks)/([0-9]+)/([0-9a-zA-Z]+)/([0-9a-zA-Z]+)/', 'QueryCache_Infra',
|
||||
'/api/v1/static/(disks)/([0-9]+)/([0-9a-zA-Z]+)/', 'QueryCache_Infra',
|
||||
'/api/v1/static/(disks)/([0-9]+)/', 'QueryCache_Infra',
|
||||
|
||||
# Storages mapping
|
||||
'/api/v1/static/(storages)/([0-9]+)/([0-9a-zA-Z]+)/([0-9a-zA-Z]+)/', 'QueryCache_Infra',
|
||||
'/api/v1/static/(storages)/([0-9]+)/([0-9a-zA-Z]+)/', 'QueryCache_Infra',
|
||||
'/api/v1/static/(storages)/([0-9]+)/', 'QueryCache_Infra',
|
||||
|
||||
# Instances mapping
|
||||
'/api/v1/static/(instances)/([0-9]+)/([0-9a-zA-Z]+)/([0-9a-zA-Z]+)/([0-9]+)', 'QueryCache_Infra',
|
||||
'/api/v1/static/(instances)/([0-9]+)/([0-9a-zA-Z]+)/([0-9a-zA-Z]+)/', 'QueryCache_Infra',
|
||||
'/api/v1/static/(instances)/([0-9]+)/([0-9a-zA-Z]+)/', 'QueryCache_Infra',
|
||||
'/api/v1/static/(instances)/([0-9]+)/', 'QueryCache_Infra',
|
||||
|
||||
# date/cluster/node
|
||||
# Nodes mapping
|
||||
'/api/v1/static/(nodes)/([0-9]+)/([0-9a-zA-Z]+)/([0-9a-zA-Z]+)', 'QueryCache_Infra',
|
||||
'/api/v1/static/(nodes)/([0-9]+)/([0-9a-zA-Z]+)/', 'QueryCache_Infra',
|
||||
'/api/v1/static/(nodes)/([0-9]+)/', 'QueryCache_Infra',
|
||||
|
||||
# cluster
|
||||
# cluster mapping
|
||||
'/api/v1/static/(clusters)/([0-9]+)/(?:[0-9a-zA-Z]+)', 'QueryCache_Infra',
|
||||
'/api/v1/static/(clusters)/([0-9]+)/', 'QueryCache_Infra',
|
||||
|
||||
|
|
Loading…
Reference in a new issue