@@ -172,6 +172,23 @@ func (c *ApiClient) GetSessionID() string {
172
172
return c .sid
173
173
}
174
174
175
+ // Deprecated: Do not use.
176
+ func (c * ApiClient ) Login (username string , password string , continueLastSession bool , domain string , readOnly bool , payload string ) (APIResponse , error ) {
177
+ credentials := map [string ]interface {}{
178
+ "user" : username ,
179
+ "password" : password ,
180
+ }
181
+ return c .commonLoginLogic (credentials , continueLastSession , domain , readOnly , make (map [string ]interface {}))
182
+ }
183
+
184
+ // Deprecated: Do not use.
185
+ func (c * ApiClient ) LoginWithApiKey (apiKey string , continueLastSession bool , domain string , readOnly bool , payload string ) (APIResponse , error ) {
186
+ credentials := map [string ]interface {}{
187
+ "api-key" : apiKey ,
188
+ }
189
+ return c .commonLoginLogic (credentials , continueLastSession , domain , readOnly , make (map [string ]interface {}))
190
+ }
191
+
175
192
/*
176
193
Performs a 'login' API call to management server
177
194
@@ -185,7 +202,7 @@ returns: APIResponse, error
185
202
side-effects: updates the class's uid and server variables
186
203
187
204
*/
188
- func (c * ApiClient ) Login (username string , password string , continueLastSession bool , domain string , readOnly bool , payload string ) (APIResponse , error ) {
205
+ func (c * ApiClient ) ApiLogin (username string , password string , continueLastSession bool , domain string , readOnly bool , payload map [ string ] interface {} ) (APIResponse , error ) {
189
206
credentials := map [string ]interface {}{
190
207
"user" : username ,
191
208
"password" : password ,
@@ -206,14 +223,14 @@ payload: [optional] More settings for the login command
206
223
returns: APIResponse object
207
224
side-effects: updates the class's uid and server variables
208
225
*/
209
- func (c * ApiClient ) LoginWithApiKey (apiKey string , continueLastSession bool , domain string , readOnly bool , payload string ) (APIResponse , error ) {
226
+ func (c * ApiClient ) ApiLoginWithApiKey (apiKey string , continueLastSession bool , domain string , readOnly bool , payload map [ string ] interface {} ) (APIResponse , error ) {
210
227
credentials := map [string ]interface {}{
211
228
"api-key" : apiKey ,
212
229
}
213
230
return c .commonLoginLogic (credentials , continueLastSession , domain , readOnly , payload )
214
231
}
215
232
216
- func (c * ApiClient ) commonLoginLogic (credentials map [string ]interface {}, continueLastSession bool , domain string , readOnly bool , payload string ) (APIResponse , error ) {
233
+ func (c * ApiClient ) commonLoginLogic (credentials map [string ]interface {}, continueLastSession bool , domain string , readOnly bool , payload map [ string ] interface {} ) (APIResponse , error ) {
217
234
218
235
if c .context == WebContext {
219
236
credentials ["continue-last-session" ] = continueLastSession
@@ -224,6 +241,10 @@ func (c *ApiClient) commonLoginLogic(credentials map[string]interface{}, continu
224
241
credentials ["domain" ] = domain
225
242
}
226
243
244
+ for k , v := range payload {
245
+ credentials [k ] = v
246
+ }
247
+
227
248
loginRes , errCall := c .ApiCall ("login" , credentials , "" , false , false )
228
249
if errCall != nil {
229
250
return loginRes , errCall
0 commit comments