I am trying to create an instance pool using databricks api and I need the photon enabled, in the documentation I could not find the parameter to enable it, does anyone know how to do it?
I used this documentation, https://docs.databricks.com/dev-tools/api/latest/instance-pools.html#create
Here is my payload
payload = {
        "instance_pool_name": f"DRIVER - {instance_type}",
        "node_type_id": instance_type,
        "idle_instance_autotermination_minutes": 4,
        "enable_elastic_disk": True,
        "max_capacity": 300,
        "min_idle_instances":0,
        "preloaded_spark_versions": ["12.0.x-scala2.12"],
        
        # RUNTINME PHOTON TESTS
        "preloaded_runtime_engine": "PHOTON",
        "runtime_engine": "PHOTON",
        
        "aws_attributes":{
            "availability":"SPOT",
            "zone_id": "us-east-1a",
            "spot_bid_price_percent": 100
       },
   "custom_tags":[
     {...}
   ]
}
I tried adding the cluster creation options, but neither runtime engine nor preloaded parameters work
        "preloaded_runtime_engine": "PHOTON",
        "runtime_engine": "PHOTON",