schema_groups
Creates, updates, deletes, gets or lists a schema_groups resource.
Overview
| Name | schema_groups |
| Type | Resource |
| Id | azure.schema_registry.schema_groups |
Fields
The following fields are returned by SELECT queries:
- list_schema_groups
| Name | Datatype | Description |
|---|---|---|
value | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_schema_groups | select | fully_qualified_namespace | Get 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.
| Name | Datatype | Description |
|---|---|---|
fully_qualified_namespace | string | The service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client fullyQualifiedNamespace parameter. (default: ) |
SELECT examples
- list_schema_groups
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
;