/** * 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 SystemWriteSyncDestinationsInMemNameResponse */ export interface SystemWriteSyncDestinationsInMemNameResponse { /** * List of key value pairs of information necessary to connect with the external system. * @type {object} * @memberof SystemWriteSyncDestinationsInMemNameResponse */ connectionDetails?: object; /** * Name of this secrets store. * @type {string} * @memberof SystemWriteSyncDestinationsInMemNameResponse */ name?: string; /** * Type of this secrets store. * @type {string} * @memberof SystemWriteSyncDestinationsInMemNameResponse */ type?: string; } /** * Check if a given object implements the SystemWriteSyncDestinationsInMemNameResponse interface. */ export declare function instanceOfSystemWriteSyncDestinationsInMemNameResponse(value: object): value is SystemWriteSyncDestinationsInMemNameResponse; export declare function SystemWriteSyncDestinationsInMemNameResponseFromJSON(json: any): SystemWriteSyncDestinationsInMemNameResponse; export declare function SystemWriteSyncDestinationsInMemNameResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemWriteSyncDestinationsInMemNameResponse; export declare function SystemWriteSyncDestinationsInMemNameResponseToJSON(json: any): SystemWriteSyncDestinationsInMemNameResponse; export declare function SystemWriteSyncDestinationsInMemNameResponseToJSONTyped(value?: SystemWriteSyncDestinationsInMemNameResponse | null, ignoreDiscriminator?: boolean): any;