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

azure-native-v2.iotoperationsmq.KafkaConnectorTopicMap

Explore with Pulumi AI

MQ kafkaConnector/topicMap resource Azure REST API version: 2023-10-04-preview.

Example Usage

KafkaConnectorTopicMap_CreateOrUpdate

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

return await Deployment.RunAsync(() => 
{
    var kafkaConnectorTopicMap = new AzureNative.IoTOperationsMQ.KafkaConnectorTopicMap("kafkaConnectorTopicMap", new()
    {
        Batching = new AzureNative.IoTOperationsMQ.Inputs.KafkaTopicMapBatchingArgs
        {
            Enabled = true,
            LatencyMs = 9110,
            MaxBytes = 732052221,
            MaxMessages = 373078076,
        },
        Compression = AzureNative.IoTOperationsMQ.KafkaMessageCompressionType.None,
        CopyMqttProperties = "efpqgkycuawnzyubdyt",
        ExtendedLocation = new AzureNative.IoTOperationsMQ.Inputs.ExtendedLocationPropertyArgs
        {
            Name = "an",
            Type = AzureNative.IoTOperationsMQ.ExtendedLocationType.CustomLocation,
        },
        KafkaConnectorName = "216VN",
        KafkaConnectorRef = "icivjwerdspx",
        Location = "pavphpzfsgdudpyvufyebqh",
        MqName = "-1-eD-7-J",
        PartitionKeyProperty = "c",
        PartitionStrategy = AzureNative.IoTOperationsMQ.KafkaPartitionStrategy.@Default,
        ResourceGroupName = "rgiotoperationsmq",
        Routes = new[]
        {
            new AzureNative.IoTOperationsMQ.Inputs.KafkaRoutesArgs
            {
                KafkaToMqtt = new AzureNative.IoTOperationsMQ.Inputs.KafkaToMqttRoutesArgs
                {
                    ConsumerGroupId = "usork",
                    KafkaTopic = "ggwhwbsr",
                    MqttTopic = "jwvmmhfqqkkmqrpslbdfmpbdetfu",
                    Name = "lrnvudysggscnqvmnlkrk",
                    Qos = 1,
                },
                MqttToKafka = new AzureNative.IoTOperationsMQ.Inputs.MqttToKafkaRoutesArgs
                {
                    KafkaAcks = AzureNative.IoTOperationsMQ.KafkaAcks.Zero,
                    KafkaTopic = "tellycttwulueqcpqf",
                    MqttTopic = "raipkrcwvdnnflywhgjwnquarf",
                    Name = "qpshqcaxvxnyjzimvchngupzezdei",
                    Qos = 1,
                    SharedSubscription = new AzureNative.IoTOperationsMQ.Inputs.KafkaSharedSubscriptionPropertiesArgs
                    {
                        GroupMinimumShareNumber = 216,
                        GroupName = "nwdyccsditzhchuksmi",
                    },
                },
            },
        },
        Tags = null,
        TopicMapName = "q582ViEY-b7wF1OO2A",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := iotoperationsmq.NewKafkaConnectorTopicMap(ctx, "kafkaConnectorTopicMap", &iotoperationsmq.KafkaConnectorTopicMapArgs{
			Batching: &iotoperationsmq.KafkaTopicMapBatchingArgs{
				Enabled:     pulumi.Bool(true),
				LatencyMs:   pulumi.Int(9110),
				MaxBytes:    pulumi.Float64(732052221),
				MaxMessages: pulumi.Float64(373078076),
			},
			Compression:        pulumi.String(iotoperationsmq.KafkaMessageCompressionTypeNone),
			CopyMqttProperties: pulumi.String("efpqgkycuawnzyubdyt"),
			ExtendedLocation: &iotoperationsmq.ExtendedLocationPropertyArgs{
				Name: pulumi.String("an"),
				Type: pulumi.String(iotoperationsmq.ExtendedLocationTypeCustomLocation),
			},
			KafkaConnectorName:   pulumi.String("216VN"),
			KafkaConnectorRef:    pulumi.String("icivjwerdspx"),
			Location:             pulumi.String("pavphpzfsgdudpyvufyebqh"),
			MqName:               pulumi.String("-1-eD-7-J"),
			PartitionKeyProperty: pulumi.String("c"),
			PartitionStrategy:    pulumi.String(iotoperationsmq.KafkaPartitionStrategyDefault),
			ResourceGroupName:    pulumi.String("rgiotoperationsmq"),
			Routes: iotoperationsmq.KafkaRoutesArray{
				&iotoperationsmq.KafkaRoutesArgs{
					KafkaToMqtt: &iotoperationsmq.KafkaToMqttRoutesArgs{
						ConsumerGroupId: pulumi.String("usork"),
						KafkaTopic:      pulumi.String("ggwhwbsr"),
						MqttTopic:       pulumi.String("jwvmmhfqqkkmqrpslbdfmpbdetfu"),
						Name:            pulumi.String("lrnvudysggscnqvmnlkrk"),
						Qos:             pulumi.Int(1),
					},
					MqttToKafka: &iotoperationsmq.MqttToKafkaRoutesArgs{
						KafkaAcks:  pulumi.String(iotoperationsmq.KafkaAcksZero),
						KafkaTopic: pulumi.String("tellycttwulueqcpqf"),
						MqttTopic:  pulumi.String("raipkrcwvdnnflywhgjwnquarf"),
						Name:       pulumi.String("qpshqcaxvxnyjzimvchngupzezdei"),
						Qos:        pulumi.Int(1),
						SharedSubscription: &iotoperationsmq.KafkaSharedSubscriptionPropertiesArgs{
							GroupMinimumShareNumber: pulumi.Int(216),
							GroupName:               pulumi.String("nwdyccsditzhchuksmi"),
						},
					},
				},
			},
			Tags:         pulumi.StringMap{},
			TopicMapName: pulumi.String("q582ViEY-b7wF1OO2A"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.iotoperationsmq.KafkaConnectorTopicMap;
import com.pulumi.azurenative.iotoperationsmq.KafkaConnectorTopicMapArgs;
import com.pulumi.azurenative.iotoperationsmq.inputs.KafkaTopicMapBatchingArgs;
import com.pulumi.azurenative.iotoperationsmq.inputs.ExtendedLocationPropertyArgs;
import com.pulumi.azurenative.iotoperationsmq.inputs.KafkaRoutesArgs;
import com.pulumi.azurenative.iotoperationsmq.inputs.KafkaToMqttRoutesArgs;
import com.pulumi.azurenative.iotoperationsmq.inputs.MqttToKafkaRoutesArgs;
import com.pulumi.azurenative.iotoperationsmq.inputs.KafkaSharedSubscriptionPropertiesArgs;
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 kafkaConnectorTopicMap = new KafkaConnectorTopicMap("kafkaConnectorTopicMap", KafkaConnectorTopicMapArgs.builder()
            .batching(KafkaTopicMapBatchingArgs.builder()
                .enabled(true)
                .latencyMs(9110)
                .maxBytes(732052221)
                .maxMessages(373078076)
                .build())
            .compression("none")
            .copyMqttProperties("efpqgkycuawnzyubdyt")
            .extendedLocation(ExtendedLocationPropertyArgs.builder()
                .name("an")
                .type("CustomLocation")
                .build())
            .kafkaConnectorName("216VN")
            .kafkaConnectorRef("icivjwerdspx")
            .location("pavphpzfsgdudpyvufyebqh")
            .mqName("-1-eD-7-J")
            .partitionKeyProperty("c")
            .partitionStrategy("default")
            .resourceGroupName("rgiotoperationsmq")
            .routes(KafkaRoutesArgs.builder()
                .kafkaToMqtt(KafkaToMqttRoutesArgs.builder()
                    .consumerGroupId("usork")
                    .kafkaTopic("ggwhwbsr")
                    .mqttTopic("jwvmmhfqqkkmqrpslbdfmpbdetfu")
                    .name("lrnvudysggscnqvmnlkrk")
                    .qos(1)
                    .build())
                .mqttToKafka(MqttToKafkaRoutesArgs.builder()
                    .kafkaAcks("zero")
                    .kafkaTopic("tellycttwulueqcpqf")
                    .mqttTopic("raipkrcwvdnnflywhgjwnquarf")
                    .name("qpshqcaxvxnyjzimvchngupzezdei")
                    .qos(1)
                    .sharedSubscription(KafkaSharedSubscriptionPropertiesArgs.builder()
                        .groupMinimumShareNumber(216)
                        .groupName("nwdyccsditzhchuksmi")
                        .build())
                    .build())
                .build())
            .tags()
            .topicMapName("q582ViEY-b7wF1OO2A")
            .build());

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

const kafkaConnectorTopicMap = new azure_native.iotoperationsmq.KafkaConnectorTopicMap("kafkaConnectorTopicMap", {
    batching: {
        enabled: true,
        latencyMs: 9110,
        maxBytes: 732052221,
        maxMessages: 373078076,
    },
    compression: azure_native.iotoperationsmq.KafkaMessageCompressionType.None,
    copyMqttProperties: "efpqgkycuawnzyubdyt",
    extendedLocation: {
        name: "an",
        type: azure_native.iotoperationsmq.ExtendedLocationType.CustomLocation,
    },
    kafkaConnectorName: "216VN",
    kafkaConnectorRef: "icivjwerdspx",
    location: "pavphpzfsgdudpyvufyebqh",
    mqName: "-1-eD-7-J",
    partitionKeyProperty: "c",
    partitionStrategy: azure_native.iotoperationsmq.KafkaPartitionStrategy.Default,
    resourceGroupName: "rgiotoperationsmq",
    routes: [{
        kafkaToMqtt: {
            consumerGroupId: "usork",
            kafkaTopic: "ggwhwbsr",
            mqttTopic: "jwvmmhfqqkkmqrpslbdfmpbdetfu",
            name: "lrnvudysggscnqvmnlkrk",
            qos: 1,
        },
        mqttToKafka: {
            kafkaAcks: azure_native.iotoperationsmq.KafkaAcks.Zero,
            kafkaTopic: "tellycttwulueqcpqf",
            mqttTopic: "raipkrcwvdnnflywhgjwnquarf",
            name: "qpshqcaxvxnyjzimvchngupzezdei",
            qos: 1,
            sharedSubscription: {
                groupMinimumShareNumber: 216,
                groupName: "nwdyccsditzhchuksmi",
            },
        },
    }],
    tags: {},
    topicMapName: "q582ViEY-b7wF1OO2A",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

kafka_connector_topic_map = azure_native.iotoperationsmq.KafkaConnectorTopicMap("kafkaConnectorTopicMap",
    batching={
        "enabled": True,
        "latency_ms": 9110,
        "max_bytes": 732052221,
        "max_messages": 373078076,
    },
    compression=azure_native.iotoperationsmq.KafkaMessageCompressionType.NONE,
    copy_mqtt_properties="efpqgkycuawnzyubdyt",
    extended_location={
        "name": "an",
        "type": azure_native.iotoperationsmq.ExtendedLocationType.CUSTOM_LOCATION,
    },
    kafka_connector_name="216VN",
    kafka_connector_ref="icivjwerdspx",
    location="pavphpzfsgdudpyvufyebqh",
    mq_name="-1-eD-7-J",
    partition_key_property="c",
    partition_strategy=azure_native.iotoperationsmq.KafkaPartitionStrategy.DEFAULT,
    resource_group_name="rgiotoperationsmq",
    routes=[{
        "kafka_to_mqtt": {
            "consumer_group_id": "usork",
            "kafka_topic": "ggwhwbsr",
            "mqtt_topic": "jwvmmhfqqkkmqrpslbdfmpbdetfu",
            "name": "lrnvudysggscnqvmnlkrk",
            "qos": 1,
        },
        "mqtt_to_kafka": {
            "kafka_acks": azure_native.iotoperationsmq.KafkaAcks.ZERO,
            "kafka_topic": "tellycttwulueqcpqf",
            "mqtt_topic": "raipkrcwvdnnflywhgjwnquarf",
            "name": "qpshqcaxvxnyjzimvchngupzezdei",
            "qos": 1,
            "shared_subscription": {
                "group_minimum_share_number": 216,
                "group_name": "nwdyccsditzhchuksmi",
            },
        },
    }],
    tags={},
    topic_map_name="q582ViEY-b7wF1OO2A")
Copy
resources:
  kafkaConnectorTopicMap:
    type: azure-native:iotoperationsmq:KafkaConnectorTopicMap
    properties:
      batching:
        enabled: true
        latencyMs: 9110
        maxBytes: 7.32052221e+08
        maxMessages: 3.73078076e+08
      compression: none
      copyMqttProperties: efpqgkycuawnzyubdyt
      extendedLocation:
        name: an
        type: CustomLocation
      kafkaConnectorName: 216VN
      kafkaConnectorRef: icivjwerdspx
      location: pavphpzfsgdudpyvufyebqh
      mqName: -1-eD-7-J
      partitionKeyProperty: c
      partitionStrategy: default
      resourceGroupName: rgiotoperationsmq
      routes:
        - kafkaToMqtt:
            consumerGroupId: usork
            kafkaTopic: ggwhwbsr
            mqttTopic: jwvmmhfqqkkmqrpslbdfmpbdetfu
            name: lrnvudysggscnqvmnlkrk
            qos: 1
          mqttToKafka:
            kafkaAcks: zero
            kafkaTopic: tellycttwulueqcpqf
            mqttTopic: raipkrcwvdnnflywhgjwnquarf
            name: qpshqcaxvxnyjzimvchngupzezdei
            qos: 1
            sharedSubscription:
              groupMinimumShareNumber: 216
              groupName: nwdyccsditzhchuksmi
      tags: {}
      topicMapName: q582ViEY-b7wF1OO2A
Copy

Create KafkaConnectorTopicMap Resource

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

Constructor syntax

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

@overload
def KafkaConnectorTopicMap(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           mq_name: Optional[str] = None,
                           routes: Optional[Sequence[KafkaRoutesArgs]] = None,
                           resource_group_name: Optional[str] = None,
                           extended_location: Optional[ExtendedLocationPropertyArgs] = None,
                           kafka_connector_name: Optional[str] = None,
                           kafka_connector_ref: Optional[str] = None,
                           location: Optional[str] = None,
                           batching: Optional[KafkaTopicMapBatchingArgs] = None,
                           partition_key_property: Optional[str] = None,
                           partition_strategy: Optional[Union[str, KafkaPartitionStrategy]] = None,
                           copy_mqtt_properties: Optional[str] = None,
                           compression: Optional[Union[str, KafkaMessageCompressionType]] = None,
                           tags: Optional[Mapping[str, str]] = None,
                           topic_map_name: Optional[str] = None)
func NewKafkaConnectorTopicMap(ctx *Context, name string, args KafkaConnectorTopicMapArgs, opts ...ResourceOption) (*KafkaConnectorTopicMap, error)
public KafkaConnectorTopicMap(string name, KafkaConnectorTopicMapArgs args, CustomResourceOptions? opts = null)
public KafkaConnectorTopicMap(String name, KafkaConnectorTopicMapArgs args)
public KafkaConnectorTopicMap(String name, KafkaConnectorTopicMapArgs args, CustomResourceOptions options)
type: azure-native:iotoperationsmq:KafkaConnectorTopicMap
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. KafkaConnectorTopicMapArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. KafkaConnectorTopicMapArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. KafkaConnectorTopicMapArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. KafkaConnectorTopicMapArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. KafkaConnectorTopicMapArgs
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 kafkaConnectorTopicMapResource = new AzureNative.Iotoperationsmq.KafkaConnectorTopicMap("kafkaConnectorTopicMapResource", new()
{
    MqName = "string",
    Routes = new[]
    {
        
        {
            { "kafkaToMqtt", 
            {
                { "kafkaTopic", "string" },
                { "mqttTopic", "string" },
                { "name", "string" },
                { "consumerGroupId", "string" },
                { "qos", 0 },
            } },
            { "mqttToKafka", 
            {
                { "kafkaAcks", "string" },
                { "kafkaTopic", "string" },
                { "mqttTopic", "string" },
                { "name", "string" },
                { "qos", 0 },
                { "sharedSubscription", 
                {
                    { "groupMinimumShareNumber", 0 },
                    { "groupName", "string" },
                } },
            } },
        },
    },
    ResourceGroupName = "string",
    ExtendedLocation = 
    {
        { "name", "string" },
        { "type", "string" },
    },
    KafkaConnectorName = "string",
    KafkaConnectorRef = "string",
    Location = "string",
    Batching = 
    {
        { "enabled", false },
        { "latencyMs", 0 },
        { "maxBytes", 0 },
        { "maxMessages", 0 },
    },
    PartitionKeyProperty = "string",
    PartitionStrategy = "string",
    CopyMqttProperties = "string",
    Compression = "string",
    Tags = 
    {
        { "string", "string" },
    },
    TopicMapName = "string",
});
Copy
example, err := iotoperationsmq.NewKafkaConnectorTopicMap(ctx, "kafkaConnectorTopicMapResource", &iotoperationsmq.KafkaConnectorTopicMapArgs{
	MqName: "string",
	Routes: []map[string]interface{}{
		map[string]interface{}{
			"kafkaToMqtt": map[string]interface{}{
				"kafkaTopic":      "string",
				"mqttTopic":       "string",
				"name":            "string",
				"consumerGroupId": "string",
				"qos":             0,
			},
			"mqttToKafka": map[string]interface{}{
				"kafkaAcks":  "string",
				"kafkaTopic": "string",
				"mqttTopic":  "string",
				"name":       "string",
				"qos":        0,
				"sharedSubscription": map[string]interface{}{
					"groupMinimumShareNumber": 0,
					"groupName":               "string",
				},
			},
		},
	},
	ResourceGroupName: "string",
	ExtendedLocation: map[string]interface{}{
		"name": "string",
		"type": "string",
	},
	KafkaConnectorName: "string",
	KafkaConnectorRef:  "string",
	Location:           "string",
	Batching: map[string]interface{}{
		"enabled":     false,
		"latencyMs":   0,
		"maxBytes":    0,
		"maxMessages": 0,
	},
	PartitionKeyProperty: "string",
	PartitionStrategy:    "string",
	CopyMqttProperties:   "string",
	Compression:          "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
	TopicMapName: "string",
})
Copy
var kafkaConnectorTopicMapResource = new KafkaConnectorTopicMap("kafkaConnectorTopicMapResource", KafkaConnectorTopicMapArgs.builder()
    .mqName("string")
    .routes(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .kafkaConnectorName("string")
    .kafkaConnectorRef("string")
    .location("string")
    .batching(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .partitionKeyProperty("string")
    .partitionStrategy("string")
    .copyMqttProperties("string")
    .compression("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .topicMapName("string")
    .build());
Copy
kafka_connector_topic_map_resource = azure_native.iotoperationsmq.KafkaConnectorTopicMap("kafkaConnectorTopicMapResource",
    mq_name=string,
    routes=[{
        kafkaToMqtt: {
            kafkaTopic: string,
            mqttTopic: string,
            name: string,
            consumerGroupId: string,
            qos: 0,
        },
        mqttToKafka: {
            kafkaAcks: string,
            kafkaTopic: string,
            mqttTopic: string,
            name: string,
            qos: 0,
            sharedSubscription: {
                groupMinimumShareNumber: 0,
                groupName: string,
            },
        },
    }],
    resource_group_name=string,
    extended_location={
        name: string,
        type: string,
    },
    kafka_connector_name=string,
    kafka_connector_ref=string,
    location=string,
    batching={
        enabled: False,
        latencyMs: 0,
        maxBytes: 0,
        maxMessages: 0,
    },
    partition_key_property=string,
    partition_strategy=string,
    copy_mqtt_properties=string,
    compression=string,
    tags={
        string: string,
    },
    topic_map_name=string)
Copy
const kafkaConnectorTopicMapResource = new azure_native.iotoperationsmq.KafkaConnectorTopicMap("kafkaConnectorTopicMapResource", {
    mqName: "string",
    routes: [{
        kafkaToMqtt: {
            kafkaTopic: "string",
            mqttTopic: "string",
            name: "string",
            consumerGroupId: "string",
            qos: 0,
        },
        mqttToKafka: {
            kafkaAcks: "string",
            kafkaTopic: "string",
            mqttTopic: "string",
            name: "string",
            qos: 0,
            sharedSubscription: {
                groupMinimumShareNumber: 0,
                groupName: "string",
            },
        },
    }],
    resourceGroupName: "string",
    extendedLocation: {
        name: "string",
        type: "string",
    },
    kafkaConnectorName: "string",
    kafkaConnectorRef: "string",
    location: "string",
    batching: {
        enabled: false,
        latencyMs: 0,
        maxBytes: 0,
        maxMessages: 0,
    },
    partitionKeyProperty: "string",
    partitionStrategy: "string",
    copyMqttProperties: "string",
    compression: "string",
    tags: {
        string: "string",
    },
    topicMapName: "string",
});
Copy
type: azure-native:iotoperationsmq:KafkaConnectorTopicMap
properties:
    batching:
        enabled: false
        latencyMs: 0
        maxBytes: 0
        maxMessages: 0
    compression: string
    copyMqttProperties: string
    extendedLocation:
        name: string
        type: string
    kafkaConnectorName: string
    kafkaConnectorRef: string
    location: string
    mqName: string
    partitionKeyProperty: string
    partitionStrategy: string
    resourceGroupName: string
    routes:
        - kafkaToMqtt:
            consumerGroupId: string
            kafkaTopic: string
            mqttTopic: string
            name: string
            qos: 0
          mqttToKafka:
            kafkaAcks: string
            kafkaTopic: string
            mqttTopic: string
            name: string
            qos: 0
            sharedSubscription:
                groupMinimumShareNumber: 0
                groupName: string
    tags:
        string: string
    topicMapName: string
Copy

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

ExtendedLocation
This property is required.
Changes to this property will trigger replacement.
Pulumi.AzureNative.IoTOperationsMQ.Inputs.ExtendedLocationProperty
Extended Location
KafkaConnectorName
This property is required.
Changes to this property will trigger replacement.
string
Name of MQ kafkaConnector resource
KafkaConnectorRef This property is required. string
The kafkaConnector CRD it refers to.
MqName
This property is required.
Changes to this property will trigger replacement.
string
Name of MQ resource
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Routes This property is required. List<Pulumi.AzureNative.IoTOperationsMQ.Inputs.KafkaRoutes>
The route details for Kafka connector.
Batching Pulumi.AzureNative.IoTOperationsMQ.Inputs.KafkaTopicMapBatching
The batching settings for kafka messages.
Compression string | Pulumi.AzureNative.IoTOperationsMQ.KafkaMessageCompressionType
The compression to use for kafka messages.
CopyMqttProperties string
The flag to copy Mqtt properties.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
PartitionKeyProperty string
The partition to use for Kafka.
PartitionStrategy string | Pulumi.AzureNative.IoTOperationsMQ.KafkaPartitionStrategy
The partition strategy to use for Kafka.
Tags Dictionary<string, string>
Resource tags.
TopicMapName Changes to this property will trigger replacement. string
Name of MQ kafka/topicMap resource
ExtendedLocation
This property is required.
Changes to this property will trigger replacement.
ExtendedLocationPropertyArgs
Extended Location
KafkaConnectorName
This property is required.
Changes to this property will trigger replacement.
string
Name of MQ kafkaConnector resource
KafkaConnectorRef This property is required. string
The kafkaConnector CRD it refers to.
MqName
This property is required.
Changes to this property will trigger replacement.
string
Name of MQ resource
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Routes This property is required. []KafkaRoutesArgs
The route details for Kafka connector.
Batching KafkaTopicMapBatchingArgs
The batching settings for kafka messages.
Compression string | KafkaMessageCompressionType
The compression to use for kafka messages.
CopyMqttProperties string
The flag to copy Mqtt properties.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
PartitionKeyProperty string
The partition to use for Kafka.
PartitionStrategy string | KafkaPartitionStrategy
The partition strategy to use for Kafka.
Tags map[string]string
Resource tags.
TopicMapName Changes to this property will trigger replacement. string
Name of MQ kafka/topicMap resource
extendedLocation
This property is required.
Changes to this property will trigger replacement.
ExtendedLocationProperty
Extended Location
kafkaConnectorName
This property is required.
Changes to this property will trigger replacement.
String
Name of MQ kafkaConnector resource
kafkaConnectorRef This property is required. String
The kafkaConnector CRD it refers to.
mqName
This property is required.
Changes to this property will trigger replacement.
String
Name of MQ resource
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
routes This property is required. List<KafkaRoutes>
The route details for Kafka connector.
batching KafkaTopicMapBatching
The batching settings for kafka messages.
compression String | KafkaMessageCompressionType
The compression to use for kafka messages.
copyMqttProperties String
The flag to copy Mqtt properties.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
partitionKeyProperty String
The partition to use for Kafka.
partitionStrategy String | KafkaPartitionStrategy
The partition strategy to use for Kafka.
tags Map<String,String>
Resource tags.
topicMapName Changes to this property will trigger replacement. String
Name of MQ kafka/topicMap resource
extendedLocation
This property is required.
Changes to this property will trigger replacement.
ExtendedLocationProperty
Extended Location
kafkaConnectorName
This property is required.
Changes to this property will trigger replacement.
string
Name of MQ kafkaConnector resource
kafkaConnectorRef This property is required. string
The kafkaConnector CRD it refers to.
mqName
This property is required.
Changes to this property will trigger replacement.
string
Name of MQ resource
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
routes This property is required. KafkaRoutes[]
The route details for Kafka connector.
batching KafkaTopicMapBatching
The batching settings for kafka messages.
compression string | KafkaMessageCompressionType
The compression to use for kafka messages.
copyMqttProperties string
The flag to copy Mqtt properties.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
partitionKeyProperty string
The partition to use for Kafka.
partitionStrategy string | KafkaPartitionStrategy
The partition strategy to use for Kafka.
tags {[key: string]: string}
Resource tags.
topicMapName Changes to this property will trigger replacement. string
Name of MQ kafka/topicMap resource
extended_location
This property is required.
Changes to this property will trigger replacement.
ExtendedLocationPropertyArgs
Extended Location
kafka_connector_name
This property is required.
Changes to this property will trigger replacement.
str
Name of MQ kafkaConnector resource
kafka_connector_ref This property is required. str
The kafkaConnector CRD it refers to.
mq_name
This property is required.
Changes to this property will trigger replacement.
str
Name of MQ resource
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
routes This property is required. Sequence[KafkaRoutesArgs]
The route details for Kafka connector.
batching KafkaTopicMapBatchingArgs
The batching settings for kafka messages.
compression str | KafkaMessageCompressionType
The compression to use for kafka messages.
copy_mqtt_properties str
The flag to copy Mqtt properties.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
partition_key_property str
The partition to use for Kafka.
partition_strategy str | KafkaPartitionStrategy
The partition strategy to use for Kafka.
tags Mapping[str, str]
Resource tags.
topic_map_name Changes to this property will trigger replacement. str
Name of MQ kafka/topicMap resource
extendedLocation
This property is required.
Changes to this property will trigger replacement.
Property Map
Extended Location
kafkaConnectorName
This property is required.
Changes to this property will trigger replacement.
String
Name of MQ kafkaConnector resource
kafkaConnectorRef This property is required. String
The kafkaConnector CRD it refers to.
mqName
This property is required.
Changes to this property will trigger replacement.
String
Name of MQ resource
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
routes This property is required. List<Property Map>
The route details for Kafka connector.
batching Property Map
The batching settings for kafka messages.
compression String | "none" | "gzip" | "snappy" | "lz4"
The compression to use for kafka messages.
copyMqttProperties String
The flag to copy Mqtt properties.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
partitionKeyProperty String
The partition to use for Kafka.
partitionStrategy String | "default" | "static" | "topic" | "property"
The partition strategy to use for Kafka.
tags Map<String>
Resource tags.
topicMapName Changes to this property will trigger replacement. String
Name of MQ kafka/topicMap resource

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
The status of the last operation.
SystemData Pulumi.AzureNative.IoTOperationsMQ.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
The status of the last operation.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
The status of the last operation.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
provisioningState string
The status of the last operation.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
provisioning_state str
The status of the last operation.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
The status of the last operation.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

ExtendedLocationProperty
, ExtendedLocationPropertyArgs

Name This property is required. string
The name of the extended location.
Type This property is required. string | Pulumi.AzureNative.IoTOperationsMQ.ExtendedLocationType
Type of ExtendedLocation.
Name This property is required. string
The name of the extended location.
Type This property is required. string | ExtendedLocationType
Type of ExtendedLocation.
name This property is required. String
The name of the extended location.
type This property is required. String | ExtendedLocationType
Type of ExtendedLocation.
name This property is required. string
The name of the extended location.
type This property is required. string | ExtendedLocationType
Type of ExtendedLocation.
name This property is required. str
The name of the extended location.
type This property is required. str | ExtendedLocationType
Type of ExtendedLocation.
name This property is required. String
The name of the extended location.
type This property is required. String | "CustomLocation"
Type of ExtendedLocation.

ExtendedLocationPropertyResponse
, ExtendedLocationPropertyResponseArgs

Name This property is required. string
The name of the extended location.
Type This property is required. string
Type of ExtendedLocation.
Name This property is required. string
The name of the extended location.
Type This property is required. string
Type of ExtendedLocation.
name This property is required. String
The name of the extended location.
type This property is required. String
Type of ExtendedLocation.
name This property is required. string
The name of the extended location.
type This property is required. string
Type of ExtendedLocation.
name This property is required. str
The name of the extended location.
type This property is required. str
Type of ExtendedLocation.
name This property is required. String
The name of the extended location.
type This property is required. String
Type of ExtendedLocation.

ExtendedLocationType
, ExtendedLocationTypeArgs

CustomLocation
CustomLocationCustomLocation type
ExtendedLocationTypeCustomLocation
CustomLocationCustomLocation type
CustomLocation
CustomLocationCustomLocation type
CustomLocation
CustomLocationCustomLocation type
CUSTOM_LOCATION
CustomLocationCustomLocation type
"CustomLocation"
CustomLocationCustomLocation type

KafkaAcks
, KafkaAcksArgs

Zero
zeroKafka acks zero.
One
oneKafka acks one.
All
allKafka acks all.
KafkaAcksZero
zeroKafka acks zero.
KafkaAcksOne
oneKafka acks one.
KafkaAcksAll
allKafka acks all.
Zero
zeroKafka acks zero.
One
oneKafka acks one.
All
allKafka acks all.
Zero
zeroKafka acks zero.
One
oneKafka acks one.
All
allKafka acks all.
ZERO
zeroKafka acks zero.
ONE
oneKafka acks one.
ALL
allKafka acks all.
"zero"
zeroKafka acks zero.
"one"
oneKafka acks one.
"all"
allKafka acks all.

KafkaMessageCompressionType
, KafkaMessageCompressionTypeArgs

None
noneNo Kafka message compression.
Gzip
gzipGzip Kafka message compression.
Snappy
snappySnappy Kafka message compression.
Lz4
lz4Lz4 Kafka message compression.
KafkaMessageCompressionTypeNone
noneNo Kafka message compression.
KafkaMessageCompressionTypeGzip
gzipGzip Kafka message compression.
KafkaMessageCompressionTypeSnappy
snappySnappy Kafka message compression.
KafkaMessageCompressionTypeLz4
lz4Lz4 Kafka message compression.
None
noneNo Kafka message compression.
Gzip
gzipGzip Kafka message compression.
Snappy
snappySnappy Kafka message compression.
Lz4
lz4Lz4 Kafka message compression.
None
noneNo Kafka message compression.
Gzip
gzipGzip Kafka message compression.
Snappy
snappySnappy Kafka message compression.
Lz4
lz4Lz4 Kafka message compression.
NONE
noneNo Kafka message compression.
GZIP
gzipGzip Kafka message compression.
SNAPPY
snappySnappy Kafka message compression.
LZ4
lz4Lz4 Kafka message compression.
"none"
noneNo Kafka message compression.
"gzip"
gzipGzip Kafka message compression.
"snappy"
snappySnappy Kafka message compression.
"lz4"
lz4Lz4 Kafka message compression.

KafkaPartitionStrategy
, KafkaPartitionStrategyArgs

@Default
defaultDefault partition strategy.
@Static
staticStatic partition strategy.
Topic
topicTopic partition strategy.
Property
propertyProperty partition strategy.
KafkaPartitionStrategyDefault
defaultDefault partition strategy.
KafkaPartitionStrategyStatic
staticStatic partition strategy.
KafkaPartitionStrategyTopic
topicTopic partition strategy.
KafkaPartitionStrategyProperty
propertyProperty partition strategy.
Default_
defaultDefault partition strategy.
Static_
staticStatic partition strategy.
Topic
topicTopic partition strategy.
Property
propertyProperty partition strategy.
Default
defaultDefault partition strategy.
Static
staticStatic partition strategy.
Topic
topicTopic partition strategy.
Property
propertyProperty partition strategy.
DEFAULT
defaultDefault partition strategy.
STATIC
staticStatic partition strategy.
TOPIC
topicTopic partition strategy.
PROPERTY
propertyProperty partition strategy.
"default"
defaultDefault partition strategy.
"static"
staticStatic partition strategy.
"topic"
topicTopic partition strategy.
"property"
propertyProperty partition strategy.

KafkaRoutes
, KafkaRoutesArgs

KafkaToMqtt KafkaToMqttRoutes
Kafka to Mqtt route.
MqttToKafka MqttToKafkaRoutes
Mqtt to Kafka route.
kafkaToMqtt KafkaToMqttRoutes
Kafka to Mqtt route.
mqttToKafka MqttToKafkaRoutes
Mqtt to Kafka route.
kafkaToMqtt KafkaToMqttRoutes
Kafka to Mqtt route.
mqttToKafka MqttToKafkaRoutes
Mqtt to Kafka route.
kafka_to_mqtt KafkaToMqttRoutes
Kafka to Mqtt route.
mqtt_to_kafka MqttToKafkaRoutes
Mqtt to Kafka route.
kafkaToMqtt Property Map
Kafka to Mqtt route.
mqttToKafka Property Map
Mqtt to Kafka route.

KafkaRoutesResponse
, KafkaRoutesResponseArgs

kafkaToMqtt Property Map
Kafka to Mqtt route.
mqttToKafka Property Map
Mqtt to Kafka route.

KafkaSharedSubscriptionProperties
, KafkaSharedSubscriptionPropertiesArgs

GroupMinimumShareNumber This property is required. int
The minimum number to use in a group for subscription.
GroupName This property is required. string
The name of the shared subscription.
GroupMinimumShareNumber This property is required. int
The minimum number to use in a group for subscription.
GroupName This property is required. string
The name of the shared subscription.
groupMinimumShareNumber This property is required. Integer
The minimum number to use in a group for subscription.
groupName This property is required. String
The name of the shared subscription.
groupMinimumShareNumber This property is required. number
The minimum number to use in a group for subscription.
groupName This property is required. string
The name of the shared subscription.
group_minimum_share_number This property is required. int
The minimum number to use in a group for subscription.
group_name This property is required. str
The name of the shared subscription.
groupMinimumShareNumber This property is required. Number
The minimum number to use in a group for subscription.
groupName This property is required. String
The name of the shared subscription.

KafkaSharedSubscriptionPropertiesResponse
, KafkaSharedSubscriptionPropertiesResponseArgs

GroupMinimumShareNumber This property is required. int
The minimum number to use in a group for subscription.
GroupName This property is required. string
The name of the shared subscription.
GroupMinimumShareNumber This property is required. int
The minimum number to use in a group for subscription.
GroupName This property is required. string
The name of the shared subscription.
groupMinimumShareNumber This property is required. Integer
The minimum number to use in a group for subscription.
groupName This property is required. String
The name of the shared subscription.
groupMinimumShareNumber This property is required. number
The minimum number to use in a group for subscription.
groupName This property is required. string
The name of the shared subscription.
group_minimum_share_number This property is required. int
The minimum number to use in a group for subscription.
group_name This property is required. str
The name of the shared subscription.
groupMinimumShareNumber This property is required. Number
The minimum number to use in a group for subscription.
groupName This property is required. String
The name of the shared subscription.

KafkaToMqttRoutes
, KafkaToMqttRoutesArgs

KafkaTopic This property is required. string
The kafka topic to pull from.
MqttTopic This property is required. string
The mqtt topic to publish to.
Name This property is required. string
The name of the route.
ConsumerGroupId string
The consumer group id to use.
Qos int
The qos to use for mqtt.
KafkaTopic This property is required. string
The kafka topic to pull from.
MqttTopic This property is required. string
The mqtt topic to publish to.
Name This property is required. string
The name of the route.
ConsumerGroupId string
The consumer group id to use.
Qos int
The qos to use for mqtt.
kafkaTopic This property is required. String
The kafka topic to pull from.
mqttTopic This property is required. String
The mqtt topic to publish to.
name This property is required. String
The name of the route.
consumerGroupId String
The consumer group id to use.
qos Integer
The qos to use for mqtt.
kafkaTopic This property is required. string
The kafka topic to pull from.
mqttTopic This property is required. string
The mqtt topic to publish to.
name This property is required. string
The name of the route.
consumerGroupId string
The consumer group id to use.
qos number
The qos to use for mqtt.
kafka_topic This property is required. str
The kafka topic to pull from.
mqtt_topic This property is required. str
The mqtt topic to publish to.
name This property is required. str
The name of the route.
consumer_group_id str
The consumer group id to use.
qos int
The qos to use for mqtt.
kafkaTopic This property is required. String
The kafka topic to pull from.
mqttTopic This property is required. String
The mqtt topic to publish to.
name This property is required. String
The name of the route.
consumerGroupId String
The consumer group id to use.
qos Number
The qos to use for mqtt.

KafkaToMqttRoutesResponse
, KafkaToMqttRoutesResponseArgs

KafkaTopic This property is required. string
The kafka topic to pull from.
MqttTopic This property is required. string
The mqtt topic to publish to.
Name This property is required. string
The name of the route.
ConsumerGroupId string
The consumer group id to use.
Qos int
The qos to use for mqtt.
KafkaTopic This property is required. string
The kafka topic to pull from.
MqttTopic This property is required. string
The mqtt topic to publish to.
Name This property is required. string
The name of the route.
ConsumerGroupId string
The consumer group id to use.
Qos int
The qos to use for mqtt.
kafkaTopic This property is required. String
The kafka topic to pull from.
mqttTopic This property is required. String
The mqtt topic to publish to.
name This property is required. String
The name of the route.
consumerGroupId String
The consumer group id to use.
qos Integer
The qos to use for mqtt.
kafkaTopic This property is required. string
The kafka topic to pull from.
mqttTopic This property is required. string
The mqtt topic to publish to.
name This property is required. string
The name of the route.
consumerGroupId string
The consumer group id to use.
qos number
The qos to use for mqtt.
kafka_topic This property is required. str
The kafka topic to pull from.
mqtt_topic This property is required. str
The mqtt topic to publish to.
name This property is required. str
The name of the route.
consumer_group_id str
The consumer group id to use.
qos int
The qos to use for mqtt.
kafkaTopic This property is required. String
The kafka topic to pull from.
mqttTopic This property is required. String
The mqtt topic to publish to.
name This property is required. String
The name of the route.
consumerGroupId String
The consumer group id to use.
qos Number
The qos to use for mqtt.

KafkaTopicMapBatching
, KafkaTopicMapBatchingArgs

Enabled bool
The setting to enable or disable batching.
LatencyMs int
The latency of message batching.
MaxBytes double
The maximum bytes to send in a batch.
MaxMessages double
The maximum messages to send in a batch.
Enabled bool
The setting to enable or disable batching.
LatencyMs int
The latency of message batching.
MaxBytes float64
The maximum bytes to send in a batch.
MaxMessages float64
The maximum messages to send in a batch.
enabled Boolean
The setting to enable or disable batching.
latencyMs Integer
The latency of message batching.
maxBytes Double
The maximum bytes to send in a batch.
maxMessages Double
The maximum messages to send in a batch.
enabled boolean
The setting to enable or disable batching.
latencyMs number
The latency of message batching.
maxBytes number
The maximum bytes to send in a batch.
maxMessages number
The maximum messages to send in a batch.
enabled bool
The setting to enable or disable batching.
latency_ms int
The latency of message batching.
max_bytes float
The maximum bytes to send in a batch.
max_messages float
The maximum messages to send in a batch.
enabled Boolean
The setting to enable or disable batching.
latencyMs Number
The latency of message batching.
maxBytes Number
The maximum bytes to send in a batch.
maxMessages Number
The maximum messages to send in a batch.

KafkaTopicMapBatchingResponse
, KafkaTopicMapBatchingResponseArgs

Enabled bool
The setting to enable or disable batching.
LatencyMs int
The latency of message batching.
MaxBytes double
The maximum bytes to send in a batch.
MaxMessages double
The maximum messages to send in a batch.
Enabled bool
The setting to enable or disable batching.
LatencyMs int
The latency of message batching.
MaxBytes float64
The maximum bytes to send in a batch.
MaxMessages float64
The maximum messages to send in a batch.
enabled Boolean
The setting to enable or disable batching.
latencyMs Integer
The latency of message batching.
maxBytes Double
The maximum bytes to send in a batch.
maxMessages Double
The maximum messages to send in a batch.
enabled boolean
The setting to enable or disable batching.
latencyMs number
The latency of message batching.
maxBytes number
The maximum bytes to send in a batch.
maxMessages number
The maximum messages to send in a batch.
enabled bool
The setting to enable or disable batching.
latency_ms int
The latency of message batching.
max_bytes float
The maximum bytes to send in a batch.
max_messages float
The maximum messages to send in a batch.
enabled Boolean
The setting to enable or disable batching.
latencyMs Number
The latency of message batching.
maxBytes Number
The maximum bytes to send in a batch.
maxMessages Number
The maximum messages to send in a batch.

MqttToKafkaRoutes
, MqttToKafkaRoutesArgs

KafkaAcks This property is required. string | Pulumi.AzureNative.IoTOperationsMQ.KafkaAcks
The kafka acks to use.
KafkaTopic This property is required. string
The kafka topic to publish to.
MqttTopic This property is required. string
The mqtt topic to pull from.
Name This property is required. string
The name of the route.
Qos int
The qos to use for mqtt.
SharedSubscription Pulumi.AzureNative.IoTOperationsMQ.Inputs.KafkaSharedSubscriptionProperties
The properties for shared subscription.
KafkaAcks This property is required. string | KafkaAcks
The kafka acks to use.
KafkaTopic This property is required. string
The kafka topic to publish to.
MqttTopic This property is required. string
The mqtt topic to pull from.
Name This property is required. string
The name of the route.
Qos int
The qos to use for mqtt.
SharedSubscription KafkaSharedSubscriptionProperties
The properties for shared subscription.
kafkaAcks This property is required. String | KafkaAcks
The kafka acks to use.
kafkaTopic This property is required. String
The kafka topic to publish to.
mqttTopic This property is required. String
The mqtt topic to pull from.
name This property is required. String
The name of the route.
qos Integer
The qos to use for mqtt.
sharedSubscription KafkaSharedSubscriptionProperties
The properties for shared subscription.
kafkaAcks This property is required. string | KafkaAcks
The kafka acks to use.
kafkaTopic This property is required. string
The kafka topic to publish to.
mqttTopic This property is required. string
The mqtt topic to pull from.
name This property is required. string
The name of the route.
qos number
The qos to use for mqtt.
sharedSubscription KafkaSharedSubscriptionProperties
The properties for shared subscription.
kafka_acks This property is required. str | KafkaAcks
The kafka acks to use.
kafka_topic This property is required. str
The kafka topic to publish to.
mqtt_topic This property is required. str
The mqtt topic to pull from.
name This property is required. str
The name of the route.
qos int
The qos to use for mqtt.
shared_subscription KafkaSharedSubscriptionProperties
The properties for shared subscription.
kafkaAcks This property is required. String | "zero" | "one" | "all"
The kafka acks to use.
kafkaTopic This property is required. String
The kafka topic to publish to.
mqttTopic This property is required. String
The mqtt topic to pull from.
name This property is required. String
The name of the route.
qos Number
The qos to use for mqtt.
sharedSubscription Property Map
The properties for shared subscription.

MqttToKafkaRoutesResponse
, MqttToKafkaRoutesResponseArgs

KafkaAcks This property is required. string
The kafka acks to use.
KafkaTopic This property is required. string
The kafka topic to publish to.
MqttTopic This property is required. string
The mqtt topic to pull from.
Name This property is required. string
The name of the route.
Qos int
The qos to use for mqtt.
SharedSubscription Pulumi.AzureNative.IoTOperationsMQ.Inputs.KafkaSharedSubscriptionPropertiesResponse
The properties for shared subscription.
KafkaAcks This property is required. string
The kafka acks to use.
KafkaTopic This property is required. string
The kafka topic to publish to.
MqttTopic This property is required. string
The mqtt topic to pull from.
Name This property is required. string
The name of the route.
Qos int
The qos to use for mqtt.
SharedSubscription KafkaSharedSubscriptionPropertiesResponse
The properties for shared subscription.
kafkaAcks This property is required. String
The kafka acks to use.
kafkaTopic This property is required. String
The kafka topic to publish to.
mqttTopic This property is required. String
The mqtt topic to pull from.
name This property is required. String
The name of the route.
qos Integer
The qos to use for mqtt.
sharedSubscription KafkaSharedSubscriptionPropertiesResponse
The properties for shared subscription.
kafkaAcks This property is required. string
The kafka acks to use.
kafkaTopic This property is required. string
The kafka topic to publish to.
mqttTopic This property is required. string
The mqtt topic to pull from.
name This property is required. string
The name of the route.
qos number
The qos to use for mqtt.
sharedSubscription KafkaSharedSubscriptionPropertiesResponse
The properties for shared subscription.
kafka_acks This property is required. str
The kafka acks to use.
kafka_topic This property is required. str
The kafka topic to publish to.
mqtt_topic This property is required. str
The mqtt topic to pull from.
name This property is required. str
The name of the route.
qos int
The qos to use for mqtt.
shared_subscription KafkaSharedSubscriptionPropertiesResponse
The properties for shared subscription.
kafkaAcks This property is required. String
The kafka acks to use.
kafkaTopic This property is required. String
The kafka topic to publish to.
mqttTopic This property is required. String
The mqtt topic to pull from.
name This property is required. String
The name of the route.
qos Number
The qos to use for mqtt.
sharedSubscription Property Map
The properties for shared subscription.

SystemDataResponse
, SystemDataResponseArgs

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

Import

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

$ pulumi import azure-native:iotoperationsmq:KafkaConnectorTopicMap kdcutfmwzjixcfzbkpelp /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IoTOperationsMQ/mq/{mqName}/kafkaConnector/{kafkaConnectorName}/topicMap/{topicMapName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0