mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-04 17:00:12 -05:00
Add options to update repository
This commit is contained in:
parent
d36ae8e49f
commit
9660f76650
@ -11464,10 +11464,13 @@ Update the repository matching the <strong>repositorySlug</strong> s
|
||||
@param projectKey2 the parent project key
|
||||
@param repositorySlug the repository slug
|
||||
@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 (
|
||||
localVarHTTPMethod = strings.ToUpper("Put")
|
||||
localVarPostBody interface{}
|
||||
localVarFileName string
|
||||
localVarFileBytes []byte
|
||||
)
|
||||
@ -11475,16 +11478,12 @@ func (a *DefaultApiService) UpdateRepository(projectKey string, projectKey2 stri
|
||||
// create path and map variables
|
||||
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", projectKey2), -1)
|
||||
localVarPath = strings.Replace(localVarPath, "{"+"repositorySlug"+"}", fmt.Sprintf("%v", repositorySlug), -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 != "" {
|
||||
|
Loading…
x
Reference in New Issue
Block a user