dnsSuffix = $dnsSuffix; } /** * @return string */ public function getDnsSuffix() { return $this->dnsSuffix; } /** * User assigned name for this resource. Must be unique within the project. * The name must be 1-63 characters long, must begin with a letter, end with a * letter or digit, and only contain lowercase letters, digits or dashes. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DnsZone::class, 'Google_Service_ServiceNetworking_DnsZone');