From b951fb4aec1e193519a6ae4a045aeaf046c61ae8 Mon Sep 17 00:00:00 2001 From: Viktor Liu Date: Thu, 23 Jan 2025 18:14:16 +0100 Subject: [PATCH] Use uppercase field name --- management/proto/management.pb.go | 8 ++++---- management/proto/management.proto | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/management/proto/management.pb.go b/management/proto/management.pb.go index 2fc87a0a29e..ae65596758c 100644 --- a/management/proto/management.pb.go +++ b/management/proto/management.pb.go @@ -2624,7 +2624,7 @@ type FirewallRule struct { Action RuleAction `protobuf:"varint,3,opt,name=Action,proto3,enum=management.RuleAction" json:"Action,omitempty"` Protocol RuleProtocol `protobuf:"varint,4,opt,name=Protocol,proto3,enum=management.RuleProtocol" json:"Protocol,omitempty"` Port string `protobuf:"bytes,5,opt,name=Port,proto3" json:"Port,omitempty"` - PortInfo *PortInfo `protobuf:"bytes,6,opt,name=portInfo,proto3" json:"portInfo,omitempty"` + PortInfo *PortInfo `protobuf:"bytes,6,opt,name=PortInfo,proto3" json:"PortInfo,omitempty"` } func (x *FirewallRule) Reset() { @@ -3419,9 +3419,9 @@ var file_management_proto_rawDesc = []byte{ 0x74, 0x2e, 0x52, 0x75, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x52, 0x08, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x50, 0x6f, 0x72, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x30, 0x0a, 0x08, - 0x70, 0x6f, 0x72, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, + 0x50, 0x6f, 0x72, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x50, 0x6f, 0x72, 0x74, - 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x70, 0x6f, 0x72, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x38, + 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x50, 0x6f, 0x72, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x38, 0x0a, 0x0e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x65, 0x74, 0x49, 0x50, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6e, 0x65, 0x74, 0x49, 0x50, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x61, 0x63, 0x18, 0x02, 0x20, @@ -3607,7 +3607,7 @@ var file_management_proto_depIdxs = []int32{ 1, // 39: management.FirewallRule.Direction:type_name -> management.RuleDirection 2, // 40: management.FirewallRule.Action:type_name -> management.RuleAction 0, // 41: management.FirewallRule.Protocol:type_name -> management.RuleProtocol - 40, // 42: management.FirewallRule.portInfo:type_name -> management.PortInfo + 40, // 42: management.FirewallRule.PortInfo:type_name -> management.PortInfo 42, // 43: management.PortInfo.range:type_name -> management.PortInfo.Range 2, // 44: management.RouteFirewallRule.action:type_name -> management.RuleAction 0, // 45: management.RouteFirewallRule.protocol:type_name -> management.RuleProtocol diff --git a/management/proto/management.proto b/management/proto/management.proto index 01330dd485e..9db66ec4d72 100644 --- a/management/proto/management.proto +++ b/management/proto/management.proto @@ -430,7 +430,7 @@ message FirewallRule { RuleAction Action = 3; RuleProtocol Protocol = 4; string Port = 5; - PortInfo portInfo = 6; + PortInfo PortInfo = 6; } message NetworkAddress {