/deeplearning/installStatus: Install Status

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 installStatus resource:

Use dark colors for code blocksCopy
1
https://organization.example.com/<context>/sharing/rest/portals/0123456789ABCDEF/livingatlascatalog/deeplearning/installStatus?f=pjson

Description

The installStatus 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 installingItemPackageInfos array.

Request parameters

ParameterDetails

f

The response format. The default format is json.

Values: json | pjson

JSON Response example

The following example demonstrates the response that is returned when an import is in progress:

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "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:

Use dark colors for code blocksCopy
1
2
3
4
{
  "installingItemPackageInfos":[],
  "success":true
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.