vault/ui/api-client/dist/esm/models/ReloadPluginsResponse.d.ts

33 lines
1.1 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 ReloadPluginsResponse
*/
export interface ReloadPluginsResponse {
/**
*
* @type {string}
* @memberof ReloadPluginsResponse
*/
reloadId?: string;
}
/**
* Check if a given object implements the ReloadPluginsResponse interface.
*/
export declare function instanceOfReloadPluginsResponse(value: object): value is ReloadPluginsResponse;
export declare function ReloadPluginsResponseFromJSON(json: any): ReloadPluginsResponse;
export declare function ReloadPluginsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReloadPluginsResponse;
export declare function ReloadPluginsResponseToJSON(json: any): ReloadPluginsResponse;
export declare function ReloadPluginsResponseToJSONTyped(value?: ReloadPluginsResponse | null, ignoreDiscriminator?: boolean): any;