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