_propDict)) { return $this->_propDict["resourceId"]; } else { return null; } } /** * Sets the resourceId * The unique identifier for the Azure resource. * * @param string $val The value of the resourceId * * @return AzureResourceEvidence */ public function setResourceId($val) { $this->_propDict["resourceId"] = $val; return $this; } /** * Gets the resourceName * The name of the resource. * * @return string|null The resourceName */ public function getResourceName() { if (array_key_exists("resourceName", $this->_propDict)) { return $this->_propDict["resourceName"]; } else { return null; } } /** * Sets the resourceName * The name of the resource. * * @param string $val The value of the resourceName * * @return AzureResourceEvidence */ public function setResourceName($val) { $this->_propDict["resourceName"] = $val; return $this; } /** * Gets the resourceType * The type of the resource. * * @return string|null The resourceType */ public function getResourceType() { if (array_key_exists("resourceType", $this->_propDict)) { return $this->_propDict["resourceType"]; } else { return null; } } /** * Sets the resourceType * The type of the resource. * * @param string $val The value of the resourceType * * @return AzureResourceEvidence */ public function setResourceType($val) { $this->_propDict["resourceType"] = $val; return $this; } }