vault/ui/api-client/dist/models/SystemPatchSyncConfigRequest.d.ts
Jordan Reimer d90653042d
[UI] API Client Update - Patch Support (#30619)
* adds patch endpoints to api client and missing params for sync

* adds namespace param to sync activation api client method
2025-05-14 11:30:45 -06:00

39 lines
1.5 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 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;