OnPremCluster.fromJson constructor

OnPremCluster.fromJson(
  1. Map json_
)

Implementation

OnPremCluster.fromJson(core.Map json_)
    : this(
        adminCluster: json_.containsKey('adminCluster')
            ? json_['adminCluster'] as core.bool
            : null,
        clusterMissing: json_.containsKey('clusterMissing')
            ? json_['clusterMissing'] as core.bool
            : null,
        clusterType: json_.containsKey('clusterType')
            ? json_['clusterType'] as core.String
            : null,
        resourceLink: json_.containsKey('resourceLink')
            ? json_['resourceLink'] as core.String
            : null,
      );