add tenant to bucket struct field

This commit is contained in:
Dmitry Kvashnin 2023-07-07 05:37:39 +03:00 committed by mergify[bot]
parent 5afbdd6299
commit 68fa49b272
1 changed files with 1 additions and 0 deletions

View File

@ -11,6 +11,7 @@ import (
type Bucket struct { type Bucket struct {
Bucket string `json:"bucket" url:"bucket"` Bucket string `json:"bucket" url:"bucket"`
NumShards *uint64 `json:"num_shards"` NumShards *uint64 `json:"num_shards"`
Tenant string `json:"tenant"`
Zonegroup string `json:"zonegroup"` Zonegroup string `json:"zonegroup"`
PlacementRule string `json:"placement_rule"` PlacementRule string `json:"placement_rule"`
ExplicitPlacement struct { ExplicitPlacement struct {