I am attempting to setup a local development version of an existing AppEngine application, I have everything running via dev_appserver and I can access the application, however none of the Task Queues are listed in the local admin interface only 'default' shows. I had hoped to download the queue.yaml and start it with dev_appserver as I did with the services but I cannot find the file anywhere in GCP to download.
I've searched the file system for queue: to no avail, I've searched through the gcloud cli docs and commands, doesn't seem to be any options to download or view only deploy the queue.yaml. There are no options in the GCP UI that I can see.
The queue is called with:
(new PushTask('/someUrl', [{params omitted}], ['name' => $taskName]))->add($abc);
The application throws the following error because it can't find the queues:
WARNING: exception 'google\appengine\api\taskqueue\TaskQueueException' with message 'Unknown queue'
How do I view or Download the Queue.yaml from AppEngine?