ApiHive3ReplicationQueryResultRow Data Model

Properties
name data type description
scheduledQueriesResultRow ApiHive3ReplicationScheduledQueriesResultRow
scheduledExecutionsResultRow ApiHive3ReplicationScheduledExecutionsResultRow
replicationMetricsResultRow ApiHive3ReplicationMetricsResultRow

Example

{
  "scheduledQueriesResultRow" : {
    "queryId" : 12345,
    "name" : "...",
    "enabled" : true,
    "nameSpace" : "...",
    "schedule" : "...",
    "user" : "...",
    "query" : "...",
    "nextExecution" : "...",
    "executionId" : 12345
  },
  "scheduledExecutionsResultRow" : {
    "executionId" : 12345,
    "name" : "...",
    "queryId" : "...",
    "state" : "...",
    "startTime" : "...",
    "endTime" : "...",
    "elapsed" : 12345,
    "errorMessage" : "...",
    "lastUpdateTime" : "..."
  },
  "replicationMetricsResultRow" : {
    "scheduledExecutionId" : 12345,
    "policy" : "...",
    "dumpExecutionId" : 12345,
    "metadata" : {
      "dbName" : "...",
      "replicationType" : "INCREMENTAL",
      "stagingDir" : "...",
      "lastReplId" : 12345
    },
    "progress" : {
      "status" : "IN_PROGRESS",
      "stages" : [ { }, { } ]
    },
    "startDate" : "...",
    "endDate" : "...",
    "errorMessage" : "..."
  }
}