toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bootDiskSizeGb = this.bootDiskSizeGb;
final cpus = this.cpus;
final enableLoadBalancer = this.enableLoadBalancer;
final image = this.image;
final imageType = this.imageType;
final labels = this.labels;
final memoryMb = this.memoryMb;
final replicas = this.replicas;
final taints = this.taints;
final vsphereConfig = this.vsphereConfig;
return {
'bootDiskSizeGb': ?bootDiskSizeGb,
'cpus': ?cpus,
'enableLoadBalancer': ?enableLoadBalancer,
'image': ?image,
'imageType': ?imageType,
'labels': ?labels,
'memoryMb': ?memoryMb,
'replicas': ?replicas,
'taints': ?taints,
'vsphereConfig': ?vsphereConfig,
};
}