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/cloudapi/stpolicy/storage_policy.go

16 lines
324 B

3 months ago
package stpolicy
2 weeks ago
import "repository.basistech.ru/BASIS/dynamix-golang-sdk/v13/interfaces"
3 months ago
// Structure for creating request to storage policy
type StPolicy struct {
client interfaces.Caller
}
2 weeks ago
// Builder for storage policy endpoint
3 months ago
func New(client interfaces.Caller) *StPolicy {
return &StPolicy{
client: client,
}
}