diff --git a/netmap/types.proto b/netmap/types.proto index fdf5bc7..b76b3c1 100644 --- a/netmap/types.proto +++ b/netmap/types.proto @@ -95,9 +95,6 @@ message Selector { // Filter reference to select from string filter = 5 [ json_name = "filter" ]; - - // Use all nodes from the bucket. - bool wildcard = 6 [ json_name = "wildcard" ]; } // Number of object replicas in a set of nodes from the defined selector. If no diff --git a/object/types.proto b/object/types.proto index f1df067..62a6792 100644 --- a/object/types.proto +++ b/object/types.proto @@ -141,7 +141,8 @@ message Header { // * Name \ // Human-friendly name // * FileName \ - // File name to be associated with the object on saving + // File name to be associated with the object on saving. FileName must not + // contain the delimiting symbol '/'. // * FilePath \ // Full path to be associated with the object on saving. Should start with a // '/' and use '/' as a delimiting symbol. Trailing '/' should be diff --git a/proto-docs/netmap.md b/proto-docs/netmap.md index b6bc53c..b49287c 100644 --- a/proto-docs/netmap.md +++ b/proto-docs/netmap.md @@ -531,7 +531,6 @@ to the provided `ContainerID` by hash distance. | clause | [Clause](#neo.fs.v2.netmap.Clause) | | Selector modifier showing how to form a bucket | | attribute | [string](#string) | | Bucket attribute to select from | | filter | [string](#string) | | Filter reference to select from | -| wildcard | [bool](#bool) | | Use all nodes from the bucket. |