displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * The ID of the resource this node represents. * * @param string $id */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * The type of resource this node represents. * * Accepted values: RESOURCE_PATH_NODE_TYPE_UNSPECIFIED, GCP_ORGANIZATION, * GCP_FOLDER, GCP_PROJECT, AWS_ORGANIZATION, AWS_ORGANIZATIONAL_UNIT, * AWS_ACCOUNT, AZURE_MANAGEMENT_GROUP, AZURE_SUBSCRIPTION, * AZURE_RESOURCE_GROUP * * @param self::NODE_TYPE_* $nodeType */ public function setNodeType($nodeType) { $this->nodeType = $nodeType; } /** * @return self::NODE_TYPE_* */ public function getNodeType() { return $this->nodeType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ResourcePathNode::class, 'Google_Service_SecurityCommandCenter_ResourcePathNode');