Skip to main content

schemas_revision

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

Overview

Nameschemas_revision
TypeResource
Idgoogle.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:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_schemas_delete_revisiondeleteprojectsId, schemasIdrevisionIdDeletes 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.

NameDatatypeDescription
projectsIdstring
schemasIdstring
revisionIdstring

DELETE examples

Deletes a specific schema revision.

DELETE FROM google.pubsub.schemas_revision
WHERE projectsId = '{{ projectsId }}' --required
AND schemasId = '{{ schemasId }}' --required
AND revisionId = '{{ revisionId }}';