BareMetalKubeletConfig.fromJson constructor

BareMetalKubeletConfig.fromJson(
  1. Map json_
)

Implementation

BareMetalKubeletConfig.fromJson(core.Map json_)
    : this(
        registryBurst: json_.containsKey('registryBurst')
            ? json_['registryBurst'] as core.int
            : null,
        registryPullQps: json_.containsKey('registryPullQps')
            ? json_['registryPullQps'] as core.int
            : null,
        serializeImagePullsDisabled:
            json_.containsKey('serializeImagePullsDisabled')
                ? json_['serializeImagePullsDisabled'] as core.bool
                : null,
      );