hostPort = $hostPort; } /** * @return string */ public function getHostPort() { return $this->hostPort; } /** * Output only. Place holder for the external source identifier(e.g DMS job * name) that created the cluster. * * @param string $referenceId */ public function setReferenceId($referenceId) { $this->referenceId = $referenceId; } /** * @return string */ public function getReferenceId() { return $this->referenceId; } /** * Output only. Type of migration source. * * Accepted values: MIGRATION_SOURCE_TYPE_UNSPECIFIED, DMS * * @param self::SOURCE_TYPE_* $sourceType */ public function setSourceType($sourceType) { $this->sourceType = $sourceType; } /** * @return self::SOURCE_TYPE_* */ public function getSourceType() { return $this->sourceType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MigrationSource::class, 'Google_Service_CloudAlloyDBAdmin_MigrationSource');