2020-12-17 16:12:07 +00:00
|
|
|
package storagegroup
|
|
|
|
|
|
|
|
import (
|
2023-03-07 13:38:26 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
2020-12-17 16:12:07 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// SearchQuery returns search query to filter
|
|
|
|
// objects with storage group content.
|
|
|
|
func SearchQuery() object.SearchFilters {
|
|
|
|
fs := object.SearchFilters{}
|
|
|
|
fs.AddTypeFilter(object.MatchStringEqual, object.TypeStorageGroup)
|
|
|
|
|
|
|
|
return fs
|
|
|
|
}
|