/** * 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 SystemWriteReplicationPerformancePrimaryEnableRequest */ export interface SystemWriteReplicationPerformancePrimaryEnableRequest { /** * The address the secondary cluster should connect to. Defaults to the primary's cluster address. * @type {string} * @memberof SystemWriteReplicationPerformancePrimaryEnableRequest */ primaryClusterAddr?: string; } /** * Check if a given object implements the SystemWriteReplicationPerformancePrimaryEnableRequest interface. */ export declare function instanceOfSystemWriteReplicationPerformancePrimaryEnableRequest(value: object): value is SystemWriteReplicationPerformancePrimaryEnableRequest; export declare function SystemWriteReplicationPerformancePrimaryEnableRequestFromJSON(json: any): SystemWriteReplicationPerformancePrimaryEnableRequest; export declare function SystemWriteReplicationPerformancePrimaryEnableRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemWriteReplicationPerformancePrimaryEnableRequest; export declare function SystemWriteReplicationPerformancePrimaryEnableRequestToJSON(json: any): SystemWriteReplicationPerformancePrimaryEnableRequest; export declare function SystemWriteReplicationPerformancePrimaryEnableRequestToJSONTyped(value?: SystemWriteReplicationPerformancePrimaryEnableRequest | null, ignoreDiscriminator?: boolean): any;