/** * 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 SystemReadSyncAssociationsDestinationsResponse */ export interface SystemReadSyncAssociationsDestinationsResponse { /** * Map of external destinations associated with a given Vault secret. * @type {object} * @memberof SystemReadSyncAssociationsDestinationsResponse */ associatedDestinations?: object; } /** * Check if a given object implements the SystemReadSyncAssociationsDestinationsResponse interface. */ export declare function instanceOfSystemReadSyncAssociationsDestinationsResponse(value: object): value is SystemReadSyncAssociationsDestinationsResponse; export declare function SystemReadSyncAssociationsDestinationsResponseFromJSON(json: any): SystemReadSyncAssociationsDestinationsResponse; export declare function SystemReadSyncAssociationsDestinationsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemReadSyncAssociationsDestinationsResponse; export declare function SystemReadSyncAssociationsDestinationsResponseToJSON(json: any): SystemReadSyncAssociationsDestinationsResponse; export declare function SystemReadSyncAssociationsDestinationsResponseToJSONTyped(value?: SystemReadSyncAssociationsDestinationsResponse | null, ignoreDiscriminator?: boolean): any;