/** * 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 LeasesRevokeLeaseWithIdRequest */ export interface LeasesRevokeLeaseWithIdRequest { /** * The lease identifier to renew. This is included with a lease. * @type {string} * @memberof LeasesRevokeLeaseWithIdRequest */ leaseId?: string; /** * Whether or not to perform the revocation synchronously * @type {boolean} * @memberof LeasesRevokeLeaseWithIdRequest */ sync?: boolean; } /** * Check if a given object implements the LeasesRevokeLeaseWithIdRequest interface. */ export declare function instanceOfLeasesRevokeLeaseWithIdRequest(value: object): value is LeasesRevokeLeaseWithIdRequest; export declare function LeasesRevokeLeaseWithIdRequestFromJSON(json: any): LeasesRevokeLeaseWithIdRequest; export declare function LeasesRevokeLeaseWithIdRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeasesRevokeLeaseWithIdRequest; export declare function LeasesRevokeLeaseWithIdRequestToJSON(json: any): LeasesRevokeLeaseWithIdRequest; export declare function LeasesRevokeLeaseWithIdRequestToJSONTyped(value?: LeasesRevokeLeaseWithIdRequest | null, ignoreDiscriminator?: boolean): any;