Skip to content

Commit 2c06702

Browse files
1 parent 0b457e2 commit 2c06702

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

src/DataprocMetastore/MigrationExecution.php

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,11 @@ class MigrationExecution extends \Google\Model
9696
*/
9797
public $name;
9898
/**
99-
* Output only. The current phase of the migration execution.
99+
* Output only. Deprecated: Phase was designed for incoming migrations to
100+
* Dataproc Metastore, not applicable when migrating away from it. The current
101+
* phase of the migration execution.
100102
*
103+
* @deprecated
101104
* @var string
102105
*/
103106
public $phase;
@@ -116,17 +119,20 @@ class MigrationExecution extends \Google\Model
116119
public $stateMessage;
117120

118121
/**
119-
* Configuration information specific to migrating from self-managed hive
120-
* metastore on Google Cloud using Cloud SQL as the backend database to
121-
* Dataproc Metastore.
122+
* Deprecated: Migrations to Dataproc Metastore are no longer supported. Use
123+
* BigLake Metastore migration instead. Configuration information specific to
124+
* migrating from self-managed hive metastore on Google Cloud using Cloud SQL
125+
* as the backend database to Dataproc Metastore.
122126
*
127+
* @deprecated
123128
* @param CloudSQLMigrationConfig $cloudSqlMigrationConfig
124129
*/
125130
public function setCloudSqlMigrationConfig(CloudSQLMigrationConfig $cloudSqlMigrationConfig)
126131
{
127132
$this->cloudSqlMigrationConfig = $cloudSqlMigrationConfig;
128133
}
129134
/**
135+
* @deprecated
130136
* @return CloudSQLMigrationConfig
131137
*/
132138
public function getCloudSqlMigrationConfig()
@@ -184,17 +190,21 @@ public function getName()
184190
return $this->name;
185191
}
186192
/**
187-
* Output only. The current phase of the migration execution.
193+
* Output only. Deprecated: Phase was designed for incoming migrations to
194+
* Dataproc Metastore, not applicable when migrating away from it. The current
195+
* phase of the migration execution.
188196
*
189197
* Accepted values: PHASE_UNSPECIFIED, REPLICATION, CUTOVER
190198
*
199+
* @deprecated
191200
* @param self::PHASE_* $phase
192201
*/
193202
public function setPhase($phase)
194203
{
195204
$this->phase = $phase;
196205
}
197206
/**
207+
* @deprecated
198208
* @return self::PHASE_*
199209
*/
200210
public function getPhase()

0 commit comments

Comments
 (0)