1. Packages
  2. Azure Native v2
  3. API Docs
  4. eventhub
  5. SchemaRegistry
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.eventhub.SchemaRegistry

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Single item in List or Get Schema Group operation Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2022-01-01-preview.

Other available API versions: 2023-01-01-preview, 2024-01-01, 2024-05-01-preview.

Example Usage

SchemaRegistryCreate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var schemaRegistry = new AzureNative.EventHub.SchemaRegistry("schemaRegistry", new()
    {
        GroupProperties = null,
        NamespaceName = "ali-ua-test-eh-system-1",
        ResourceGroupName = "alitest",
        SchemaCompatibility = AzureNative.EventHub.SchemaCompatibility.Forward,
        SchemaGroupName = "testSchemaGroup1",
        SchemaType = AzureNative.EventHub.SchemaType.Avro,
    });

});
Copy
package main

import (
	eventhub "github.com/pulumi/pulumi-azure-native-sdk/eventhub/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := eventhub.NewSchemaRegistry(ctx, "schemaRegistry", &eventhub.SchemaRegistryArgs{
			GroupProperties:     pulumi.StringMap{},
			NamespaceName:       pulumi.String("ali-ua-test-eh-system-1"),
			ResourceGroupName:   pulumi.String("alitest"),
			SchemaCompatibility: pulumi.String(eventhub.SchemaCompatibilityForward),
			SchemaGroupName:     pulumi.String("testSchemaGroup1"),
			SchemaType:          pulumi.String(eventhub.SchemaTypeAvro),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.eventhub.SchemaRegistry;
import com.pulumi.azurenative.eventhub.SchemaRegistryArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var schemaRegistry = new SchemaRegistry("schemaRegistry", SchemaRegistryArgs.builder()
            .groupProperties()
            .namespaceName("ali-ua-test-eh-system-1")
            .resourceGroupName("alitest")
            .schemaCompatibility("Forward")
            .schemaGroupName("testSchemaGroup1")
            .schemaType("Avro")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const schemaRegistry = new azure_native.eventhub.SchemaRegistry("schemaRegistry", {
    groupProperties: {},
    namespaceName: "ali-ua-test-eh-system-1",
    resourceGroupName: "alitest",
    schemaCompatibility: azure_native.eventhub.SchemaCompatibility.Forward,
    schemaGroupName: "testSchemaGroup1",
    schemaType: azure_native.eventhub.SchemaType.Avro,
});
Copy
import pulumi
import pulumi_azure_native as azure_native

schema_registry = azure_native.eventhub.SchemaRegistry("schemaRegistry",
    group_properties={},
    namespace_name="ali-ua-test-eh-system-1",
    resource_group_name="alitest",
    schema_compatibility=azure_native.eventhub.SchemaCompatibility.FORWARD,
    schema_group_name="testSchemaGroup1",
    schema_type=azure_native.eventhub.SchemaType.AVRO)
Copy
resources:
  schemaRegistry:
    type: azure-native:eventhub:SchemaRegistry
    properties:
      groupProperties: {}
      namespaceName: ali-ua-test-eh-system-1
      resourceGroupName: alitest
      schemaCompatibility: Forward
      schemaGroupName: testSchemaGroup1
      schemaType: Avro
Copy

Create SchemaRegistry Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new SchemaRegistry(name: string, args: SchemaRegistryArgs, opts?: CustomResourceOptions);
@overload
def SchemaRegistry(resource_name: str,
                   args: SchemaRegistryArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def SchemaRegistry(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   namespace_name: Optional[str] = None,
                   resource_group_name: Optional[str] = None,
                   group_properties: Optional[Mapping[str, str]] = None,
                   schema_compatibility: Optional[Union[str, SchemaCompatibility]] = None,
                   schema_group_name: Optional[str] = None,
                   schema_type: Optional[Union[str, SchemaType]] = None)
func NewSchemaRegistry(ctx *Context, name string, args SchemaRegistryArgs, opts ...ResourceOption) (*SchemaRegistry, error)
public SchemaRegistry(string name, SchemaRegistryArgs args, CustomResourceOptions? opts = null)
public SchemaRegistry(String name, SchemaRegistryArgs args)
public SchemaRegistry(String name, SchemaRegistryArgs args, CustomResourceOptions options)
type: azure-native:eventhub:SchemaRegistry
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SchemaRegistryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SchemaRegistryArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SchemaRegistryArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SchemaRegistryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SchemaRegistryArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var azure_nativeSchemaRegistryResource = new AzureNative.Eventhub.SchemaRegistry("azure-nativeSchemaRegistryResource", new()
{
    NamespaceName = "string",
    ResourceGroupName = "string",
    GroupProperties = 
    {
        { "string", "string" },
    },
    SchemaCompatibility = "string",
    SchemaGroupName = "string",
    SchemaType = "string",
});
Copy
example, err := eventhub.NewSchemaRegistry(ctx, "azure-nativeSchemaRegistryResource", &eventhub.SchemaRegistryArgs{
	NamespaceName:     "string",
	ResourceGroupName: "string",
	GroupProperties: map[string]interface{}{
		"string": "string",
	},
	SchemaCompatibility: "string",
	SchemaGroupName:     "string",
	SchemaType:          "string",
})
Copy
var azure_nativeSchemaRegistryResource = new SchemaRegistry("azure-nativeSchemaRegistryResource", SchemaRegistryArgs.builder()
    .namespaceName("string")
    .resourceGroupName("string")
    .groupProperties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .schemaCompatibility("string")
    .schemaGroupName("string")
    .schemaType("string")
    .build());
Copy
azure_native_schema_registry_resource = azure_native.eventhub.SchemaRegistry("azure-nativeSchemaRegistryResource",
    namespace_name=string,
    resource_group_name=string,
    group_properties={
        string: string,
    },
    schema_compatibility=string,
    schema_group_name=string,
    schema_type=string)
Copy
const azure_nativeSchemaRegistryResource = new azure_native.eventhub.SchemaRegistry("azure-nativeSchemaRegistryResource", {
    namespaceName: "string",
    resourceGroupName: "string",
    groupProperties: {
        string: "string",
    },
    schemaCompatibility: "string",
    schemaGroupName: "string",
    schemaType: "string",
});
Copy
type: azure-native:eventhub:SchemaRegistry
properties:
    groupProperties:
        string: string
    namespaceName: string
    resourceGroupName: string
    schemaCompatibility: string
    schemaGroupName: string
    schemaType: string
Copy

SchemaRegistry Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The SchemaRegistry resource accepts the following input properties:

NamespaceName
This property is required.
Changes to this property will trigger replacement.
string
The Namespace name
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the resource group within the azure subscription.
GroupProperties Dictionary<string, string>
dictionary object for SchemaGroup group properties
SchemaCompatibility string | Pulumi.AzureNative.EventHub.SchemaCompatibility
SchemaGroupName Changes to this property will trigger replacement. string
The Schema Group name
SchemaType string | Pulumi.AzureNative.EventHub.SchemaType
NamespaceName
This property is required.
Changes to this property will trigger replacement.
string
The Namespace name
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the resource group within the azure subscription.
GroupProperties map[string]string
dictionary object for SchemaGroup group properties
SchemaCompatibility string | SchemaCompatibility
SchemaGroupName Changes to this property will trigger replacement. string
The Schema Group name
SchemaType string | SchemaType
namespaceName
This property is required.
Changes to this property will trigger replacement.
String
The Namespace name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the resource group within the azure subscription.
groupProperties Map<String,String>
dictionary object for SchemaGroup group properties
schemaCompatibility String | SchemaCompatibility
schemaGroupName Changes to this property will trigger replacement. String
The Schema Group name
schemaType String | SchemaType
namespaceName
This property is required.
Changes to this property will trigger replacement.
string
The Namespace name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the resource group within the azure subscription.
groupProperties {[key: string]: string}
dictionary object for SchemaGroup group properties
schemaCompatibility string | SchemaCompatibility
schemaGroupName Changes to this property will trigger replacement. string
The Schema Group name
schemaType string | SchemaType
namespace_name
This property is required.
Changes to this property will trigger replacement.
str
The Namespace name
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the resource group within the azure subscription.
group_properties Mapping[str, str]
dictionary object for SchemaGroup group properties
schema_compatibility str | SchemaCompatibility
schema_group_name Changes to this property will trigger replacement. str
The Schema Group name
schema_type str | SchemaType
namespaceName
This property is required.
Changes to this property will trigger replacement.
String
The Namespace name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the resource group within the azure subscription.
groupProperties Map<String>
dictionary object for SchemaGroup group properties
schemaCompatibility String | "None" | "Backward" | "Forward"
schemaGroupName Changes to this property will trigger replacement. String
The Schema Group name
schemaType String | "Unknown" | "Avro"

Outputs

All input properties are implicitly available as output properties. Additionally, the SchemaRegistry resource produces the following output properties:

CreatedAtUtc string
Exact time the Schema Group was created.
ETag string
The ETag value.
Id string
The provider-assigned unique ID for this managed resource.
Location string
The geo-location where the resource lives
Name string
The name of the resource
SystemData Pulumi.AzureNative.EventHub.Outputs.SystemDataResponse
The system meta data relating to this resource.
Type string
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
UpdatedAtUtc string
Exact time the Schema Group was updated
CreatedAtUtc string
Exact time the Schema Group was created.
ETag string
The ETag value.
Id string
The provider-assigned unique ID for this managed resource.
Location string
The geo-location where the resource lives
Name string
The name of the resource
SystemData SystemDataResponse
The system meta data relating to this resource.
Type string
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
UpdatedAtUtc string
Exact time the Schema Group was updated
createdAtUtc String
Exact time the Schema Group was created.
eTag String
The ETag value.
id String
The provider-assigned unique ID for this managed resource.
location String
The geo-location where the resource lives
name String
The name of the resource
systemData SystemDataResponse
The system meta data relating to this resource.
type String
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
updatedAtUtc String
Exact time the Schema Group was updated
createdAtUtc string
Exact time the Schema Group was created.
eTag string
The ETag value.
id string
The provider-assigned unique ID for this managed resource.
location string
The geo-location where the resource lives
name string
The name of the resource
systemData SystemDataResponse
The system meta data relating to this resource.
type string
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
updatedAtUtc string
Exact time the Schema Group was updated
created_at_utc str
Exact time the Schema Group was created.
e_tag str
The ETag value.
id str
The provider-assigned unique ID for this managed resource.
location str
The geo-location where the resource lives
name str
The name of the resource
system_data SystemDataResponse
The system meta data relating to this resource.
type str
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
updated_at_utc str
Exact time the Schema Group was updated
createdAtUtc String
Exact time the Schema Group was created.
eTag String
The ETag value.
id String
The provider-assigned unique ID for this managed resource.
location String
The geo-location where the resource lives
name String
The name of the resource
systemData Property Map
The system meta data relating to this resource.
type String
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
updatedAtUtc String
Exact time the Schema Group was updated

Supporting Types

SchemaCompatibility
, SchemaCompatibilityArgs

None
None
Backward
Backward
Forward
Forward
SchemaCompatibilityNone
None
SchemaCompatibilityBackward
Backward
SchemaCompatibilityForward
Forward
None
None
Backward
Backward
Forward
Forward
None
None
Backward
Backward
Forward
Forward
NONE
None
BACKWARD
Backward
FORWARD
Forward
"None"
None
"Backward"
Backward
"Forward"
Forward

SchemaType
, SchemaTypeArgs

Unknown
Unknown
Avro
Avro
SchemaTypeUnknown
Unknown
SchemaTypeAvro
Avro
Unknown
Unknown
Avro
Avro
Unknown
Unknown
Avro
Avro
UNKNOWN
Unknown
AVRO
Avro
"Unknown"
Unknown
"Avro"
Avro

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The type of identity that last modified the resource.
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The type of identity that last modified the resource.
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The type of identity that last modified the resource.
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The type of identity that last modified the resource.
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The type of identity that last modified the resource.
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The type of identity that last modified the resource.
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:eventhub:SchemaRegistry testSchemaGroup1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/schemagroups/{schemaGroupName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi