Files
dynamix-golang-sdk/pkg/cloudapi/stpolicy/storage_policy.go

16 lines
324 B
Go
Raw Normal View History

2025-09-27 01:06:15 +03:00
package stpolicy
2025-12-08 16:30:08 +03:00
import "repository.basistech.ru/BASIS/dynamix-golang-sdk/v13/interfaces"
2025-09-27 01:06:15 +03:00
// Structure for creating request to storage policy
type StPolicy struct {
client interfaces.Caller
}
2025-12-08 16:30:08 +03:00
// Builder for storage policy endpoint
2025-09-27 01:06:15 +03:00
func New(client interfaces.Caller) *StPolicy {
return &StPolicy{
client: client,
}
}