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