vault/ui/api-client/dist/models/SystemWriteSyncDestinationsVercelProjectNameResponse.d.ts
2025-05-08 13:45:50 -06:00

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