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

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