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