1. Packages
  2. Konnect Provider
  3. API Docs
  4. EventGatewaySchemaRegistry
Viewing docs for konnect 3.11.0
published on Thursday, Mar 12, 2026 by kong
konnect logo
Viewing docs for konnect 3.11.0
published on Thursday, Mar 12, 2026 by kong

    EventGatewaySchemaRegistry Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const myEventgatewayschemaregistry = new konnect.EventGatewaySchemaRegistry("my_eventgatewayschemaregistry", {
        confluent: {
            config: {
                authentication: {
                    basic: {
                        password: "${vault.env['MY_ENV_VAR']}",
                        username: "...my_username...",
                    },
                },
                endpoint: "https://key-hovercraft.com",
                schemaType: "avro",
                timeoutSeconds: 8,
            },
            description: "...my_description...",
            labels: {
                key: "value",
            },
            name: "...my_name...",
        },
        gatewayId: "9524ec7d-36d9-465d-a8c5-83a3c9390458",
    });
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_eventgatewayschemaregistry = konnect.EventGatewaySchemaRegistry("my_eventgatewayschemaregistry",
        confluent={
            "config": {
                "authentication": {
                    "basic": {
                        "password": "${vault.env['MY_ENV_VAR']}",
                        "username": "...my_username...",
                    },
                },
                "endpoint": "https://key-hovercraft.com",
                "schema_type": "avro",
                "timeout_seconds": 8,
            },
            "description": "...my_description...",
            "labels": {
                "key": "value",
            },
            "name": "...my_name...",
        },
        gateway_id="9524ec7d-36d9-465d-a8c5-83a3c9390458")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/konnect/v3/konnect"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := konnect.NewEventGatewaySchemaRegistry(ctx, "my_eventgatewayschemaregistry", &konnect.EventGatewaySchemaRegistryArgs{
    			Confluent: &konnect.EventGatewaySchemaRegistryConfluentArgs{
    				Config: &konnect.EventGatewaySchemaRegistryConfluentConfigArgs{
    					Authentication: &konnect.EventGatewaySchemaRegistryConfluentConfigAuthenticationArgs{
    						Basic: &konnect.EventGatewaySchemaRegistryConfluentConfigAuthenticationBasicArgs{
    							Password: pulumi.String("${vault.env['MY_ENV_VAR']}"),
    							Username: pulumi.String("...my_username..."),
    						},
    					},
    					Endpoint:       pulumi.String("https://key-hovercraft.com"),
    					SchemaType:     pulumi.String("avro"),
    					TimeoutSeconds: pulumi.Float64(8),
    				},
    				Description: pulumi.String("...my_description..."),
    				Labels: pulumi.StringMap{
    					"key": pulumi.String("value"),
    				},
    				Name: pulumi.String("...my_name..."),
    			},
    			GatewayId: pulumi.String("9524ec7d-36d9-465d-a8c5-83a3c9390458"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Konnect = Pulumi.Konnect;
    
    return await Deployment.RunAsync(() => 
    {
        var myEventgatewayschemaregistry = new Konnect.EventGatewaySchemaRegistry("my_eventgatewayschemaregistry", new()
        {
            Confluent = new Konnect.Inputs.EventGatewaySchemaRegistryConfluentArgs
            {
                Config = new Konnect.Inputs.EventGatewaySchemaRegistryConfluentConfigArgs
                {
                    Authentication = new Konnect.Inputs.EventGatewaySchemaRegistryConfluentConfigAuthenticationArgs
                    {
                        Basic = new Konnect.Inputs.EventGatewaySchemaRegistryConfluentConfigAuthenticationBasicArgs
                        {
                            Password = "${vault.env['MY_ENV_VAR']}",
                            Username = "...my_username...",
                        },
                    },
                    Endpoint = "https://key-hovercraft.com",
                    SchemaType = "avro",
                    TimeoutSeconds = 8,
                },
                Description = "...my_description...",
                Labels = 
                {
                    { "key", "value" },
                },
                Name = "...my_name...",
            },
            GatewayId = "9524ec7d-36d9-465d-a8c5-83a3c9390458",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.EventGatewaySchemaRegistry;
    import com.pulumi.konnect.EventGatewaySchemaRegistryArgs;
    import com.pulumi.konnect.inputs.EventGatewaySchemaRegistryConfluentArgs;
    import com.pulumi.konnect.inputs.EventGatewaySchemaRegistryConfluentConfigArgs;
    import com.pulumi.konnect.inputs.EventGatewaySchemaRegistryConfluentConfigAuthenticationArgs;
    import com.pulumi.konnect.inputs.EventGatewaySchemaRegistryConfluentConfigAuthenticationBasicArgs;
    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 myEventgatewayschemaregistry = new EventGatewaySchemaRegistry("myEventgatewayschemaregistry", EventGatewaySchemaRegistryArgs.builder()
                .confluent(EventGatewaySchemaRegistryConfluentArgs.builder()
                    .config(EventGatewaySchemaRegistryConfluentConfigArgs.builder()
                        .authentication(EventGatewaySchemaRegistryConfluentConfigAuthenticationArgs.builder()
                            .basic(EventGatewaySchemaRegistryConfluentConfigAuthenticationBasicArgs.builder()
                                .password("${vault.env['MY_ENV_VAR']}")
                                .username("...my_username...")
                                .build())
                            .build())
                        .endpoint("https://key-hovercraft.com")
                        .schemaType("avro")
                        .timeoutSeconds(8.0)
                        .build())
                    .description("...my_description...")
                    .labels(Map.of("key", "value"))
                    .name("...my_name...")
                    .build())
                .gatewayId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
                .build());
    
        }
    }
    
    resources:
      myEventgatewayschemaregistry:
        type: konnect:EventGatewaySchemaRegistry
        name: my_eventgatewayschemaregistry
        properties:
          confluent:
            config:
              authentication:
                basic:
                  password: $${vault.env['MY_ENV_VAR']}
                  username: '...my_username...'
              endpoint: https://key-hovercraft.com
              schemaType: avro
              timeoutSeconds: 8
            description: '...my_description...'
            labels:
              key: value
            name: '...my_name...'
          gatewayId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
    

    Create EventGatewaySchemaRegistry Resource

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

    Constructor syntax

    new EventGatewaySchemaRegistry(name: string, args: EventGatewaySchemaRegistryArgs, opts?: CustomResourceOptions);
    @overload
    def EventGatewaySchemaRegistry(resource_name: str,
                                   args: EventGatewaySchemaRegistryArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def EventGatewaySchemaRegistry(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   gateway_id: Optional[str] = None,
                                   confluent: Optional[EventGatewaySchemaRegistryConfluentArgs] = None)
    func NewEventGatewaySchemaRegistry(ctx *Context, name string, args EventGatewaySchemaRegistryArgs, opts ...ResourceOption) (*EventGatewaySchemaRegistry, error)
    public EventGatewaySchemaRegistry(string name, EventGatewaySchemaRegistryArgs args, CustomResourceOptions? opts = null)
    public EventGatewaySchemaRegistry(String name, EventGatewaySchemaRegistryArgs args)
    public EventGatewaySchemaRegistry(String name, EventGatewaySchemaRegistryArgs args, CustomResourceOptions options)
    
    type: konnect:EventGatewaySchemaRegistry
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args EventGatewaySchemaRegistryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args EventGatewaySchemaRegistryArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args EventGatewaySchemaRegistryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EventGatewaySchemaRegistryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EventGatewaySchemaRegistryArgs
    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 eventGatewaySchemaRegistryResource = new Konnect.EventGatewaySchemaRegistry("eventGatewaySchemaRegistryResource", new()
    {
        GatewayId = "string",
        Confluent = new Konnect.Inputs.EventGatewaySchemaRegistryConfluentArgs
        {
            Config = new Konnect.Inputs.EventGatewaySchemaRegistryConfluentConfigArgs
            {
                Endpoint = "string",
                SchemaType = "string",
                Authentication = new Konnect.Inputs.EventGatewaySchemaRegistryConfluentConfigAuthenticationArgs
                {
                    Basic = new Konnect.Inputs.EventGatewaySchemaRegistryConfluentConfigAuthenticationBasicArgs
                    {
                        Password = "string",
                        Username = "string",
                    },
                },
                TimeoutSeconds = 0,
            },
            Name = "string",
            Description = "string",
            Labels = 
            {
                { "string", "string" },
            },
        },
    });
    
    example, err := konnect.NewEventGatewaySchemaRegistry(ctx, "eventGatewaySchemaRegistryResource", &konnect.EventGatewaySchemaRegistryArgs{
    	GatewayId: pulumi.String("string"),
    	Confluent: &konnect.EventGatewaySchemaRegistryConfluentArgs{
    		Config: &konnect.EventGatewaySchemaRegistryConfluentConfigArgs{
    			Endpoint:   pulumi.String("string"),
    			SchemaType: pulumi.String("string"),
    			Authentication: &konnect.EventGatewaySchemaRegistryConfluentConfigAuthenticationArgs{
    				Basic: &konnect.EventGatewaySchemaRegistryConfluentConfigAuthenticationBasicArgs{
    					Password: pulumi.String("string"),
    					Username: pulumi.String("string"),
    				},
    			},
    			TimeoutSeconds: pulumi.Float64(0),
    		},
    		Name:        pulumi.String("string"),
    		Description: pulumi.String("string"),
    		Labels: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    	},
    })
    
    var eventGatewaySchemaRegistryResource = new EventGatewaySchemaRegistry("eventGatewaySchemaRegistryResource", EventGatewaySchemaRegistryArgs.builder()
        .gatewayId("string")
        .confluent(EventGatewaySchemaRegistryConfluentArgs.builder()
            .config(EventGatewaySchemaRegistryConfluentConfigArgs.builder()
                .endpoint("string")
                .schemaType("string")
                .authentication(EventGatewaySchemaRegistryConfluentConfigAuthenticationArgs.builder()
                    .basic(EventGatewaySchemaRegistryConfluentConfigAuthenticationBasicArgs.builder()
                        .password("string")
                        .username("string")
                        .build())
                    .build())
                .timeoutSeconds(0.0)
                .build())
            .name("string")
            .description("string")
            .labels(Map.of("string", "string"))
            .build())
        .build());
    
    event_gateway_schema_registry_resource = konnect.EventGatewaySchemaRegistry("eventGatewaySchemaRegistryResource",
        gateway_id="string",
        confluent={
            "config": {
                "endpoint": "string",
                "schema_type": "string",
                "authentication": {
                    "basic": {
                        "password": "string",
                        "username": "string",
                    },
                },
                "timeout_seconds": 0,
            },
            "name": "string",
            "description": "string",
            "labels": {
                "string": "string",
            },
        })
    
    const eventGatewaySchemaRegistryResource = new konnect.EventGatewaySchemaRegistry("eventGatewaySchemaRegistryResource", {
        gatewayId: "string",
        confluent: {
            config: {
                endpoint: "string",
                schemaType: "string",
                authentication: {
                    basic: {
                        password: "string",
                        username: "string",
                    },
                },
                timeoutSeconds: 0,
            },
            name: "string",
            description: "string",
            labels: {
                string: "string",
            },
        },
    });
    
    type: konnect:EventGatewaySchemaRegistry
    properties:
        confluent:
            config:
                authentication:
                    basic:
                        password: string
                        username: string
                endpoint: string
                schemaType: string
                timeoutSeconds: 0
            description: string
            labels:
                string: string
            name: string
        gatewayId: string
    

    EventGatewaySchemaRegistry 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 EventGatewaySchemaRegistry resource accepts the following input properties:

    GatewayId string
    The UUID of your Gateway.
    Confluent EventGatewaySchemaRegistryConfluent
    A Confluent schema registry.
    GatewayId string
    The UUID of your Gateway.
    Confluent EventGatewaySchemaRegistryConfluentArgs
    A Confluent schema registry.
    gatewayId String
    The UUID of your Gateway.
    confluent EventGatewaySchemaRegistryConfluent
    A Confluent schema registry.
    gatewayId string
    The UUID of your Gateway.
    confluent EventGatewaySchemaRegistryConfluent
    A Confluent schema registry.
    gateway_id str
    The UUID of your Gateway.
    confluent EventGatewaySchemaRegistryConfluentArgs
    A Confluent schema registry.
    gatewayId String
    The UUID of your Gateway.
    confluent Property Map
    A Confluent schema registry.

    Outputs

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

    Config EventGatewaySchemaRegistryConfig
    The configuration of the schema registry.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Description string
    A human-readable description.
    Id string
    The provider-assigned unique ID for this managed resource.
    Labels Dictionary<string, string>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    Name string
    The unique name of the schema registry.
    Type string
    The type of the schema registry.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    Config EventGatewaySchemaRegistryConfig
    The configuration of the schema registry.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Description string
    A human-readable description.
    Id string
    The provider-assigned unique ID for this managed resource.
    Labels map[string]string
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    Name string
    The unique name of the schema registry.
    Type string
    The type of the schema registry.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    config EventGatewaySchemaRegistryConfig
    The configuration of the schema registry.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    description String
    A human-readable description.
    id String
    The provider-assigned unique ID for this managed resource.
    labels Map<String,String>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    name String
    The unique name of the schema registry.
    type String
    The type of the schema registry.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    config EventGatewaySchemaRegistryConfig
    The configuration of the schema registry.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    description string
    A human-readable description.
    id string
    The provider-assigned unique ID for this managed resource.
    labels {[key: string]: string}
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    name string
    The unique name of the schema registry.
    type string
    The type of the schema registry.
    updatedAt string
    An ISO-8601 timestamp representation of entity update date.
    config EventGatewaySchemaRegistryConfig
    The configuration of the schema registry.
    created_at str
    An ISO-8601 timestamp representation of entity creation date.
    description str
    A human-readable description.
    id str
    The provider-assigned unique ID for this managed resource.
    labels Mapping[str, str]
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    name str
    The unique name of the schema registry.
    type str
    The type of the schema registry.
    updated_at str
    An ISO-8601 timestamp representation of entity update date.
    config Property Map
    The configuration of the schema registry.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    description String
    A human-readable description.
    id String
    The provider-assigned unique ID for this managed resource.
    labels Map<String>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    name String
    The unique name of the schema registry.
    type String
    The type of the schema registry.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    Look up Existing EventGatewaySchemaRegistry Resource

    Get an existing EventGatewaySchemaRegistry resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: EventGatewaySchemaRegistryState, opts?: CustomResourceOptions): EventGatewaySchemaRegistry
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            config: Optional[EventGatewaySchemaRegistryConfigArgs] = None,
            confluent: Optional[EventGatewaySchemaRegistryConfluentArgs] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            gateway_id: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            type: Optional[str] = None,
            updated_at: Optional[str] = None) -> EventGatewaySchemaRegistry
    func GetEventGatewaySchemaRegistry(ctx *Context, name string, id IDInput, state *EventGatewaySchemaRegistryState, opts ...ResourceOption) (*EventGatewaySchemaRegistry, error)
    public static EventGatewaySchemaRegistry Get(string name, Input<string> id, EventGatewaySchemaRegistryState? state, CustomResourceOptions? opts = null)
    public static EventGatewaySchemaRegistry get(String name, Output<String> id, EventGatewaySchemaRegistryState state, CustomResourceOptions options)
    resources:  _:    type: konnect:EventGatewaySchemaRegistry    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Config EventGatewaySchemaRegistryConfig
    The configuration of the schema registry.
    Confluent EventGatewaySchemaRegistryConfluent
    A Confluent schema registry.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Description string
    A human-readable description.
    GatewayId string
    The UUID of your Gateway.
    Labels Dictionary<string, string>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    Name string
    The unique name of the schema registry.
    Type string
    The type of the schema registry.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    Config EventGatewaySchemaRegistryConfigArgs
    The configuration of the schema registry.
    Confluent EventGatewaySchemaRegistryConfluentArgs
    A Confluent schema registry.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Description string
    A human-readable description.
    GatewayId string
    The UUID of your Gateway.
    Labels map[string]string
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    Name string
    The unique name of the schema registry.
    Type string
    The type of the schema registry.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    config EventGatewaySchemaRegistryConfig
    The configuration of the schema registry.
    confluent EventGatewaySchemaRegistryConfluent
    A Confluent schema registry.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    description String
    A human-readable description.
    gatewayId String
    The UUID of your Gateway.
    labels Map<String,String>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    name String
    The unique name of the schema registry.
    type String
    The type of the schema registry.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    config EventGatewaySchemaRegistryConfig
    The configuration of the schema registry.
    confluent EventGatewaySchemaRegistryConfluent
    A Confluent schema registry.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    description string
    A human-readable description.
    gatewayId string
    The UUID of your Gateway.
    labels {[key: string]: string}
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    name string
    The unique name of the schema registry.
    type string
    The type of the schema registry.
    updatedAt string
    An ISO-8601 timestamp representation of entity update date.
    config EventGatewaySchemaRegistryConfigArgs
    The configuration of the schema registry.
    confluent EventGatewaySchemaRegistryConfluentArgs
    A Confluent schema registry.
    created_at str
    An ISO-8601 timestamp representation of entity creation date.
    description str
    A human-readable description.
    gateway_id str
    The UUID of your Gateway.
    labels Mapping[str, str]
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    name str
    The unique name of the schema registry.
    type str
    The type of the schema registry.
    updated_at str
    An ISO-8601 timestamp representation of entity update date.
    config Property Map
    The configuration of the schema registry.
    confluent Property Map
    A Confluent schema registry.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    description String
    A human-readable description.
    gatewayId String
    The UUID of your Gateway.
    labels Map<String>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    name String
    The unique name of the schema registry.
    type String
    The type of the schema registry.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    Supporting Types

    EventGatewaySchemaRegistryConfluent, EventGatewaySchemaRegistryConfluentArgs

    Config EventGatewaySchemaRegistryConfluentConfig
    The configuration of Confluent Schema Registry
    Name string
    The unique name of the schema registry.
    Description string
    A human-readable description.
    Labels Dictionary<string, string>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    Config EventGatewaySchemaRegistryConfluentConfig
    The configuration of Confluent Schema Registry
    Name string
    The unique name of the schema registry.
    Description string
    A human-readable description.
    Labels map[string]string
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    config EventGatewaySchemaRegistryConfluentConfig
    The configuration of Confluent Schema Registry
    name String
    The unique name of the schema registry.
    description String
    A human-readable description.
    labels Map<String,String>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    config EventGatewaySchemaRegistryConfluentConfig
    The configuration of Confluent Schema Registry
    name string
    The unique name of the schema registry.
    description string
    A human-readable description.
    labels {[key: string]: string}
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    config EventGatewaySchemaRegistryConfluentConfig
    The configuration of Confluent Schema Registry
    name str
    The unique name of the schema registry.
    description str
    A human-readable description.
    labels Mapping[str, str]
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    config Property Map
    The configuration of Confluent Schema Registry
    name String
    The unique name of the schema registry.
    description String
    A human-readable description.
    labels Map<String>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.

    EventGatewaySchemaRegistryConfluentConfig, EventGatewaySchemaRegistryConfluentConfigArgs

    Endpoint string
    The endpoint of the Confluent schema registry.
    SchemaType string
    The format of the message. must be one of ["avro", "json"]
    Authentication EventGatewaySchemaRegistryConfluentConfigAuthentication
    The authentication configuration for the schema registry.
    TimeoutSeconds double
    Total time in seconds from establishing connection to receive a response from schema registry. Default: 10
    Endpoint string
    The endpoint of the Confluent schema registry.
    SchemaType string
    The format of the message. must be one of ["avro", "json"]
    Authentication EventGatewaySchemaRegistryConfluentConfigAuthentication
    The authentication configuration for the schema registry.
    TimeoutSeconds float64
    Total time in seconds from establishing connection to receive a response from schema registry. Default: 10
    endpoint String
    The endpoint of the Confluent schema registry.
    schemaType String
    The format of the message. must be one of ["avro", "json"]
    authentication EventGatewaySchemaRegistryConfluentConfigAuthentication
    The authentication configuration for the schema registry.
    timeoutSeconds Double
    Total time in seconds from establishing connection to receive a response from schema registry. Default: 10
    endpoint string
    The endpoint of the Confluent schema registry.
    schemaType string
    The format of the message. must be one of ["avro", "json"]
    authentication EventGatewaySchemaRegistryConfluentConfigAuthentication
    The authentication configuration for the schema registry.
    timeoutSeconds number
    Total time in seconds from establishing connection to receive a response from schema registry. Default: 10
    endpoint str
    The endpoint of the Confluent schema registry.
    schema_type str
    The format of the message. must be one of ["avro", "json"]
    authentication EventGatewaySchemaRegistryConfluentConfigAuthentication
    The authentication configuration for the schema registry.
    timeout_seconds float
    Total time in seconds from establishing connection to receive a response from schema registry. Default: 10
    endpoint String
    The endpoint of the Confluent schema registry.
    schemaType String
    The format of the message. must be one of ["avro", "json"]
    authentication Property Map
    The authentication configuration for the schema registry.
    timeoutSeconds Number
    Total time in seconds from establishing connection to receive a response from schema registry. Default: 10

    EventGatewaySchemaRegistryConfluentConfigAuthentication, EventGatewaySchemaRegistryConfluentConfigAuthenticationArgs

    Basic EventGatewaySchemaRegistryConfluentConfigAuthenticationBasic
    Basic authentication scheme for the schema registry with username and password.
    Basic EventGatewaySchemaRegistryConfluentConfigAuthenticationBasic
    Basic authentication scheme for the schema registry with username and password.
    basic EventGatewaySchemaRegistryConfluentConfigAuthenticationBasic
    Basic authentication scheme for the schema registry with username and password.
    basic EventGatewaySchemaRegistryConfluentConfigAuthenticationBasic
    Basic authentication scheme for the schema registry with username and password.
    basic EventGatewaySchemaRegistryConfluentConfigAuthenticationBasic
    Basic authentication scheme for the schema registry with username and password.
    basic Property Map
    Basic authentication scheme for the schema registry with username and password.

    EventGatewaySchemaRegistryConfluentConfigAuthenticationBasic, EventGatewaySchemaRegistryConfluentConfigAuthenticationBasicArgs

    Password string
    A sensitive value containing the secret or a reference to a secret as a template string expression. If the value is provided as plain text, it is encrypted at rest and omitted from API responses. If provided as an expression, the expression itself is stored and returned by the API.
    Username string
    A literal value or a reference to an existing secret as a template string expression. The value is stored and returned by the API as-is, not treated as sensitive information.
    Password string
    A sensitive value containing the secret or a reference to a secret as a template string expression. If the value is provided as plain text, it is encrypted at rest and omitted from API responses. If provided as an expression, the expression itself is stored and returned by the API.
    Username string
    A literal value or a reference to an existing secret as a template string expression. The value is stored and returned by the API as-is, not treated as sensitive information.
    password String
    A sensitive value containing the secret or a reference to a secret as a template string expression. If the value is provided as plain text, it is encrypted at rest and omitted from API responses. If provided as an expression, the expression itself is stored and returned by the API.
    username String
    A literal value or a reference to an existing secret as a template string expression. The value is stored and returned by the API as-is, not treated as sensitive information.
    password string
    A sensitive value containing the secret or a reference to a secret as a template string expression. If the value is provided as plain text, it is encrypted at rest and omitted from API responses. If provided as an expression, the expression itself is stored and returned by the API.
    username string
    A literal value or a reference to an existing secret as a template string expression. The value is stored and returned by the API as-is, not treated as sensitive information.
    password str
    A sensitive value containing the secret or a reference to a secret as a template string expression. If the value is provided as plain text, it is encrypted at rest and omitted from API responses. If provided as an expression, the expression itself is stored and returned by the API.
    username str
    A literal value or a reference to an existing secret as a template string expression. The value is stored and returned by the API as-is, not treated as sensitive information.
    password String
    A sensitive value containing the secret or a reference to a secret as a template string expression. If the value is provided as plain text, it is encrypted at rest and omitted from API responses. If provided as an expression, the expression itself is stored and returned by the API.
    username String
    A literal value or a reference to an existing secret as a template string expression. The value is stored and returned by the API as-is, not treated as sensitive information.

    Import

    In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:

    terraform

    import {

    to = konnect_event_gateway_schema_registry.my_konnect_event_gateway_schema_registry

    id = jsonencode({

    gateway_id = "9524ec7d-36d9-465d-a8c5-83a3c9390458"
    
    id = "..."
    

    })

    }

    The pulumi import command can be used, for example:

    $ pulumi import konnect:index/eventGatewaySchemaRegistry:EventGatewaySchemaRegistry my_konnect_event_gateway_schema_registry '{"gateway_id": "9524ec7d-36d9-465d-a8c5-83a3c9390458", "id": "..."}'
    

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

    Package Details

    Repository
    konnect kong/terraform-provider-konnect
    License
    Notes
    This Pulumi package is based on the konnect Terraform Provider.
    konnect logo
    Viewing docs for konnect 3.11.0
    published on Thursday, Mar 12, 2026 by kong
      Try Pulumi Cloud free. Your team will thank you.