v1.12.9
This commit is contained in:
18
pkg/sdn/secpolicies/rule/rule.go
Normal file
18
pkg/sdn/secpolicies/rule/rule.go
Normal file
@@ -0,0 +1,18 @@
|
||||
// API Actor API for managing SDN security policies rule
|
||||
package rule
|
||||
|
||||
import (
|
||||
"repository.basistech.ru/BASIS/decort-golang-sdk/interfaces"
|
||||
)
|
||||
|
||||
// Structure for creating request to security policies rule
|
||||
type Rule struct {
|
||||
client interfaces.Caller
|
||||
}
|
||||
|
||||
// Builder for security policies rule endpoints
|
||||
func New(client interfaces.Caller) *Rule {
|
||||
return &Rule{
|
||||
client,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user