/** * 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 SystemPatchSyncDestinationsVercelProjectNameResponse */ export interface SystemPatchSyncDestinationsVercelProjectNameResponse { /** * List of key value pairs of information necessary to connect with the external system. * @type {object} * @memberof SystemPatchSyncDestinationsVercelProjectNameResponse */ connectionDetails?: object; /** * Name of this secrets store. * @type {string} * @memberof SystemPatchSyncDestinationsVercelProjectNameResponse */ name?: string; /** * List of key value pairs of Vault configuration options. * @type {object} * @memberof SystemPatchSyncDestinationsVercelProjectNameResponse */ options?: object; /** * Error message if the purge job failed. * @type {string} * @memberof SystemPatchSyncDestinationsVercelProjectNameResponse */ purgeError?: string; /** * Timestamp of when a purge job was initiated when deleting a destination. * @type {Date} * @memberof SystemPatchSyncDestinationsVercelProjectNameResponse */ purgeInitiatedAt?: Date; /** * Type of this secrets store. * @type {string} * @memberof SystemPatchSyncDestinationsVercelProjectNameResponse */ type?: string; } /** * Check if a given object implements the SystemPatchSyncDestinationsVercelProjectNameResponse interface. */ export declare function instanceOfSystemPatchSyncDestinationsVercelProjectNameResponse(value: object): value is SystemPatchSyncDestinationsVercelProjectNameResponse; export declare function SystemPatchSyncDestinationsVercelProjectNameResponseFromJSON(json: any): SystemPatchSyncDestinationsVercelProjectNameResponse; export declare function SystemPatchSyncDestinationsVercelProjectNameResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemPatchSyncDestinationsVercelProjectNameResponse; export declare function SystemPatchSyncDestinationsVercelProjectNameResponseToJSON(json: any): SystemPatchSyncDestinationsVercelProjectNameResponse; export declare function SystemPatchSyncDestinationsVercelProjectNameResponseToJSONTyped(value?: SystemPatchSyncDestinationsVercelProjectNameResponse | null, ignoreDiscriminator?: boolean): any;