acceleratorTopology = $acceleratorTopology; } /** * @return string */ public function getAcceleratorTopology() { return $this->acceleratorTopology; } /** * Output only. The state of the accelerator topology. * * Accepted values: ACTIVATING, ACTIVE, DEACTIVATING, FAILED, INCOMPLETE, * REACTIVATING * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } /** * Output only. The result of the latest accelerator topology state check. * * @param InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails $stateDetails */ public function setStateDetails(InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails $stateDetails) { $this->stateDetails = $stateDetails; } /** * @return InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails */ public function getStateDetails() { return $this->stateDetails; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(InstanceGroupManagerStatusAcceleratorTopology::class, 'Google_Service_Compute_InstanceGroupManagerStatusAcceleratorTopology');