/** * 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 SystemWriteReplicationSecondaryPromoteRequest */ export interface SystemWriteReplicationSecondaryPromoteRequest { /** * Set to true if the cluster should be promoted despite replication being in an error state. This could mean some data was not replicated to the secondary * @type {boolean} * @memberof SystemWriteReplicationSecondaryPromoteRequest */ force?: boolean; /** * The address the secondary cluster should connect to. Defaults to the primary's cluster address. * @type {string} * @memberof SystemWriteReplicationSecondaryPromoteRequest */ primaryClusterAddr?: string; } /** * Check if a given object implements the SystemWriteReplicationSecondaryPromoteRequest interface. */ export declare function instanceOfSystemWriteReplicationSecondaryPromoteRequest(value: object): value is SystemWriteReplicationSecondaryPromoteRequest; export declare function SystemWriteReplicationSecondaryPromoteRequestFromJSON(json: any): SystemWriteReplicationSecondaryPromoteRequest; export declare function SystemWriteReplicationSecondaryPromoteRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemWriteReplicationSecondaryPromoteRequest; export declare function SystemWriteReplicationSecondaryPromoteRequestToJSON(json: any): SystemWriteReplicationSecondaryPromoteRequest; export declare function SystemWriteReplicationSecondaryPromoteRequestToJSONTyped(value?: SystemWriteReplicationSecondaryPromoteRequest | null, ignoreDiscriminator?: boolean): any;