feat: v1 dbrp commands (#136)
* feat: v1 dbrp commands * fix: fixed the cloud create command * chore: cleanup * fix: updated based on required attrs in swagger * feat: update to latest openapi rev * chore: made dbrps plural consistently * chore: formatting * fix: standardized Default field name and added comments * chore: changed file name for command to singular
This commit is contained in:
@ -53,6 +53,8 @@ type APIClient struct {
|
||||
|
||||
BucketsApi BucketsApi
|
||||
|
||||
DBRPsApi DBRPsApi
|
||||
|
||||
DashboardsApi DashboardsApi
|
||||
|
||||
DeleteApi DeleteApi
|
||||
@ -99,6 +101,7 @@ func NewAPIClient(cfg *Configuration) *APIClient {
|
||||
c.BackupApi = (*BackupApiService)(&c.common)
|
||||
c.BucketSchemasApi = (*BucketSchemasApiService)(&c.common)
|
||||
c.BucketsApi = (*BucketsApiService)(&c.common)
|
||||
c.DBRPsApi = (*DBRPsApiService)(&c.common)
|
||||
c.DashboardsApi = (*DashboardsApiService)(&c.common)
|
||||
c.DeleteApi = (*DeleteApiService)(&c.common)
|
||||
c.HealthApi = (*HealthApiService)(&c.common)
|
||||
|
Reference in New Issue
Block a user