You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dynamix-golang-sdk/pkg/sdn/routers/gwport/gateaway_port.go

20 lines
382 B

package gwport
// API Actor API for managing SDN routers gateway port
import (
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v12/interfaces"
)
// Structure for creating request to routers gateway port
type GWPort struct {
client interfaces.Caller
}
// Builder for routers gateway port endpoints
func New(client interfaces.Caller) *GWPort {
return &GWPort{
client,
}
}