feat: enhanced error messages for cloud and oss specific commands (#347)

* feat: enhanced error messages for cloud and oss specific commands

* chore: rename test
This commit is contained in:
William Baker
2021-12-28 10:03:29 -05:00
committed by GitHub
parent 13d0827815
commit 7af0b2ae73
36 changed files with 1503 additions and 1985 deletions

View File

@ -52,8 +52,8 @@ Examples:
api := getAPI(ctx)
client := backup.Client{
CLI: getCLI(ctx),
BackupApi: api.BackupApi.OnlyOSS(),
HealthApi: api.HealthApi.OnlyOSS(),
BackupApi: api.BackupApi,
HealthApi: api.HealthApi,
}
return client.Backup(getContext(ctx), &params)
},