From 31182e7602b0149d178506ffb8eefaa8c5423a3e Mon Sep 17 00:00:00 2001 From: Mark Nielsen Date: Fri, 15 Feb 2019 14:53:10 -0800 Subject: [PATCH] fix: add additional params to UpdateWebhook It is essentially the same as CreateWebhook but it takes a webhookId. --- default_api.go | 8 +++----- default_api_test.go | 8 ++++++-- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/default_api.go b/default_api.go index 6ce63ff..fa16227 100644 --- a/default_api.go +++ b/default_api.go @@ -12310,25 +12310,23 @@ Update an existing webhook. <p> The authenticated user must have <str * @param ctx context.Context for authentication, logging, tracing, etc. @param webhookId the existing webhook id @return */ -func (a *DefaultApiService) UpdateWebhook(webhookId int32) (*APIResponse, error) { +func (a *DefaultApiService) UpdateWebhook(projectKey, repositorySlug string, webhookId int32, localVarPostBody interface{}, localVarHTTPContentTypes []string) (*APIResponse, error) { var ( localVarHTTPMethod = strings.ToUpper("Put") - localVarPostBody interface{} localVarFileName string localVarFileBytes []byte ) // create path and map variables localVarPath := a.client.cfg.BasePath + "/api/1.0/projects/{projectKey}/repos/{repositorySlug}/webhooks/{webhookId}" + localVarPath = strings.Replace(localVarPath, "{"+"projectKey"+"}", fmt.Sprintf("%v", projectKey), -1) + localVarPath = strings.Replace(localVarPath, "{"+"repositorySlug"+"}", fmt.Sprintf("%v", repositorySlug), -1) localVarPath = strings.Replace(localVarPath, "{"+"webhookId"+"}", fmt.Sprintf("%v", webhookId), -1) localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{} localVarFormParams := url.Values{} - // to determine the Content-Type header - localVarHTTPContentTypes := []string{} - // set Content-Type header localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) if localVarHTTPContentType != "" { diff --git a/default_api_test.go b/default_api_test.go index 3d3a199..0d2f26c 100644 --- a/default_api_test.go +++ b/default_api_test.go @@ -6576,7 +6576,11 @@ func TestDefaultApiService_UpdateWebhook(t *testing.T) { client *APIClient } type args struct { - webhookId int32 + projectKey string + repositorySlug string + webhookId int32 + localVarPostBody interface{} + localVarHTTPContentTypes []string } tests := []struct { name string @@ -6592,7 +6596,7 @@ func TestDefaultApiService_UpdateWebhook(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, } - got, err := a.UpdateWebhook(tt.args.webhookId) + got, err := a.UpdateWebhook(tt.args.projectKey, tt.args.repositorySlug, tt.args.webhookId, tt.args.localVarPostBody, tt.args.localVarHTTPContentTypes) if (err != nil) != tt.wantErr { t.Errorf("DefaultApiService.UpdateWebhook() error = %v, wantErr %v", err, tt.wantErr) return