You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

models.go 394 B

12345678910111213141516
  1. package cloudstorage
  2. type ObjectStorage struct {
  3. Manufacturer string `json:"manufacturer"`
  4. Region string `json:"region"`
  5. AK string `json:"access_key_id"`
  6. SK string `json:"secret_access_key"`
  7. Endpoint string `json:"endpoint"`
  8. Bucket string `json:"bucket"`
  9. }
  10. const (
  11. HuaweiCloud = "HuaweiCloud"
  12. AliCloud = "AliCloud"
  13. SugonCloud = "SugonCloud"
  14. )