Skip to main content

register_schemas

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

Overview

Nameregister_schemas
TypeResource
Idazure.schema_registry.register_schemas

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
register_schemaexecgroup_name, schema_name, fully_qualified_namespaceRegister new schema. Register new schema. If schema of specified name does not exist in specified group, schema is created at version 1. If schema of specified name exists already in specified group, schema is created at latest version + 1.

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: )
group_namestringName of schema group. Required.
schema_namestringName of schema. Required.

Lifecycle Methods

Register new schema. Register new schema. If schema of specified name does not exist in specified group, schema is created at version 1. If schema of specified name exists already in specified group, schema is created at latest version + 1.

EXEC azure.schema_registry.register_schemas.register_schema 
@group_name='{{ group_name }}' --required,
@schema_name='{{ schema_name }}' --required,
@fully_qualified_namespace='{{ fully_qualified_namespace }}' --required
;