sdk/resourcemanager/apimanagement/armapimanagement/fake/workspaceapioperation_server.go (426 lines of code) (raw):
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// Code generated by Microsoft (R) AutoRest Code Generator. DO NOT EDIT.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
package fake
import (
"context"
"errors"
"fmt"
azfake "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/to"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/apimanagement/armapimanagement/v3"
"net/http"
"net/url"
"regexp"
"strconv"
)
// WorkspaceAPIOperationServer is a fake server for instances of the armapimanagement.WorkspaceAPIOperationClient type.
type WorkspaceAPIOperationServer struct {
// CreateOrUpdate is the fake for method WorkspaceAPIOperationClient.CreateOrUpdate
// HTTP status codes to indicate success: http.StatusOK, http.StatusCreated
CreateOrUpdate func(ctx context.Context, resourceGroupName string, serviceName string, workspaceID string, apiID string, operationID string, parameters armapimanagement.OperationContract, options *armapimanagement.WorkspaceAPIOperationClientCreateOrUpdateOptions) (resp azfake.Responder[armapimanagement.WorkspaceAPIOperationClientCreateOrUpdateResponse], errResp azfake.ErrorResponder)
// Delete is the fake for method WorkspaceAPIOperationClient.Delete
// HTTP status codes to indicate success: http.StatusOK, http.StatusNoContent
Delete func(ctx context.Context, resourceGroupName string, serviceName string, workspaceID string, apiID string, operationID string, ifMatch string, options *armapimanagement.WorkspaceAPIOperationClientDeleteOptions) (resp azfake.Responder[armapimanagement.WorkspaceAPIOperationClientDeleteResponse], errResp azfake.ErrorResponder)
// Get is the fake for method WorkspaceAPIOperationClient.Get
// HTTP status codes to indicate success: http.StatusOK
Get func(ctx context.Context, resourceGroupName string, serviceName string, workspaceID string, apiID string, operationID string, options *armapimanagement.WorkspaceAPIOperationClientGetOptions) (resp azfake.Responder[armapimanagement.WorkspaceAPIOperationClientGetResponse], errResp azfake.ErrorResponder)
// GetEntityTag is the fake for method WorkspaceAPIOperationClient.GetEntityTag
// HTTP status codes to indicate success: http.StatusOK
GetEntityTag func(ctx context.Context, resourceGroupName string, serviceName string, workspaceID string, apiID string, operationID string, options *armapimanagement.WorkspaceAPIOperationClientGetEntityTagOptions) (resp azfake.Responder[armapimanagement.WorkspaceAPIOperationClientGetEntityTagResponse], errResp azfake.ErrorResponder)
// NewListByAPIPager is the fake for method WorkspaceAPIOperationClient.NewListByAPIPager
// HTTP status codes to indicate success: http.StatusOK
NewListByAPIPager func(resourceGroupName string, serviceName string, workspaceID string, apiID string, options *armapimanagement.WorkspaceAPIOperationClientListByAPIOptions) (resp azfake.PagerResponder[armapimanagement.WorkspaceAPIOperationClientListByAPIResponse])
// Update is the fake for method WorkspaceAPIOperationClient.Update
// HTTP status codes to indicate success: http.StatusOK
Update func(ctx context.Context, resourceGroupName string, serviceName string, workspaceID string, apiID string, operationID string, ifMatch string, parameters armapimanagement.OperationUpdateContract, options *armapimanagement.WorkspaceAPIOperationClientUpdateOptions) (resp azfake.Responder[armapimanagement.WorkspaceAPIOperationClientUpdateResponse], errResp azfake.ErrorResponder)
}
// NewWorkspaceAPIOperationServerTransport creates a new instance of WorkspaceAPIOperationServerTransport with the provided implementation.
// The returned WorkspaceAPIOperationServerTransport instance is connected to an instance of armapimanagement.WorkspaceAPIOperationClient via the
// azcore.ClientOptions.Transporter field in the client's constructor parameters.
func NewWorkspaceAPIOperationServerTransport(srv *WorkspaceAPIOperationServer) *WorkspaceAPIOperationServerTransport {
return &WorkspaceAPIOperationServerTransport{
srv: srv,
newListByAPIPager: newTracker[azfake.PagerResponder[armapimanagement.WorkspaceAPIOperationClientListByAPIResponse]](),
}
}
// WorkspaceAPIOperationServerTransport connects instances of armapimanagement.WorkspaceAPIOperationClient to instances of WorkspaceAPIOperationServer.
// Don't use this type directly, use NewWorkspaceAPIOperationServerTransport instead.
type WorkspaceAPIOperationServerTransport struct {
srv *WorkspaceAPIOperationServer
newListByAPIPager *tracker[azfake.PagerResponder[armapimanagement.WorkspaceAPIOperationClientListByAPIResponse]]
}
// Do implements the policy.Transporter interface for WorkspaceAPIOperationServerTransport.
func (w *WorkspaceAPIOperationServerTransport) Do(req *http.Request) (*http.Response, error) {
rawMethod := req.Context().Value(runtime.CtxAPINameKey{})
method, ok := rawMethod.(string)
if !ok {
return nil, nonRetriableError{errors.New("unable to dispatch request, missing value for CtxAPINameKey")}
}
return w.dispatchToMethodFake(req, method)
}
func (w *WorkspaceAPIOperationServerTransport) dispatchToMethodFake(req *http.Request, method string) (*http.Response, error) {
resultChan := make(chan result)
defer close(resultChan)
go func() {
var intercepted bool
var res result
if workspaceApiOperationServerTransportInterceptor != nil {
res.resp, res.err, intercepted = workspaceApiOperationServerTransportInterceptor.Do(req)
}
if !intercepted {
switch method {
case "WorkspaceAPIOperationClient.CreateOrUpdate":
res.resp, res.err = w.dispatchCreateOrUpdate(req)
case "WorkspaceAPIOperationClient.Delete":
res.resp, res.err = w.dispatchDelete(req)
case "WorkspaceAPIOperationClient.Get":
res.resp, res.err = w.dispatchGet(req)
case "WorkspaceAPIOperationClient.GetEntityTag":
res.resp, res.err = w.dispatchGetEntityTag(req)
case "WorkspaceAPIOperationClient.NewListByAPIPager":
res.resp, res.err = w.dispatchNewListByAPIPager(req)
case "WorkspaceAPIOperationClient.Update":
res.resp, res.err = w.dispatchUpdate(req)
default:
res.err = fmt.Errorf("unhandled API %s", method)
}
}
select {
case resultChan <- res:
case <-req.Context().Done():
}
}()
select {
case <-req.Context().Done():
return nil, req.Context().Err()
case res := <-resultChan:
return res.resp, res.err
}
}
func (w *WorkspaceAPIOperationServerTransport) dispatchCreateOrUpdate(req *http.Request) (*http.Response, error) {
if w.srv.CreateOrUpdate == nil {
return nil, &nonRetriableError{errors.New("fake for method CreateOrUpdate not implemented")}
}
const regexStr = `/subscriptions/(?P<subscriptionId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/resourceGroups/(?P<resourceGroupName>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/providers/Microsoft\.ApiManagement/service/(?P<serviceName>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/workspaces/(?P<workspaceId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/apis/(?P<apiId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/operations/(?P<operationId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)`
regex := regexp.MustCompile(regexStr)
matches := regex.FindStringSubmatch(req.URL.EscapedPath())
if matches == nil || len(matches) < 6 {
return nil, fmt.Errorf("failed to parse path %s", req.URL.Path)
}
body, err := server.UnmarshalRequestAsJSON[armapimanagement.OperationContract](req)
if err != nil {
return nil, err
}
resourceGroupNameParam, err := url.PathUnescape(matches[regex.SubexpIndex("resourceGroupName")])
if err != nil {
return nil, err
}
serviceNameParam, err := url.PathUnescape(matches[regex.SubexpIndex("serviceName")])
if err != nil {
return nil, err
}
workspaceIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("workspaceId")])
if err != nil {
return nil, err
}
apiIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("apiId")])
if err != nil {
return nil, err
}
operationIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("operationId")])
if err != nil {
return nil, err
}
ifMatchParam := getOptional(getHeaderValue(req.Header, "If-Match"))
var options *armapimanagement.WorkspaceAPIOperationClientCreateOrUpdateOptions
if ifMatchParam != nil {
options = &armapimanagement.WorkspaceAPIOperationClientCreateOrUpdateOptions{
IfMatch: ifMatchParam,
}
}
respr, errRespr := w.srv.CreateOrUpdate(req.Context(), resourceGroupNameParam, serviceNameParam, workspaceIDParam, apiIDParam, operationIDParam, body, options)
if respErr := server.GetError(errRespr, req); respErr != nil {
return nil, respErr
}
respContent := server.GetResponseContent(respr)
if !contains([]int{http.StatusOK, http.StatusCreated}, respContent.HTTPStatus) {
return nil, &nonRetriableError{fmt.Errorf("unexpected status code %d. acceptable values are http.StatusOK, http.StatusCreated", respContent.HTTPStatus)}
}
resp, err := server.MarshalResponseAsJSON(respContent, server.GetResponse(respr).OperationContract, req)
if err != nil {
return nil, err
}
if val := server.GetResponse(respr).ETag; val != nil {
resp.Header.Set("ETag", *val)
}
return resp, nil
}
func (w *WorkspaceAPIOperationServerTransport) dispatchDelete(req *http.Request) (*http.Response, error) {
if w.srv.Delete == nil {
return nil, &nonRetriableError{errors.New("fake for method Delete not implemented")}
}
const regexStr = `/subscriptions/(?P<subscriptionId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/resourceGroups/(?P<resourceGroupName>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/providers/Microsoft\.ApiManagement/service/(?P<serviceName>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/workspaces/(?P<workspaceId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/apis/(?P<apiId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/operations/(?P<operationId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)`
regex := regexp.MustCompile(regexStr)
matches := regex.FindStringSubmatch(req.URL.EscapedPath())
if matches == nil || len(matches) < 6 {
return nil, fmt.Errorf("failed to parse path %s", req.URL.Path)
}
resourceGroupNameParam, err := url.PathUnescape(matches[regex.SubexpIndex("resourceGroupName")])
if err != nil {
return nil, err
}
serviceNameParam, err := url.PathUnescape(matches[regex.SubexpIndex("serviceName")])
if err != nil {
return nil, err
}
workspaceIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("workspaceId")])
if err != nil {
return nil, err
}
apiIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("apiId")])
if err != nil {
return nil, err
}
operationIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("operationId")])
if err != nil {
return nil, err
}
respr, errRespr := w.srv.Delete(req.Context(), resourceGroupNameParam, serviceNameParam, workspaceIDParam, apiIDParam, operationIDParam, getHeaderValue(req.Header, "If-Match"), nil)
if respErr := server.GetError(errRespr, req); respErr != nil {
return nil, respErr
}
respContent := server.GetResponseContent(respr)
if !contains([]int{http.StatusOK, http.StatusNoContent}, respContent.HTTPStatus) {
return nil, &nonRetriableError{fmt.Errorf("unexpected status code %d. acceptable values are http.StatusOK, http.StatusNoContent", respContent.HTTPStatus)}
}
resp, err := server.NewResponse(respContent, req, nil)
if err != nil {
return nil, err
}
return resp, nil
}
func (w *WorkspaceAPIOperationServerTransport) dispatchGet(req *http.Request) (*http.Response, error) {
if w.srv.Get == nil {
return nil, &nonRetriableError{errors.New("fake for method Get not implemented")}
}
const regexStr = `/subscriptions/(?P<subscriptionId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/resourceGroups/(?P<resourceGroupName>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/providers/Microsoft\.ApiManagement/service/(?P<serviceName>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/workspaces/(?P<workspaceId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/apis/(?P<apiId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/operations/(?P<operationId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)`
regex := regexp.MustCompile(regexStr)
matches := regex.FindStringSubmatch(req.URL.EscapedPath())
if matches == nil || len(matches) < 6 {
return nil, fmt.Errorf("failed to parse path %s", req.URL.Path)
}
resourceGroupNameParam, err := url.PathUnescape(matches[regex.SubexpIndex("resourceGroupName")])
if err != nil {
return nil, err
}
serviceNameParam, err := url.PathUnescape(matches[regex.SubexpIndex("serviceName")])
if err != nil {
return nil, err
}
workspaceIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("workspaceId")])
if err != nil {
return nil, err
}
apiIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("apiId")])
if err != nil {
return nil, err
}
operationIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("operationId")])
if err != nil {
return nil, err
}
respr, errRespr := w.srv.Get(req.Context(), resourceGroupNameParam, serviceNameParam, workspaceIDParam, apiIDParam, operationIDParam, nil)
if respErr := server.GetError(errRespr, req); respErr != nil {
return nil, respErr
}
respContent := server.GetResponseContent(respr)
if !contains([]int{http.StatusOK}, respContent.HTTPStatus) {
return nil, &nonRetriableError{fmt.Errorf("unexpected status code %d. acceptable values are http.StatusOK", respContent.HTTPStatus)}
}
resp, err := server.MarshalResponseAsJSON(respContent, server.GetResponse(respr).OperationContract, req)
if err != nil {
return nil, err
}
if val := server.GetResponse(respr).ETag; val != nil {
resp.Header.Set("ETag", *val)
}
return resp, nil
}
func (w *WorkspaceAPIOperationServerTransport) dispatchGetEntityTag(req *http.Request) (*http.Response, error) {
if w.srv.GetEntityTag == nil {
return nil, &nonRetriableError{errors.New("fake for method GetEntityTag not implemented")}
}
const regexStr = `/subscriptions/(?P<subscriptionId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/resourceGroups/(?P<resourceGroupName>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/providers/Microsoft\.ApiManagement/service/(?P<serviceName>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/workspaces/(?P<workspaceId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/apis/(?P<apiId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/operations/(?P<operationId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)`
regex := regexp.MustCompile(regexStr)
matches := regex.FindStringSubmatch(req.URL.EscapedPath())
if matches == nil || len(matches) < 6 {
return nil, fmt.Errorf("failed to parse path %s", req.URL.Path)
}
resourceGroupNameParam, err := url.PathUnescape(matches[regex.SubexpIndex("resourceGroupName")])
if err != nil {
return nil, err
}
serviceNameParam, err := url.PathUnescape(matches[regex.SubexpIndex("serviceName")])
if err != nil {
return nil, err
}
workspaceIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("workspaceId")])
if err != nil {
return nil, err
}
apiIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("apiId")])
if err != nil {
return nil, err
}
operationIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("operationId")])
if err != nil {
return nil, err
}
respr, errRespr := w.srv.GetEntityTag(req.Context(), resourceGroupNameParam, serviceNameParam, workspaceIDParam, apiIDParam, operationIDParam, nil)
if respErr := server.GetError(errRespr, req); respErr != nil {
return nil, respErr
}
respContent := server.GetResponseContent(respr)
if !contains([]int{http.StatusOK}, respContent.HTTPStatus) {
return nil, &nonRetriableError{fmt.Errorf("unexpected status code %d. acceptable values are http.StatusOK", respContent.HTTPStatus)}
}
resp, err := server.NewResponse(respContent, req, nil)
if err != nil {
return nil, err
}
if val := server.GetResponse(respr).ETag; val != nil {
resp.Header.Set("ETag", *val)
}
return resp, nil
}
func (w *WorkspaceAPIOperationServerTransport) dispatchNewListByAPIPager(req *http.Request) (*http.Response, error) {
if w.srv.NewListByAPIPager == nil {
return nil, &nonRetriableError{errors.New("fake for method NewListByAPIPager not implemented")}
}
newListByAPIPager := w.newListByAPIPager.get(req)
if newListByAPIPager == nil {
const regexStr = `/subscriptions/(?P<subscriptionId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/resourceGroups/(?P<resourceGroupName>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/providers/Microsoft\.ApiManagement/service/(?P<serviceName>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/workspaces/(?P<workspaceId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/apis/(?P<apiId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/operations`
regex := regexp.MustCompile(regexStr)
matches := regex.FindStringSubmatch(req.URL.EscapedPath())
if matches == nil || len(matches) < 5 {
return nil, fmt.Errorf("failed to parse path %s", req.URL.Path)
}
qp := req.URL.Query()
resourceGroupNameParam, err := url.PathUnescape(matches[regex.SubexpIndex("resourceGroupName")])
if err != nil {
return nil, err
}
serviceNameParam, err := url.PathUnescape(matches[regex.SubexpIndex("serviceName")])
if err != nil {
return nil, err
}
workspaceIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("workspaceId")])
if err != nil {
return nil, err
}
apiIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("apiId")])
if err != nil {
return nil, err
}
filterUnescaped, err := url.QueryUnescape(qp.Get("$filter"))
if err != nil {
return nil, err
}
filterParam := getOptional(filterUnescaped)
topUnescaped, err := url.QueryUnescape(qp.Get("$top"))
if err != nil {
return nil, err
}
topParam, err := parseOptional(topUnescaped, func(v string) (int32, error) {
p, parseErr := strconv.ParseInt(v, 10, 32)
if parseErr != nil {
return 0, parseErr
}
return int32(p), nil
})
if err != nil {
return nil, err
}
skipUnescaped, err := url.QueryUnescape(qp.Get("$skip"))
if err != nil {
return nil, err
}
skipParam, err := parseOptional(skipUnescaped, func(v string) (int32, error) {
p, parseErr := strconv.ParseInt(v, 10, 32)
if parseErr != nil {
return 0, parseErr
}
return int32(p), nil
})
if err != nil {
return nil, err
}
tagsUnescaped, err := url.QueryUnescape(qp.Get("tags"))
if err != nil {
return nil, err
}
tagsParam := getOptional(tagsUnescaped)
var options *armapimanagement.WorkspaceAPIOperationClientListByAPIOptions
if filterParam != nil || topParam != nil || skipParam != nil || tagsParam != nil {
options = &armapimanagement.WorkspaceAPIOperationClientListByAPIOptions{
Filter: filterParam,
Top: topParam,
Skip: skipParam,
Tags: tagsParam,
}
}
resp := w.srv.NewListByAPIPager(resourceGroupNameParam, serviceNameParam, workspaceIDParam, apiIDParam, options)
newListByAPIPager = &resp
w.newListByAPIPager.add(req, newListByAPIPager)
server.PagerResponderInjectNextLinks(newListByAPIPager, req, func(page *armapimanagement.WorkspaceAPIOperationClientListByAPIResponse, createLink func() string) {
page.NextLink = to.Ptr(createLink())
})
}
resp, err := server.PagerResponderNext(newListByAPIPager, req)
if err != nil {
return nil, err
}
if !contains([]int{http.StatusOK}, resp.StatusCode) {
w.newListByAPIPager.remove(req)
return nil, &nonRetriableError{fmt.Errorf("unexpected status code %d. acceptable values are http.StatusOK", resp.StatusCode)}
}
if !server.PagerResponderMore(newListByAPIPager) {
w.newListByAPIPager.remove(req)
}
return resp, nil
}
func (w *WorkspaceAPIOperationServerTransport) dispatchUpdate(req *http.Request) (*http.Response, error) {
if w.srv.Update == nil {
return nil, &nonRetriableError{errors.New("fake for method Update not implemented")}
}
const regexStr = `/subscriptions/(?P<subscriptionId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/resourceGroups/(?P<resourceGroupName>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/providers/Microsoft\.ApiManagement/service/(?P<serviceName>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/workspaces/(?P<workspaceId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/apis/(?P<apiId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)/operations/(?P<operationId>[!#&$-;=?-\[\]_a-zA-Z0-9~%@]+)`
regex := regexp.MustCompile(regexStr)
matches := regex.FindStringSubmatch(req.URL.EscapedPath())
if matches == nil || len(matches) < 6 {
return nil, fmt.Errorf("failed to parse path %s", req.URL.Path)
}
body, err := server.UnmarshalRequestAsJSON[armapimanagement.OperationUpdateContract](req)
if err != nil {
return nil, err
}
resourceGroupNameParam, err := url.PathUnescape(matches[regex.SubexpIndex("resourceGroupName")])
if err != nil {
return nil, err
}
serviceNameParam, err := url.PathUnescape(matches[regex.SubexpIndex("serviceName")])
if err != nil {
return nil, err
}
workspaceIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("workspaceId")])
if err != nil {
return nil, err
}
apiIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("apiId")])
if err != nil {
return nil, err
}
operationIDParam, err := url.PathUnescape(matches[regex.SubexpIndex("operationId")])
if err != nil {
return nil, err
}
respr, errRespr := w.srv.Update(req.Context(), resourceGroupNameParam, serviceNameParam, workspaceIDParam, apiIDParam, operationIDParam, getHeaderValue(req.Header, "If-Match"), body, nil)
if respErr := server.GetError(errRespr, req); respErr != nil {
return nil, respErr
}
respContent := server.GetResponseContent(respr)
if !contains([]int{http.StatusOK}, respContent.HTTPStatus) {
return nil, &nonRetriableError{fmt.Errorf("unexpected status code %d. acceptable values are http.StatusOK", respContent.HTTPStatus)}
}
resp, err := server.MarshalResponseAsJSON(respContent, server.GetResponse(respr).OperationContract, req)
if err != nil {
return nil, err
}
if val := server.GetResponse(respr).ETag; val != nil {
resp.Header.Set("ETag", *val)
}
return resp, nil
}
// set this to conditionally intercept incoming requests to WorkspaceAPIOperationServerTransport
var workspaceApiOperationServerTransportInterceptor interface {
// Do returns true if the server transport should use the returned response/error
Do(*http.Request) (*http.Response, error, bool)
}