/** * 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.21.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 SystemReadSyncConfigResponse */ export interface SystemReadSyncConfigResponse { /** * Disables the syncing process between Vault and external destinations. * @type {boolean} * @memberof SystemReadSyncConfigResponse */ disabled?: boolean; /** * Maximum number of pending sync operations allowed on the queue. * @type {number} * @memberof SystemReadSyncConfigResponse */ queueCapacity?: number; } /** * Check if a given object implements the SystemReadSyncConfigResponse interface. */ export declare function instanceOfSystemReadSyncConfigResponse(value: object): value is SystemReadSyncConfigResponse; export declare function SystemReadSyncConfigResponseFromJSON(json: any): SystemReadSyncConfigResponse; export declare function SystemReadSyncConfigResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemReadSyncConfigResponse; export declare function SystemReadSyncConfigResponseToJSON(json: any): SystemReadSyncConfigResponse; export declare function SystemReadSyncConfigResponseToJSONTyped(value?: SystemReadSyncConfigResponse | null, ignoreDiscriminator?: boolean): any;