mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 14:47:01 +02:00
45 lines
1.6 KiB
TypeScript
45 lines
1.6 KiB
TypeScript
/**
|
|
* 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.21.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 PluginsReloadBackendsRequest
|
|
*/
|
|
export interface PluginsReloadBackendsRequest {
|
|
/**
|
|
* The mount paths of the plugin backends to reload.
|
|
* @type {Array<string>}
|
|
* @memberof PluginsReloadBackendsRequest
|
|
*/
|
|
mounts?: Array<string>;
|
|
/**
|
|
* The name of the plugin to reload, as registered in the plugin catalog.
|
|
* @type {string}
|
|
* @memberof PluginsReloadBackendsRequest
|
|
*/
|
|
plugin?: string;
|
|
/**
|
|
* The scope for the reload operation. May be empty or "global".
|
|
* @type {string}
|
|
* @memberof PluginsReloadBackendsRequest
|
|
*/
|
|
scope?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the PluginsReloadBackendsRequest interface.
|
|
*/
|
|
export declare function instanceOfPluginsReloadBackendsRequest(value: object): value is PluginsReloadBackendsRequest;
|
|
export declare function PluginsReloadBackendsRequestFromJSON(json: any): PluginsReloadBackendsRequest;
|
|
export declare function PluginsReloadBackendsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PluginsReloadBackendsRequest;
|
|
export declare function PluginsReloadBackendsRequestToJSON(json: any): PluginsReloadBackendsRequest;
|
|
export declare function PluginsReloadBackendsRequestToJSONTyped(value?: PluginsReloadBackendsRequest | null, ignoreDiscriminator?: boolean): any;
|