konnect.GatewayPluginKafkaLog
Explore with Pulumi AI
GatewayPluginKafkaLog Resource
Example Usage
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.GatewayPluginKafkaLog;
import com.pulumi.konnect.GatewayPluginKafkaLogArgs;
import com.pulumi.konnect.inputs.GatewayPluginKafkaLogConfigArgs;
import com.pulumi.konnect.inputs.GatewayPluginKafkaLogConfigAuthenticationArgs;
import com.pulumi.konnect.inputs.GatewayPluginKafkaLogConfigSecurityArgs;
import com.pulumi.konnect.inputs.GatewayPluginKafkaLogConsumerArgs;
import com.pulumi.konnect.inputs.GatewayPluginKafkaLogOrderingArgs;
import com.pulumi.konnect.inputs.GatewayPluginKafkaLogOrderingAfterArgs;
import com.pulumi.konnect.inputs.GatewayPluginKafkaLogOrderingBeforeArgs;
import com.pulumi.konnect.inputs.GatewayPluginKafkaLogPartialArgs;
import com.pulumi.konnect.inputs.GatewayPluginKafkaLogRouteArgs;
import com.pulumi.konnect.inputs.GatewayPluginKafkaLogServiceArgs;
import static com.pulumi.codegen.internal.Serialization.*;
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 myGatewaypluginkafkalog = new GatewayPluginKafkaLog("myGatewaypluginkafkalog", GatewayPluginKafkaLogArgs.builder()
.config(GatewayPluginKafkaLogConfigArgs.builder()
.authentication(GatewayPluginKafkaLogConfigAuthenticationArgs.builder()
.mechanism("SCRAM-SHA-256")
.password("...my_password...")
.strategy("sasl")
.tokenauth(false)
.user("...my_user...")
.build())
.bootstrap_servers(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.cluster_name("...my_cluster_name...")
.custom_fields_by_lua(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.keepalive(2)
.keepalive_enabled(true)
.producer_async(false)
.producer_async_buffering_limits_messages_in_memory(2)
.producer_async_flush_timeout(6)
.producer_request_acks(0)
.producer_request_limits_bytes_per_request(5)
.producer_request_limits_messages_per_request(10)
.producer_request_retries_backoff_timeout(1)
.producer_request_retries_max_attempts(4)
.producer_request_timeout(3)
.security(GatewayPluginKafkaLogConfigSecurityArgs.builder()
.certificateId("...my_certificate_id...")
.ssl(false)
.build())
.timeout(2)
.topic("...my_topic...")
.build())
.consumer(GatewayPluginKafkaLogConsumerArgs.builder()
.id("...my_id...")
.build())
.controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
.createdAt(10)
.enabled(true)
.gatewayPluginKafkaLogId("...my_id...")
.instanceName("...my_instance_name...")
.ordering(GatewayPluginKafkaLogOrderingArgs.builder()
.after(GatewayPluginKafkaLogOrderingAfterArgs.builder()
.access("...")
.build())
.before(GatewayPluginKafkaLogOrderingBeforeArgs.builder()
.access("...")
.build())
.build())
.partials(GatewayPluginKafkaLogPartialArgs.builder()
.id("...my_id...")
.name("...my_name...")
.path("...my_path...")
.build())
.protocols("grpcs")
.route(GatewayPluginKafkaLogRouteArgs.builder()
.id("...my_id...")
.build())
.service(GatewayPluginKafkaLogServiceArgs.builder()
.id("...my_id...")
.build())
.tags("...")
.updatedAt(5)
.build());
}
}
resources:
myGatewaypluginkafkalog:
type: konnect:GatewayPluginKafkaLog
properties:
config:
authentication:
mechanism: SCRAM-SHA-256
password: '...my_password...'
strategy: sasl
tokenauth: false
user: '...my_user...'
bootstrap_servers:
- host: '...my_host...'
port: 7302
cluster_name: '...my_cluster_name...'
custom_fields_by_lua:
key:
fn::toJSON: value
keepalive: 2
keepalive_enabled: true
producer_async: false
producer_async_buffering_limits_messages_in_memory: 2
producer_async_flush_timeout: 6
producer_request_acks: 0
producer_request_limits_bytes_per_request: 5
producer_request_limits_messages_per_request: 10
producer_request_retries_backoff_timeout: 1
producer_request_retries_max_attempts: 4
producer_request_timeout: 3
security:
certificateId: '...my_certificate_id...'
ssl: false
timeout: 2
topic: '...my_topic...'
consumer:
id: '...my_id...'
controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
createdAt: 10
enabled: true
gatewayPluginKafkaLogId: '...my_id...'
instanceName: '...my_instance_name...'
ordering:
after:
access:
- '...'
before:
access:
- '...'
partials:
- id: '...my_id...'
name: '...my_name...'
path: '...my_path...'
protocols:
- grpcs
route:
id: '...my_id...'
service:
id: '...my_id...'
tags:
- '...'
updatedAt: 5
Create GatewayPluginKafkaLog Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GatewayPluginKafkaLog(name: string, args: GatewayPluginKafkaLogArgs, opts?: CustomResourceOptions);
@overload
def GatewayPluginKafkaLog(resource_name: str,
args: GatewayPluginKafkaLogArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GatewayPluginKafkaLog(resource_name: str,
opts: Optional[ResourceOptions] = None,
control_plane_id: Optional[str] = None,
instance_name: Optional[str] = None,
consumer: Optional[GatewayPluginKafkaLogConsumerArgs] = None,
created_at: Optional[float] = None,
enabled: Optional[bool] = None,
gateway_plugin_kafka_log_id: Optional[str] = None,
config: Optional[GatewayPluginKafkaLogConfigArgs] = None,
ordering: Optional[GatewayPluginKafkaLogOrderingArgs] = None,
partials: Optional[Sequence[GatewayPluginKafkaLogPartialArgs]] = None,
protocols: Optional[Sequence[str]] = None,
route: Optional[GatewayPluginKafkaLogRouteArgs] = None,
service: Optional[GatewayPluginKafkaLogServiceArgs] = None,
tags: Optional[Sequence[str]] = None,
updated_at: Optional[float] = None)
func NewGatewayPluginKafkaLog(ctx *Context, name string, args GatewayPluginKafkaLogArgs, opts ...ResourceOption) (*GatewayPluginKafkaLog, error)
public GatewayPluginKafkaLog(string name, GatewayPluginKafkaLogArgs args, CustomResourceOptions? opts = null)
public GatewayPluginKafkaLog(String name, GatewayPluginKafkaLogArgs args)
public GatewayPluginKafkaLog(String name, GatewayPluginKafkaLogArgs args, CustomResourceOptions options)
type: konnect:GatewayPluginKafkaLog
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 GatewayPluginKafkaLogArgs
- 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 GatewayPluginKafkaLogArgs
- 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 GatewayPluginKafkaLogArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayPluginKafkaLogArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GatewayPluginKafkaLogArgs
- 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 gatewayPluginKafkaLogResource = new Konnect.GatewayPluginKafkaLog("gatewayPluginKafkaLogResource", new()
{
ControlPlaneId = "string",
InstanceName = "string",
Consumer = new Konnect.Inputs.GatewayPluginKafkaLogConsumerArgs
{
Id = "string",
},
CreatedAt = 0,
Enabled = false,
GatewayPluginKafkaLogId = "string",
Config = new Konnect.Inputs.GatewayPluginKafkaLogConfigArgs
{
Authentication = new Konnect.Inputs.GatewayPluginKafkaLogConfigAuthenticationArgs
{
Mechanism = "string",
Password = "string",
Strategy = "string",
Tokenauth = false,
User = "string",
},
BootstrapServers = new[]
{
new Konnect.Inputs.GatewayPluginKafkaLogConfigBootstrapServerArgs
{
Host = "string",
Port = 0,
},
},
ClusterName = "string",
CustomFieldsByLua =
{
{ "string", "string" },
},
Keepalive = 0,
KeepaliveEnabled = false,
ProducerAsync = false,
ProducerAsyncBufferingLimitsMessagesInMemory = 0,
ProducerAsyncFlushTimeout = 0,
ProducerRequestAcks = 0,
ProducerRequestLimitsBytesPerRequest = 0,
ProducerRequestLimitsMessagesPerRequest = 0,
ProducerRequestRetriesBackoffTimeout = 0,
ProducerRequestRetriesMaxAttempts = 0,
ProducerRequestTimeout = 0,
Security = new Konnect.Inputs.GatewayPluginKafkaLogConfigSecurityArgs
{
CertificateId = "string",
Ssl = false,
},
Timeout = 0,
Topic = "string",
},
Ordering = new Konnect.Inputs.GatewayPluginKafkaLogOrderingArgs
{
After = new Konnect.Inputs.GatewayPluginKafkaLogOrderingAfterArgs
{
Accesses = new[]
{
"string",
},
},
Before = new Konnect.Inputs.GatewayPluginKafkaLogOrderingBeforeArgs
{
Accesses = new[]
{
"string",
},
},
},
Partials = new[]
{
new Konnect.Inputs.GatewayPluginKafkaLogPartialArgs
{
Id = "string",
Name = "string",
Path = "string",
},
},
Protocols = new[]
{
"string",
},
Route = new Konnect.Inputs.GatewayPluginKafkaLogRouteArgs
{
Id = "string",
},
Service = new Konnect.Inputs.GatewayPluginKafkaLogServiceArgs
{
Id = "string",
},
Tags = new[]
{
"string",
},
UpdatedAt = 0,
});
example, err := konnect.NewGatewayPluginKafkaLog(ctx, "gatewayPluginKafkaLogResource", &konnect.GatewayPluginKafkaLogArgs{
ControlPlaneId: pulumi.String("string"),
InstanceName: pulumi.String("string"),
Consumer: &konnect.GatewayPluginKafkaLogConsumerArgs{
Id: pulumi.String("string"),
},
CreatedAt: pulumi.Float64(0),
Enabled: pulumi.Bool(false),
GatewayPluginKafkaLogId: pulumi.String("string"),
Config: &konnect.GatewayPluginKafkaLogConfigArgs{
Authentication: &konnect.GatewayPluginKafkaLogConfigAuthenticationArgs{
Mechanism: pulumi.String("string"),
Password: pulumi.String("string"),
Strategy: pulumi.String("string"),
Tokenauth: pulumi.Bool(false),
User: pulumi.String("string"),
},
BootstrapServers: konnect.GatewayPluginKafkaLogConfigBootstrapServerArray{
&konnect.GatewayPluginKafkaLogConfigBootstrapServerArgs{
Host: pulumi.String("string"),
Port: pulumi.Float64(0),
},
},
ClusterName: pulumi.String("string"),
CustomFieldsByLua: pulumi.StringMap{
"string": pulumi.String("string"),
},
Keepalive: pulumi.Float64(0),
KeepaliveEnabled: pulumi.Bool(false),
ProducerAsync: pulumi.Bool(false),
ProducerAsyncBufferingLimitsMessagesInMemory: pulumi.Float64(0),
ProducerAsyncFlushTimeout: pulumi.Float64(0),
ProducerRequestAcks: pulumi.Float64(0),
ProducerRequestLimitsBytesPerRequest: pulumi.Float64(0),
ProducerRequestLimitsMessagesPerRequest: pulumi.Float64(0),
ProducerRequestRetriesBackoffTimeout: pulumi.Float64(0),
ProducerRequestRetriesMaxAttempts: pulumi.Float64(0),
ProducerRequestTimeout: pulumi.Float64(0),
Security: &konnect.GatewayPluginKafkaLogConfigSecurityArgs{
CertificateId: pulumi.String("string"),
Ssl: pulumi.Bool(false),
},
Timeout: pulumi.Float64(0),
Topic: pulumi.String("string"),
},
Ordering: &konnect.GatewayPluginKafkaLogOrderingArgs{
After: &konnect.GatewayPluginKafkaLogOrderingAfterArgs{
Accesses: pulumi.StringArray{
pulumi.String("string"),
},
},
Before: &konnect.GatewayPluginKafkaLogOrderingBeforeArgs{
Accesses: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Partials: konnect.GatewayPluginKafkaLogPartialArray{
&konnect.GatewayPluginKafkaLogPartialArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Path: pulumi.String("string"),
},
},
Protocols: pulumi.StringArray{
pulumi.String("string"),
},
Route: &konnect.GatewayPluginKafkaLogRouteArgs{
Id: pulumi.String("string"),
},
Service: &konnect.GatewayPluginKafkaLogServiceArgs{
Id: pulumi.String("string"),
},
Tags: pulumi.StringArray{
pulumi.String("string"),
},
UpdatedAt: pulumi.Float64(0),
})
var gatewayPluginKafkaLogResource = new GatewayPluginKafkaLog("gatewayPluginKafkaLogResource", GatewayPluginKafkaLogArgs.builder()
.controlPlaneId("string")
.instanceName("string")
.consumer(GatewayPluginKafkaLogConsumerArgs.builder()
.id("string")
.build())
.createdAt(0.0)
.enabled(false)
.gatewayPluginKafkaLogId("string")
.config(GatewayPluginKafkaLogConfigArgs.builder()
.authentication(GatewayPluginKafkaLogConfigAuthenticationArgs.builder()
.mechanism("string")
.password("string")
.strategy("string")
.tokenauth(false)
.user("string")
.build())
.bootstrapServers(GatewayPluginKafkaLogConfigBootstrapServerArgs.builder()
.host("string")
.port(0.0)
.build())
.clusterName("string")
.customFieldsByLua(Map.of("string", "string"))
.keepalive(0.0)
.keepaliveEnabled(false)
.producerAsync(false)
.producerAsyncBufferingLimitsMessagesInMemory(0.0)
.producerAsyncFlushTimeout(0.0)
.producerRequestAcks(0.0)
.producerRequestLimitsBytesPerRequest(0.0)
.producerRequestLimitsMessagesPerRequest(0.0)
.producerRequestRetriesBackoffTimeout(0.0)
.producerRequestRetriesMaxAttempts(0.0)
.producerRequestTimeout(0.0)
.security(GatewayPluginKafkaLogConfigSecurityArgs.builder()
.certificateId("string")
.ssl(false)
.build())
.timeout(0.0)
.topic("string")
.build())
.ordering(GatewayPluginKafkaLogOrderingArgs.builder()
.after(GatewayPluginKafkaLogOrderingAfterArgs.builder()
.accesses("string")
.build())
.before(GatewayPluginKafkaLogOrderingBeforeArgs.builder()
.accesses("string")
.build())
.build())
.partials(GatewayPluginKafkaLogPartialArgs.builder()
.id("string")
.name("string")
.path("string")
.build())
.protocols("string")
.route(GatewayPluginKafkaLogRouteArgs.builder()
.id("string")
.build())
.service(GatewayPluginKafkaLogServiceArgs.builder()
.id("string")
.build())
.tags("string")
.updatedAt(0.0)
.build());
gateway_plugin_kafka_log_resource = konnect.GatewayPluginKafkaLog("gatewayPluginKafkaLogResource",
control_plane_id="string",
instance_name="string",
consumer={
"id": "string",
},
created_at=0,
enabled=False,
gateway_plugin_kafka_log_id="string",
config={
"authentication": {
"mechanism": "string",
"password": "string",
"strategy": "string",
"tokenauth": False,
"user": "string",
},
"bootstrap_servers": [{
"host": "string",
"port": 0,
}],
"cluster_name": "string",
"custom_fields_by_lua": {
"string": "string",
},
"keepalive": 0,
"keepalive_enabled": False,
"producer_async": False,
"producer_async_buffering_limits_messages_in_memory": 0,
"producer_async_flush_timeout": 0,
"producer_request_acks": 0,
"producer_request_limits_bytes_per_request": 0,
"producer_request_limits_messages_per_request": 0,
"producer_request_retries_backoff_timeout": 0,
"producer_request_retries_max_attempts": 0,
"producer_request_timeout": 0,
"security": {
"certificate_id": "string",
"ssl": False,
},
"timeout": 0,
"topic": "string",
},
ordering={
"after": {
"accesses": ["string"],
},
"before": {
"accesses": ["string"],
},
},
partials=[{
"id": "string",
"name": "string",
"path": "string",
}],
protocols=["string"],
route={
"id": "string",
},
service={
"id": "string",
},
tags=["string"],
updated_at=0)
const gatewayPluginKafkaLogResource = new konnect.GatewayPluginKafkaLog("gatewayPluginKafkaLogResource", {
controlPlaneId: "string",
instanceName: "string",
consumer: {
id: "string",
},
createdAt: 0,
enabled: false,
gatewayPluginKafkaLogId: "string",
config: {
authentication: {
mechanism: "string",
password: "string",
strategy: "string",
tokenauth: false,
user: "string",
},
bootstrapServers: [{
host: "string",
port: 0,
}],
clusterName: "string",
customFieldsByLua: {
string: "string",
},
keepalive: 0,
keepaliveEnabled: false,
producerAsync: false,
producerAsyncBufferingLimitsMessagesInMemory: 0,
producerAsyncFlushTimeout: 0,
producerRequestAcks: 0,
producerRequestLimitsBytesPerRequest: 0,
producerRequestLimitsMessagesPerRequest: 0,
producerRequestRetriesBackoffTimeout: 0,
producerRequestRetriesMaxAttempts: 0,
producerRequestTimeout: 0,
security: {
certificateId: "string",
ssl: false,
},
timeout: 0,
topic: "string",
},
ordering: {
after: {
accesses: ["string"],
},
before: {
accesses: ["string"],
},
},
partials: [{
id: "string",
name: "string",
path: "string",
}],
protocols: ["string"],
route: {
id: "string",
},
service: {
id: "string",
},
tags: ["string"],
updatedAt: 0,
});
type: konnect:GatewayPluginKafkaLog
properties:
config:
authentication:
mechanism: string
password: string
strategy: string
tokenauth: false
user: string
bootstrapServers:
- host: string
port: 0
clusterName: string
customFieldsByLua:
string: string
keepalive: 0
keepaliveEnabled: false
producerAsync: false
producerAsyncBufferingLimitsMessagesInMemory: 0
producerAsyncFlushTimeout: 0
producerRequestAcks: 0
producerRequestLimitsBytesPerRequest: 0
producerRequestLimitsMessagesPerRequest: 0
producerRequestRetriesBackoffTimeout: 0
producerRequestRetriesMaxAttempts: 0
producerRequestTimeout: 0
security:
certificateId: string
ssl: false
timeout: 0
topic: string
consumer:
id: string
controlPlaneId: string
createdAt: 0
enabled: false
gatewayPluginKafkaLogId: string
instanceName: string
ordering:
after:
accesses:
- string
before:
accesses:
- string
partials:
- id: string
name: string
path: string
protocols:
- string
route:
id: string
service:
id: string
tags:
- string
updatedAt: 0
GatewayPluginKafkaLog 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 GatewayPluginKafkaLog resource accepts the following input properties:
- Control
Plane Id string - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Config
Gateway
Plugin Kafka Log Config - Consumer
Gateway
Plugin Kafka Log Consumer - If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
- Created
At double - Unix epoch when the resource was created.
- Enabled bool
- Whether the plugin is applied.
- Gateway
Plugin Kafka Log Id string - The ID of this resource.
- Instance
Name string - Ordering
Gateway
Plugin Kafka Log Ordering - Partials
List<Gateway
Plugin Kafka Log Partial> - Protocols List<string>
- A list of the request protocols that will trigger this plugin. The default value, as well as the possible values allowed on this field, may change depending on the plugin type. For example, plugins that only work in stream mode will only support tcp and tls.
- Route
Gateway
Plugin Kafka Log Route - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- Service
Gateway
Plugin Kafka Log Service - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- List<string>
- An optional set of strings associated with the Plugin for grouping and filtering.
- Updated
At double - Unix epoch when the resource was last updated.
- Control
Plane Id string - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Config
Gateway
Plugin Kafka Log Config Args - Consumer
Gateway
Plugin Kafka Log Consumer Args - If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
- Created
At float64 - Unix epoch when the resource was created.
- Enabled bool
- Whether the plugin is applied.
- Gateway
Plugin Kafka Log Id string - The ID of this resource.
- Instance
Name string - Ordering
Gateway
Plugin Kafka Log Ordering Args - Partials
[]Gateway
Plugin Kafka Log Partial Args - Protocols []string
- A list of the request protocols that will trigger this plugin. The default value, as well as the possible values allowed on this field, may change depending on the plugin type. For example, plugins that only work in stream mode will only support tcp and tls.
- Route
Gateway
Plugin Kafka Log Route Args - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- Service
Gateway
Plugin Kafka Log Service Args - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- []string
- An optional set of strings associated with the Plugin for grouping and filtering.
- Updated
At float64 - Unix epoch when the resource was last updated.
- control
Plane Id String - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- config
Gateway
Plugin Kafka Log Config - consumer
Gateway
Plugin Kafka Log Consumer - If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
- created
At Double - Unix epoch when the resource was created.
- enabled Boolean
- Whether the plugin is applied.
- gateway
Plugin Kafka Log Id String - The ID of this resource.
- instance
Name String - ordering
Gateway
Plugin Kafka Log Ordering - partials
List<Gateway
Plugin Kafka Log Partial> - protocols List<String>
- A list of the request protocols that will trigger this plugin. The default value, as well as the possible values allowed on this field, may change depending on the plugin type. For example, plugins that only work in stream mode will only support tcp and tls.
- route
Gateway
Plugin Kafka Log Route - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service
Gateway
Plugin Kafka Log Service - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- List<String>
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At Double - Unix epoch when the resource was last updated.
- control
Plane Id string - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- config
Gateway
Plugin Kafka Log Config - consumer
Gateway
Plugin Kafka Log Consumer - If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
- created
At number - Unix epoch when the resource was created.
- enabled boolean
- Whether the plugin is applied.
- gateway
Plugin Kafka Log Id string - The ID of this resource.
- instance
Name string - ordering
Gateway
Plugin Kafka Log Ordering - partials
Gateway
Plugin Kafka Log Partial[] - protocols string[]
- A list of the request protocols that will trigger this plugin. The default value, as well as the possible values allowed on this field, may change depending on the plugin type. For example, plugins that only work in stream mode will only support tcp and tls.
- route
Gateway
Plugin Kafka Log Route - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service
Gateway
Plugin Kafka Log Service - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- string[]
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At number - Unix epoch when the resource was last updated.
- control_
plane_ id str - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- config
Gateway
Plugin Kafka Log Config Args - consumer
Gateway
Plugin Kafka Log Consumer Args - If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
- created_
at float - Unix epoch when the resource was created.
- enabled bool
- Whether the plugin is applied.
- gateway_
plugin_ kafka_ log_ id str - The ID of this resource.
- instance_
name str - ordering
Gateway
Plugin Kafka Log Ordering Args - partials
Sequence[Gateway
Plugin Kafka Log Partial Args] - protocols Sequence[str]
- A list of the request protocols that will trigger this plugin. The default value, as well as the possible values allowed on this field, may change depending on the plugin type. For example, plugins that only work in stream mode will only support tcp and tls.
- route
Gateway
Plugin Kafka Log Route Args - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service
Gateway
Plugin Kafka Log Service Args - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- Sequence[str]
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated_
at float - Unix epoch when the resource was last updated.
- control
Plane Id String - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- config Property Map
- consumer Property Map
- If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
- created
At Number - Unix epoch when the resource was created.
- enabled Boolean
- Whether the plugin is applied.
- gateway
Plugin Kafka Log Id String - The ID of this resource.
- instance
Name String - ordering Property Map
- partials List<Property Map>
- protocols List<String>
- A list of the request protocols that will trigger this plugin. The default value, as well as the possible values allowed on this field, may change depending on the plugin type. For example, plugins that only work in stream mode will only support tcp and tls.
- route Property Map
- If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service Property Map
- If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- List<String>
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At Number - Unix epoch when the resource was last updated.
Outputs
All input properties are implicitly available as output properties. Additionally, the GatewayPluginKafkaLog resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing GatewayPluginKafkaLog Resource
Get an existing GatewayPluginKafkaLog 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?: GatewayPluginKafkaLogState, opts?: CustomResourceOptions): GatewayPluginKafkaLog
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
config: Optional[GatewayPluginKafkaLogConfigArgs] = None,
consumer: Optional[GatewayPluginKafkaLogConsumerArgs] = None,
control_plane_id: Optional[str] = None,
created_at: Optional[float] = None,
enabled: Optional[bool] = None,
gateway_plugin_kafka_log_id: Optional[str] = None,
instance_name: Optional[str] = None,
ordering: Optional[GatewayPluginKafkaLogOrderingArgs] = None,
partials: Optional[Sequence[GatewayPluginKafkaLogPartialArgs]] = None,
protocols: Optional[Sequence[str]] = None,
route: Optional[GatewayPluginKafkaLogRouteArgs] = None,
service: Optional[GatewayPluginKafkaLogServiceArgs] = None,
tags: Optional[Sequence[str]] = None,
updated_at: Optional[float] = None) -> GatewayPluginKafkaLog
func GetGatewayPluginKafkaLog(ctx *Context, name string, id IDInput, state *GatewayPluginKafkaLogState, opts ...ResourceOption) (*GatewayPluginKafkaLog, error)
public static GatewayPluginKafkaLog Get(string name, Input<string> id, GatewayPluginKafkaLogState? state, CustomResourceOptions? opts = null)
public static GatewayPluginKafkaLog get(String name, Output<String> id, GatewayPluginKafkaLogState state, CustomResourceOptions options)
resources: _: type: konnect:GatewayPluginKafkaLog 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
Gateway
Plugin Kafka Log Config - Consumer
Gateway
Plugin Kafka Log Consumer - If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
- Control
Plane Id string - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Created
At double - Unix epoch when the resource was created.
- Enabled bool
- Whether the plugin is applied.
- Gateway
Plugin Kafka Log Id string - The ID of this resource.
- Instance
Name string - Ordering
Gateway
Plugin Kafka Log Ordering - Partials
List<Gateway
Plugin Kafka Log Partial> - Protocols List<string>
- A list of the request protocols that will trigger this plugin. The default value, as well as the possible values allowed on this field, may change depending on the plugin type. For example, plugins that only work in stream mode will only support tcp and tls.
- Route
Gateway
Plugin Kafka Log Route - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- Service
Gateway
Plugin Kafka Log Service - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- List<string>
- An optional set of strings associated with the Plugin for grouping and filtering.
- Updated
At double - Unix epoch when the resource was last updated.
- Config
Gateway
Plugin Kafka Log Config Args - Consumer
Gateway
Plugin Kafka Log Consumer Args - If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
- Control
Plane Id string - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Created
At float64 - Unix epoch when the resource was created.
- Enabled bool
- Whether the plugin is applied.
- Gateway
Plugin Kafka Log Id string - The ID of this resource.
- Instance
Name string - Ordering
Gateway
Plugin Kafka Log Ordering Args - Partials
[]Gateway
Plugin Kafka Log Partial Args - Protocols []string
- A list of the request protocols that will trigger this plugin. The default value, as well as the possible values allowed on this field, may change depending on the plugin type. For example, plugins that only work in stream mode will only support tcp and tls.
- Route
Gateway
Plugin Kafka Log Route Args - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- Service
Gateway
Plugin Kafka Log Service Args - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- []string
- An optional set of strings associated with the Plugin for grouping and filtering.
- Updated
At float64 - Unix epoch when the resource was last updated.
- config
Gateway
Plugin Kafka Log Config - consumer
Gateway
Plugin Kafka Log Consumer - If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
- control
Plane Id String - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At Double - Unix epoch when the resource was created.
- enabled Boolean
- Whether the plugin is applied.
- gateway
Plugin Kafka Log Id String - The ID of this resource.
- instance
Name String - ordering
Gateway
Plugin Kafka Log Ordering - partials
List<Gateway
Plugin Kafka Log Partial> - protocols List<String>
- A list of the request protocols that will trigger this plugin. The default value, as well as the possible values allowed on this field, may change depending on the plugin type. For example, plugins that only work in stream mode will only support tcp and tls.
- route
Gateway
Plugin Kafka Log Route - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service
Gateway
Plugin Kafka Log Service - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- List<String>
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At Double - Unix epoch when the resource was last updated.
- config
Gateway
Plugin Kafka Log Config - consumer
Gateway
Plugin Kafka Log Consumer - If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
- control
Plane Id string - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At number - Unix epoch when the resource was created.
- enabled boolean
- Whether the plugin is applied.
- gateway
Plugin Kafka Log Id string - The ID of this resource.
- instance
Name string - ordering
Gateway
Plugin Kafka Log Ordering - partials
Gateway
Plugin Kafka Log Partial[] - protocols string[]
- A list of the request protocols that will trigger this plugin. The default value, as well as the possible values allowed on this field, may change depending on the plugin type. For example, plugins that only work in stream mode will only support tcp and tls.
- route
Gateway
Plugin Kafka Log Route - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service
Gateway
Plugin Kafka Log Service - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- string[]
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At number - Unix epoch when the resource was last updated.
- config
Gateway
Plugin Kafka Log Config Args - consumer
Gateway
Plugin Kafka Log Consumer Args - If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
- control_
plane_ id str - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created_
at float - Unix epoch when the resource was created.
- enabled bool
- Whether the plugin is applied.
- gateway_
plugin_ kafka_ log_ id str - The ID of this resource.
- instance_
name str - ordering
Gateway
Plugin Kafka Log Ordering Args - partials
Sequence[Gateway
Plugin Kafka Log Partial Args] - protocols Sequence[str]
- A list of the request protocols that will trigger this plugin. The default value, as well as the possible values allowed on this field, may change depending on the plugin type. For example, plugins that only work in stream mode will only support tcp and tls.
- route
Gateway
Plugin Kafka Log Route Args - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service
Gateway
Plugin Kafka Log Service Args - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- Sequence[str]
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated_
at float - Unix epoch when the resource was last updated.
- config Property Map
- consumer Property Map
- If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
- control
Plane Id String - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At Number - Unix epoch when the resource was created.
- enabled Boolean
- Whether the plugin is applied.
- gateway
Plugin Kafka Log Id String - The ID of this resource.
- instance
Name String - ordering Property Map
- partials List<Property Map>
- protocols List<String>
- A list of the request protocols that will trigger this plugin. The default value, as well as the possible values allowed on this field, may change depending on the plugin type. For example, plugins that only work in stream mode will only support tcp and tls.
- route Property Map
- If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service Property Map
- If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- List<String>
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At Number - Unix epoch when the resource was last updated.
Supporting Types
Gateway Plugin Kafka Log Config, Gateway Plugin Kafka Log Config Args
- Authentication
Gateway
Plugin Kafka Log Config Authentication - Bootstrap
Servers List<Gateway Plugin Kafka Log Config Bootstrap Server> - Set of bootstrap brokers in a
{host: host, port: port}
list format. - Cluster
Name string - An identifier for the Kafka cluster. By default, this field generates a random string. You can also set your own custom cluster identifier. If more than one Kafka plugin is configured without a
cluster_name
(that is, if the default autogenerated value is removed), these plugins will use the same producer, and by extension, the same cluster. Logs will be sent to the leader of the cluster. - Custom
Fields By Lua Dictionary<string, string> - Lua code as a key-value map
- Keepalive double
- Keepalive
Enabled bool - Producer
Async bool - Flag to enable asynchronous mode.
- Producer
Async Buffering Limits Messages In Memory double - Maximum number of messages that can be buffered in memory in asynchronous mode.
- Producer
Async Flush Timeout double - Maximum time interval in milliseconds between buffer flushes in asynchronous mode.
- Producer
Request Acks double - The number of acknowledgments the producer requires the leader to have received before considering a request complete. Allowed values: 0 for no acknowledgments; 1 for only the leader; and -1 for the full ISR (In-Sync Replica set). must be one of ["-1", "0", "1"]
- Producer
Request Limits Bytes Per Request double - Maximum size of a Produce request in bytes.
- Producer
Request Limits Messages Per Request double - Maximum number of messages to include into a single Produce request.
- Producer
Request Retries Backoff Timeout double - Backoff interval between retry attempts in milliseconds.
- Producer
Request Retries Max Attempts double - Maximum number of retry attempts per single Produce request.
- Producer
Request Timeout double - Time to wait for a Produce response in milliseconds
- Security
Gateway
Plugin Kafka Log Config Security - Timeout double
- Socket timeout in milliseconds.
- Topic string
- The Kafka topic to publish to.
- Authentication
Gateway
Plugin Kafka Log Config Authentication - Bootstrap
Servers []Gateway Plugin Kafka Log Config Bootstrap Server - Set of bootstrap brokers in a
{host: host, port: port}
list format. - Cluster
Name string - An identifier for the Kafka cluster. By default, this field generates a random string. You can also set your own custom cluster identifier. If more than one Kafka plugin is configured without a
cluster_name
(that is, if the default autogenerated value is removed), these plugins will use the same producer, and by extension, the same cluster. Logs will be sent to the leader of the cluster. - Custom
Fields By Lua map[string]string - Lua code as a key-value map
- Keepalive float64
- Keepalive
Enabled bool - Producer
Async bool - Flag to enable asynchronous mode.
- Producer
Async Buffering Limits Messages In Memory float64 - Maximum number of messages that can be buffered in memory in asynchronous mode.
- Producer
Async Flush Timeout float64 - Maximum time interval in milliseconds between buffer flushes in asynchronous mode.
- Producer
Request Acks float64 - The number of acknowledgments the producer requires the leader to have received before considering a request complete. Allowed values: 0 for no acknowledgments; 1 for only the leader; and -1 for the full ISR (In-Sync Replica set). must be one of ["-1", "0", "1"]
- Producer
Request Limits Bytes Per Request float64 - Maximum size of a Produce request in bytes.
- Producer
Request Limits Messages Per Request float64 - Maximum number of messages to include into a single Produce request.
- Producer
Request Retries Backoff Timeout float64 - Backoff interval between retry attempts in milliseconds.
- Producer
Request Retries Max Attempts float64 - Maximum number of retry attempts per single Produce request.
- Producer
Request Timeout float64 - Time to wait for a Produce response in milliseconds
- Security
Gateway
Plugin Kafka Log Config Security - Timeout float64
- Socket timeout in milliseconds.
- Topic string
- The Kafka topic to publish to.
- authentication
Gateway
Plugin Kafka Log Config Authentication - bootstrap
Servers List<Gateway Plugin Kafka Log Config Bootstrap Server> - Set of bootstrap brokers in a
{host: host, port: port}
list format. - cluster
Name String - An identifier for the Kafka cluster. By default, this field generates a random string. You can also set your own custom cluster identifier. If more than one Kafka plugin is configured without a
cluster_name
(that is, if the default autogenerated value is removed), these plugins will use the same producer, and by extension, the same cluster. Logs will be sent to the leader of the cluster. - custom
Fields By Lua Map<String,String> - Lua code as a key-value map
- keepalive Double
- keepalive
Enabled Boolean - producer
Async Boolean - Flag to enable asynchronous mode.
- producer
Async Buffering Limits Messages In Memory Double - Maximum number of messages that can be buffered in memory in asynchronous mode.
- producer
Async Flush Timeout Double - Maximum time interval in milliseconds between buffer flushes in asynchronous mode.
- producer
Request Acks Double - The number of acknowledgments the producer requires the leader to have received before considering a request complete. Allowed values: 0 for no acknowledgments; 1 for only the leader; and -1 for the full ISR (In-Sync Replica set). must be one of ["-1", "0", "1"]
- producer
Request Limits Bytes Per Request Double - Maximum size of a Produce request in bytes.
- producer
Request Limits Messages Per Request Double - Maximum number of messages to include into a single Produce request.
- producer
Request Retries Backoff Timeout Double - Backoff interval between retry attempts in milliseconds.
- producer
Request Retries Max Attempts Double - Maximum number of retry attempts per single Produce request.
- producer
Request Timeout Double - Time to wait for a Produce response in milliseconds
- security
Gateway
Plugin Kafka Log Config Security - timeout Double
- Socket timeout in milliseconds.
- topic String
- The Kafka topic to publish to.
- authentication
Gateway
Plugin Kafka Log Config Authentication - bootstrap
Servers Gateway Plugin Kafka Log Config Bootstrap Server[] - Set of bootstrap brokers in a
{host: host, port: port}
list format. - cluster
Name string - An identifier for the Kafka cluster. By default, this field generates a random string. You can also set your own custom cluster identifier. If more than one Kafka plugin is configured without a
cluster_name
(that is, if the default autogenerated value is removed), these plugins will use the same producer, and by extension, the same cluster. Logs will be sent to the leader of the cluster. - custom
Fields By Lua {[key: string]: string} - Lua code as a key-value map
- keepalive number
- keepalive
Enabled boolean - producer
Async boolean - Flag to enable asynchronous mode.
- producer
Async Buffering Limits Messages In Memory number - Maximum number of messages that can be buffered in memory in asynchronous mode.
- producer
Async Flush Timeout number - Maximum time interval in milliseconds between buffer flushes in asynchronous mode.
- producer
Request Acks number - The number of acknowledgments the producer requires the leader to have received before considering a request complete. Allowed values: 0 for no acknowledgments; 1 for only the leader; and -1 for the full ISR (In-Sync Replica set). must be one of ["-1", "0", "1"]
- producer
Request Limits Bytes Per Request number - Maximum size of a Produce request in bytes.
- producer
Request Limits Messages Per Request number - Maximum number of messages to include into a single Produce request.
- producer
Request Retries Backoff Timeout number - Backoff interval between retry attempts in milliseconds.
- producer
Request Retries Max Attempts number - Maximum number of retry attempts per single Produce request.
- producer
Request Timeout number - Time to wait for a Produce response in milliseconds
- security
Gateway
Plugin Kafka Log Config Security - timeout number
- Socket timeout in milliseconds.
- topic string
- The Kafka topic to publish to.
- authentication
Gateway
Plugin Kafka Log Config Authentication - bootstrap_
servers Sequence[Gateway Plugin Kafka Log Config Bootstrap Server] - Set of bootstrap brokers in a
{host: host, port: port}
list format. - cluster_
name str - An identifier for the Kafka cluster. By default, this field generates a random string. You can also set your own custom cluster identifier. If more than one Kafka plugin is configured without a
cluster_name
(that is, if the default autogenerated value is removed), these plugins will use the same producer, and by extension, the same cluster. Logs will be sent to the leader of the cluster. - custom_
fields_ by_ lua Mapping[str, str] - Lua code as a key-value map
- keepalive float
- keepalive_
enabled bool - producer_
async bool - Flag to enable asynchronous mode.
- producer_
async_ buffering_ limits_ messages_ in_ memory float - Maximum number of messages that can be buffered in memory in asynchronous mode.
- producer_
async_ flush_ timeout float - Maximum time interval in milliseconds between buffer flushes in asynchronous mode.
- producer_
request_ acks float - The number of acknowledgments the producer requires the leader to have received before considering a request complete. Allowed values: 0 for no acknowledgments; 1 for only the leader; and -1 for the full ISR (In-Sync Replica set). must be one of ["-1", "0", "1"]
- producer_
request_ limits_ bytes_ per_ request float - Maximum size of a Produce request in bytes.
- producer_
request_ limits_ messages_ per_ request float - Maximum number of messages to include into a single Produce request.
- producer_
request_ retries_ backoff_ timeout float - Backoff interval between retry attempts in milliseconds.
- producer_
request_ retries_ max_ attempts float - Maximum number of retry attempts per single Produce request.
- producer_
request_ timeout float - Time to wait for a Produce response in milliseconds
- security
Gateway
Plugin Kafka Log Config Security - timeout float
- Socket timeout in milliseconds.
- topic str
- The Kafka topic to publish to.
- authentication Property Map
- bootstrap
Servers List<Property Map> - Set of bootstrap brokers in a
{host: host, port: port}
list format. - cluster
Name String - An identifier for the Kafka cluster. By default, this field generates a random string. You can also set your own custom cluster identifier. If more than one Kafka plugin is configured without a
cluster_name
(that is, if the default autogenerated value is removed), these plugins will use the same producer, and by extension, the same cluster. Logs will be sent to the leader of the cluster. - custom
Fields By Lua Map<String> - Lua code as a key-value map
- keepalive Number
- keepalive
Enabled Boolean - producer
Async Boolean - Flag to enable asynchronous mode.
- producer
Async Buffering Limits Messages In Memory Number - Maximum number of messages that can be buffered in memory in asynchronous mode.
- producer
Async Flush Timeout Number - Maximum time interval in milliseconds between buffer flushes in asynchronous mode.
- producer
Request Acks Number - The number of acknowledgments the producer requires the leader to have received before considering a request complete. Allowed values: 0 for no acknowledgments; 1 for only the leader; and -1 for the full ISR (In-Sync Replica set). must be one of ["-1", "0", "1"]
- producer
Request Limits Bytes Per Request Number - Maximum size of a Produce request in bytes.
- producer
Request Limits Messages Per Request Number - Maximum number of messages to include into a single Produce request.
- producer
Request Retries Backoff Timeout Number - Backoff interval between retry attempts in milliseconds.
- producer
Request Retries Max Attempts Number - Maximum number of retry attempts per single Produce request.
- producer
Request Timeout Number - Time to wait for a Produce response in milliseconds
- security Property Map
- timeout Number
- Socket timeout in milliseconds.
- topic String
- The Kafka topic to publish to.
Gateway Plugin Kafka Log Config Authentication, Gateway Plugin Kafka Log Config Authentication Args
- Mechanism string
- The SASL authentication mechanism. Supported options:
PLAIN
,SCRAM-SHA-256
orSCRAM-SHA-512
. must be one of ["PLAIN", "SCRAM-SHA-256", "SCRAM-SHA-512"] - Password string
- Password for SASL authentication.
- Strategy string
- The authentication strategy for the plugin, the only option for the value is
sasl
. must be "sasl" - Tokenauth bool
- Enable this to indicate
DelegationToken
authentication - User string
- Username for SASL authentication.
- Mechanism string
- The SASL authentication mechanism. Supported options:
PLAIN
,SCRAM-SHA-256
orSCRAM-SHA-512
. must be one of ["PLAIN", "SCRAM-SHA-256", "SCRAM-SHA-512"] - Password string
- Password for SASL authentication.
- Strategy string
- The authentication strategy for the plugin, the only option for the value is
sasl
. must be "sasl" - Tokenauth bool
- Enable this to indicate
DelegationToken
authentication - User string
- Username for SASL authentication.
- mechanism String
- The SASL authentication mechanism. Supported options:
PLAIN
,SCRAM-SHA-256
orSCRAM-SHA-512
. must be one of ["PLAIN", "SCRAM-SHA-256", "SCRAM-SHA-512"] - password String
- Password for SASL authentication.
- strategy String
- The authentication strategy for the plugin, the only option for the value is
sasl
. must be "sasl" - tokenauth Boolean
- Enable this to indicate
DelegationToken
authentication - user String
- Username for SASL authentication.
- mechanism string
- The SASL authentication mechanism. Supported options:
PLAIN
,SCRAM-SHA-256
orSCRAM-SHA-512
. must be one of ["PLAIN", "SCRAM-SHA-256", "SCRAM-SHA-512"] - password string
- Password for SASL authentication.
- strategy string
- The authentication strategy for the plugin, the only option for the value is
sasl
. must be "sasl" - tokenauth boolean
- Enable this to indicate
DelegationToken
authentication - user string
- Username for SASL authentication.
- mechanism str
- The SASL authentication mechanism. Supported options:
PLAIN
,SCRAM-SHA-256
orSCRAM-SHA-512
. must be one of ["PLAIN", "SCRAM-SHA-256", "SCRAM-SHA-512"] - password str
- Password for SASL authentication.
- strategy str
- The authentication strategy for the plugin, the only option for the value is
sasl
. must be "sasl" - tokenauth bool
- Enable this to indicate
DelegationToken
authentication - user str
- Username for SASL authentication.
- mechanism String
- The SASL authentication mechanism. Supported options:
PLAIN
,SCRAM-SHA-256
orSCRAM-SHA-512
. must be one of ["PLAIN", "SCRAM-SHA-256", "SCRAM-SHA-512"] - password String
- Password for SASL authentication.
- strategy String
- The authentication strategy for the plugin, the only option for the value is
sasl
. must be "sasl" - tokenauth Boolean
- Enable this to indicate
DelegationToken
authentication - user String
- Username for SASL authentication.
Gateway Plugin Kafka Log Config Bootstrap Server, Gateway Plugin Kafka Log Config Bootstrap Server Args
Gateway Plugin Kafka Log Config Security, Gateway Plugin Kafka Log Config Security Args
- Certificate
Id string - UUID of certificate entity for mTLS authentication.
- Ssl bool
- Enables TLS.
- Certificate
Id string - UUID of certificate entity for mTLS authentication.
- Ssl bool
- Enables TLS.
- certificate
Id String - UUID of certificate entity for mTLS authentication.
- ssl Boolean
- Enables TLS.
- certificate
Id string - UUID of certificate entity for mTLS authentication.
- ssl boolean
- Enables TLS.
- certificate_
id str - UUID of certificate entity for mTLS authentication.
- ssl bool
- Enables TLS.
- certificate
Id String - UUID of certificate entity for mTLS authentication.
- ssl Boolean
- Enables TLS.
Gateway Plugin Kafka Log Consumer, Gateway Plugin Kafka Log Consumer Args
- Id string
- Id string
- id String
- id string
- id str
- id String
Gateway Plugin Kafka Log Ordering, Gateway Plugin Kafka Log Ordering Args
Gateway Plugin Kafka Log Ordering After, Gateway Plugin Kafka Log Ordering After Args
- Accesses List<string>
- Accesses []string
- accesses List<String>
- accesses string[]
- accesses Sequence[str]
- accesses List<String>
Gateway Plugin Kafka Log Ordering Before, Gateway Plugin Kafka Log Ordering Before Args
- Accesses List<string>
- Accesses []string
- accesses List<String>
- accesses string[]
- accesses Sequence[str]
- accesses List<String>
Gateway Plugin Kafka Log Partial, Gateway Plugin Kafka Log Partial Args
Gateway Plugin Kafka Log Route, Gateway Plugin Kafka Log Route Args
- Id string
- Id string
- id String
- id string
- id str
- id String
Gateway Plugin Kafka Log Service, Gateway Plugin Kafka Log Service Args
- Id string
- Id string
- id String
- id string
- id str
- id String
Import
$ pulumi import konnect:index/gatewayPluginKafkaLog:GatewayPluginKafkaLog my_konnect_gateway_plugin_kafka_log '{"control_plane_id": "9524ec7d-36d9-465d-a8c5-83a3c9390458", "id": "3473c251-5b6c-4f45-b1ff-7ede735a366d"}'
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.