Browse Source

add reference id to acl policy

abhishek9686 4 months ago
parent
commit
13a05399ee
1 changed files with 1 additions and 0 deletions
  1. 1 0
      models/acl.go

+ 1 - 0
models/acl.go

@@ -92,6 +92,7 @@ type Acl struct {
 	Port             []string                `json:"ports"`
 	AllowedDirection AllowedTrafficDirection `json:"allowed_traffic_direction"`
 	Enabled          bool                    `json:"enabled"`
+	ReferenceID      string                  `json:"reference_id"`
 	CreatedBy        string                  `json:"created_by"`
 	CreatedAt        time.Time               `json:"created_at"`
 }