GkeNodePoolAutoscalingConfig.fromJson constructor

GkeNodePoolAutoscalingConfig.fromJson(
  1. Map json_
)

Implementation

GkeNodePoolAutoscalingConfig.fromJson(core.Map json_)
  : this(
      maxNodeCount: json_['maxNodeCount'] as core.int?,
      minNodeCount: json_['minNodeCount'] as core.int?,
    );