Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions src/DataprocMetastore/MigrationExecution.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,11 @@ class MigrationExecution extends \Google\Model
*/
public $name;
/**
* Output only. The current phase of the migration execution.
* Output only. Deprecated: Phase was designed for incoming migrations to
* Dataproc Metastore, not applicable when migrating away from it. The current
* phase of the migration execution.
*
* @deprecated
* @var string
*/
public $phase;
Expand All @@ -116,17 +119,20 @@ class MigrationExecution extends \Google\Model
public $stateMessage;

/**
* Configuration information specific to migrating from self-managed hive
* metastore on Google Cloud using Cloud SQL as the backend database to
* Dataproc Metastore.
* Deprecated: Migrations to Dataproc Metastore are no longer supported. Use
* BigLake Metastore migration instead. Configuration information specific to
* migrating from self-managed hive metastore on Google Cloud using Cloud SQL
* as the backend database to Dataproc Metastore.
*
* @deprecated
* @param CloudSQLMigrationConfig $cloudSqlMigrationConfig
*/
public function setCloudSqlMigrationConfig(CloudSQLMigrationConfig $cloudSqlMigrationConfig)
{
$this->cloudSqlMigrationConfig = $cloudSqlMigrationConfig;
}
/**
* @deprecated
* @return CloudSQLMigrationConfig
*/
public function getCloudSqlMigrationConfig()
Expand Down Expand Up @@ -184,17 +190,21 @@ public function getName()
return $this->name;
}
/**
* Output only. The current phase of the migration execution.
* Output only. Deprecated: Phase was designed for incoming migrations to
* Dataproc Metastore, not applicable when migrating away from it. The current
* phase of the migration execution.
*
* Accepted values: PHASE_UNSPECIFIED, REPLICATION, CUTOVER
*
* @deprecated
* @param self::PHASE_* $phase
*/
public function setPhase($phase)
{
$this->phase = $phase;
}
/**
* @deprecated
* @return self::PHASE_*
*/
public function getPhase()
Expand Down
Loading