/** * 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 SystemWriteReplicationSecondaryEnableRequest */ export interface SystemWriteReplicationSecondaryEnableRequest { /** * A path to a file containing a PEM-encoded CA certificate to verify the call against the primary's API address * @type {string} * @memberof SystemWriteReplicationSecondaryEnableRequest */ caFile?: string; /** * A path to a directory containing PEM-encoded CA certificates to verify the call against the primary's API address * @type {string} * @memberof SystemWriteReplicationSecondaryEnableRequest */ caPath?: string; /** * The client certificate to use for authentication, in PEM format. Note: client authentication for this operation will always use TLS 1.2 or higher. * @type {string} * @memberof SystemWriteReplicationSecondaryEnableRequest */ clientCertPem?: string; /** * The client key to use for authentication, in PEM format. * @type {string} * @memberof SystemWriteReplicationSecondaryEnableRequest */ clientKeyPem?: string; /** * The API address of the primary. If not set, the value the primary supplies in the token will be used, which is the primary's redirect address. * @type {string} * @memberof SystemWriteReplicationSecondaryEnableRequest */ primaryApiAddr?: string; /** * The token given by the primary to activate secondary status for this cluster. * @type {string} * @memberof SystemWriteReplicationSecondaryEnableRequest */ token?: string; } /** * Check if a given object implements the SystemWriteReplicationSecondaryEnableRequest interface. */ export declare function instanceOfSystemWriteReplicationSecondaryEnableRequest(value: object): value is SystemWriteReplicationSecondaryEnableRequest; export declare function SystemWriteReplicationSecondaryEnableRequestFromJSON(json: any): SystemWriteReplicationSecondaryEnableRequest; export declare function SystemWriteReplicationSecondaryEnableRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemWriteReplicationSecondaryEnableRequest; export declare function SystemWriteReplicationSecondaryEnableRequestToJSON(json: any): SystemWriteReplicationSecondaryEnableRequest; export declare function SystemWriteReplicationSecondaryEnableRequestToJSONTyped(value?: SystemWriteReplicationSecondaryEnableRequest | null, ignoreDiscriminator?: boolean): any;