We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8845eb commit 93732b1Copy full SHA for 93732b1
src/graphdatascience/session/aura_api.py
@@ -314,7 +314,9 @@ def estimate_size(
314
"instance_type": "dsenterprise",
315
}
316
317
- response = self._request_session.post(f"{self._base_uri}/{AuraApi.API_VERSION}/instances/sizing", json=data)
+ response = self._request_session.post(
318
+ f"{self._base_uri}/{AuraApi.API_VERSION}/graph-analytics/sessions/sizing", json=data
319
+ )
320
self._check_resp(response)
321
322
return EstimationDetails.from_json(response.json()["data"])
0 commit comments