published on Tuesday, Aug 4, 2026 by kong
published on Tuesday, Aug 4, 2026 by kong
EventGatewayConsumePolicySchemaValidation Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myEventgatewayconsumepolicyschemavalidation = new konnect.EventGatewayConsumePolicySchemaValidation("my_eventgatewayconsumepolicyschemavalidation", {
condition: "context.topic.name.endsWith(\"my_suffix\") && record.headers[\"x-flag\"] == \"a-value\"",
config: {
json: {
failureMode: "mark",
keyValidationAction: "skip",
schemaRegistry: {
id: "bd775494-cdf4-4d78-a6df-c21ccf6d9813",
},
validateKey: false,
validateValue: false,
valueValidationAction: "skip",
},
},
description: "",
enabled: true,
gatewayId: "9524ec7d-36d9-465d-a8c5-83a3c9390458",
labels: {
key: "value",
},
name: "...my_name...",
virtualClusterId: "afccd415-a99c-4465-8754-9932a66f275f",
});
import pulumi
import pulumi_konnect as konnect
my_eventgatewayconsumepolicyschemavalidation = konnect.EventGatewayConsumePolicySchemaValidation("my_eventgatewayconsumepolicyschemavalidation",
condition="context.topic.name.endsWith(\"my_suffix\") && record.headers[\"x-flag\"] == \"a-value\"",
config={
"json": {
"failure_mode": "mark",
"key_validation_action": "skip",
"schema_registry": {
"id": "bd775494-cdf4-4d78-a6df-c21ccf6d9813",
},
"validate_key": False,
"validate_value": False,
"value_validation_action": "skip",
},
},
description="",
enabled=True,
gateway_id="9524ec7d-36d9-465d-a8c5-83a3c9390458",
labels={
"key": "value",
},
name="...my_name...",
virtual_cluster_id="afccd415-a99c-4465-8754-9932a66f275f")
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.NewEventGatewayConsumePolicySchemaValidation(ctx, "my_eventgatewayconsumepolicyschemavalidation", &konnect.EventGatewayConsumePolicySchemaValidationArgs{
Condition: pulumi.String("context.topic.name.endsWith(\"my_suffix\") && record.headers[\"x-flag\"] == \"a-value\""),
Config: &konnect.EventGatewayConsumePolicySchemaValidationConfigArgs{
Json: &konnect.EventGatewayConsumePolicySchemaValidationConfigJsonArgs{
FailureMode: pulumi.String("mark"),
KeyValidationAction: pulumi.String("skip"),
SchemaRegistry: &konnect.EventGatewayConsumePolicySchemaValidationConfigJsonSchemaRegistryArgs{
Id: pulumi.String("bd775494-cdf4-4d78-a6df-c21ccf6d9813"),
},
ValidateKey: pulumi.Bool(false),
ValidateValue: pulumi.Bool(false),
ValueValidationAction: pulumi.String("skip"),
},
},
Description: pulumi.String(""),
Enabled: pulumi.Bool(true),
GatewayId: pulumi.String("9524ec7d-36d9-465d-a8c5-83a3c9390458"),
Labels: pulumi.StringMap{
"key": pulumi.String("value"),
},
Name: pulumi.String("...my_name..."),
VirtualClusterId: pulumi.String("afccd415-a99c-4465-8754-9932a66f275f"),
})
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 myEventgatewayconsumepolicyschemavalidation = new Konnect.EventGatewayConsumePolicySchemaValidation("my_eventgatewayconsumepolicyschemavalidation", new()
{
Condition = "context.topic.name.endsWith(\"my_suffix\") && record.headers[\"x-flag\"] == \"a-value\"",
Config = new Konnect.Inputs.EventGatewayConsumePolicySchemaValidationConfigArgs
{
Json = new Konnect.Inputs.EventGatewayConsumePolicySchemaValidationConfigJsonArgs
{
FailureMode = "mark",
KeyValidationAction = "skip",
SchemaRegistry = new Konnect.Inputs.EventGatewayConsumePolicySchemaValidationConfigJsonSchemaRegistryArgs
{
Id = "bd775494-cdf4-4d78-a6df-c21ccf6d9813",
},
ValidateKey = false,
ValidateValue = false,
ValueValidationAction = "skip",
},
},
Description = "",
Enabled = true,
GatewayId = "9524ec7d-36d9-465d-a8c5-83a3c9390458",
Labels =
{
{ "key", "value" },
},
Name = "...my_name...",
VirtualClusterId = "afccd415-a99c-4465-8754-9932a66f275f",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.EventGatewayConsumePolicySchemaValidation;
import com.pulumi.konnect.EventGatewayConsumePolicySchemaValidationArgs;
import com.pulumi.konnect.inputs.EventGatewayConsumePolicySchemaValidationConfigArgs;
import com.pulumi.konnect.inputs.EventGatewayConsumePolicySchemaValidationConfigJsonArgs;
import com.pulumi.konnect.inputs.EventGatewayConsumePolicySchemaValidationConfigJsonSchemaRegistryArgs;
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 myEventgatewayconsumepolicyschemavalidation = new EventGatewayConsumePolicySchemaValidation("myEventgatewayconsumepolicyschemavalidation", EventGatewayConsumePolicySchemaValidationArgs.builder()
.condition("context.topic.name.endsWith(\"my_suffix\") && record.headers[\"x-flag\"] == \"a-value\"")
.config(EventGatewayConsumePolicySchemaValidationConfigArgs.builder()
.json(EventGatewayConsumePolicySchemaValidationConfigJsonArgs.builder()
.failureMode("mark")
.keyValidationAction("skip")
.schemaRegistry(EventGatewayConsumePolicySchemaValidationConfigJsonSchemaRegistryArgs.builder()
.id("bd775494-cdf4-4d78-a6df-c21ccf6d9813")
.build())
.validateKey(false)
.validateValue(false)
.valueValidationAction("skip")
.build())
.build())
.description("")
.enabled(true)
.gatewayId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
.labels(Map.of("key", "value"))
.name("...my_name...")
.virtualClusterId("afccd415-a99c-4465-8754-9932a66f275f")
.build());
}
}
resources:
myEventgatewayconsumepolicyschemavalidation:
type: konnect:EventGatewayConsumePolicySchemaValidation
name: my_eventgatewayconsumepolicyschemavalidation
properties:
condition: context.topic.name.endsWith("my_suffix") && record.headers["x-flag"] == "a-value"
config:
json:
failureMode: mark
keyValidationAction: skip
schemaRegistry:
id: bd775494-cdf4-4d78-a6df-c21ccf6d9813
validateKey: false
validateValue: false
valueValidationAction: skip
description: ""
enabled: true
gatewayId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
labels:
key: value
name: '...my_name...'
virtualClusterId: afccd415-a99c-4465-8754-9932a66f275f
Example coming soon!
Create EventGatewayConsumePolicySchemaValidation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EventGatewayConsumePolicySchemaValidation(name: string, args: EventGatewayConsumePolicySchemaValidationArgs, opts?: CustomResourceOptions);@overload
def EventGatewayConsumePolicySchemaValidation(resource_name: str,
args: EventGatewayConsumePolicySchemaValidationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EventGatewayConsumePolicySchemaValidation(resource_name: str,
opts: Optional[ResourceOptions] = None,
config: Optional[EventGatewayConsumePolicySchemaValidationConfigArgs] = None,
gateway_id: Optional[str] = None,
virtual_cluster_id: Optional[str] = None,
condition: Optional[str] = None,
description: Optional[str] = None,
enabled: Optional[bool] = None,
labels: Optional[Mapping[str, str]] = None,
name: Optional[str] = None)func NewEventGatewayConsumePolicySchemaValidation(ctx *Context, name string, args EventGatewayConsumePolicySchemaValidationArgs, opts ...ResourceOption) (*EventGatewayConsumePolicySchemaValidation, error)public EventGatewayConsumePolicySchemaValidation(string name, EventGatewayConsumePolicySchemaValidationArgs args, CustomResourceOptions? opts = null)
public EventGatewayConsumePolicySchemaValidation(String name, EventGatewayConsumePolicySchemaValidationArgs args)
public EventGatewayConsumePolicySchemaValidation(String name, EventGatewayConsumePolicySchemaValidationArgs args, CustomResourceOptions options)
type: konnect:EventGatewayConsumePolicySchemaValidation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "konnect_event_gateway_consume_policy_schema_validation" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args EventGatewayConsumePolicySchemaValidationArgs
- 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 EventGatewayConsumePolicySchemaValidationArgs
- 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 EventGatewayConsumePolicySchemaValidationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EventGatewayConsumePolicySchemaValidationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EventGatewayConsumePolicySchemaValidationArgs
- 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 eventGatewayConsumePolicySchemaValidationResource = new Konnect.EventGatewayConsumePolicySchemaValidation("eventGatewayConsumePolicySchemaValidationResource", new()
{
Config = new Konnect.Inputs.EventGatewayConsumePolicySchemaValidationConfigArgs
{
ConfluentSchemaRegistry = new Konnect.Inputs.EventGatewayConsumePolicySchemaValidationConfigConfluentSchemaRegistryArgs
{
FailureMode = "string",
SchemaRegistry = new Konnect.Inputs.EventGatewayConsumePolicySchemaValidationConfigConfluentSchemaRegistrySchemaRegistryArgs
{
Id = "string",
},
ValidateKey = false,
ValidateValue = false,
},
Json = new Konnect.Inputs.EventGatewayConsumePolicySchemaValidationConfigJsonArgs
{
FailureMode = "string",
SchemaRegistry = new Konnect.Inputs.EventGatewayConsumePolicySchemaValidationConfigJsonSchemaRegistryArgs
{
Id = "string",
},
ValidateKey = false,
ValidateValue = false,
},
},
GatewayId = "string",
VirtualClusterId = "string",
Condition = "string",
Description = "string",
Enabled = false,
Labels =
{
{ "string", "string" },
},
Name = "string",
});
example, err := konnect.NewEventGatewayConsumePolicySchemaValidation(ctx, "eventGatewayConsumePolicySchemaValidationResource", &konnect.EventGatewayConsumePolicySchemaValidationArgs{
Config: &konnect.EventGatewayConsumePolicySchemaValidationConfigArgs{
ConfluentSchemaRegistry: &konnect.EventGatewayConsumePolicySchemaValidationConfigConfluentSchemaRegistryArgs{
FailureMode: pulumi.String("string"),
SchemaRegistry: &konnect.EventGatewayConsumePolicySchemaValidationConfigConfluentSchemaRegistrySchemaRegistryArgs{
Id: pulumi.String("string"),
},
ValidateKey: pulumi.Bool(false),
ValidateValue: pulumi.Bool(false),
},
Json: &konnect.EventGatewayConsumePolicySchemaValidationConfigJsonArgs{
FailureMode: pulumi.String("string"),
SchemaRegistry: &konnect.EventGatewayConsumePolicySchemaValidationConfigJsonSchemaRegistryArgs{
Id: pulumi.String("string"),
},
ValidateKey: pulumi.Bool(false),
ValidateValue: pulumi.Bool(false),
},
},
GatewayId: pulumi.String("string"),
VirtualClusterId: pulumi.String("string"),
Condition: pulumi.String("string"),
Description: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
})
resource "konnect_event_gateway_consume_policy_schema_validation" "eventGatewayConsumePolicySchemaValidationResource" {
lifecycle {
create_before_destroy = true
}
config = {
confluent_schema_registry = {
failure_mode = "string"
schema_registry = {
id = "string"
}
validate_key = false
validate_value = false
}
json = {
failure_mode = "string"
schema_registry = {
id = "string"
}
validate_key = false
validate_value = false
}
}
gateway_id = "string"
virtual_cluster_id = "string"
condition = "string"
description = "string"
enabled = false
labels = {
"string" = "string"
}
name = "string"
}
var eventGatewayConsumePolicySchemaValidationResource = new EventGatewayConsumePolicySchemaValidation("eventGatewayConsumePolicySchemaValidationResource", EventGatewayConsumePolicySchemaValidationArgs.builder()
.config(EventGatewayConsumePolicySchemaValidationConfigArgs.builder()
.confluentSchemaRegistry(EventGatewayConsumePolicySchemaValidationConfigConfluentSchemaRegistryArgs.builder()
.failureMode("string")
.schemaRegistry(EventGatewayConsumePolicySchemaValidationConfigConfluentSchemaRegistrySchemaRegistryArgs.builder()
.id("string")
.build())
.validateKey(false)
.validateValue(false)
.build())
.json(EventGatewayConsumePolicySchemaValidationConfigJsonArgs.builder()
.failureMode("string")
.schemaRegistry(EventGatewayConsumePolicySchemaValidationConfigJsonSchemaRegistryArgs.builder()
.id("string")
.build())
.validateKey(false)
.validateValue(false)
.build())
.build())
.gatewayId("string")
.virtualClusterId("string")
.condition("string")
.description("string")
.enabled(false)
.labels(Map.of("string", "string"))
.name("string")
.build());
event_gateway_consume_policy_schema_validation_resource = konnect.EventGatewayConsumePolicySchemaValidation("eventGatewayConsumePolicySchemaValidationResource",
config={
"confluent_schema_registry": {
"failure_mode": "string",
"schema_registry": {
"id": "string",
},
"validate_key": False,
"validate_value": False,
},
"json": {
"failure_mode": "string",
"schema_registry": {
"id": "string",
},
"validate_key": False,
"validate_value": False,
},
},
gateway_id="string",
virtual_cluster_id="string",
condition="string",
description="string",
enabled=False,
labels={
"string": "string",
},
name="string")
const eventGatewayConsumePolicySchemaValidationResource = new konnect.EventGatewayConsumePolicySchemaValidation("eventGatewayConsumePolicySchemaValidationResource", {
config: {
confluentSchemaRegistry: {
failureMode: "string",
schemaRegistry: {
id: "string",
},
validateKey: false,
validateValue: false,
},
json: {
failureMode: "string",
schemaRegistry: {
id: "string",
},
validateKey: false,
validateValue: false,
},
},
gatewayId: "string",
virtualClusterId: "string",
condition: "string",
description: "string",
enabled: false,
labels: {
string: "string",
},
name: "string",
});
type: konnect:EventGatewayConsumePolicySchemaValidation
properties:
condition: string
config:
confluentSchemaRegistry:
failureMode: string
schemaRegistry:
id: string
validateKey: false
validateValue: false
json:
failureMode: string
schemaRegistry:
id: string
validateKey: false
validateValue: false
description: string
enabled: false
gatewayId: string
labels:
string: string
name: string
virtualClusterId: string
EventGatewayConsumePolicySchemaValidation 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 EventGatewayConsumePolicySchemaValidation resource accepts the following input properties:
- Config
Event
Gateway Consume Policy Schema Validation Config - The configuration of the consume schema validation policy.
- Gateway
Id string - The UUID of your Gateway.
- Virtual
Cluster stringId - The ID of the Virtual Cluster.
- Condition string
- A string containing the boolean expression that determines whether the policy is applied. Default: ""
- Description string
- A human-readable description of the policy. Default: ""
- Enabled bool
- Whether the policy is enabled. Default: true
- 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
- A unique user-defined name of the policy.
- Config
Event
Gateway Consume Policy Schema Validation Config Args - The configuration of the consume schema validation policy.
- Gateway
Id string - The UUID of your Gateway.
- Virtual
Cluster stringId - The ID of the Virtual Cluster.
- Condition string
- A string containing the boolean expression that determines whether the policy is applied. Default: ""
- Description string
- A human-readable description of the policy. Default: ""
- Enabled bool
- Whether the policy is enabled. Default: true
- 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
- A unique user-defined name of the policy.
- config object
- The configuration of the consume schema validation policy.
- gateway_
id string - The UUID of your Gateway.
- virtual_
cluster_ stringid - The ID of the Virtual Cluster.
- condition string
- A string containing the boolean expression that determines whether the policy is applied. Default: ""
- description string
- A human-readable description of the policy. Default: ""
- enabled bool
- Whether the policy is enabled. Default: true
- 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
- A unique user-defined name of the policy.
- config
Event
Gateway Consume Policy Schema Validation Config - The configuration of the consume schema validation policy.
- gateway
Id String - The UUID of your Gateway.
- virtual
Cluster StringId - The ID of the Virtual Cluster.
- condition String
- A string containing the boolean expression that determines whether the policy is applied. Default: ""
- description String
- A human-readable description of the policy. Default: ""
- enabled Boolean
- Whether the policy is enabled. Default: true
- 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
- A unique user-defined name of the policy.
- config
Event
Gateway Consume Policy Schema Validation Config - The configuration of the consume schema validation policy.
- gateway
Id string - The UUID of your Gateway.
- virtual
Cluster stringId - The ID of the Virtual Cluster.
- condition string
- A string containing the boolean expression that determines whether the policy is applied. Default: ""
- description string
- A human-readable description of the policy. Default: ""
- enabled boolean
- Whether the policy is enabled. Default: true
- 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
- A unique user-defined name of the policy.
- config
Event
Gateway Consume Policy Schema Validation Config Args - The configuration of the consume schema validation policy.
- gateway_
id str - The UUID of your Gateway.
- virtual_
cluster_ strid - The ID of the Virtual Cluster.
- condition str
- A string containing the boolean expression that determines whether the policy is applied. Default: ""
- description str
- A human-readable description of the policy. Default: ""
- enabled bool
- Whether the policy is enabled. Default: true
- 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
- A unique user-defined name of the policy.
- config Property Map
- The configuration of the consume schema validation policy.
- gateway
Id String - The UUID of your Gateway.
- virtual
Cluster StringId - The ID of the Virtual Cluster.
- condition String
- A string containing the boolean expression that determines whether the policy is applied. Default: ""
- description String
- A human-readable description of the policy. Default: ""
- enabled Boolean
- Whether the policy is enabled. Default: true
- 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
- A unique user-defined name of the policy.
Outputs
All input properties are implicitly available as output properties. Additionally, the EventGatewayConsumePolicySchemaValidation resource produces the following output properties:
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Id string
- The provider-assigned unique ID for this managed resource.
- Parent
Policy stringId - The unique identifier of the parent policy, if any.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Id string
- The provider-assigned unique ID for this managed resource.
- Parent
Policy stringId - The unique identifier of the parent policy, if any.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- created_
at string - An ISO-8601 timestamp representation of entity creation date.
- id string
- The provider-assigned unique ID for this managed resource.
- parent_
policy_ stringid - The unique identifier of the parent policy, if any.
- updated_
at string - An ISO-8601 timestamp representation of entity update date.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- id String
- The provider-assigned unique ID for this managed resource.
- parent
Policy StringId - The unique identifier of the parent policy, if any.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- id string
- The provider-assigned unique ID for this managed resource.
- parent
Policy stringId - The unique identifier of the parent policy, if any.
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- created_
at str - An ISO-8601 timestamp representation of entity creation date.
- id str
- The provider-assigned unique ID for this managed resource.
- parent_
policy_ strid - The unique identifier of the parent policy, if any.
- updated_
at str - An ISO-8601 timestamp representation of entity update date.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- id String
- The provider-assigned unique ID for this managed resource.
- parent
Policy StringId - The unique identifier of the parent policy, if any.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
Look up Existing EventGatewayConsumePolicySchemaValidation Resource
Get an existing EventGatewayConsumePolicySchemaValidation 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?: EventGatewayConsumePolicySchemaValidationState, opts?: CustomResourceOptions): EventGatewayConsumePolicySchemaValidation@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
condition: Optional[str] = None,
config: Optional[EventGatewayConsumePolicySchemaValidationConfigArgs] = None,
created_at: Optional[str] = None,
description: Optional[str] = None,
enabled: Optional[bool] = None,
gateway_id: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
parent_policy_id: Optional[str] = None,
updated_at: Optional[str] = None,
virtual_cluster_id: Optional[str] = None) -> EventGatewayConsumePolicySchemaValidationfunc GetEventGatewayConsumePolicySchemaValidation(ctx *Context, name string, id IDInput, state *EventGatewayConsumePolicySchemaValidationState, opts ...ResourceOption) (*EventGatewayConsumePolicySchemaValidation, error)public static EventGatewayConsumePolicySchemaValidation Get(string name, Input<string> id, EventGatewayConsumePolicySchemaValidationState? state, CustomResourceOptions? opts = null)public static EventGatewayConsumePolicySchemaValidation get(String name, Output<String> id, EventGatewayConsumePolicySchemaValidationState state, CustomResourceOptions options)resources: _: type: konnect:EventGatewayConsumePolicySchemaValidation get: id: ${id}import {
to = konnect_event_gateway_consume_policy_schema_validation.example
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.
- Condition string
- A string containing the boolean expression that determines whether the policy is applied. Default: ""
- Config
Event
Gateway Consume Policy Schema Validation Config - The configuration of the consume schema validation policy.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Description string
- A human-readable description of the policy. Default: ""
- Enabled bool
- Whether the policy is enabled. Default: true
- 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
- A unique user-defined name of the policy.
- Parent
Policy stringId - The unique identifier of the parent policy, if any.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Virtual
Cluster stringId - The ID of the Virtual Cluster.
- Condition string
- A string containing the boolean expression that determines whether the policy is applied. Default: ""
- Config
Event
Gateway Consume Policy Schema Validation Config Args - The configuration of the consume schema validation policy.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Description string
- A human-readable description of the policy. Default: ""
- Enabled bool
- Whether the policy is enabled. Default: true
- 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
- A unique user-defined name of the policy.
- Parent
Policy stringId - The unique identifier of the parent policy, if any.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Virtual
Cluster stringId - The ID of the Virtual Cluster.
- condition string
- A string containing the boolean expression that determines whether the policy is applied. Default: ""
- config object
- The configuration of the consume schema validation policy.
- created_
at string - An ISO-8601 timestamp representation of entity creation date.
- description string
- A human-readable description of the policy. Default: ""
- enabled bool
- Whether the policy is enabled. Default: true
- 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
- A unique user-defined name of the policy.
- parent_
policy_ stringid - The unique identifier of the parent policy, if any.
- updated_
at string - An ISO-8601 timestamp representation of entity update date.
- virtual_
cluster_ stringid - The ID of the Virtual Cluster.
- condition String
- A string containing the boolean expression that determines whether the policy is applied. Default: ""
- config
Event
Gateway Consume Policy Schema Validation Config - The configuration of the consume schema validation policy.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- description String
- A human-readable description of the policy. Default: ""
- enabled Boolean
- Whether the policy is enabled. Default: true
- 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
- A unique user-defined name of the policy.
- parent
Policy StringId - The unique identifier of the parent policy, if any.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- virtual
Cluster StringId - The ID of the Virtual Cluster.
- condition string
- A string containing the boolean expression that determines whether the policy is applied. Default: ""
- config
Event
Gateway Consume Policy Schema Validation Config - The configuration of the consume schema validation policy.
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- description string
- A human-readable description of the policy. Default: ""
- enabled boolean
- Whether the policy is enabled. Default: true
- 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
- A unique user-defined name of the policy.
- parent
Policy stringId - The unique identifier of the parent policy, if any.
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- virtual
Cluster stringId - The ID of the Virtual Cluster.
- condition str
- A string containing the boolean expression that determines whether the policy is applied. Default: ""
- config
Event
Gateway Consume Policy Schema Validation Config Args - The configuration of the consume schema validation policy.
- created_
at str - An ISO-8601 timestamp representation of entity creation date.
- description str
- A human-readable description of the policy. Default: ""
- enabled bool
- Whether the policy is enabled. Default: true
- 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
- A unique user-defined name of the policy.
- parent_
policy_ strid - The unique identifier of the parent policy, if any.
- updated_
at str - An ISO-8601 timestamp representation of entity update date.
- virtual_
cluster_ strid - The ID of the Virtual Cluster.
- condition String
- A string containing the boolean expression that determines whether the policy is applied. Default: ""
- config Property Map
- The configuration of the consume schema validation policy.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- description String
- A human-readable description of the policy. Default: ""
- enabled Boolean
- Whether the policy is enabled. Default: true
- 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
- A unique user-defined name of the policy.
- parent
Policy StringId - The unique identifier of the parent policy, if any.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- virtual
Cluster StringId - The ID of the Virtual Cluster.
Supporting Types
EventGatewayConsumePolicySchemaValidationConfig, EventGatewayConsumePolicySchemaValidationConfigArgs
- Confluent
Schema EventRegistry Gateway Consume Policy Schema Validation Config Confluent Schema Registry - The configuration of the consume schema validation policy when using a schema registry.
- Json
Event
Gateway Consume Policy Schema Validation Config Json - The configuration of the consume schema validation policy when using JSON parsing without schema.
- Confluent
Schema EventRegistry Gateway Consume Policy Schema Validation Config Confluent Schema Registry - The configuration of the consume schema validation policy when using a schema registry.
- Json
Event
Gateway Consume Policy Schema Validation Config Json - The configuration of the consume schema validation policy when using JSON parsing without schema.
- confluent_
schema_ objectregistry - The configuration of the consume schema validation policy when using a schema registry.
- json object
- The configuration of the consume schema validation policy when using JSON parsing without schema.
- confluent
Schema EventRegistry Gateway Consume Policy Schema Validation Config Confluent Schema Registry - The configuration of the consume schema validation policy when using a schema registry.
- json
Event
Gateway Consume Policy Schema Validation Config Json - The configuration of the consume schema validation policy when using JSON parsing without schema.
- confluent
Schema EventRegistry Gateway Consume Policy Schema Validation Config Confluent Schema Registry - The configuration of the consume schema validation policy when using a schema registry.
- json
Event
Gateway Consume Policy Schema Validation Config Json - The configuration of the consume schema validation policy when using JSON parsing without schema.
- confluent_
schema_ Eventregistry Gateway Consume Policy Schema Validation Config Confluent Schema Registry - The configuration of the consume schema validation policy when using a schema registry.
- json
Event
Gateway Consume Policy Schema Validation Config Json - The configuration of the consume schema validation policy when using JSON parsing without schema.
- confluent
Schema Property MapRegistry - The configuration of the consume schema validation policy when using a schema registry.
- json Property Map
- The configuration of the consume schema validation policy when using JSON parsing without schema.
EventGatewayConsumePolicySchemaValidationConfigConfluentSchemaRegistry, EventGatewayConsumePolicySchemaValidationConfigConfluentSchemaRegistryArgs
- Failure
Mode string - Describes how to handle a failure in a policy applied to consumed records.
- Key
Validation stringAction Deprecated. Use
failure_mode.Defines a behavior when record key is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- Schema
Registry EventGateway Consume Policy Schema Validation Config Confluent Schema Registry Schema Registry - Validate
Key bool If true, validate the record key.
Requires a minimum runtime version of
1.2.- Validate
Value bool If true, validate the record value.
Requires a minimum runtime version of
1.2.- Value
Validation stringAction Deprecated. Use
failure_mode.Defines a behavior when record value is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- Failure
Mode string - Describes how to handle a failure in a policy applied to consumed records.
- Key
Validation stringAction Deprecated. Use
failure_mode.Defines a behavior when record key is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- Schema
Registry EventGateway Consume Policy Schema Validation Config Confluent Schema Registry Schema Registry - Validate
Key bool If true, validate the record key.
Requires a minimum runtime version of
1.2.- Validate
Value bool If true, validate the record value.
Requires a minimum runtime version of
1.2.- Value
Validation stringAction Deprecated. Use
failure_mode.Defines a behavior when record value is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- failure_
mode string - Describes how to handle a failure in a policy applied to consumed records.
- key_
validation_ stringaction Deprecated. Use
failure_mode.Defines a behavior when record key is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- schema_
registry object - validate_
key bool If true, validate the record key.
Requires a minimum runtime version of
1.2.- validate_
value bool If true, validate the record value.
Requires a minimum runtime version of
1.2.- value_
validation_ stringaction Deprecated. Use
failure_mode.Defines a behavior when record value is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- failure
Mode String - Describes how to handle a failure in a policy applied to consumed records.
- key
Validation StringAction Deprecated. Use
failure_mode.Defines a behavior when record key is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- schema
Registry EventGateway Consume Policy Schema Validation Config Confluent Schema Registry Schema Registry - validate
Key Boolean If true, validate the record key.
Requires a minimum runtime version of
1.2.- validate
Value Boolean If true, validate the record value.
Requires a minimum runtime version of
1.2.- value
Validation StringAction Deprecated. Use
failure_mode.Defines a behavior when record value is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- failure
Mode string - Describes how to handle a failure in a policy applied to consumed records.
- key
Validation stringAction Deprecated. Use
failure_mode.Defines a behavior when record key is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- schema
Registry EventGateway Consume Policy Schema Validation Config Confluent Schema Registry Schema Registry - validate
Key boolean If true, validate the record key.
Requires a minimum runtime version of
1.2.- validate
Value boolean If true, validate the record value.
Requires a minimum runtime version of
1.2.- value
Validation stringAction Deprecated. Use
failure_mode.Defines a behavior when record value is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- failure_
mode str - Describes how to handle a failure in a policy applied to consumed records.
- key_
validation_ straction Deprecated. Use
failure_mode.Defines a behavior when record key is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- schema_
registry EventGateway Consume Policy Schema Validation Config Confluent Schema Registry Schema Registry - validate_
key bool If true, validate the record key.
Requires a minimum runtime version of
1.2.- validate_
value bool If true, validate the record value.
Requires a minimum runtime version of
1.2.- value_
validation_ straction Deprecated. Use
failure_mode.Defines a behavior when record value is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- failure
Mode String - Describes how to handle a failure in a policy applied to consumed records.
- key
Validation StringAction Deprecated. Use
failure_mode.Defines a behavior when record key is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- schema
Registry Property Map - validate
Key Boolean If true, validate the record key.
Requires a minimum runtime version of
1.2.- validate
Value Boolean If true, validate the record value.
Requires a minimum runtime version of
1.2.- value
Validation StringAction Deprecated. Use
failure_mode.Defines a behavior when record value is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
EventGatewayConsumePolicySchemaValidationConfigConfluentSchemaRegistrySchemaRegistry, EventGatewayConsumePolicySchemaValidationConfigConfluentSchemaRegistrySchemaRegistryArgs
- Id string
- The unique identifier of the schema registry.
- Id string
- The unique identifier of the schema registry.
- id string
- The unique identifier of the schema registry.
- id String
- The unique identifier of the schema registry.
- id string
- The unique identifier of the schema registry.
- id str
- The unique identifier of the schema registry.
- id String
- The unique identifier of the schema registry.
EventGatewayConsumePolicySchemaValidationConfigJson, EventGatewayConsumePolicySchemaValidationConfigJsonArgs
- Failure
Mode string - Describes how to handle a failure in a policy applied to consumed records.
- Key
Validation stringAction Deprecated. Use
failure_mode.Defines a behavior when record key is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- Schema
Registry EventGateway Consume Policy Schema Validation Config Json Schema Registry - Validate
Key bool If true, validate the record key.
Requires a minimum runtime version of
1.2.- Validate
Value bool If true, validate the record value.
Requires a minimum runtime version of
1.2.- Value
Validation stringAction Deprecated. Use
failure_mode.Defines a behavior when record value is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- Failure
Mode string - Describes how to handle a failure in a policy applied to consumed records.
- Key
Validation stringAction Deprecated. Use
failure_mode.Defines a behavior when record key is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- Schema
Registry EventGateway Consume Policy Schema Validation Config Json Schema Registry - Validate
Key bool If true, validate the record key.
Requires a minimum runtime version of
1.2.- Validate
Value bool If true, validate the record value.
Requires a minimum runtime version of
1.2.- Value
Validation stringAction Deprecated. Use
failure_mode.Defines a behavior when record value is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- failure_
mode string - Describes how to handle a failure in a policy applied to consumed records.
- key_
validation_ stringaction Deprecated. Use
failure_mode.Defines a behavior when record key is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- schema_
registry object - validate_
key bool If true, validate the record key.
Requires a minimum runtime version of
1.2.- validate_
value bool If true, validate the record value.
Requires a minimum runtime version of
1.2.- value_
validation_ stringaction Deprecated. Use
failure_mode.Defines a behavior when record value is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- failure
Mode String - Describes how to handle a failure in a policy applied to consumed records.
- key
Validation StringAction Deprecated. Use
failure_mode.Defines a behavior when record key is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- schema
Registry EventGateway Consume Policy Schema Validation Config Json Schema Registry - validate
Key Boolean If true, validate the record key.
Requires a minimum runtime version of
1.2.- validate
Value Boolean If true, validate the record value.
Requires a minimum runtime version of
1.2.- value
Validation StringAction Deprecated. Use
failure_mode.Defines a behavior when record value is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- failure
Mode string - Describes how to handle a failure in a policy applied to consumed records.
- key
Validation stringAction Deprecated. Use
failure_mode.Defines a behavior when record key is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- schema
Registry EventGateway Consume Policy Schema Validation Config Json Schema Registry - validate
Key boolean If true, validate the record key.
Requires a minimum runtime version of
1.2.- validate
Value boolean If true, validate the record value.
Requires a minimum runtime version of
1.2.- value
Validation stringAction Deprecated. Use
failure_mode.Defines a behavior when record value is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- failure_
mode str - Describes how to handle a failure in a policy applied to consumed records.
- key_
validation_ straction Deprecated. Use
failure_mode.Defines a behavior when record key is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- schema_
registry EventGateway Consume Policy Schema Validation Config Json Schema Registry - validate_
key bool If true, validate the record key.
Requires a minimum runtime version of
1.2.- validate_
value bool If true, validate the record value.
Requires a minimum runtime version of
1.2.- value_
validation_ straction Deprecated. Use
failure_mode.Defines a behavior when record value is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- failure
Mode String - Describes how to handle a failure in a policy applied to consumed records.
- key
Validation StringAction Deprecated. Use
failure_mode.Defines a behavior when record key is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
- schema
Registry Property Map - validate
Key Boolean If true, validate the record key.
Requires a minimum runtime version of
1.2.- validate
Value Boolean If true, validate the record value.
Requires a minimum runtime version of
1.2.- value
Validation StringAction Deprecated. Use
failure_mode.Defines a behavior when record value is not valid.
- mark - marks a record with kong/server header and client ID value to help to identify the clients violating schema.
- skip - skips delivering a record. possible known values include one of ["mark", "skip"]
EventGatewayConsumePolicySchemaValidationConfigJsonSchemaRegistry, EventGatewayConsumePolicySchemaValidationConfigJsonSchemaRegistryArgs
- Id string
- The unique identifier of the schema registry.
- Id string
- The unique identifier of the schema registry.
- id string
- The unique identifier of the schema registry.
- id String
- The unique identifier of the schema registry.
- id string
- The unique identifier of the schema registry.
- id str
- The unique identifier of the schema registry.
- id String
- The unique identifier of the schema registry.
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_consume_policy_schema_validation.my_konnect_event_gateway_consume_policy_schema_validation
id = jsonencode({
gateway_id = "9524ec7d-36d9-465d-a8c5-83a3c9390458"
id = "9524ec7d-36d9-465d-a8c5-83a3c9390458"
virtual_cluster_id = "..."
})
}
The pulumi import command can be used, for example:
$ pulumi import konnect:index/eventGatewayConsumePolicySchemaValidation:EventGatewayConsumePolicySchemaValidation my_konnect_event_gateway_consume_policy_schema_validation '{"gateway_id": "9524ec7d-36d9-465d-a8c5-83a3c9390458", "id": "9524ec7d-36d9-465d-a8c5-83a3c9390458", "virtual_cluster_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 Tuesday, Aug 4, 2026 by kong