vault/ui/api-client/dist/esm/models/SystemWriteReplicationPrimaryEnableRequest.d.ts

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