DbNodeProperties.fromJson constructor
DbNodeProperties.fromJson(
- Map json_
Implementation
DbNodeProperties.fromJson(core.Map json_)
: this(
dbNodeStorageSizeGb: json_['dbNodeStorageSizeGb'] as core.int?,
dbServerOcid: json_['dbServerOcid'] as core.String?,
hostname: json_['hostname'] as core.String?,
memorySizeGb: json_['memorySizeGb'] as core.int?,
ocid: json_['ocid'] as core.String?,
ocpuCount: json_['ocpuCount'] as core.int?,
state: json_['state'] as core.String?,
totalCpuCoreCount: json_['totalCpuCoreCount'] as core.int?,
);