NodePoolAutoscaling.fromJson constructor

NodePoolAutoscaling.fromJson(
  1. Map json_
)

Implementation

NodePoolAutoscaling.fromJson(core.Map json_)
    : this(
        autoprovisioned: json_['autoprovisioned'] as core.bool?,
        enabled: json_['enabled'] as core.bool?,
        locationPolicy: json_['locationPolicy'] as core.String?,
        maxNodeCount: json_['maxNodeCount'] as core.int?,
        minNodeCount: json_['minNodeCount'] as core.int?,
        totalMaxNodeCount: json_['totalMaxNodeCount'] as core.int?,
        totalMinNodeCount: json_['totalMinNodeCount'] as core.int?,
      );