import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)console = client.cloud.gpu_baremetal_clusters.servers.get_console( instance_id="instance_id", project_id=0, region_id=0,)print(console.remote_console)
import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)console = client.cloud.gpu_baremetal_clusters.servers.get_console( instance_id="instance_id", project_id=0, region_id=0,)print(console.remote_console)