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