args = $args; } /** * @return string[] */ public function getArgs() { return $this->args; } /** * Optional. True if the intention is to clear out existing args list. * * @param bool $clearArgs */ public function setClearArgs($clearArgs) { $this->clearArgs = $clearArgs; } /** * @return bool */ public function getClearArgs() { return $this->clearArgs; } /** * List of environment variables to set in the container. Will be merged with * existing env for override. * * @param GoogleCloudRunV2EnvVar[] $env */ public function setEnv($env) { $this->env = $env; } /** * @return GoogleCloudRunV2EnvVar[] */ public function getEnv() { return $this->env; } /** * The name of the container specified as a DNS_LABEL. * * @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(GoogleCloudRunV2ContainerOverride::class, 'Google_Service_CloudRun_GoogleCloudRunV2ContainerOverride');