containers = $containers; } /** * @return Container[] */ public function getContainers() { return $this->containers; } /** * @param Label[] */ public function setLabels($labels) { $this->labels = $labels; } /** * @return Label[] */ public function getLabels() { return $this->labels; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setNs($ns) { $this->ns = $ns; } /** * @return string */ public function getNs() { return $this->ns; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Pod::class, 'Google_Service_SecurityCommandCenter_Pod');