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

@ -4,6 +4,7 @@ from .vpc import ApiVpc
from .nks import ApiNks
from .storage import ApiStorageObject
from .dnsplus import ApiDnsPlus
from .loadbalancer import ApiLoadBalancer
__all__ = [
"NHNCloudToken",
@ -12,4 +13,5 @@ __all__ = [
"ApiNks",
"ApiStorageObject",
"ApiDnsPlus",
"ApiLoadBalancer",
]