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:
@ -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)
|
||||
|
Reference in New Issue
Block a user