contentsSql = $contentsSql; } /** * @return SqlDefinition */ public function getContentsSql() { return $this->contentsSql; } /** * The data preparation definition, stored as a YAML string. * * @param string $contentsYaml */ public function setContentsYaml($contentsYaml) { $this->contentsYaml = $contentsYaml; } /** * @return string */ public function getContentsYaml() { return $this->contentsYaml; } /** * A list of actions that this action depends on. * * @param Target[] $dependencyTargets */ public function setDependencyTargets($dependencyTargets) { $this->dependencyTargets = $dependencyTargets; } /** * @return Target[] */ public function getDependencyTargets() { return $this->dependencyTargets; } /** * Whether this action is disabled (i.e. should not be run). * * @param bool $disabled */ public function setDisabled($disabled) { $this->disabled = $disabled; } /** * @return bool */ public function getDisabled() { return $this->disabled; } /** * Arbitrary, user-defined tags on this action. * * @param string[] $tags */ public function setTags($tags) { $this->tags = $tags; } /** * @return string[] */ public function getTags() { return $this->tags; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DataPreparation::class, 'Google_Service_Dataform_DataPreparation');