/** * 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 SystemWriteReplicationPerformancePrimaryRevokeSecondaryRequest */ export interface SystemWriteReplicationPerformancePrimaryRevokeSecondaryRequest { /** * The secondary cluster ID to revoke * @type {string} * @memberof SystemWriteReplicationPerformancePrimaryRevokeSecondaryRequest */ id?: string; } /** * Check if a given object implements the SystemWriteReplicationPerformancePrimaryRevokeSecondaryRequest interface. */ export declare function instanceOfSystemWriteReplicationPerformancePrimaryRevokeSecondaryRequest(value: object): value is SystemWriteReplicationPerformancePrimaryRevokeSecondaryRequest; export declare function SystemWriteReplicationPerformancePrimaryRevokeSecondaryRequestFromJSON(json: any): SystemWriteReplicationPerformancePrimaryRevokeSecondaryRequest; export declare function SystemWriteReplicationPerformancePrimaryRevokeSecondaryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemWriteReplicationPerformancePrimaryRevokeSecondaryRequest; export declare function SystemWriteReplicationPerformancePrimaryRevokeSecondaryRequestToJSON(json: any): SystemWriteReplicationPerformancePrimaryRevokeSecondaryRequest; export declare function SystemWriteReplicationPerformancePrimaryRevokeSecondaryRequestToJSONTyped(value?: SystemWriteReplicationPerformancePrimaryRevokeSecondaryRequest | null, ignoreDiscriminator?: boolean): any;