published on Thursday, Mar 12, 2026 by kong
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:
- Gateway
Id string - The UUID of your Gateway.
- Confluent
Event
Gateway Schema Registry Confluent - A Confluent schema registry.
- Gateway
Id string - The UUID of your Gateway.
- Confluent
Event
Gateway Schema Registry Confluent Args - A Confluent schema registry.
- gateway
Id String - The UUID of your Gateway.
- confluent
Event
Gateway Schema Registry Confluent - A Confluent schema registry.
- gateway
Id string - The UUID of your Gateway.
- confluent
Event
Gateway Schema Registry Confluent - A Confluent schema registry.
- gateway_
id str - The UUID of your Gateway.
- confluent
Event
Gateway Schema Registry Confluent Args - A Confluent schema registry.
- gateway
Id 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
Event
Gateway Schema Registry Config - The configuration of the schema registry.
- Created
At 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.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Config
Event
Gateway Schema Registry Config - The configuration of the schema registry.
- Created
At 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.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- config
Event
Gateway Schema Registry Config - The configuration of the schema registry.
- created
At 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.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- config
Event
Gateway Schema Registry Config - The configuration of the schema registry.
- created
At 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.
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- config
Event
Gateway Schema Registry Config - 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.
- created
At 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.
- updated
At 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) -> EventGatewaySchemaRegistryfunc 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.
- Config
Event
Gateway Schema Registry Config - The configuration of the schema registry.
- Confluent
Event
Gateway Schema Registry Confluent - A Confluent schema registry.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Description string
- A human-readable description.
- Gateway
Id 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.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Config
Event
Gateway Schema Registry Config Args - The configuration of the schema registry.
- Confluent
Event
Gateway Schema Registry Confluent Args - A Confluent schema registry.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Description string
- A human-readable description.
- Gateway
Id 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.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- config
Event
Gateway Schema Registry Config - The configuration of the schema registry.
- confluent
Event
Gateway Schema Registry Confluent - A Confluent schema registry.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- description String
- A human-readable description.
- gateway
Id 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.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- config
Event
Gateway Schema Registry Config - The configuration of the schema registry.
- confluent
Event
Gateway Schema Registry Confluent - A Confluent schema registry.
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- description string
- A human-readable description.
- gateway
Id 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.
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- config
Event
Gateway Schema Registry Config Args - The configuration of the schema registry.
- confluent
Event
Gateway Schema Registry Confluent Args - 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.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- description String
- A human-readable description.
- gateway
Id 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.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
Supporting Types
EventGatewaySchemaRegistryConfluent, EventGatewaySchemaRegistryConfluentArgs
- Config
Event
Gateway Schema Registry Confluent Config - 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
Event
Gateway Schema Registry Confluent Config - 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
Event
Gateway Schema Registry Confluent Config - 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
Event
Gateway Schema Registry Confluent Config - 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
Event
Gateway Schema Registry Confluent Config - 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.
- Schema
Type string - The format of the message. must be one of ["avro", "json"]
- Authentication
Event
Gateway Schema Registry Confluent Config Authentication - The authentication configuration for the schema registry.
- Timeout
Seconds 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.
- Schema
Type string - The format of the message. must be one of ["avro", "json"]
- Authentication
Event
Gateway Schema Registry Confluent Config Authentication - The authentication configuration for the schema registry.
- Timeout
Seconds 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.
- schema
Type String - The format of the message. must be one of ["avro", "json"]
- authentication
Event
Gateway Schema Registry Confluent Config Authentication - The authentication configuration for the schema registry.
- timeout
Seconds 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.
- schema
Type string - The format of the message. must be one of ["avro", "json"]
- authentication
Event
Gateway Schema Registry Confluent Config Authentication - The authentication configuration for the schema registry.
- timeout
Seconds 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
Event
Gateway Schema Registry Confluent Config Authentication - 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.
- schema
Type String - The format of the message. must be one of ["avro", "json"]
- authentication Property Map
- The authentication configuration for the schema registry.
- timeout
Seconds Number - Total time in seconds from establishing connection to receive a response from schema registry. Default: 10
EventGatewaySchemaRegistryConfluentConfigAuthentication, EventGatewaySchemaRegistryConfluentConfigAuthenticationArgs
- Basic
Event
Gateway Schema Registry Confluent Config Authentication Basic - Basic authentication scheme for the schema registry with username and password.
- Basic
Event
Gateway Schema Registry Confluent Config Authentication Basic - Basic authentication scheme for the schema registry with username and password.
- basic
Event
Gateway Schema Registry Confluent Config Authentication Basic - Basic authentication scheme for the schema registry with username and password.
- basic
Event
Gateway Schema Registry Confluent Config Authentication Basic - Basic authentication scheme for the schema registry with username and password.
- basic
Event
Gateway Schema Registry Confluent Config Authentication Basic - 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
konnectTerraform Provider.
published on Thursday, Mar 12, 2026 by kong
