feat: all-access and operator token from CLI (#285)
* chore: include enum values in openapi generated code * chore: add enum template to list of template overrides * chore: update template and generated code * feat: generate permissions list from openapi spec * feat: all-access and operator token from CLI Closes #22510 * fix: cloud fixed the resources endpoint * fix: all access and operator permissions cannot be composed * fix: review comments from dan-moran
This commit is contained in:
@ -72,6 +72,8 @@ type APIClient struct {
|
||||
|
||||
ReplicationsApi ReplicationsApi
|
||||
|
||||
ResourceListApi ResourceListApi
|
||||
|
||||
RestoreApi RestoreApi
|
||||
|
||||
SecretsApi SecretsApi
|
||||
@ -122,6 +124,7 @@ func NewAPIClient(cfg *Configuration) *APIClient {
|
||||
c.QueryApi = (*QueryApiService)(&c.common)
|
||||
c.RemoteConnectionsApi = (*RemoteConnectionsApiService)(&c.common)
|
||||
c.ReplicationsApi = (*ReplicationsApiService)(&c.common)
|
||||
c.ResourceListApi = (*ResourceListApiService)(&c.common)
|
||||
c.RestoreApi = (*RestoreApiService)(&c.common)
|
||||
c.SecretsApi = (*SecretsApiService)(&c.common)
|
||||
c.SetupApi = (*SetupApiService)(&c.common)
|
||||
|
Reference in New Issue
Block a user