GoldengateDeploymentEnvironment.fromJson constructor

GoldengateDeploymentEnvironment.fromJson(
  1. Map json_
)

Implementation

GoldengateDeploymentEnvironment.fromJson(core.Map json_)
  : this(
      autoScalingEnabled: json_['autoScalingEnabled'] as core.bool?,
      category: json_['category'] as core.String?,
      defaultCpuCoreCount: json_['defaultCpuCoreCount'] as core.int?,
      displayName: json_['displayName'] as core.String?,
      environmentType: json_['environmentType'] as core.String?,
      maxCpuCoreCount: json_['maxCpuCoreCount'] as core.int?,
      memoryGbPerCpuCore: json_['memoryGbPerCpuCore'] as core.int?,
      minCpuCoreCount: json_['minCpuCoreCount'] as core.int?,
      name: json_['name'] as core.String?,
      networkBandwidthGbpsPerCpuCore:
          json_['networkBandwidthGbpsPerCpuCore'] as core.int?,
      storageUsageLimitGbPerCpuCore:
          json_['storageUsageLimitGbPerCpuCore'] as core.int?,
    );