toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final autoscalingConfig = this.autoscalingConfig;
final config = this.config;
final createTime = this.createTime;
final defaultBackupScheduleType = this.defaultBackupScheduleType;
final displayName = this.displayName;
final edition = this.edition;
final endpointUris = this.endpointUris;
final freeInstanceMetadata = this.freeInstanceMetadata;
final instanceType = this.instanceType;
final labels = this.labels;
final name = this.name;
final nodeCount = this.nodeCount;
final processingUnits = this.processingUnits;
final replicaComputeCapacity = this.replicaComputeCapacity;
final state = this.state;
final updateTime = this.updateTime;
return {
'autoscalingConfig': ?autoscalingConfig,
'config': ?config,
'createTime': ?createTime,
'defaultBackupScheduleType': ?defaultBackupScheduleType,
'displayName': ?displayName,
'edition': ?edition,
'endpointUris': ?endpointUris,
'freeInstanceMetadata': ?freeInstanceMetadata,
'instanceType': ?instanceType,
'labels': ?labels,
'name': ?name,
'nodeCount': ?nodeCount,
'processingUnits': ?processingUnits,
'replicaComputeCapacity': ?replicaComputeCapacity,
'state': ?state,
'updateTime': ?updateTime,
};
}