I'm trying to install libraries using this api: https:///api/2.0/libraries/install/ Here is the body:
{
"cluster_id": "<CLUSTER_ID>",
"libraries": [
{
"pypi": {
"package": "cryptography==3.4.7"
}
}
]
}
And I'm getting the below response while my clusterId is valid and it's running
{
"error_code": "INVALID_PARAMETER_VALUE",
"message": "Cluster <CLUSTER_ID> is terminated or does not exist"
}