DatabaseStatus constructor
DatabaseStatus({
- required String health,
- required bool ready,
- required String engine,
- required String version,
- required int uptime,
- required DatabaseStatusConnections connections,
- required String syncMode,
- String? effectiveSyncMode,
- required bool syncDegraded,
- required int syncAcknowledgements,
- required int syncStandbyCount,
- required bool syncStateConfirmed,
- required List<
DatabaseStatusReplica> replicas, - required List<
DatabaseStatusVolume> volumes,
Implementation
DatabaseStatus({
required this.health,
required this.ready,
required this.engine,
required this.version,
required this.uptime,
required this.connections,
required this.syncMode,
this.effectiveSyncMode,
required this.syncDegraded,
required this.syncAcknowledgements,
required this.syncStandbyCount,
required this.syncStateConfirmed,
required this.replicas,
required this.volumes,
});