Analysis: Cloud
Analysis: Cloud
#340590
Description
Resource
Supported Operations
Table: Cloud Analysis Supported Operations
Operation |
HTTP Method |
Input |
Output |
Description |
GET /analysis/cloud |
Collection of: |
Use this resource to return a list of existing cloud analyses in Densify. |
Table:Cloud Analysis Response Schema
Element |
Type |
Filter/Sort |
Description |
string |
|
The unique identifier for the cloud analysis entity in Densify. |
|
string |
Filter by:
|
The name given to the cloud analysis entity. The analysis name typically corresponds to the account ID, subcription ID, or project ID from the infrastructure data collected. Use the analysisName and analysisName_like filter to return only cloud analyses you are interested in. For example, /cloud/aws?analysisName_like=bob will return all AWS analyses with a "bob" substring in the analysis name. |
|
string |
|
The date and time (in milliseconds) when the last analysis completed. If an analysis has never been completed, "0" is returned. |
|
string |
|
The referenced resource to the analysis entity. See Analysis: Entity for details of the analysis entity resource. |
|
string |
|
The referenced resource to the recommendations of the analysis. For details of the various cloud analysis recommendations, see: |
|
string |
|
The referenced resource to the status of the analysis. See Analysis: Status for details. |
|
string |
|
For errors, the message for the status response is returned. |
|
number |
|
The HTTP response code of the request error. Possible status values include:
|
Examples
Example: Listing All Cloud Analyses
The following example shows you how to list all cloud analyses in Densify.

Request:
GET /analysis/cloud
Response:
[
{
"analysisId": "9a5d2d55-6d85-4fde-8bab-fcd0cef8c5bf",
"analysisName": "624756828528",
"analysisCompletedOn": 1548083469463,
"href": "/analysis/cloud/aws/9a5d2d55-6d85-4fde-8bab-fcd0cef8c5bf",
"analysisResults": "/analysis/cloud/aws/9a5d2d55-6d85-4fde-8bab-fcd0cef8c5bf/results",
"analysisStatus": "/analysis/cloud/aws/9a5d2d55-6d85-4fde-8bab-fcd0cef8c5bf/status"
},
{
"analysisId": "0930c31d-13ac-4a3f-892e-2a35c8a3f842",
"analysisName": "DEN-prod-OPS-45",
"analysisCompletedOn": 1548083655897,
"href": "/analysis/cloud/gcp/0930c31d-13ac-4a3f-892e-2a35c8a3f842",
"analysisResults": "/analysis/cloud/gcp/0930c31d-13ac-4a3f-892e-2a35c8a3f842/results",
"analysisStatus": "/analysis/cloud/gcp/0930c31d-13ac-4a3f-892e-2a35c8a3f842/status"
},
{
"analysisId": "6b8ab8e1-a026-4db9-a4ae-2d684446731f",
"analysisName": "12d89cbc-bc00-4d00-bcf6-ce6ec08d45bd",
"analysisCompletedOn": 1548340596930,
"href": "/analysis/cloud/azure/6b8ab8e1-a026-4db9-a4ae-2d684446731f",
"analysisResults": ""/analysis/cloud/azure/6b8ab8e1-a026-4db9-a4ae-2d684446731f/results",
"analysisStatus":"/analysis/cloud/azure/6b8ab8e1-a026-4db9-a4ae-2d684446731f/status"
}
]