Merge M3 into MCS (#187)

* Merge M3 into MCS

* Fix Linting

* Add missing cluster folder
This commit is contained in:
Daniel Valdivia
2020-07-01 18:03:22 -07:00
committed by GitHub
parent be069eddd5
commit b7614b66d2
125 changed files with 9877 additions and 325 deletions

View File

@@ -61,7 +61,7 @@ func init() {
}
func (m BucketAccess) validateBucketAccessEnum(path, location string, value BucketAccess) error {
if err := validate.Enum(path, location, value, bucketAccessEnum); err != nil {
if err := validate.EnumCase(path, location, value, bucketAccessEnum, true); err != nil {
return err
}
return nil