name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Output only. Most recent known state of the deployment. * * Accepted values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, * OUT_OF_SYNC, DELETE_FAILED * * @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(InterceptDeploymentGroupDeployment::class, 'Google_Service_NetworkSecurity_InterceptDeploymentGroupDeployment');