/** * 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 NomadConfigureLeaseRequest */ export interface NomadConfigureLeaseRequest { /** * Duration after which the issued token should not be allowed to be renewed * @type {string} * @memberof NomadConfigureLeaseRequest */ maxTtl?: string; /** * Duration before which the issued token needs renewal * @type {string} * @memberof NomadConfigureLeaseRequest */ ttl?: string; } /** * Check if a given object implements the NomadConfigureLeaseRequest interface. */ export declare function instanceOfNomadConfigureLeaseRequest(value: object): value is NomadConfigureLeaseRequest; export declare function NomadConfigureLeaseRequestFromJSON(json: any): NomadConfigureLeaseRequest; export declare function NomadConfigureLeaseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): NomadConfigureLeaseRequest; export declare function NomadConfigureLeaseRequestToJSON(json: any): NomadConfigureLeaseRequest; export declare function NomadConfigureLeaseRequestToJSONTyped(value?: NomadConfigureLeaseRequest | null, ignoreDiscriminator?: boolean): any;