group = $group; } /** * @return string */ public function getGroup() { return $this->group; } /** * The name of the resource being requested. Empty means all. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Namespace of the action being requested. Currently, there is no distinction * between no namespace and all namespaces. Both are represented by "" * (empty). * * @param string $ns */ public function setNs($ns) { $this->ns = $ns; } /** * @return string */ public function getNs() { return $this->ns; } /** * The optional resource type requested. "*" means all. * * @param string $resource */ public function setResource($resource) { $this->resource = $resource; } /** * @return string */ public function getResource() { return $this->resource; } /** * The optional subresource type. * * @param string $subresource */ public function setSubresource($subresource) { $this->subresource = $subresource; } /** * @return string */ public function getSubresource() { return $this->subresource; } /** * A Kubernetes resource API verb, like get, list, watch, create, update, * delete, proxy. "*" means all. * * @param string $verb */ public function setVerb($verb) { $this->verb = $verb; } /** * @return string */ public function getVerb() { return $this->verb; } /** * The API version of the resource. "*" means all. * * @param string $version */ public function setVersion($version) { $this->version = $version; } /** * @return string */ public function getVersion() { return $this->version; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AccessReview::class, 'Google_Service_SecurityCommandCenter_AccessReview');