Python
from gcore import Gcore client = Gcore( api_key="My API Key", ) task_id_list = client.cloud.gpu_baremetal_clusters.resize( cluster_id="cluster_id", project_id=0, region_id=0, instances_count=1, ) print(task_id_list.tasks)
{ "tasks": [ "d478ae29-dedc-4869-82f0-96104425f565" ] }
Change the number of nodes in a GPU cluster. The cluster can be scaled up or down.
x >= 1
Was this page helpful?