Missing imports for the repo ssh keys

This commit is contained in:
Hugues Malphettes 2019-09-30 07:00:58 +08:00 committed by George Fleury
parent 67fa18c768
commit 1a4b3950cb

View File

@ -6,6 +6,7 @@ package bitbucketv1
import ( import (
"encoding/json" "encoding/json"
"errors"
"fmt" "fmt"
"io" "io"
"io/ioutil" "io/ioutil"
@ -8278,12 +8279,12 @@ type KeysResponse struct {
Start int `json:"start"` Start int `json:"start"`
} }
/*GetSSHRepoKeys retrieve ssh keys per repo, params /*
GetSSHRepoKeys retrieve ssh keys per repo, params
https://docs.atlassian.com/bitbucket-server/rest/6.2.0/bitbucket-ssh-rest.html#idp17 https://docs.atlassian.com/bitbucket-server/rest/6.2.0/bitbucket-ssh-rest.html#idp17
/REST/KEYS/1.0//PROJECTS/{PROJECTKEY}/REPOS/{REPOSITORYSLUG}/SSH?FILTER&EFFECTIVE&PERMISSION /REST/KEYS/1.0//PROJECTS/{PROJECTKEY}/REPOS/{REPOSITORYSLUG}/SSH?FILTER&EFFECTIVE&PERMISSION
*/ */
func (a *DefaultApiService) GetSSHRepoKeys(projectKey, repositorySlug, sshKeyFilter string, repoKeysOnly, writeKeysOnly bool) (*KeysResponse, error) { func (a *DefaultApiService) GetSSHRepoKeys(projectKey, repositorySlug, sshKeyFilter string, repoKeysOnly, writeKeysOnly bool) (*KeysResponse, error) {
var ( var (
@ -8349,16 +8350,19 @@ func (a *DefaultApiService) GetSSHRepoKeys(projectKey, repositorySlug, sshKeyFil
return &typedResp, err return &typedResp, err
} }
/*
/*CreateSSHKey create ssh key for repository, params user and text CreateSSHKey create ssh key for repository, params user and text
/rest/keys/1.0/projects/{projectKey}/repos/{repositorySlug}/ssh /rest/keys/1.0/projects/{projectKey}/repos/{repositorySlug}/ssh
{ {
"key": { "key": {
"text": "ssh-rsa AAAAB3... me@127.0.0.1" "text": "ssh-rsa AAAAB3... me@127.0.0.1"
}, },
"permission": "REPO_WRITE" "permission": "REPO_WRITE"
} }
https://docs.atlassian.com/bitbucket-server/rest/6.2.0/bitbucket-ssh-rest.html#idp16*/
https://docs.atlassian.com/bitbucket-server/rest/6.2.0/bitbucket-ssh-rest.html#idp16
*/
func (a *DefaultApiService) CreateRepoSSHKey(projectKey, repositorySlug, sshPubKey string, isWrite bool) (*APIResponse, error) { func (a *DefaultApiService) CreateRepoSSHKey(projectKey, repositorySlug, sshPubKey string, isWrite bool) (*APIResponse, error) {
var ( var (
localVarHTTPMethod = strings.ToUpper("Post") localVarHTTPMethod = strings.ToUpper("Post")