diff --git a/Dataplex/metadata/V1/Datascans.php b/Dataplex/metadata/V1/Datascans.php
index e4c189cf6f4b..1b5cb8b5234d 100644
Binary files a/Dataplex/metadata/V1/Datascans.php and b/Dataplex/metadata/V1/Datascans.php differ
diff --git a/Dataplex/src/V1/DataScan/ExecutionStatus.php b/Dataplex/src/V1/DataScan/ExecutionStatus.php
index db12d99a61b7..3ffe1ed23e80 100644
--- a/Dataplex/src/V1/DataScan/ExecutionStatus.php
+++ b/Dataplex/src/V1/DataScan/ExecutionStatus.php
@@ -27,6 +27,12 @@ class ExecutionStatus extends \Google\Protobuf\Internal\Message
* Generated from protobuf field .google.protobuf.Timestamp latest_job_end_time = 5;
*/
protected $latest_job_end_time = null;
+ /**
+ * Optional. The time when the DataScanJob execution was created.
+ *
+ * Generated from protobuf field .google.protobuf.Timestamp latest_job_create_time = 6 [(.google.api.field_behavior) = OPTIONAL];
+ */
+ protected $latest_job_create_time = null;
/**
* Constructor.
@@ -38,6 +44,8 @@ class ExecutionStatus extends \Google\Protobuf\Internal\Message
* The time when the latest DataScanJob started.
* @type \Google\Protobuf\Timestamp $latest_job_end_time
* The time when the latest DataScanJob ended.
+ * @type \Google\Protobuf\Timestamp $latest_job_create_time
+ * Optional. The time when the DataScanJob execution was created.
* }
*/
public function __construct($data = NULL) {
@@ -117,6 +125,42 @@ public function setLatestJobEndTime($var)
return $this;
}
+ /**
+ * Optional. The time when the DataScanJob execution was created.
+ *
+ * Generated from protobuf field .google.protobuf.Timestamp latest_job_create_time = 6 [(.google.api.field_behavior) = OPTIONAL];
+ * @return \Google\Protobuf\Timestamp|null
+ */
+ public function getLatestJobCreateTime()
+ {
+ return $this->latest_job_create_time;
+ }
+
+ public function hasLatestJobCreateTime()
+ {
+ return isset($this->latest_job_create_time);
+ }
+
+ public function clearLatestJobCreateTime()
+ {
+ unset($this->latest_job_create_time);
+ }
+
+ /**
+ * Optional. The time when the DataScanJob execution was created.
+ *
+ * Generated from protobuf field .google.protobuf.Timestamp latest_job_create_time = 6 [(.google.api.field_behavior) = OPTIONAL];
+ * @param \Google\Protobuf\Timestamp $var
+ * @return $this
+ */
+ public function setLatestJobCreateTime($var)
+ {
+ GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
+ $this->latest_job_create_time = $var;
+
+ return $this;
+ }
+
}