edges = $edges; } /** * @return AttackPathEdge[] */ public function getEdges() { return $this->edges; } /** * The attack path name, for example, * `organizations/12/simulation/34/valuedResources/56/attackPaths/78` * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * A list of nodes that exist in this attack path. * * @param AttackPathNode[] $pathNodes */ public function setPathNodes($pathNodes) { $this->pathNodes = $pathNodes; } /** * @return AttackPathNode[] */ public function getPathNodes() { return $this->pathNodes; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AttackPath::class, 'Google_Service_SecurityCommandCenter_AttackPath');