Drop root from namespace definition #20

Merged
fyrchik merged 1 commit from dstepanov-yadro/policy-engine:fix/drop_root into master 2023-11-15 11:41:28 +00:00

View file

@ -13,17 +13,17 @@ const (
ResourceFormatNamespaceContainerObjects = "native:object/%s/%s/*"
ResourceFormatNamespaceContainerObject = "native:object/%s/%s/%s"
ResourceFormatRootObjects = "native:object/root/*"
ResourceFormatRootContainerObjects = "native:object/root/%s/*"
ResourceFormatRootContainerObject = "native:object/root/%s/%s"
ResourceFormatRootObjects = "native:object//*"
ResourceFormatRootContainerObjects = "native:object//%s/*"
ResourceFormatRootContainerObject = "native:object//%s/%s"
ResourceFormatAllObjects = "native:object/*"
ResourceFormatNamespaceContainer = "native:container/%s/%s"
ResourceFormatNamespaceContainers = "native:container/%s/*"
ResourceFormatRootContainer = "native:container/root/%s"
ResourceFormatRootContainers = "native:container/root/*"
ResourceFormatRootContainer = "native:container//%s"
ResourceFormatRootContainers = "native:container//*"
ResourceFormatAllContainers = "native:container/*"