Undeploying an API proxy

This page applies to Apigee and Apigee hybrid.

View Apigee Edge documentation.

Undeploy an API proxy revision from your cluster as described in the following sections.

Note that when you undeploy a revision:

  • Apigee does not roll the revision back to the previously deployed revision.
  • After undeploying, no revisions of the API proxy are deployed in the environment.

Undeploying an API proxy is similar to deleting an API proxy, except that when you undeploy a revision you can choose to edit it in the UI and later re-deploy it. If you delete the API proxy, it is no longer available to edit.

New Proxy Editor

To undeploy an API proxy using the UI:

  1. If you are using the Apigee UI in Cloud console: Select Proxy development > API Proxies.

    If you are using the classic Apigee UI: Select Develop > API Proxies and in the Proxies pane, select the environment for the proxy.

  2. Select the API proxy that you want to undeploy. The UI displays the API proxy's Overview view.

    Proxy in the Overview view.

  3. Hover the cursor over the icon in the Status column and select Undeploy:

    Undeploy a proxy.

Classic Proxy Editor

To undeploy an API proxy using the UI:

  1. Sign in to the Apigee UI.
  2. Select Develop > API Proxies.

    The UI displays a list of current API proxies for the selected environment:

    A list of API proxies displays that includes
      the name, status, traffic over 24 hours, author, and time last modified.

  3. Select the API proxy that you want to undeploy.

    The UI displays the API proxy's Overview view.

  4. In the desired environment row, expand the Revision drop-down list and select Undeploy:

    Revision drop-down for prod environment showing Undeploy item

    The UI prompts you to confirm the version you want to undeploy:

    Dialog prompting to confirm undeploy action

  5. Click Undeploy.

    The UI updates the status to show that the revision was undeployed from the cluster immediately:

    Drop-down showing API proxy is undeployed from test environment

    Note, though, that the undeployment process can take some time (in the eventually consistent model). In fact, when you click Undeploy, Apigee begins the process of undeploying the selected revision from that environment in the cluster.

    For information on how to check the status of the undeployed proxy, see Viewing deployment status.

Alternatively, you can undeploy the current revision that you are editing in the Develop tab:

  1. Click the Deploy to: env_name drop-down list:

    Deployment drop-down enabling you to deploy or undeploy the current revision to each environment

    The UI displays a list of environments. In the Revision column, the UI lists the currently deployed revision (or &emdash; if none), and prompts you with Deploy revision and Undeploy buttons.

  2. Click the Undeploy button for the desired environment.

    The UI prompts you to confirm the version you want to undeploy:

    Dialog prompting to confirm the API proxy undeploy operation

  3. Click the Undeploy button.

    The UI updates the status to show that the revision was undeployed immediately. However, the undeployment process can take some time (in the eventually consistent model). When you click Undeploy, Apigee begins the process of undeploying the selected revision from that environment.

Apigee API

To undeploy an API proxy, use the following API call:

curl "https://apigee.googleapis.com/v1/organizations/$ORG/environments/$ENV/apis/$API/revisions/$REV/deployments" \
  -X DELETE \
  -H "Authorization: Bearer $TOKEN"

Where $TOKEN is set to your OAuth 2.0 access token, as described in Obtaining an OAuth 2.0 access token. For information about the curl options used in this example, see Using curl. For a description of the environment variables used, see Setting environment variables for Apigee API requests.

The following provides an example of the response output (an empty response):

{}

For more information, see the Undeploy API proxy revision API.

gcloud

The following sections provide examples of using gcloud alpha apigee CLI commands to undeploy API proxy revisions and validate the undeployment.

For more information and a description of the environment variables used in the examples, see Getting started using gcloud with Apigee.

Undeploying an API proxy revision using the gcloud CLI

To undeploy an API proxy revision, use the following gcloud command:

gcloud alpha apigee apis undeploy $REV --api=$API --environment=$ENV

The following provides an example of the response:

Using Apigee organization `my-org`

Validating the undeployment of an API proxy revision using the gcloud CLI

To validate that the API proxy revision has been undeployed from the environment, use the following gcloud command:

gcloud alpha apigee deployments list --api=$API --environment=$ENV

The following provides an example of the response:

Using Apigee organization `my-org`
Listed 0 items.

For more information, see List deployments CLI.