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
26 changes: 24 additions & 2 deletions src/DataprocMetastore/MigrationSummary.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class MigrationSummary extends \Google\Collection
protected $catalogSummariesType = CatalogSummary::class;
protected $catalogSummariesDataType = 'array';
/**
* Output only. The UTC time when this report was finalized.
* Output only. The UTC time when the source metadata read was initiated.
*
* @var string
*/
Expand All @@ -34,6 +34,12 @@ class MigrationSummary extends \Google\Collection
* @var bool
*/
public $dryRun;
/**
* Output only. The UTC time when the report was written.
*
* @var string
*/
public $endTime;
/**
* Output only. The Dataproc Metastore service name (format:
* projects/locations/services) on which the migration was executed.
Expand All @@ -59,7 +65,7 @@ public function getCatalogSummaries()
return $this->catalogSummaries;
}
/**
* Output only. The UTC time when this report was finalized.
* Output only. The UTC time when the source metadata read was initiated.
*
* @param string $createTime
*/
Expand Down Expand Up @@ -90,6 +96,22 @@ public function getDryRun()
{
return $this->dryRun;
}
/**
* Output only. The UTC time when the report was written.
*
* @param string $endTime
*/
public function setEndTime($endTime)
{
$this->endTime = $endTime;
}
/**
* @return string
*/
public function getEndTime()
{
return $this->endTime;
}
/**
* Output only. The Dataproc Metastore service name (format:
* projects/locations/services) on which the migration was executed.
Expand Down
Loading