schemas_revision
Creates, updates, deletes, gets or lists a schemas_revision
resource.
Overview
Name | schemas_revision |
Type | Resource |
Id | google.pubsub.schemas_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 |
---|---|---|---|---|
projects_schemas_delete_revision | delete | projectsId , schemasId | revisionId | Deletes a specific schema revision. |
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 |
---|---|---|
projectsId | string | |
schemasId | string | |
revisionId | string |
DELETE
examples
- projects_schemas_delete_revision
Deletes a specific schema revision.
DELETE FROM google.pubsub.schemas_revision
WHERE projectsId = '{{ projectsId }}' --required
AND schemasId = '{{ schemasId }}' --required
AND revisionId = '{{ revisionId }}';