class TencentCloud::Tke::V20180525::PrometheusClusterAgentBasic

def deserialize(params)

def deserialize(params)
  @Region = params['Region']
  @ClusterType = params['ClusterType']
  @ClusterId = params['ClusterId']
  @EnableExternal = params['EnableExternal']
  unless params['InClusterPodConfig'].nil?
    @InClusterPodConfig = PrometheusClusterAgentPodConfig.new
    @InClusterPodConfig.deserialize(params['InClusterPodConfig'])
  end
  unless params['ExternalLabels'].nil?
    @ExternalLabels = []
    params['ExternalLabels'].each do |i|
      label_tmp = Label.new
      label_tmp.deserialize(i)
      @ExternalLabels << label_tmp
    end
  end
  @NotInstallBasicScrape = params['NotInstallBasicScrape']
  @NotScrape = params['NotScrape']
end