annotations = $annotations; } /** * @return string[] */ public function getAnnotations() { return $this->annotations; } /** * @param bool */ public function setConfidential($confidential) { $this->confidential = $confidential; } /** * @return bool */ public function getConfidential() { return $this->confidential; } /** * @param int */ public function setContainerConcurrency($containerConcurrency) { $this->containerConcurrency = $containerConcurrency; } /** * @return int */ public function getContainerConcurrency() { return $this->containerConcurrency; } /** * @param GoogleCloudRunOpV2Container[] */ public function setContainers($containers) { $this->containers = $containers; } /** * @return GoogleCloudRunOpV2Container[] */ public function getContainers() { return $this->containers; } /** * @param string */ public function setEncryptionKey($encryptionKey) { $this->encryptionKey = $encryptionKey; } /** * @return string */ public function getEncryptionKey() { return $this->encryptionKey; } /** * @param string */ public function setExecutionEnvironment($executionEnvironment) { $this->executionEnvironment = $executionEnvironment; } /** * @return string */ public function getExecutionEnvironment() { return $this->executionEnvironment; } /** * @param string[] */ public function setLabels($labels) { $this->labels = $labels; } /** * @return string[] */ public function getLabels() { return $this->labels; } /** * @param string */ public function setRevision($revision) { $this->revision = $revision; } /** * @return string */ public function getRevision() { return $this->revision; } /** * @param GoogleCloudRunOpV2RevisionScaling */ public function setScaling(GoogleCloudRunOpV2RevisionScaling $scaling) { $this->scaling = $scaling; } /** * @return GoogleCloudRunOpV2RevisionScaling */ public function getScaling() { return $this->scaling; } /** * @param string */ public function setServiceAccount($serviceAccount) { $this->serviceAccount = $serviceAccount; } /** * @return string */ public function getServiceAccount() { return $this->serviceAccount; } /** * @param string */ public function setTimeout($timeout) { $this->timeout = $timeout; } /** * @return string */ public function getTimeout() { return $this->timeout; } /** * @param GoogleCloudRunOpV2Volume[] */ public function setVolumes($volumes) { $this->volumes = $volumes; } /** * @return GoogleCloudRunOpV2Volume[] */ public function getVolumes() { return $this->volumes; } /** * @param GoogleCloudRunOpV2VpcAccess */ public function setVpcAccess(GoogleCloudRunOpV2VpcAccess $vpcAccess) { $this->vpcAccess = $vpcAccess; } /** * @return GoogleCloudRunOpV2VpcAccess */ public function getVpcAccess() { return $this->vpcAccess; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudRunOpV2RevisionTemplate::class, 'Google_Service_CloudRun_GoogleCloudRunOpV2RevisionTemplate');