toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final computeId = this.computeId;
final computeInstance = this.computeInstance;
final id = this.id;
final maxDynamicNodeCount = this.maxDynamicNodeCount;
final staticNodeCount = this.staticNodeCount;
final storageConfigs = this.storageConfigs;
return {
'computeId': ?computeId,
'computeInstance': ?computeInstance,
'id': ?id,
'maxDynamicNodeCount': ?maxDynamicNodeCount,
'staticNodeCount': ?staticNodeCount,
'storageConfigs': ?storageConfigs,
};
}