io.quarkus.vault.runtime.client.dto.sys.VaultHealthResult 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.sys;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.quarkus.vault.runtime.client.dto.VaultModel;
public class VaultHealthResult implements VaultModel {
public boolean initialized;
public boolean sealed;
public boolean standby;
@JsonProperty("performance_standby")
public boolean performanceStandby;
@JsonProperty("replicationPerfMode")
public String replicationPerfMode;
@JsonProperty("replication_dr_mode")
public String replicationDrMode;
@JsonProperty("server_time_utc")
public long serverTimeUtc;
public String version;
@JsonProperty("cluster_name")
public String clusterName;
@JsonProperty("cluster_id")
public String clusterId;
@Override
public String toString() {
return "VaultHealth{initialized: " + initialized + ", sealed: " + sealed + '}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy