Skip to main content

schema_groups

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

Overview

Nameschema_groups
TypeResource
Idazure.schema_registry.schema_groups

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
valuestring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_schema_groupsselectfully_qualified_namespaceGet list of schema groups. Gets the list of schema groups user is authorized to access.

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
fully_qualified_namespacestringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client fullyQualifiedNamespace parameter. (default: )

SELECT examples

Get list of schema groups. Gets the list of schema groups user is authorized to access.

SELECT
value
FROM azure.schema_registry.schema_groups
WHERE fully_qualified_namespace = '{{ fully_qualified_namespace }}' -- required
;