Right after creation of the File system on AWS ONTAP, we issue an API call to change the timezone. The API returns a job Id
[07/05/2024 07:57:46 +0000] [509] [INFO] Timezone change to Australia/Sydney response: {
"job": {
"uuid": "44706ddc-3aa4-11ef-bf0d-2b68f60c12da",
"_links": {
"self": {
"href": "/api/cluster/jobs/44706ddc-3aa4-11ef-bf0d-2b68f60c12da"
}
}
}
}
Trying to get the job status I am getting entry does not exists. Where do I check this job status?
[appuser@d6b46e181c4e:/$ curl -X GET -u fsxadmin:password -k "https://10.185.2.137/api/cluster/jobs/44706ddc-3aa4-11ef-bf0d-2b68f60c12da"
{
"error": {
"message": "entry doesn't exist",
"code": "4",
"target": "uuid"
}
}
The timezone update goes through btw. I am not sure how do i handle this?