Instance_NodeConfig constructor
Implementation
factory Instance_NodeConfig({
$core.int? cpuCount,
$core.int? memorySizeMb,
}) {
final $result = create();
if (cpuCount != null) {
$result.cpuCount = cpuCount;
}
if (memorySizeMb != null) {
$result.memorySizeMb = memorySizeMb;
}
return $result;
}