esx hcl reports: location
The
location
structure contains the URI location to download generated compatibility report, as well as a token required (as a header on the HTTP GET request) to get the report. The validity of the token is 5 minutes. After the token expires, any attempt to call the URI with said token will fail.Representation:
{
"report_token" : {
"expiry" : "2015-01-01T22:13:05.651Z",
"token" : "secret string"
},
"url" : "http://myurl.com"
}
"report_token" : {
"expiry" : "2015-01-01T22:13:05.651Z",
"token" : "secret string"
},
"url" : "http://myurl.com"
}
Attributes:
Name | Type | Description |
---|---|---|
Required | ||
url | URI | Compatibility report download URL. |
report_token | token | Information about the token required in the HTTP GET request to download the compatibility report. |
report_token.token | secret | A one-time, short-lived token required in the HTTP header of the request to the url. This token needs to be passed in as a header with the name "session-id". |
report_token.expiry | date_time | Expiry time of the token |