fix: add additional params to UpdateWebhook

It is essentially the same as CreateWebhook
but it takes a webhookId.
This commit is contained in:
Mark Nielsen 2019-02-15 14:53:10 -08:00
parent f1ac505839
commit 31182e7602
2 changed files with 9 additions and 7 deletions

View File

@ -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 != "" {

View File

@ -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