Skip to content

Commit

Permalink
Add offlineDataTransferStatus (#4598)
Browse files Browse the repository at this point in the history
  • Loading branch information
ankushbindlish2 authored and jianghaolu committed Nov 30, 2018
1 parent b7f6170 commit c64f458
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
"lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z",
"lastSyncPerItemErrorCount": 0
},
"currentProgress": null
"currentProgress": null,
"offlineDataTransferStatus": "NotRunning"
},
"offlineDataTransfer": "on",
"offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
"lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z",
"lastSyncPerItemErrorCount": 0
},
"currentProgress": null
"currentProgress": null,
"offlineDataTransferStatus": "NotRunning"
},
"offlineDataTransfer": "on",
"offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa",
Expand Down Expand Up @@ -80,7 +81,8 @@
"lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z",
"lastSyncPerItemErrorCount": 0
},
"currentProgress": null
"currentProgress": null,
"offlineDataTransferStatus": "NotRunning"
},
"offlineDataTransfer": "off"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
"lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z",
"lastSyncPerItemErrorCount": 0
},
"currentProgress": null
"currentProgress": null,
"offlineDataTransferStatus": "NotRunning"
},
"offlineDataTransfer": "off",
"offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3413,6 +3413,10 @@
"currentProgress": {
"$ref": "#/definitions/SyncProgressStatus",
"description": "Current progress"
},
"offlineDataTransferStatus": {
"$ref": "#/definitions/OfflineDataTransferState",
"description": "Offline Data Transfer State"
}
}
},
Expand Down Expand Up @@ -3518,6 +3522,16 @@
"NoActivity"
]
},
"OfflineDataTransferState": {
"type": "string",
"description": "Type of the Health state",
"enum": [
"InProgress",
"Stopping",
"NotRunning",
"Complete"
]
},
"WorkflowStatus": {
"type": "string",
"description": "Type of the Workflow Status",
Expand Down

0 comments on commit c64f458

Please sign in to comment.