_propDict)) { return $this->_propDict["ipRanges"]; } else { return null; } } /** * Sets the ipRanges * List of IP address ranges in IPv4 CIDR format (for example, 1.2.3.4/32) or any allowable IPv6 format from IETF RFC5969. Required. * * @param IpRange[] $val The ipRanges * * @return IpNamedLocation */ public function setIpRanges($val) { $this->_propDict["ipRanges"] = $val; return $this; } /** * Gets the isTrusted * true if this location is explicitly trusted. Optional. Default value is false. * * @return bool|null The isTrusted */ public function getIsTrusted() { if (array_key_exists("isTrusted", $this->_propDict)) { return $this->_propDict["isTrusted"]; } else { return null; } } /** * Sets the isTrusted * true if this location is explicitly trusted. Optional. Default value is false. * * @param bool $val The isTrusted * * @return IpNamedLocation */ public function setIsTrusted($val) { $this->_propDict["isTrusted"] = boolval($val); return $this; } }