/** * Netsparker Enterprise API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /// import http from 'http'; import { AuthenticationProfileViewModel } from '../model/authenticationProfileViewModel'; import { Authentication, Interceptor } from '../model/models'; export declare enum AuthenticationProfilesApiApiKeys { } export declare class AuthenticationProfilesApi { protected _basePath: string; protected _defaultHeaders: any; protected _useQuerystring: boolean; protected authentications: { default: Authentication; }; protected interceptors: Interceptor[]; constructor(basePath?: string); set useQuerystring(value: boolean); set basePath(basePath: string); set defaultHeaders(defaultHeaders: any); get defaultHeaders(): any; get basePath(): string; setDefaultAuthentication(auth: Authentication): void; setApiKey(key: AuthenticationProfilesApiApiKeys, value: string): void; addInterceptor(interceptor: Interceptor): void; /** * * @summary Deletes a authentication profile. * @param id The authentication profile\'s ID. */ authenticationProfilesDelete(id: string, options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: string; }>; /** * * @summary Gets the authentication profiles by the specified id. * @param id The identifier of authentication profiles. */ authenticationProfilesGet(id: string, options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: AuthenticationProfileViewModel; }>; /** * * @summary Gets the list of authentication profiles. */ authenticationProfilesGetAll(options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: AuthenticationProfileViewModel; }>; /** * * @summary Creates a new authentication profile. * @param model The AuthenticationProfileModel model. */ authenticationProfilesNew(model: AuthenticationProfileViewModel, options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: AuthenticationProfileViewModel; }>; /** * * @summary Updates an authentication profile. * @param model The model. */ authenticationProfilesUpdate(model: AuthenticationProfileViewModel, options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: AuthenticationProfileViewModel; }>; }