v0.0.9 | Add Load Balancer API
All checks were successful
Build And Test / build-and-push (push) Successful in 53s

- 로드밸런서 CRUD API 추가
- 리스너, 풀, 멤버, 헬스 모니터 API 추가
- L7 정책/룰, IP ACL 그룹/타깃 API 추가
- 쿼타 조회 API 추가

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-16 11:14:03 +09:00
parent 57526a0f13
commit 7136e76d63
9 changed files with 2658 additions and 1 deletions

View File

@ -33,6 +33,9 @@ class AsyncTask(models.Model):
# Storage
STORAGE_CREATE = "storage_create", "스토리지 컨테이너 생성"
STORAGE_DELETE = "storage_delete", "스토리지 컨테이너 삭제"
# Load Balancer
LB_CREATE = "lb_create", "로드밸런서 생성"
LB_DELETE = "lb_delete", "로드밸런서 삭제"
id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
task_type = models.CharField(max_length=50, choices=TaskType.choices)