feat: add server-config command (#346)

* feat: added server-config command

* chore: update openapi to latest
This commit is contained in:
William Baker
2021-12-23 09:32:31 -05:00
committed by GitHub
parent 68ac116959
commit 178c7546b1
8 changed files with 449 additions and 1 deletions

View File

@ -54,6 +54,8 @@ type APIClient struct {
BucketsApi BucketsApi
ConfigApi ConfigApi
DBRPsApi DBRPsApi
DashboardsApi DashboardsApi
@ -115,6 +117,7 @@ func NewAPIClient(cfg *Configuration) *APIClient {
c.BackupApi = (*BackupApiService)(&c.common)
c.BucketSchemasApi = (*BucketSchemasApiService)(&c.common)
c.BucketsApi = (*BucketsApiService)(&c.common)
c.ConfigApi = (*ConfigApiService)(&c.common)
c.DBRPsApi = (*DBRPsApiService)(&c.common)
c.DashboardsApi = (*DashboardsApiService)(&c.common)
c.DeleteApi = (*DeleteApiService)(&c.common)