DbSystemShape.fromJson constructor
DbSystemShape.fromJson(
- Map json_
Implementation
DbSystemShape.fromJson(core.Map json_)
: this(
availableCoreCountPerNode:
json_['availableCoreCountPerNode'] as core.int?,
availableDataStorageTb: json_['availableDataStorageTb'] as core.int?,
availableMemoryPerNodeGb:
json_['availableMemoryPerNodeGb'] as core.int?,
maxNodeCount: json_['maxNodeCount'] as core.int?,
maxStorageCount: json_['maxStorageCount'] as core.int?,
minCoreCountPerNode: json_['minCoreCountPerNode'] as core.int?,
minDbNodeStoragePerNodeGb:
json_['minDbNodeStoragePerNodeGb'] as core.int?,
minMemoryPerNodeGb: json_['minMemoryPerNodeGb'] as core.int?,
minNodeCount: json_['minNodeCount'] as core.int?,
minStorageCount: json_['minStorageCount'] as core.int?,
name: json_['name'] as core.String?,
shape: json_['shape'] as core.String?,
);