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