io.quarkus.vault.runtime.client.dto.auth.VaultRenewSelfBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-vault-model Show documentation
Show all versions of quarkus-vault-model Show documentation
Hashicorp Vault API model classes
The newest version!
package io.quarkus.vault.runtime.client.dto.auth;
import io.quarkus.vault.runtime.client.dto.VaultModel;
public class VaultRenewSelfBody implements VaultModel {
// eg: 1h
public String increment;
public VaultRenewSelfBody(String increment) {
this.increment = increment;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy