/** * 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 LeasesRenewLeaseRequest */ export interface LeasesRenewLeaseRequest { /** * The desired increment in seconds to the lease * @type {string} * @memberof LeasesRenewLeaseRequest */ increment?: string; /** * The lease identifier to renew. This is included with a lease. * @type {string} * @memberof LeasesRenewLeaseRequest */ leaseId?: string; } /** * Check if a given object implements the LeasesRenewLeaseRequest interface. */ export declare function instanceOfLeasesRenewLeaseRequest(value: object): value is LeasesRenewLeaseRequest; export declare function LeasesRenewLeaseRequestFromJSON(json: any): LeasesRenewLeaseRequest; export declare function LeasesRenewLeaseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeasesRenewLeaseRequest; export declare function LeasesRenewLeaseRequestToJSON(json: any): LeasesRenewLeaseRequest; export declare function LeasesRenewLeaseRequestToJSONTyped(value?: LeasesRenewLeaseRequest | null, ignoreDiscriminator?: boolean): any;