dockerActionManager->GetAndGenerateSecretWrapper($this->uiSecret); } /** * @throws JsonException */ public function GetRunningState() : ContainerState { return $this->dockerActionManager->GetContainerRunningState($this); } /** * @throws JsonException */ public function GetRestartingState() : ContainerState { return $this->dockerActionManager->GetContainerRestartingState($this); } public function GetUpdateState() : VersionState { return $this->dockerActionManager->GetContainerUpdateState($this); } public function GetStartingState() : ContainerState { return $this->dockerActionManager->GetContainerStartingState($this); } }