Skip to main content

deployments

Creates, updates, deletes, gets or lists a deployments resource.

Overview

Namedeployments
TypeResource
Idgoogle.apigee.deployments

Fields

NameDatatypeDescription
deploymentsarrayList of deployments.

Methods

NameAccessible byRequired ParamsDescription
organizations_apis_deployments_listSELECTapisId, organizationsIdLists all deployments of an API proxy.
organizations_apis_revisions_deployments_listSELECTapisId, organizationsId, revisionsIdLists all deployments of an API proxy revision.
organizations_deployments_listSELECTorganizationsIdLists all deployments of API proxies or shared flows.
organizations_environments_apis_deployments_listSELECTapisId, environmentsId, organizationsIdLists all deployments of an API proxy in an environment.
organizations_environments_deployments_getSELECTdeploymentsId, environmentsId, organizationsIdGets a particular deployment of Api proxy or a shared flow in an environment
organizations_environments_deployments_listSELECTenvironmentsId, organizationsIdLists all deployments of API proxies or shared flows in an environment.
organizations_environments_sharedflows_deployments_listSELECTenvironmentsId, organizationsId, sharedflowsIdLists all deployments of a shared flow in an environment.
organizations_sharedflows_deployments_listSELECTorganizationsId, sharedflowsIdLists all deployments of a shared flow.
organizations_sharedflows_revisions_deployments_listSELECTorganizationsId, revisionsId, sharedflowsIdLists all deployments of a shared flow revision.
organizations_environments_apis_revisions_deployments_generate_deploy_change_reportEXECapisId, environmentsId, organizationsId, revisionsIdGenerates a report for a dry run analysis of a DeployApiProxy request without committing the deployment. In addition to the standard validations performed when adding deployments, additional analysis will be done to detect possible traffic routing changes that would result from this deployment being created. Any potential routing conflicts or unsafe changes will be reported in the response. This routing analysis is not performed for a non-dry-run DeployApiProxy request. For a request path organizations/{org}/environments/{env}/apis/{api}/revisions/{rev}/deployments:generateDeployChangeReport, two permissions are required: apigee.deployments.create on the resource organizations/{org}/environments/{env} apigee.proxyrevisions.deploy on the resource organizations/{org}/apis/{api}/revisions/{rev}
organizations_environments_apis_revisions_deployments_generate_undeploy_change_reportEXECapisId, environmentsId, organizationsId, revisionsIdGenerates a report for a dry run analysis of an UndeployApiProxy request without committing the undeploy. In addition to the standard validations performed when removing deployments, additional analysis will be done to detect possible traffic routing changes that would result from this deployment being removed. Any potential routing conflicts or unsafe changes will be reported in the response. This routing analysis is not performed for a non-dry-run UndeployApiProxy request. For a request path organizations/{org}/environments/{env}/apis/{api}/revisions/{rev}/deployments:generateUndeployChangeReport, two permissions are required: apigee.deployments.delete on the resource organizations/{org}/environments/{env} apigee.proxyrevisions.undeploy on the resource organizations/{org}/apis/{api}/revisions/{rev}

SELECT examples

Lists all deployments of API proxies or shared flows.

SELECT
deployments
FROM google.apigee.deployments
WHERE organizationsId = '{{ organizationsId }}';