// Copyright 2023 Harness, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package openapi import ( "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/app/api/usererror" "github.com/harness/gitness/types" "github.com/harness/gitness/types/enum" "github.com/gotidy/ptr" "github.com/swaggest/openapi-go/openapi3" ) type createSpaceRequest struct { space.CreateInput } type spaceRequest struct { Ref string `path:"space_ref"` } type updateSpaceRequest struct { spaceRequest space.UpdateInput } type moveSpaceRequest struct { spaceRequest space.MoveInput } type exportSpaceRequest struct { spaceRequest space.ExportInput } type restoreSpaceRequest struct { spaceRequest space.RestoreInput } var queryParameterSortRepo = openapi3.ParameterOrRef{ Parameter: &openapi3.Parameter{ Name: request.QueryParamSort, In: openapi3.ParameterInQuery, Description: ptr.String("The data by which the repositories are sorted."), Required: ptr.Bool(false), Schema: &openapi3.SchemaOrRef{ Schema: &openapi3.Schema{ Type: ptrSchemaType(openapi3.SchemaTypeString), Default: ptrptr(enum.RepoAttrIdentifier.String()), Enum: []interface{}{ ptr.String(enum.RepoAttrIdentifier.String()), ptr.String(enum.RepoAttrCreated.String()), ptr.String(enum.RepoAttrUpdated.String()), }, }, }, }, } var queryParameterQueryRepo = openapi3.ParameterOrRef{ Parameter: &openapi3.Parameter{ Name: request.QueryParamQuery, In: openapi3.ParameterInQuery, Description: ptr.String("The substring which is used to filter the repositories by their path name."), Required: ptr.Bool(false), Schema: &openapi3.SchemaOrRef{ Schema: &openapi3.Schema{ Type: ptrSchemaType(openapi3.SchemaTypeString), }, }, }, } var queryParameterRecursive = openapi3.ParameterOrRef{ Parameter: &openapi3.Parameter{ Name: request.QueryParamQuery, In: openapi3.ParameterInQuery, Description: ptr.String("The boolean used to do space recursive op on repos."), Required: ptr.Bool(false), Schema: &openapi3.SchemaOrRef{ Schema: &openapi3.Schema{ Type: ptrSchemaType(openapi3.SchemaTypeBoolean), }, }, }, } var queryParameterSortSpace = openapi3.ParameterOrRef{ Parameter: &openapi3.Parameter{ Name: request.QueryParamSort, In: openapi3.ParameterInQuery, Description: ptr.String("The data by which the spaces are sorted."), Required: ptr.Bool(false), Schema: &openapi3.SchemaOrRef{ Schema: &openapi3.Schema{ Type: ptrSchemaType(openapi3.SchemaTypeString), Default: ptrptr(enum.SpaceAttrIdentifier.String()), Enum: []interface{}{ ptr.String(enum.SpaceAttrIdentifier.String()), ptr.String(enum.SpaceAttrCreated.String()), ptr.String(enum.SpaceAttrUpdated.String()), }, }, }, }, } var queryParameterQuerySpace = openapi3.ParameterOrRef{ Parameter: &openapi3.Parameter{ Name: request.QueryParamQuery, In: openapi3.ParameterInQuery, Description: ptr.String("The substring which is used to filter the spaces by their path name."), Required: ptr.Bool(false), Schema: &openapi3.SchemaOrRef{ Schema: &openapi3.Schema{ Type: ptrSchemaType(openapi3.SchemaTypeString), }, }, }, } var queryParameterMembershipUsers = openapi3.ParameterOrRef{ Parameter: &openapi3.Parameter{ Name: request.QueryParamQuery, In: openapi3.ParameterInQuery, Description: ptr.String("The substring by which the space members are filtered."), Required: ptr.Bool(false), Schema: &openapi3.SchemaOrRef{ Schema: &openapi3.Schema{ Type: ptrSchemaType(openapi3.SchemaTypeString), }, }, }, } var queryParameterSortMembershipUsers = openapi3.ParameterOrRef{ Parameter: &openapi3.Parameter{ Name: request.QueryParamSort, In: openapi3.ParameterInQuery, Description: ptr.String("The field by which the space members are sorted."), Required: ptr.Bool(false), Schema: &openapi3.SchemaOrRef{ Schema: &openapi3.Schema{ Type: ptrSchemaType(openapi3.SchemaTypeString), Default: ptrptr(enum.MembershipUserSortName), Enum: enum.MembershipUserSort("").Enum(), }, }, }, } //nolint:funlen // api spec generation no need for checking func complexity func spaceOperations(reflector *openapi3.Reflector) { opCreate := openapi3.Operation{} opCreate.WithTags("space") opCreate.WithMapOfAnything(map[string]interface{}{"operationId": "createSpace"}) _ = reflector.SetRequest(&opCreate, new(createSpaceRequest), http.MethodPost) _ = reflector.SetJSONResponse(&opCreate, new(types.Space), http.StatusCreated) _ = reflector.SetJSONResponse(&opCreate, new(usererror.Error), http.StatusBadRequest) _ = reflector.SetJSONResponse(&opCreate, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opCreate, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opCreate, new(usererror.Error), http.StatusForbidden) _ = reflector.Spec.AddOperation(http.MethodPost, "/spaces", opCreate) opImport := openapi3.Operation{} opImport.WithTags("space") opImport.WithMapOfAnything(map[string]interface{}{"operationId": "importSpace"}) _ = reflector.SetRequest(&opImport, &struct{ space.ImportInput }{}, http.MethodPost) _ = reflector.SetJSONResponse(&opImport, new(types.Space), http.StatusCreated) _ = reflector.SetJSONResponse(&opImport, new(usererror.Error), http.StatusBadRequest) _ = reflector.SetJSONResponse(&opImport, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opImport, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opImport, new(usererror.Error), http.StatusForbidden) _ = reflector.Spec.AddOperation(http.MethodPost, "/spaces/import", opImport) opImportRepositories := openapi3.Operation{} opImportRepositories.WithTags("space") opImportRepositories.WithMapOfAnything(map[string]interface{}{"operationId": "importSpaceRepositories"}) _ = reflector.SetRequest(&opImportRepositories, &struct{ space.ImportRepositoriesInput }{}, http.MethodPost) _ = reflector.SetJSONResponse(&opImportRepositories, new(space.ImportRepositoriesOutput), http.StatusOK) _ = reflector.SetJSONResponse(&opImportRepositories, new(usererror.Error), http.StatusBadRequest) _ = reflector.SetJSONResponse(&opImportRepositories, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opImportRepositories, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opImportRepositories, new(usererror.Error), http.StatusForbidden) _ = reflector.Spec.AddOperation(http.MethodPost, "/spaces/{space_ref}/import", opImportRepositories) opExport := openapi3.Operation{} opExport.WithTags("space") opExport.WithMapOfAnything(map[string]interface{}{"operationId": "exportSpace"}) _ = reflector.SetRequest(&opExport, new(exportSpaceRequest), http.MethodPost) _ = reflector.SetJSONResponse(&opExport, nil, http.StatusAccepted) _ = reflector.SetJSONResponse(&opExport, new(usererror.Error), http.StatusBadRequest) _ = reflector.SetJSONResponse(&opExport, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opExport, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opExport, new(usererror.Error), http.StatusForbidden) _ = reflector.Spec.AddOperation(http.MethodPost, "/spaces/{space_ref}/export", opExport) opExportProgress := openapi3.Operation{} opExportProgress.WithTags("space") opExportProgress.WithMapOfAnything(map[string]interface{}{"operationId": "exportProgressSpace"}) _ = reflector.SetRequest(&opExportProgress, new(spaceRequest), http.MethodGet) _ = reflector.SetJSONResponse(&opExportProgress, new(space.ExportProgressOutput), http.StatusOK) _ = reflector.SetJSONResponse(&opExportProgress, new(usererror.Error), http.StatusBadRequest) _ = reflector.SetJSONResponse(&opExportProgress, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opExportProgress, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opExportProgress, new(usererror.Error), http.StatusForbidden) _ = reflector.Spec.AddOperation(http.MethodGet, "/spaces/{space_ref}/export-progress", opExportProgress) opGet := openapi3.Operation{} opGet.WithTags("space") opGet.WithMapOfAnything(map[string]interface{}{"operationId": "getSpace"}) _ = reflector.SetRequest(&opGet, new(spaceRequest), http.MethodGet) _ = reflector.SetJSONResponse(&opGet, new(types.Space), http.StatusOK) _ = reflector.SetJSONResponse(&opGet, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opGet, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opGet, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opGet, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodGet, "/spaces/{space_ref}", opGet) opUpdate := openapi3.Operation{} opUpdate.WithTags("space") opUpdate.WithMapOfAnything(map[string]interface{}{"operationId": "updateSpace"}) _ = reflector.SetRequest(&opUpdate, new(updateSpaceRequest), http.MethodPatch) _ = reflector.SetJSONResponse(&opUpdate, new(types.Space), http.StatusOK) _ = reflector.SetJSONResponse(&opUpdate, new(usererror.Error), http.StatusBadRequest) _ = reflector.SetJSONResponse(&opUpdate, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opUpdate, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opUpdate, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opUpdate, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodPatch, "/spaces/{space_ref}", opUpdate) opDelete := openapi3.Operation{} opDelete.WithTags("space") opDelete.WithMapOfAnything(map[string]interface{}{"operationId": "deleteSpace"}) _ = reflector.SetRequest(&opDelete, new(spaceRequest), http.MethodDelete) _ = reflector.SetJSONResponse(&opDelete, new(space.SoftDeleteResponse), http.StatusOK) _ = reflector.SetJSONResponse(&opDelete, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opDelete, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opDelete, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opDelete, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodDelete, "/spaces/{space_ref}", opDelete) opPurge := openapi3.Operation{} opPurge.WithTags("space") opPurge.WithMapOfAnything(map[string]interface{}{"operationId": "purgeSpace"}) opPurge.WithParameters(queryParameterDeletedAt) _ = reflector.SetRequest(&opPurge, new(spaceRequest), http.MethodPost) _ = reflector.SetJSONResponse(&opPurge, nil, http.StatusNoContent) _ = reflector.SetJSONResponse(&opPurge, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opPurge, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opPurge, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opPurge, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodPost, "/spaces/{space_ref}/purge", opPurge) opRestore := openapi3.Operation{} opRestore.WithTags("space") opRestore.WithMapOfAnything(map[string]interface{}{"operationId": "restoreSpace"}) opRestore.WithParameters(queryParameterDeletedAt) _ = reflector.SetRequest(&opRestore, new(restoreSpaceRequest), http.MethodPost) _ = reflector.SetJSONResponse(&opRestore, new(types.Space), http.StatusOK) _ = reflector.SetJSONResponse(&opRestore, new(usererror.Error), http.StatusBadRequest) _ = reflector.SetJSONResponse(&opRestore, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opRestore, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opRestore, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opRestore, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodPost, "/spaces/{space_ref}/restore", opRestore) opMove := openapi3.Operation{} opMove.WithTags("space") opMove.WithMapOfAnything(map[string]interface{}{"operationId": "moveSpace"}) _ = reflector.SetRequest(&opMove, new(moveSpaceRequest), http.MethodPost) _ = reflector.SetJSONResponse(&opMove, new(types.Space), http.StatusOK) _ = reflector.SetJSONResponse(&opMove, new(usererror.Error), http.StatusBadRequest) _ = reflector.SetJSONResponse(&opMove, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opMove, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opMove, new(usererror.Error), http.StatusForbidden) _ = reflector.Spec.AddOperation(http.MethodPost, "/spaces/{space_ref}/move", opMove) opSpaces := openapi3.Operation{} opSpaces.WithTags("space") opSpaces.WithMapOfAnything(map[string]interface{}{"operationId": "listSpaces"}) opSpaces.WithParameters(queryParameterPage, queryParameterLimit) opSpaces.WithParameters(queryParameterQuerySpace, queryParameterSortSpace, queryParameterOrder, queryParameterPage, queryParameterLimit) _ = reflector.SetRequest(&opSpaces, new(spaceRequest), http.MethodGet) _ = reflector.SetJSONResponse(&opSpaces, []types.Space{}, http.StatusOK) _ = reflector.SetJSONResponse(&opSpaces, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opSpaces, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opSpaces, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opSpaces, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodGet, "/spaces/{space_ref}/spaces", opSpaces) opRepos := openapi3.Operation{} opRepos.WithTags("space") opRepos.WithMapOfAnything(map[string]interface{}{"operationId": "listRepos"}) opRepos.WithParameters(queryParameterQueryRepo, queryParameterSortRepo, queryParameterOrder, queryParameterPage, queryParameterLimit, queryParameterRecursive) _ = reflector.SetRequest(&opRepos, new(spaceRequest), http.MethodGet) _ = reflector.SetJSONResponse(&opRepos, []types.Repository{}, http.StatusOK) _ = reflector.SetJSONResponse(&opRepos, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opRepos, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opRepos, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opRepos, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodGet, "/spaces/{space_ref}/repos", opRepos) opTemplates := openapi3.Operation{} opTemplates.WithTags("space") opTemplates.WithMapOfAnything(map[string]interface{}{"operationId": "listTemplates"}) opTemplates.WithParameters(queryParameterQueryRepo, queryParameterPage, queryParameterLimit) _ = reflector.SetRequest(&opTemplates, new(spaceRequest), http.MethodGet) _ = reflector.SetJSONResponse(&opTemplates, []types.Template{}, http.StatusOK) _ = reflector.SetJSONResponse(&opTemplates, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opTemplates, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opTemplates, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opTemplates, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodGet, "/spaces/{space_ref}/templates", opTemplates) opConnectors := openapi3.Operation{} opConnectors.WithTags("space") opConnectors.WithMapOfAnything(map[string]interface{}{"operationId": "listConnectors"}) opConnectors.WithParameters(queryParameterQueryRepo, queryParameterPage, queryParameterLimit) _ = reflector.SetRequest(&opConnectors, new(spaceRequest), http.MethodGet) _ = reflector.SetJSONResponse(&opConnectors, []types.Connector{}, http.StatusOK) _ = reflector.SetJSONResponse(&opConnectors, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opConnectors, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opConnectors, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opConnectors, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodGet, "/spaces/{space_ref}/connectors", opConnectors) opSecrets := openapi3.Operation{} opSecrets.WithTags("space") opSecrets.WithMapOfAnything(map[string]interface{}{"operationId": "listSecrets"}) opSecrets.WithParameters(queryParameterQueryRepo, queryParameterPage, queryParameterLimit) _ = reflector.SetRequest(&opSecrets, new(spaceRequest), http.MethodGet) _ = reflector.SetJSONResponse(&opSecrets, []types.Secret{}, http.StatusOK) _ = reflector.SetJSONResponse(&opSecrets, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opSecrets, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opSecrets, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opSecrets, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodGet, "/spaces/{space_ref}/secrets", opSecrets) opServiceAccounts := openapi3.Operation{} opServiceAccounts.WithTags("space") opServiceAccounts.WithMapOfAnything(map[string]interface{}{"operationId": "listServiceAccounts"}) _ = reflector.SetRequest(&opServiceAccounts, new(spaceRequest), http.MethodGet) _ = reflector.SetJSONResponse(&opServiceAccounts, []types.ServiceAccount{}, http.StatusOK) _ = reflector.SetJSONResponse(&opServiceAccounts, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opServiceAccounts, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opServiceAccounts, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opServiceAccounts, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodGet, "/spaces/{space_ref}/service-accounts", opServiceAccounts) opMembershipAdd := openapi3.Operation{} opMembershipAdd.WithTags("space") opMembershipAdd.WithMapOfAnything(map[string]interface{}{"operationId": "membershipAdd"}) _ = reflector.SetRequest(&opMembershipAdd, struct { spaceRequest space.MembershipAddInput }{}, http.MethodPost) _ = reflector.SetJSONResponse(&opMembershipAdd, &types.MembershipUser{}, http.StatusCreated) _ = reflector.SetJSONResponse(&opMembershipAdd, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opMembershipAdd, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opMembershipAdd, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opMembershipAdd, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodPost, "/spaces/{space_ref}/members", opMembershipAdd) opMembershipDelete := openapi3.Operation{} opMembershipDelete.WithTags("space") opMembershipDelete.WithMapOfAnything(map[string]interface{}{"operationId": "membershipDelete"}) _ = reflector.SetRequest(&opMembershipDelete, struct { spaceRequest UserUID string `path:"user_uid"` }{}, http.MethodDelete) _ = reflector.SetJSONResponse(&opMembershipDelete, nil, http.StatusNoContent) _ = reflector.SetJSONResponse(&opMembershipDelete, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opMembershipDelete, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opMembershipDelete, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opMembershipDelete, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodDelete, "/spaces/{space_ref}/members/{user_uid}", opMembershipDelete) opMembershipUpdate := openapi3.Operation{} opMembershipUpdate.WithTags("space") opMembershipUpdate.WithMapOfAnything(map[string]interface{}{"operationId": "membershipUpdate"}) _ = reflector.SetRequest(&opMembershipUpdate, &struct { spaceRequest UserUID string `path:"user_uid"` space.MembershipUpdateInput }{}, http.MethodPatch) _ = reflector.SetJSONResponse(&opMembershipUpdate, &types.MembershipUser{}, http.StatusOK) _ = reflector.SetJSONResponse(&opMembershipUpdate, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opMembershipUpdate, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opMembershipUpdate, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opMembershipUpdate, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodPatch, "/spaces/{space_ref}/members/{user_uid}", opMembershipUpdate) opMembershipList := openapi3.Operation{} opMembershipList.WithTags("space") opMembershipList.WithMapOfAnything(map[string]interface{}{"operationId": "membershipList"}) opMembershipList.WithParameters( queryParameterMembershipUsers, queryParameterOrder, queryParameterSortMembershipUsers, queryParameterPage, queryParameterLimit) _ = reflector.SetRequest(&opMembershipList, &struct { spaceRequest }{}, http.MethodGet) _ = reflector.SetJSONResponse(&opMembershipList, []types.MembershipUser{}, http.StatusOK) _ = reflector.SetJSONResponse(&opMembershipList, new(usererror.Error), http.StatusInternalServerError) _ = reflector.SetJSONResponse(&opMembershipList, new(usererror.Error), http.StatusUnauthorized) _ = reflector.SetJSONResponse(&opMembershipList, new(usererror.Error), http.StatusForbidden) _ = reflector.SetJSONResponse(&opMembershipList, new(usererror.Error), http.StatusNotFound) _ = reflector.Spec.AddOperation(http.MethodGet, "/spaces/{space_ref}/members", opMembershipList) }