io.quarkus.vault.runtime.client.dto.sys.VaultInitBody 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
package io.quarkus.vault.runtime.client.dto.sys;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.quarkus.vault.runtime.client.dto.VaultModel;
public class VaultInitBody implements VaultModel {
public VaultInitBody(int secretShares, int secretThreshold) {
this.secretShares = secretShares;
this.secretThreshold = secretThreshold;
}
@JsonProperty("secret_shares")
public int secretShares;
@JsonProperty("secret_threshold")
public int secretThreshold;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy