bandwidthLimit = $bandwidthLimit; } /** * @return BandwidthLimit */ public function getBandwidthLimit() { return $this->bandwidthLimit; } /** * Specifies the client-specified AgentPool description. * * @param string $displayName */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * Required. Specifies a unique string that identifies the agent pool. Format: * `projects/{project_id}/agentPools/{agent_pool_id}` * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Output only. Specifies the state of the AgentPool. * * Accepted values: STATE_UNSPECIFIED, CREATING, CREATED, DELETING * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AgentPool::class, 'Google_Service_Storagetransfer_AgentPool');