Para implementar tu documento de OpenAPI, ejecutas el comando de gcloud endpoints services deploy
. La primera vez que implementas tu documento de OpenAPI, el comando de gcloud
llama a una API de Service Management para crear un servicio administrado mediante el nombre que especificaste en el campo host
de tu documento de OpenAPI.
Administración de servicio asigna un ID de configuración de forma automática, que consiste en una marca de fecha seguida de un número de revisión. Por ejemplo: 2017-02-13r0
Si vuelves a implementar la configuración de servicio el mismo día, Administración de servicio incrementa el número de revisión del ID de configuración. En cambio, si lo haces otro día, Administración de servicio asigna una marca de fecha nueva al ID de configuración y restablece el número de revisión a 0.
Endpoints usa Administración de servicio para almacenar configuraciones de servicio. Administración de servicio solo almacena las últimas 100 configuraciones de servicio.
Esta página describe cómo ver el nombre del servicio y los ID de configuración.
Google Cloud console
- In the Google Cloud console, go to the Endpoints > Services page for your project.
- If you have more than one API, select an API from the list.
- Click the Deployment history tab.
The service name is displayed between the API name and the tabs, near the top-left side of the page. In the Service configuration deployments list, the configuration ID is displayed along with the date and the email address of the principal who deployed the configuration. The Service configuration deployments list displays the latest 100 configuration deployments. The most recent configuration is displayed at the top of the list.
gcloud
- Enter the following to display the project IDs for your
Google Cloud projects:
gcloud projects list
- Using the applicable project ID from the previous step, set the default
project to the one that your API is in:
gcloud config set project YOUR_PROJECT_ID
- Get a list of services in your project:
gcloud endpoints services list
- Using the applicable service name from the previous step, get a list of
configuration IDs for the service:
gcloud endpoints configs list --service=YOUR_SERVICE_NAME
For more information on the preceding commands, see the gcloud
reference.
¿Qué sigue?
- Obtén más información para implementar un documento de OpenAPI.
- Obtén más información sobre la API de Service Management.