- URL:
- https://<root>/portals/[portalID]/livingatlascatalog/deeplearning/installStatus
- Methods:
GET
- Version Introduced:
- 11.5
Example usage
The following is a sample request URL used to access the install
resource:
https://organization.example.com/<context>/sharing/rest/portals/0123456789ABCDEF/livingatlascatalog/deeplearning/installStatus?f=pjson
Description
The install
resource returns a list of currently running import jobs for deep learning packages. This resource will list the package being imported as well as the job's current status. Once the job has finished (either successfully or unsuccessfuly), or if no import has been initiated, this resource will return an empty installing
array.
Request parameters
Parameter | Details |
---|---|
| The response format. The default format is Values: |
JSON Response example
The following example demonstrates the response that is returned when an import is in progress:
{
"installingItemPackageInfos": [
{
"accountId":"0123456789ABCDEF",
"itemId":"0b0c8253d2194335a0f7183388ca6935",
"jobId":"d6484697429e4ff9bbd2c82901c24574",
"itemType":"deep_learning",
"title":"Blocks and Streets Extraction - KSA ",
"itemSizeInBytes":3723301515,
"status":"IN_PROGRESS_DOWNLOADING",
"importDateTime":1741887665318,
"modifiedDateTime":1741887665786,
"onlineModifiedDateTime":-1,
"onlineCreatedDateTime":-1
}
],
"success":true
}
The following example demonstrates the response that is returned when an import has finished or if no import has been initiated:
{
"installingItemPackageInfos":[],
"success":true
}