register_schemas
Creates, updates, deletes, gets or lists a register_schemas resource.
Overview
| Name | register_schemas |
| Type | Resource |
| Id | azure.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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
register_schema | exec | group_name, schema_name, fully_qualified_namespace | 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. |
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: ) |
group_name | string | Name of schema group. Required. |
schema_name | string | Name of schema. Required. |
Lifecycle Methods
- register_schema
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
;