in common/src/main/java/org/jetbrains/teamcity/vault/support/VaultHealthImpl.java [36:52]
private VaultHealthImpl(@JsonProperty("initialized") boolean initialized,
@JsonProperty("sealed") boolean sealed,
@JsonProperty("standby") boolean standby,
@JsonProperty("server_time_utc") int serverTimeUtc,
@Nullable @JsonProperty("version") String version,
@JsonProperty("performance_standby") boolean performanceStandby,
@JsonProperty("recovery_replication_secondary") boolean recoveryReplicationSecondary
) {
this.initialized = initialized;
this.sealed = sealed;
this.standby = standby;
this.serverTimeUtc = serverTimeUtc;
this.version = version;
this.performanceStandby = performanceStandby;
this.recoveryReplicationSecondary = recoveryReplicationSecondary;
}