Accessing the VMware Aria Operations integration within the VMware Aria Automation Assembler UI (under Infrastructure > Integrations), the SYNC PRICES task never completes and shows the status provLib.shared.message.syncPriceProgress
https://<Aria-Automation-FQDN>/iaas/api/integrations/<INTEGRATION-id>?apiVersion=2021-07-15) returns the status of "lastRunningPriceSyncStatus" as "IN_PROGRESS".VMware Aria Automation 8.x
Obtain a Bearer token to use for the API calls by following the article Generate an Access Token and Bearer Token in VMware Aria Automation for API Authentication
Obtain the Integration ID and the Username from the UI by opening the respective VMware Aria operations integration within the VMware Aria Automation Assembler UI under Infrastructure > Integrations. The Integration ID is the UUID in the URL, soon after '%2F'.
Submit a PATCH request to your Aria Automation integrations API endpoint:
URL : https://<Aria-Automation-FQDN>/iaas/api/integrations/<INTEGRATION-id>?apiVersion=2021-07-15
Body :
{ "privateKeyId": "Username",
"privateKey": "Password",
"customProperties": {
"lastRunningPriceSyncStatus": "SUCCESSFUL"
}
}
Note: Ensure to replace Username and Password with the actual integration credentials noted in step 2.
Status code 202 Accepted indicates that the above API call is successful.
Return to the VMware Aria Automation Assembler UI, navigate to Infrastructure > Integrations > VMware Aria Operations endpoint. Manually trigger the price sync task and monitor the task. Status provLib.shared.message.priceSyncCompletedTimeAgo indicates that the sync completed successfully.