_propDict)) { if (is_a($this->_propDict["labels"], "\Microsoft\Graph\SecurityNamespace\Model\Dictionary") || is_null($this->_propDict["labels"])) { return $this->_propDict["labels"]; } else { $this->_propDict["labels"] = new Dictionary($this->_propDict["labels"]); return $this->_propDict["labels"]; } } return null; } /** * Sets the labels * The labels for the Kubernetes pod. * * @param Dictionary $val The value to assign to the labels * * @return KubernetesControllerEvidence The KubernetesControllerEvidence */ public function setLabels($val) { $this->_propDict["labels"] = $val; return $this; } /** * Gets the name * The controller name. * * @return string|null The name */ public function getName() { if (array_key_exists("name", $this->_propDict)) { return $this->_propDict["name"]; } else { return null; } } /** * Sets the name * The controller name. * * @param string $val The value of the name * * @return KubernetesControllerEvidence */ public function setName($val) { $this->_propDict["name"] = $val; return $this; } /** * Gets the namespace * The service account namespace. * * @return KubernetesNamespaceEvidence|null The namespace */ public function getNamespace() { if (array_key_exists("namespace", $this->_propDict)) { if (is_a($this->_propDict["namespace"], "\Microsoft\Graph\SecurityNamespace\Model\KubernetesNamespaceEvidence") || is_null($this->_propDict["namespace"])) { return $this->_propDict["namespace"]; } else { $this->_propDict["namespace"] = new KubernetesNamespaceEvidence($this->_propDict["namespace"]); return $this->_propDict["namespace"]; } } return null; } /** * Sets the namespace * The service account namespace. * * @param KubernetesNamespaceEvidence $val The value to assign to the namespace * * @return KubernetesControllerEvidence The KubernetesControllerEvidence */ public function setNamespace($val) { $this->_propDict["namespace"] = $val; return $this; } /** * Gets the type * The controller type. * * @return string|null The type */ public function getType() { if (array_key_exists("type", $this->_propDict)) { return $this->_propDict["type"]; } else { return null; } } /** * Sets the type * The controller type. * * @param string $val The value of the type * * @return KubernetesControllerEvidence */ public function setType($val) { $this->_propDict["type"] = $val; return $this; } }