ReplicaConfig
import type { ReplicaConfig } from "https://googleapis.deno.dev/v1/file:v1.ts";
Replica configuration for the instance.
interface ReplicaConfig {
readonly lastActiveSyncTime?: Date;
peerInstance?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "READY"
| "REMOVING"
| "FAILED";
readonly stateReasons?: "STATE_REASON_UNSPECIFIED" | "PEER_INSTANCE_UNREACHABLE" | "REMOVE_FAILED"[];
}