Skip to content

Commit

Permalink
Merge pull request #147 from microsoft/user/nijos/inbound-nat
Browse files Browse the repository at this point in the history
add inbound nat rule
  • Loading branch information
nijosmsft committed Feb 28, 2023
2 parents 482db09 + 01f2d0f commit 9849e25
Show file tree
Hide file tree
Showing 4 changed files with 241 additions and 103 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ message LoadBalancerResponse {
string Error = 3;
}

message LoadbalancerInboundNatRule {
string name = 1;
uint32 frontendPort = 2;
uint32 backendPort = 3;
Protocol protocol = 4;
}

message LoadBalancingRule {
uint32 frontendPort = 1;
uint32 backendPort = 2;
Expand All @@ -39,6 +46,7 @@ message LoadBalancer {
Status status = 10;
Tags tags = 11;
uint32 replicationCount = 12;
repeated LoadbalancerInboundNatRule inboundNatRules = 13;
}

service LoadBalancerAgent {
Expand Down
185 changes: 130 additions & 55 deletions rpc/cloudagent/network/moc_cloudagent_loadbalancer.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9849e25

Please sign in to comment.