2025-09-11 15:56:44 +03:00
|
|
|
package secgroup
|
2025-08-29 12:51:25 +03:00
|
|
|
|
|
|
|
|
import "repository.basistech.ru/BASIS/decort-golang-sdk/interfaces"
|
|
|
|
|
|
|
|
|
|
// Structure for creating request to storage policy
|
|
|
|
|
type SecurityGroup struct {
|
|
|
|
|
client interfaces.Caller
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-08 16:16:35 +03:00
|
|
|
// Builder for security policy endpoint
|
2025-08-29 12:51:25 +03:00
|
|
|
func New(client interfaces.Caller) *SecurityGroup {
|
|
|
|
|
return &SecurityGroup{
|
|
|
|
|
client: client,
|
|
|
|
|
}
|
|
|
|
|
}
|