Other: API call mentioned that lists all available HVA versions or directly retrieves the latest HVA version
Answered
For our self hosted client we have to download the Fivetran HVA installer/zip archives on their machines, is there a way where we can download the required zip using some script or API or do you store these artefacts in any publicly available location like S3 bucket which can be accessed over internet.
Do we have an API call to get the latest version or list all available versions ? This will make the process easier.
Do we have an API call to get the latest version or list all available versions ? This will make the process easier.
Step 1 : Get latest version or list all versions and write a logic to find the latest version (need API for this )
Step 2 : Generate the signed URL by passing the parameters like platform and version
Step 3 : Download using the signed URL
-
Official comment
Hi Amar,
We haven't publicly documented this yet, but you can use this endpoint with your API key to download HVA versions:
GET https://api.fivetran.com/hvr/download@Nonnull String platform
@Nonnull String version
@Nullable String architecture
@Nullable String filetype
@Nullable String release
For example:
curl --location 'https://api.fivetran.com/hvr/download?platform=linux&version=6.1.0_54&architecture=x64&release=ga' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Basic <yourBase64TokenHere>'Thanks,
Jimmy
Please sign in to leave a comment.
Comments
1 comment