I have created a managed service in google endpoints by defining an openApi.json
file of my service.
Along with service details I have added custom attributes in my openApi.json
using x-***
keys, with this i get a valid openApi spec and have successfully deployed a version using the command gcloud endpoints services deploy openApi.json
Now when i fetch that configuration using the command gcloud endpoints configs describe --service=SERVICE VERSION
, the config I get is missing those custom attributes I added.
How can I get the original openApi spec(along with those custom attributes) from gcloud endpoints?