/** * HashiCorp Vault API * HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`. * * The version of the OpenAPI document: 1.20.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ReloadPluginsRequest */ export interface ReloadPluginsRequest { /** * The scope for the reload operation. May be empty or "global". * @type {string} * @memberof ReloadPluginsRequest */ scope?: string; } /** * Check if a given object implements the ReloadPluginsRequest interface. */ export declare function instanceOfReloadPluginsRequest(value: object): value is ReloadPluginsRequest; export declare function ReloadPluginsRequestFromJSON(json: any): ReloadPluginsRequest; export declare function ReloadPluginsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReloadPluginsRequest; export declare function ReloadPluginsRequestToJSON(json: any): ReloadPluginsRequest; export declare function ReloadPluginsRequestToJSONTyped(value?: ReloadPluginsRequest | null, ignoreDiscriminator?: boolean): any;