import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)template_short = client.fastedge.templates.create( binary_id=0, name="name", owned=True, params=[{ "data_type": "string", "mandatory": True, "name": "name", }],)print(template_short.id)
import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)template_short = client.fastedge.templates.create( binary_id=0, name="name", owned=True, params=[{ "data_type": "string", "mandatory": True, "name": "name", }],)print(template_short.id)