revisions_api_proxy_revision
Creates, updates, deletes, gets or lists a revisions_api_proxy_revision
resource.
Overview
Name | revisions_api_proxy_revision |
Type | Resource |
Id | google.apigee.revisions_api_proxy_revision |
Fields
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_apis_revisions_update_api_proxy_revision | UPDATE | apisId, organizationsId, revisionsId | Updates an existing API proxy revision by uploading the API proxy configuration bundle as a zip file from your local machine. You can update only API proxy revisions that have never been deployed. After deployment, an API proxy revision becomes immutable, even if it is undeployed. Set the Content-Type header to either multipart/form-data or application/octet-stream . |
UPDATE
example
Updates a revisions_api_proxy_revision
resource.
/*+ update */
UPDATE google.apigee.revisions_api_proxy_revision
SET
contentType = '{{ contentType }}',
data = '{{ data }}',
extensions = '{{ extensions }}'
WHERE
apisId = '{{ apisId }}'
AND organizationsId = '{{ organizationsId }}'
AND revisionsId = '{{ revisionsId }}';