name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setResourceType($resourceType) { $this->resourceType = $resourceType; } /** * @return string */ public function getResourceType() { return $this->resourceType; } /** * @param string */ public function setResourceValue($resourceValue) { $this->resourceValue = $resourceValue; } /** * @return string */ public function getResourceValue() { return $this->resourceValue; } /** * @param string */ public function setScope($scope) { $this->scope = $scope; } /** * @return string */ public function getScope() { return $this->scope; } /** * @param string[] */ public function setTagValues($tagValues) { $this->tagValues = $tagValues; } /** * @return string[] */ public function getTagValues() { return $this->tagValues; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudSecuritycenterV1ResourceValueConfig::class, 'Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1ResourceValueConfig');