$HPAConfig.fromJson constructor

$HPAConfig.fromJson(
  1. Map json_
)

Implementation

$HPAConfig.fromJson(core.Map json_)
  : this(
      cpuUtilizationThreshold:
          json_['cpuUtilizationThreshold'] as core.String?,
      memoryUtilizationThreshold:
          json_['memoryUtilizationThreshold'] as core.String?,
    );