feat: port influx auth command (#152)

This commit is contained in:
Dane Strandboge
2021-06-28 14:06:29 -05:00
committed by GitHub
parent ead44e4e83
commit a058fe7e0b
13 changed files with 2260 additions and 165 deletions

View File

@ -47,6 +47,8 @@ type APIClient struct {
// API Services
AuthorizationsApi AuthorizationsApi
BackupApi BackupApi
BucketSchemasApi BucketSchemasApi
@ -102,6 +104,7 @@ func NewAPIClient(cfg *Configuration) *APIClient {
c.common.client = c
// API Services
c.AuthorizationsApi = (*AuthorizationsApiService)(&c.common)
c.BackupApi = (*BackupApiService)(&c.common)
c.BucketSchemasApi = (*BucketSchemasApiService)(&c.common)
c.BucketsApi = (*BucketsApiService)(&c.common)