toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final autoScalingEnabled = this.autoScalingEnabled;
  final category = this.category;
  final defaultCpuCoreCount = this.defaultCpuCoreCount;
  final displayName = this.displayName;
  final environmentType = this.environmentType;
  final maxCpuCoreCount = this.maxCpuCoreCount;
  final memoryGbPerCpuCore = this.memoryGbPerCpuCore;
  final minCpuCoreCount = this.minCpuCoreCount;
  final name = this.name;
  final networkBandwidthGbpsPerCpuCore = this.networkBandwidthGbpsPerCpuCore;
  final storageUsageLimitGbPerCpuCore = this.storageUsageLimitGbPerCpuCore;
  return {
    'autoScalingEnabled': ?autoScalingEnabled,
    'category': ?category,
    'defaultCpuCoreCount': ?defaultCpuCoreCount,
    'displayName': ?displayName,
    'environmentType': ?environmentType,
    'maxCpuCoreCount': ?maxCpuCoreCount,
    'memoryGbPerCpuCore': ?memoryGbPerCpuCore,
    'minCpuCoreCount': ?minCpuCoreCount,
    'name': ?name,
    'networkBandwidthGbpsPerCpuCore': ?networkBandwidthGbpsPerCpuCore,
    'storageUsageLimitGbPerCpuCore': ?storageUsageLimitGbPerCpuCore,
  };
}