artifacts = $artifacts; } /** * @return string */ public function getArtifacts() { return $this->artifacts; } /** * @param string */ public function setContent($content) { $this->content = $content; } /** * @return string */ public function getContent() { return $this->content; } /** * @param TerraformOutput[] */ public function setOutputs($outputs) { $this->outputs = $outputs; } /** * @return TerraformOutput[] */ public function getOutputs() { return $this->outputs; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ApplyResults::class, 'Google_Service_Config_ApplyResults');