feat: added functionality for remote create subcommand (#268)

* feat: implement remote create subcommand

* chore: generate mocks for testing remote command

* refactor: separated out test code, made small changes to remote create code

* chore: ran make fmt

* chore: removed excess print statements

* refactor: made changes suggested in code review

* refactor: added name and remote id to printed table
This commit is contained in:
mcfarlm3
2021-09-14 13:03:17 -07:00
committed by GitHub
parent 2d1f3ee3bc
commit dcf9f5bc9a
11 changed files with 2327 additions and 6 deletions

View File

@ -68,6 +68,8 @@ type APIClient struct {
QueryApi QueryApi
RemoteConnectionsApi RemoteConnectionsApi
RestoreApi RestoreApi
SecretsApi SecretsApi
@ -116,6 +118,7 @@ func NewAPIClient(cfg *Configuration) *APIClient {
c.LegacyAuthorizationsApi = (*LegacyAuthorizationsApiService)(&c.common)
c.OrganizationsApi = (*OrganizationsApiService)(&c.common)
c.QueryApi = (*QueryApiService)(&c.common)
c.RemoteConnectionsApi = (*RemoteConnectionsApiService)(&c.common)
c.RestoreApi = (*RestoreApiService)(&c.common)
c.SecretsApi = (*SecretsApiService)(&c.common)
c.SetupApi = (*SetupApiService)(&c.common)