v0.0.9 | Add Load Balancer API
All checks were successful
Build And Test / build-and-push (push) Successful in 53s
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:
18
nhn/migrations/0002_alter_asynctask_task_type.py
Normal file
18
nhn/migrations/0002_alter_asynctask_task_type.py
Normal file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.2.14 on 2026-01-15 14:35
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('nhn', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='asynctask',
|
||||
name='task_type',
|
||||
field=models.CharField(choices=[('instance_create', '인스턴스 생성'), ('instance_delete', '인스턴스 삭제'), ('instance_action', '인스턴스 액션'), ('vpc_create', 'VPC 생성'), ('vpc_delete', 'VPC 삭제'), ('subnet_create', '서브넷 생성'), ('subnet_delete', '서브넷 삭제'), ('nks_create', 'NKS 클러스터 생성'), ('nks_delete', 'NKS 클러스터 삭제'), ('storage_create', '스토리지 컨테이너 생성'), ('storage_delete', '스토리지 컨테이너 삭제'), ('lb_create', '로드밸런서 생성'), ('lb_delete', '로드밸런서 삭제')], max_length=50),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user