io.quarkus.vault.runtime.client.authmethod.VaultInternalTokenAuthMethod Maven / Gradle / Ivy
package io.quarkus.vault.runtime.client.authmethod;
import javax.inject.Singleton;
import io.quarkus.vault.runtime.client.VaultInternalBase;
import io.quarkus.vault.runtime.client.dto.auth.VaultLookupSelf;
import io.quarkus.vault.runtime.client.dto.auth.VaultRenewSelf;
import io.quarkus.vault.runtime.client.dto.auth.VaultRenewSelfBody;
@Singleton
public class VaultInternalTokenAuthMethod extends VaultInternalBase {
public VaultRenewSelf renewSelf(String token, String increment) {
VaultRenewSelfBody body = new VaultRenewSelfBody(increment);
return vaultClient.post("auth/token/renew-self", token, body, VaultRenewSelf.class);
}
public VaultLookupSelf lookupSelf(String token) {
return vaultClient.get("auth/token/lookup-self", token, VaultLookupSelf.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy