Merge pull request #4 from sanketjpatel/feat/update-repo

Add options to update repository
This commit is contained in:
George Fleury 2018-06-03 20:44:23 +02:00 committed by GitHub
commit 72d950a6a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11495,10 +11495,13 @@ Update the repository matching the <strong>repositorySlug</strong> s
@param projectKey2 the parent project key @param projectKey2 the parent project key
@param repositorySlug the repository slug @param repositorySlug the repository slug
@return */ @return */
func (a *DefaultApiService) UpdateRepository(projectKey string, projectKey2 string, repositorySlug string) (*APIResponse, error) { func (a *DefaultApiService) UpdateRepository(projectKey, repositorySlug string) (*APIResponse, error) {
return a.UpdateRepositoryWithOptions(projectKey, repositorySlug, nil, []string{})
}
func (a *DefaultApiService) UpdateRepositoryWithOptions(projectKey, repositorySlug string, 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
) )
@ -11506,16 +11509,12 @@ func (a *DefaultApiService) UpdateRepository(projectKey string, projectKey2 stri
// create path and map variables // create path and map variables
localVarPath := a.client.cfg.BasePath + "/api/1.0/projects/{projectKey}/repos/{repositorySlug}" localVarPath := a.client.cfg.BasePath + "/api/1.0/projects/{projectKey}/repos/{repositorySlug}"
localVarPath = strings.Replace(localVarPath, "{"+"projectKey"+"}", fmt.Sprintf("%v", projectKey), -1) localVarPath = strings.Replace(localVarPath, "{"+"projectKey"+"}", fmt.Sprintf("%v", projectKey), -1)
localVarPath = strings.Replace(localVarPath, "{"+"projectKey"+"}", fmt.Sprintf("%v", projectKey2), -1)
localVarPath = strings.Replace(localVarPath, "{"+"repositorySlug"+"}", fmt.Sprintf("%v", repositorySlug), -1) localVarPath = strings.Replace(localVarPath, "{"+"repositorySlug"+"}", fmt.Sprintf("%v", repositorySlug), -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 != "" {