@@ -65,26 +65,24 @@ func (s *KeysService) GetKeyWithUser(key int, options ...RequestOptionFunc) (*Ke
65
65
return k , resp , nil
66
66
}
67
67
68
- // GetKeyWithUserByFingerprintOptions represents
69
- // the available GetKeyWithUserByFingerprint() options.
68
+ // GetKeyByFingerprintOptions represents the available GetKeyByFingerprint()
69
+ // options.
70
70
//
71
71
// GitLab API docs:
72
72
// https://docs.gitlab.com/ee/api/keys.html#get-user-by-fingerprint-of-ssh-key
73
73
// https://docs.gitlab.com/ee/api/keys.html#get-user-by-deploy-key-fingerprint
74
- type GetKeyWithUserByFingerprintOptions struct {
74
+ type GetKeyByFingerprintOptions struct {
75
75
Fingerprint string `url:"fingerprint" json:"fingerprint"`
76
76
}
77
77
78
- // GetKeyWithUserByFingerprint gets a specific SSH key or deploy key
79
- // by fingerprint along with the associated user information.
78
+ // GetKeyByFingerprint gets a specific SSH key or deploy key by fingerprint
79
+ // along with the associated user information.
80
80
//
81
81
// GitLab API docs:
82
82
// https://docs.gitlab.com/ee/api/keys.html#get-user-by-fingerprint-of-ssh-key
83
83
// https://docs.gitlab.com/ee/api/keys.html#get-user-by-deploy-key-fingerprint
84
- func (s * KeysService ) GetKeyWithUserByFingerprint (opt * GetKeyWithUserByFingerprintOptions , options ... RequestOptionFunc ) (* Key , * Response , error ) {
85
- u := "keys"
86
-
87
- req , err := s .client .NewRequest (http .MethodGet , u , opt , options )
84
+ func (s * KeysService ) GetKeyByFingerprint (opt * GetKeyByFingerprintOptions , options ... RequestOptionFunc ) (* Key , * Response , error ) {
85
+ req , err := s .client .NewRequest (http .MethodGet , "keys" , opt , options )
88
86
if err != nil {
89
87
return nil , nil , err
90
88
}
0 commit comments