cephfs.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Copyright 2019 Yunion
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package cephfs
  15. type SCephFS struct {
  16. Id string
  17. Mdsmap struct {
  18. Epoch int
  19. Flags int
  20. EverAllowedFeatures int
  21. ExplicitlyAllowedFeatures int
  22. SessionTimeout int
  23. SessionAutoclose int
  24. MaxFileSize int64
  25. Created string
  26. Enabled bool
  27. FsName string
  28. }
  29. }
  30. func (cli *SCephFSClient) GetCephFSs() ([]SCephFS, error) {
  31. resp, err := cli.list("cephfs", nil)
  32. if err != nil {
  33. return nil, err
  34. }
  35. ret := []SCephFS{}
  36. err = resp.Unmarshal(&ret)
  37. if err != nil {
  38. return nil, err
  39. }
  40. return ret, nil
  41. }