artifactAlias = $artifactAlias; } /** * @return string */ public function getArtifactAlias() { return $this->artifactAlias; } /** * Output only. The artifact that is deployed. * * @param string $artifactReference */ public function setArtifactReference($artifactReference) { $this->artifactReference = $artifactReference; } /** * @return string */ public function getArtifactReference() { return $this->artifactReference; } /** * Output only. The summary of container status of the artifact deployment. * Format as `ContainerStatusState-Reason : restartCount` e.g. "Waiting- * ImagePullBackOff : 3" * * @param string $containerStatusSummary */ public function setContainerStatusSummary($containerStatusSummary) { $this->containerStatusSummary = $containerStatusSummary; } /** * @return string */ public function getContainerStatusSummary() { return $this->containerStatusSummary; } /** * Output only. The time at which the deployment was deployed. * * @param string $deployTime */ public function setDeployTime($deployTime) { $this->deployTime = $deployTime; } /** * @return string */ public function getDeployTime() { return $this->deployTime; } /** * Output only. Unique identifier of `ArtifactDeployment`. * * @param string $id */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * Output only. The source commits at which this artifact was built. Extracted * from provenance. * * @param string[] $sourceCommitUris */ public function setSourceCommitUris($sourceCommitUris) { $this->sourceCommitUris = $sourceCommitUris; } /** * @return string[] */ public function getSourceCommitUris() { return $this->sourceCommitUris; } /** * Output only. The time at which the deployment was undeployed, all artifacts * are considered undeployed once this time is set. * * @param string $undeployTime */ public function setUndeployTime($undeployTime) { $this->undeployTime = $undeployTime; } /** * @return string */ public function getUndeployTime() { return $this->undeployTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ArtifactDeployment::class, 'Google_Service_DeveloperConnect_ArtifactDeployment');