Skip to content

Commit

Permalink
Unpublish VPC routers API.
Browse files Browse the repository at this point in the history
We'll get to that in the next PR.
  • Loading branch information
FelixMcFelix committed May 22, 2024
1 parent c7de875 commit 40edbc8
Show file tree
Hide file tree
Showing 3 changed files with 289 additions and 1,394 deletions.
10 changes: 10 additions & 0 deletions nexus/src/external_api/http_entrypoints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5446,6 +5446,7 @@ async fn vpc_firewall_rules_update(
method = GET,
path = "/v1/vpc-routers",
tags = ["vpcs"],
unpublished = true,
}]
async fn vpc_router_list(
rqctx: RequestContext<ApiContext>,
Expand Down Expand Up @@ -5485,6 +5486,7 @@ async fn vpc_router_list(
method = GET,
path = "/v1/vpc-routers/{router}",
tags = ["vpcs"],
unpublished = true,
}]
async fn vpc_router_view(
rqctx: RequestContext<ApiContext>,
Expand Down Expand Up @@ -5518,6 +5520,7 @@ async fn vpc_router_view(
method = POST,
path = "/v1/vpc-routers",
tags = ["vpcs"],
unpublished = true,
}]
async fn vpc_router_create(
rqctx: RequestContext<ApiContext>,
Expand Down Expand Up @@ -5553,6 +5556,7 @@ async fn vpc_router_create(
method = DELETE,
path = "/v1/vpc-routers/{router}",
tags = ["vpcs"],
unpublished = true,
}]
async fn vpc_router_delete(
rqctx: RequestContext<ApiContext>,
Expand Down Expand Up @@ -5586,6 +5590,7 @@ async fn vpc_router_delete(
method = PUT,
path = "/v1/vpc-routers/{router}",
tags = ["vpcs"],
unpublished = true,
}]
async fn vpc_router_update(
rqctx: RequestContext<ApiContext>,
Expand Down Expand Up @@ -5625,6 +5630,7 @@ async fn vpc_router_update(
method = GET,
path = "/v1/vpc-router-routes",
tags = ["vpcs"],
unpublished = true,
}]
async fn vpc_router_route_list(
rqctx: RequestContext<ApiContext>,
Expand Down Expand Up @@ -5666,6 +5672,7 @@ async fn vpc_router_route_list(
method = GET,
path = "/v1/vpc-router-routes/{route}",
tags = ["vpcs"],
unpublished = true,
}]
async fn vpc_router_route_view(
rqctx: RequestContext<ApiContext>,
Expand Down Expand Up @@ -5702,6 +5709,7 @@ async fn vpc_router_route_view(
method = POST,
path = "/v1/vpc-router-routes",
tags = ["vpcs"],
unpublished = true,
}]
async fn vpc_router_route_create(
rqctx: RequestContext<ApiContext>,
Expand Down Expand Up @@ -5737,6 +5745,7 @@ async fn vpc_router_route_create(
method = DELETE,
path = "/v1/vpc-router-routes/{route}",
tags = ["vpcs"],
unpublished = true,
}]
async fn vpc_router_route_delete(
rqctx: RequestContext<ApiContext>,
Expand Down Expand Up @@ -5772,6 +5781,7 @@ async fn vpc_router_route_delete(
method = PUT,
path = "/v1/vpc-router-routes/{route}",
tags = ["vpcs"],
unpublished = true,
}]
async fn vpc_router_route_update(
rqctx: RequestContext<ApiContext>,
Expand Down
10 changes: 0 additions & 10 deletions nexus/tests/output/nexus_tags.txt
Original file line number Diff line number Diff line change
Expand Up @@ -232,16 +232,6 @@ vpc_delete DELETE /v1/vpcs/{vpc}
vpc_firewall_rules_update PUT /v1/vpc-firewall-rules
vpc_firewall_rules_view GET /v1/vpc-firewall-rules
vpc_list GET /v1/vpcs
vpc_router_create POST /v1/vpc-routers
vpc_router_delete DELETE /v1/vpc-routers/{router}
vpc_router_list GET /v1/vpc-routers
vpc_router_route_create POST /v1/vpc-router-routes
vpc_router_route_delete DELETE /v1/vpc-router-routes/{route}
vpc_router_route_list GET /v1/vpc-router-routes
vpc_router_route_update PUT /v1/vpc-router-routes/{route}
vpc_router_route_view GET /v1/vpc-router-routes/{route}
vpc_router_update PUT /v1/vpc-routers/{router}
vpc_router_view GET /v1/vpc-routers/{router}
vpc_subnet_create POST /v1/vpc-subnets
vpc_subnet_delete DELETE /v1/vpc-subnets/{subnet}
vpc_subnet_list GET /v1/vpc-subnets
Expand Down
Loading

0 comments on commit 40edbc8

Please sign in to comment.