features = $features; } /** * @return string[] */ public function getFeatures() { return $this->features; } /** * The ID of the Project's location for default Google Cloud resources. It * will be one of the available [Google App Engine * locations](https://cloud.google.com/about/locations#region). * * @param string $locationId */ public function setLocationId($locationId) { $this->locationId = $locationId; } /** * @return string */ public function getLocationId() { return $this->locationId; } /** * Indicates whether the location for default Google Cloud resources is a * [regional or multi-regional * location](https://firebase.google.com/docs/projects/locations#types) for * data replication. * * Accepted values: LOCATION_TYPE_UNSPECIFIED, REGIONAL, MULTI_REGIONAL * * @param self::TYPE_* $type */ public function setType($type) { $this->type = $type; } /** * @return self::TYPE_* */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Location::class, 'Google_Service_FirebaseManagement_Location');