v0.0.19 | Internet Gateway / Routing Table 관리 API 추가
All checks were successful
Build And Test / build-and-push (push) Successful in 13s
All checks were successful
Build And Test / build-and-push (push) Successful in 13s
- ApiVpc에 IGW CRUD 추가 (/v2.0/internetgateways, external_network_id 사용) - IGW/RoutingTable/Subnet-attach View 및 URL 신규 (모두 동기) - API_SPEC.md 3.7.1~3.7.8 네트워크 섹션 추가 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
14
nhn/urls.py
14
nhn/urls.py
@ -28,6 +28,20 @@ urlpatterns = [
|
||||
path("subnet/", views.SubnetListView.as_view(), name="subnet-list"),
|
||||
path("subnet/create/", views.SubnetCreateView.as_view(), name="subnet-create"),
|
||||
path("subnet/<str:subnet_id>/", views.SubnetDetailView.as_view(), name="subnet-detail"),
|
||||
path("subnet/<str:subnet_id>/attach-routing-table/", views.SubnetAttachRoutingTableView.as_view(), name="subnet-attach-routing-table"),
|
||||
|
||||
# ==================== Internet Gateway ====================
|
||||
path("internet-gateway/", views.InternetGatewayListView.as_view(), name="internet-gateway-list"),
|
||||
path("internet-gateway/create/", views.InternetGatewayCreateView.as_view(), name="internet-gateway-create"),
|
||||
path("internet-gateway/<str:internetgateway_id>/", views.InternetGatewayDetailView.as_view(), name="internet-gateway-detail"),
|
||||
|
||||
# ==================== Routing Table ====================
|
||||
path("routing-table/", views.RoutingTableListView.as_view(), name="routing-table-list"),
|
||||
path("routing-table/create/", views.RoutingTableCreateView.as_view(), name="routing-table-create"),
|
||||
path("routing-table/<str:routingtable_id>/", views.RoutingTableDetailView.as_view(), name="routing-table-detail"),
|
||||
path("routing-table/<str:routingtable_id>/set-default/", views.RoutingTableSetDefaultView.as_view(), name="routing-table-set-default"),
|
||||
path("routing-table/<str:routingtable_id>/attach-gateway/", views.RoutingTableAttachGatewayView.as_view(), name="routing-table-attach-gateway"),
|
||||
path("routing-table/<str:routingtable_id>/detach-gateway/", views.RoutingTableDetachGatewayView.as_view(), name="routing-table-detach-gateway"),
|
||||
|
||||
# ==================== Floating IP ====================
|
||||
path("floatingip/", views.FloatingIpListView.as_view(), name="floatingip-list"),
|
||||
|
||||
Reference in New Issue
Block a user