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