mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-06 01:38:06 -05:00
Merge pull request #22 from polothy/fix-update-webhook
fix: add additional params to UpdateWebhook
This commit is contained in:
commit
8a515e9113
@ -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 ctx context.Context for authentication, logging, tracing, etc.
|
||||||
@param webhookId the existing webhook id
|
@param webhookId the existing webhook id
|
||||||
@return */
|
@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 (
|
var (
|
||||||
localVarHTTPMethod = strings.ToUpper("Put")
|
localVarHTTPMethod = strings.ToUpper("Put")
|
||||||
localVarPostBody interface{}
|
|
||||||
localVarFileName string
|
localVarFileName string
|
||||||
localVarFileBytes []byte
|
localVarFileBytes []byte
|
||||||
)
|
)
|
||||||
|
|
||||||
// create path and map variables
|
// create path and map variables
|
||||||
localVarPath := a.client.cfg.BasePath + "/api/1.0/projects/{projectKey}/repos/{repositorySlug}/webhooks/{webhookId}"
|
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)
|
localVarPath = strings.Replace(localVarPath, "{"+"webhookId"+"}", fmt.Sprintf("%v", webhookId), -1)
|
||||||
|
|
||||||
localVarHeaderParams := make(map[string]string)
|
localVarHeaderParams := make(map[string]string)
|
||||||
localVarQueryParams := url.Values{}
|
localVarQueryParams := url.Values{}
|
||||||
localVarFormParams := url.Values{}
|
localVarFormParams := url.Values{}
|
||||||
|
|
||||||
// to determine the Content-Type header
|
|
||||||
localVarHTTPContentTypes := []string{}
|
|
||||||
|
|
||||||
// set Content-Type header
|
// set Content-Type header
|
||||||
localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes)
|
localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes)
|
||||||
if localVarHTTPContentType != "" {
|
if localVarHTTPContentType != "" {
|
||||||
|
@ -6576,7 +6576,11 @@ func TestDefaultApiService_UpdateWebhook(t *testing.T) {
|
|||||||
client *APIClient
|
client *APIClient
|
||||||
}
|
}
|
||||||
type args struct {
|
type args struct {
|
||||||
webhookId int32
|
projectKey string
|
||||||
|
repositorySlug string
|
||||||
|
webhookId int32
|
||||||
|
localVarPostBody interface{}
|
||||||
|
localVarHTTPContentTypes []string
|
||||||
}
|
}
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
name string
|
name string
|
||||||
@ -6592,7 +6596,7 @@ func TestDefaultApiService_UpdateWebhook(t *testing.T) {
|
|||||||
a := &DefaultApiService{
|
a := &DefaultApiService{
|
||||||
client: tt.fields.client,
|
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 {
|
if (err != nil) != tt.wantErr {
|
||||||
t.Errorf("DefaultApiService.UpdateWebhook() error = %v, wantErr %v", err, tt.wantErr)
|
t.Errorf("DefaultApiService.UpdateWebhook() error = %v, wantErr %v", err, tt.wantErr)
|
||||||
return
|
return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user