revisions_shared_flow_revision
Creates, updates, deletes, gets or lists a revisions_shared_flow_revision
resource.
Overview
Name | revisions_shared_flow_revision |
Type | Resource |
Id | google.apigee.revisions_shared_flow_revision |
Fields
The following fields are returned by SELECT
queries:
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
organizations_sharedflows_revisions_update_shared_flow_revision | update | organizationsId , sharedflowsId , revisionsId | validate | Updates a shared flow revision. This operation is only allowed on revisions which have never been deployed. After deployment a revision becomes immutable, even if it becomes undeployed. The payload is a ZIP-formatted shared flow. Content type must be either multipart/form-data or application/octet-stream. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
organizationsId | string | |
revisionsId | string | |
sharedflowsId | string | |
validate | boolean |
UPDATE
examples
- organizations_sharedflows_revisions_update_shared_flow_revision
Updates a shared flow revision. This operation is only allowed on revisions which have never been deployed. After deployment a revision becomes immutable, even if it becomes undeployed. The payload is a ZIP-formatted shared flow. Content type must be either multipart/form-data or application/octet-stream.
UPDATE google.apigee.revisions_shared_flow_revision
SET
data__contentType = '{{ contentType }}',
data__data = '{{ data }}',
data__extensions = '{{ extensions }}'
WHERE
organizationsId = '{{ organizationsId }}' --required
AND sharedflowsId = '{{ sharedflowsId }}' --required
AND revisionsId = '{{ revisionsId }}' --required
AND validate = {{ validate}}
RETURNING
name,
configurationVersion,
contextInfo,
createdAt,
description,
displayName,
entityMetaDataAsProperties,
lastModifiedAt,
policies,
resourceFiles,
resources,
revision,
sharedFlows,
type;