1. Packages
  2. Azure Native v2
  3. API Docs
  4. confluent
  5. Connector
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.confluent.Connector

Explore with Pulumi AI

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

Details of connector record Azure REST API version: 2024-07-01.

Example Usage

Connector_CreateOrUpdate

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

return await Deployment.RunAsync(() => 
{
    var connector = new AzureNative.Confluent.Connector("connector", new()
    {
        ClusterId = "dlz-f3a90de",
        ConnectorBasicInfo = new AzureNative.Confluent.Inputs.ConnectorInfoBaseArgs
        {
            ConnectorClass = "AZUREBLOBSTORAGESINK",
            ConnectorName = "connector-1",
            ConnectorType = AzureNative.Confluent.ConnectorType.SINK,
        },
        ConnectorName = "connector-1",
        ConnectorServiceTypeInfo = new AzureNative.Confluent.Inputs.AzureBlobStorageSinkConnectorServiceInfoArgs
        {
            ConnectorServiceType = "AzureBlobStorageSinkConnector",
            StorageAccountKey = "*******",
            StorageAccountName = "stcfaccount-1",
            StorageContainerName = "continer-1",
        },
        EnvironmentId = "env-12132",
        OrganizationName = "myOrganization",
        PartnerConnectorInfo = new AzureNative.Confluent.Inputs.KafkaAzureBlobStorageSinkConnectorInfoArgs
        {
            ApiKey = "xxxxxxx",
            ApiSecret = "*******",
            AuthType = AzureNative.Confluent.AuthType.KAFKA_API_KEY,
            FlushSize = "1000",
            InputFormat = AzureNative.Confluent.DataFormatType.JSON,
            MaxTasks = "2",
            OutputFormat = AzureNative.Confluent.DataFormatType.JSON,
            PartnerConnectorType = "KafkaAzureBlobStorageSink",
            TimeInterval = "DAILY",
            Topics = new[]
            {
                "topic-1",
            },
            TopicsDir = "topicsDir",
        },
        ResourceGroupName = "myResourceGroup",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := confluent.NewConnector(ctx, "connector", &confluent.ConnectorArgs{
			ClusterId: pulumi.String("dlz-f3a90de"),
			ConnectorBasicInfo: &confluent.ConnectorInfoBaseArgs{
				ConnectorClass: pulumi.String("AZUREBLOBSTORAGESINK"),
				ConnectorName:  pulumi.String("connector-1"),
				ConnectorType:  pulumi.String(confluent.ConnectorTypeSINK),
			},
			ConnectorName: pulumi.String("connector-1"),
			ConnectorServiceTypeInfo: &confluent.AzureBlobStorageSinkConnectorServiceInfoArgs{
				ConnectorServiceType: pulumi.String("AzureBlobStorageSinkConnector"),
				StorageAccountKey:    pulumi.String("*******"),
				StorageAccountName:   pulumi.String("stcfaccount-1"),
				StorageContainerName: pulumi.String("continer-1"),
			},
			EnvironmentId:    pulumi.String("env-12132"),
			OrganizationName: pulumi.String("myOrganization"),
			PartnerConnectorInfo: &confluent.KafkaAzureBlobStorageSinkConnectorInfoArgs{
				ApiKey:               pulumi.String("xxxxxxx"),
				ApiSecret:            pulumi.String("*******"),
				AuthType:             pulumi.String(confluent.AuthType_KAFKA_API_KEY),
				FlushSize:            pulumi.String("1000"),
				InputFormat:          pulumi.String(confluent.DataFormatTypeJSON),
				MaxTasks:             pulumi.String("2"),
				OutputFormat:         pulumi.String(confluent.DataFormatTypeJSON),
				PartnerConnectorType: pulumi.String("KafkaAzureBlobStorageSink"),
				TimeInterval:         pulumi.String("DAILY"),
				Topics: pulumi.StringArray{
					pulumi.String("topic-1"),
				},
				TopicsDir: pulumi.String("topicsDir"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
		})
		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.confluent.Connector;
import com.pulumi.azurenative.confluent.ConnectorArgs;
import com.pulumi.azurenative.confluent.inputs.ConnectorInfoBaseArgs;
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 connector = new Connector("connector", ConnectorArgs.builder()
            .clusterId("dlz-f3a90de")
            .connectorBasicInfo(ConnectorInfoBaseArgs.builder()
                .connectorClass("AZUREBLOBSTORAGESINK")
                .connectorName("connector-1")
                .connectorType("SINK")
                .build())
            .connectorName("connector-1")
            .connectorServiceTypeInfo(AzureBlobStorageSinkConnectorServiceInfoArgs.builder()
                .connectorServiceType("AzureBlobStorageSinkConnector")
                .storageAccountKey("*******")
                .storageAccountName("stcfaccount-1")
                .storageContainerName("continer-1")
                .build())
            .environmentId("env-12132")
            .organizationName("myOrganization")
            .partnerConnectorInfo(KafkaAzureBlobStorageSinkConnectorInfoArgs.builder()
                .apiKey("xxxxxxx")
                .apiSecret("*******")
                .authType("KAFKA_API_KEY")
                .flushSize("1000")
                .inputFormat("JSON")
                .maxTasks("2")
                .outputFormat("JSON")
                .partnerConnectorType("KafkaAzureBlobStorageSink")
                .timeInterval("DAILY")
                .topics("topic-1")
                .topicsDir("topicsDir")
                .build())
            .resourceGroupName("myResourceGroup")
            .build());

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

const connector = new azure_native.confluent.Connector("connector", {
    clusterId: "dlz-f3a90de",
    connectorBasicInfo: {
        connectorClass: "AZUREBLOBSTORAGESINK",
        connectorName: "connector-1",
        connectorType: azure_native.confluent.ConnectorType.SINK,
    },
    connectorName: "connector-1",
    connectorServiceTypeInfo: {
        connectorServiceType: "AzureBlobStorageSinkConnector",
        storageAccountKey: "*******",
        storageAccountName: "stcfaccount-1",
        storageContainerName: "continer-1",
    },
    environmentId: "env-12132",
    organizationName: "myOrganization",
    partnerConnectorInfo: {
        apiKey: "xxxxxxx",
        apiSecret: "*******",
        authType: azure_native.confluent.AuthType.KAFKA_API_KEY,
        flushSize: "1000",
        inputFormat: azure_native.confluent.DataFormatType.JSON,
        maxTasks: "2",
        outputFormat: azure_native.confluent.DataFormatType.JSON,
        partnerConnectorType: "KafkaAzureBlobStorageSink",
        timeInterval: "DAILY",
        topics: ["topic-1"],
        topicsDir: "topicsDir",
    },
    resourceGroupName: "myResourceGroup",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

connector = azure_native.confluent.Connector("connector",
    cluster_id="dlz-f3a90de",
    connector_basic_info={
        "connector_class": "AZUREBLOBSTORAGESINK",
        "connector_name": "connector-1",
        "connector_type": azure_native.confluent.ConnectorType.SINK,
    },
    connector_name="connector-1",
    connector_service_type_info={
        "connector_service_type": "AzureBlobStorageSinkConnector",
        "storage_account_key": "*******",
        "storage_account_name": "stcfaccount-1",
        "storage_container_name": "continer-1",
    },
    environment_id="env-12132",
    organization_name="myOrganization",
    partner_connector_info={
        "api_key": "xxxxxxx",
        "api_secret": "*******",
        "auth_type": azure_native.confluent.AuthType.KAFK_A_AP_I_KEY,
        "flush_size": "1000",
        "input_format": azure_native.confluent.DataFormatType.JSON,
        "max_tasks": "2",
        "output_format": azure_native.confluent.DataFormatType.JSON,
        "partner_connector_type": "KafkaAzureBlobStorageSink",
        "time_interval": "DAILY",
        "topics": ["topic-1"],
        "topics_dir": "topicsDir",
    },
    resource_group_name="myResourceGroup")
Copy
resources:
  connector:
    type: azure-native:confluent:Connector
    properties:
      clusterId: dlz-f3a90de
      connectorBasicInfo:
        connectorClass: AZUREBLOBSTORAGESINK
        connectorName: connector-1
        connectorType: SINK
      connectorName: connector-1
      connectorServiceTypeInfo:
        connectorServiceType: AzureBlobStorageSinkConnector
        storageAccountKey: '*******'
        storageAccountName: stcfaccount-1
        storageContainerName: continer-1
      environmentId: env-12132
      organizationName: myOrganization
      partnerConnectorInfo:
        apiKey: xxxxxxx
        apiSecret: '*******'
        authType: KAFKA_API_KEY
        flushSize: '1000'
        inputFormat: JSON
        maxTasks: '2'
        outputFormat: JSON
        partnerConnectorType: KafkaAzureBlobStorageSink
        timeInterval: DAILY
        topics:
          - topic-1
        topicsDir: topicsDir
      resourceGroupName: myResourceGroup
Copy

Create Connector Resource

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

Constructor syntax

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

@overload
def Connector(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              cluster_id: Optional[str] = None,
              environment_id: Optional[str] = None,
              organization_name: Optional[str] = None,
              resource_group_name: Optional[str] = None,
              connector_basic_info: Optional[ConnectorInfoBaseArgs] = None,
              connector_name: Optional[str] = None,
              connector_service_type_info: Optional[Union[AzureBlobStorageSinkConnectorServiceInfoArgs, AzureBlobStorageSourceConnectorServiceInfoArgs, AzureCosmosDBSinkConnectorServiceInfoArgs, AzureCosmosDBSourceConnectorServiceInfoArgs, AzureSynapseAnalyticsSinkConnectorServiceInfoArgs]] = None,
              partner_connector_info: Optional[Union[KafkaAzureBlobStorageSinkConnectorInfoArgs, KafkaAzureBlobStorageSourceConnectorInfoArgs, KafkaAzureCosmosDBSinkConnectorInfoArgs, KafkaAzureCosmosDBSourceConnectorInfoArgs, KafkaAzureSynapseAnalyticsSinkConnectorInfoArgs]] = None)
func NewConnector(ctx *Context, name string, args ConnectorArgs, opts ...ResourceOption) (*Connector, error)
public Connector(string name, ConnectorArgs args, CustomResourceOptions? opts = null)
public Connector(String name, ConnectorArgs args)
public Connector(String name, ConnectorArgs args, CustomResourceOptions options)
type: azure-native:confluent:Connector
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. ConnectorArgs
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. ConnectorArgs
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. ConnectorArgs
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. ConnectorArgs
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. ConnectorArgs
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 connectorResource = new AzureNative.Confluent.Connector("connectorResource", new()
{
    ClusterId = "string",
    EnvironmentId = "string",
    OrganizationName = "string",
    ResourceGroupName = "string",
    ConnectorBasicInfo = 
    {
        { "connectorClass", "string" },
        { "connectorId", "string" },
        { "connectorName", "string" },
        { "connectorState", "string" },
        { "connectorType", "string" },
    },
    ConnectorName = "string",
    ConnectorServiceTypeInfo = 
    {
        { "connectorServiceType", "AzureBlobStorageSinkConnector" },
        { "storageAccountKey", "string" },
        { "storageAccountName", "string" },
        { "storageContainerName", "string" },
    },
    PartnerConnectorInfo = 
    {
        { "partnerConnectorType", "KafkaAzureBlobStorageSink" },
        { "apiKey", "string" },
        { "apiSecret", "string" },
        { "authType", "string" },
        { "flushSize", "string" },
        { "inputFormat", "string" },
        { "maxTasks", "string" },
        { "outputFormat", "string" },
        { "serviceAccountId", "string" },
        { "timeInterval", "string" },
        { "topics", new[]
        {
            "string",
        } },
        { "topicsDir", "string" },
    },
});
Copy
example, err := confluent.NewConnector(ctx, "connectorResource", &confluent.ConnectorArgs{
	ClusterId:         "string",
	EnvironmentId:     "string",
	OrganizationName:  "string",
	ResourceGroupName: "string",
	ConnectorBasicInfo: map[string]interface{}{
		"connectorClass": "string",
		"connectorId":    "string",
		"connectorName":  "string",
		"connectorState": "string",
		"connectorType":  "string",
	},
	ConnectorName: "string",
	ConnectorServiceTypeInfo: map[string]interface{}{
		"connectorServiceType": "AzureBlobStorageSinkConnector",
		"storageAccountKey":    "string",
		"storageAccountName":   "string",
		"storageContainerName": "string",
	},
	PartnerConnectorInfo: map[string]interface{}{
		"partnerConnectorType": "KafkaAzureBlobStorageSink",
		"apiKey":               "string",
		"apiSecret":            "string",
		"authType":             "string",
		"flushSize":            "string",
		"inputFormat":          "string",
		"maxTasks":             "string",
		"outputFormat":         "string",
		"serviceAccountId":     "string",
		"timeInterval":         "string",
		"topics": []string{
			"string",
		},
		"topicsDir": "string",
	},
})
Copy
var connectorResource = new Connector("connectorResource", ConnectorArgs.builder()
    .clusterId("string")
    .environmentId("string")
    .organizationName("string")
    .resourceGroupName("string")
    .connectorBasicInfo(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .connectorName("string")
    .connectorServiceTypeInfo(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .partnerConnectorInfo(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
connector_resource = azure_native.confluent.Connector("connectorResource",
    cluster_id=string,
    environment_id=string,
    organization_name=string,
    resource_group_name=string,
    connector_basic_info={
        connectorClass: string,
        connectorId: string,
        connectorName: string,
        connectorState: string,
        connectorType: string,
    },
    connector_name=string,
    connector_service_type_info={
        connectorServiceType: AzureBlobStorageSinkConnector,
        storageAccountKey: string,
        storageAccountName: string,
        storageContainerName: string,
    },
    partner_connector_info={
        partnerConnectorType: KafkaAzureBlobStorageSink,
        apiKey: string,
        apiSecret: string,
        authType: string,
        flushSize: string,
        inputFormat: string,
        maxTasks: string,
        outputFormat: string,
        serviceAccountId: string,
        timeInterval: string,
        topics: [string],
        topicsDir: string,
    })
Copy
const connectorResource = new azure_native.confluent.Connector("connectorResource", {
    clusterId: "string",
    environmentId: "string",
    organizationName: "string",
    resourceGroupName: "string",
    connectorBasicInfo: {
        connectorClass: "string",
        connectorId: "string",
        connectorName: "string",
        connectorState: "string",
        connectorType: "string",
    },
    connectorName: "string",
    connectorServiceTypeInfo: {
        connectorServiceType: "AzureBlobStorageSinkConnector",
        storageAccountKey: "string",
        storageAccountName: "string",
        storageContainerName: "string",
    },
    partnerConnectorInfo: {
        partnerConnectorType: "KafkaAzureBlobStorageSink",
        apiKey: "string",
        apiSecret: "string",
        authType: "string",
        flushSize: "string",
        inputFormat: "string",
        maxTasks: "string",
        outputFormat: "string",
        serviceAccountId: "string",
        timeInterval: "string",
        topics: ["string"],
        topicsDir: "string",
    },
});
Copy
type: azure-native:confluent:Connector
properties:
    clusterId: string
    connectorBasicInfo:
        connectorClass: string
        connectorId: string
        connectorName: string
        connectorState: string
        connectorType: string
    connectorName: string
    connectorServiceTypeInfo:
        connectorServiceType: AzureBlobStorageSinkConnector
        storageAccountKey: string
        storageAccountName: string
        storageContainerName: string
    environmentId: string
    organizationName: string
    partnerConnectorInfo:
        apiKey: string
        apiSecret: string
        authType: string
        flushSize: string
        inputFormat: string
        maxTasks: string
        outputFormat: string
        partnerConnectorType: KafkaAzureBlobStorageSink
        serviceAccountId: string
        timeInterval: string
        topics:
            - string
        topicsDir: string
    resourceGroupName: string
Copy

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

ClusterId
This property is required.
Changes to this property will trigger replacement.
string
Confluent kafka or schema registry cluster id
EnvironmentId
This property is required.
Changes to this property will trigger replacement.
string
Confluent environment id
OrganizationName
This property is required.
Changes to this property will trigger replacement.
string
Organization resource name
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ConnectorBasicInfo Pulumi.AzureNative.Confluent.Inputs.ConnectorInfoBase
Connector Info Base
ConnectorName Changes to this property will trigger replacement. string
Confluent connector name
ConnectorServiceTypeInfo Pulumi.AzureNative.Confluent.Inputs.AzureBlobStorageSinkConnectorServiceInfo | Pulumi.AzureNative.Confluent.Inputs.AzureBlobStorageSourceConnectorServiceInfo | Pulumi.AzureNative.Confluent.Inputs.AzureCosmosDBSinkConnectorServiceInfo | Pulumi.AzureNative.Confluent.Inputs.AzureCosmosDBSourceConnectorServiceInfo | Pulumi.AzureNative.Confluent.Inputs.AzureSynapseAnalyticsSinkConnectorServiceInfo
Connector Service type info base properties.
PartnerConnectorInfo Pulumi.AzureNative.Confluent.Inputs.KafkaAzureBlobStorageSinkConnectorInfo | Pulumi.AzureNative.Confluent.Inputs.KafkaAzureBlobStorageSourceConnectorInfo | Pulumi.AzureNative.Confluent.Inputs.KafkaAzureCosmosDBSinkConnectorInfo | Pulumi.AzureNative.Confluent.Inputs.KafkaAzureCosmosDBSourceConnectorInfo | Pulumi.AzureNative.Confluent.Inputs.KafkaAzureSynapseAnalyticsSinkConnectorInfo
The connection information consumed by applications.
ClusterId
This property is required.
Changes to this property will trigger replacement.
string
Confluent kafka or schema registry cluster id
EnvironmentId
This property is required.
Changes to this property will trigger replacement.
string
Confluent environment id
OrganizationName
This property is required.
Changes to this property will trigger replacement.
string
Organization resource name
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ConnectorBasicInfo ConnectorInfoBaseArgs
Connector Info Base
ConnectorName Changes to this property will trigger replacement. string
Confluent connector name
ConnectorServiceTypeInfo AzureBlobStorageSinkConnectorServiceInfoArgs | AzureBlobStorageSourceConnectorServiceInfoArgs | AzureCosmosDBSinkConnectorServiceInfoArgs | AzureCosmosDBSourceConnectorServiceInfoArgs | AzureSynapseAnalyticsSinkConnectorServiceInfoArgs
Connector Service type info base properties.
PartnerConnectorInfo KafkaAzureBlobStorageSinkConnectorInfoArgs | KafkaAzureBlobStorageSourceConnectorInfoArgs | KafkaAzureCosmosDBSinkConnectorInfoArgs | KafkaAzureCosmosDBSourceConnectorInfoArgs | KafkaAzureSynapseAnalyticsSinkConnectorInfoArgs
The connection information consumed by applications.
clusterId
This property is required.
Changes to this property will trigger replacement.
String
Confluent kafka or schema registry cluster id
environmentId
This property is required.
Changes to this property will trigger replacement.
String
Confluent environment id
organizationName
This property is required.
Changes to this property will trigger replacement.
String
Organization resource name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
connectorBasicInfo ConnectorInfoBase
Connector Info Base
connectorName Changes to this property will trigger replacement. String
Confluent connector name
connectorServiceTypeInfo AzureBlobStorageSinkConnectorServiceInfo | AzureBlobStorageSourceConnectorServiceInfo | AzureCosmosDBSinkConnectorServiceInfo | AzureCosmosDBSourceConnectorServiceInfo | AzureSynapseAnalyticsSinkConnectorServiceInfo
Connector Service type info base properties.
partnerConnectorInfo KafkaAzureBlobStorageSinkConnectorInfo | KafkaAzureBlobStorageSourceConnectorInfo | KafkaAzureCosmosDBSinkConnectorInfo | KafkaAzureCosmosDBSourceConnectorInfo | KafkaAzureSynapseAnalyticsSinkConnectorInfo
The connection information consumed by applications.
clusterId
This property is required.
Changes to this property will trigger replacement.
string
Confluent kafka or schema registry cluster id
environmentId
This property is required.
Changes to this property will trigger replacement.
string
Confluent environment id
organizationName
This property is required.
Changes to this property will trigger replacement.
string
Organization resource name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
connectorBasicInfo ConnectorInfoBase
Connector Info Base
connectorName Changes to this property will trigger replacement. string
Confluent connector name
connectorServiceTypeInfo AzureBlobStorageSinkConnectorServiceInfo | AzureBlobStorageSourceConnectorServiceInfo | AzureCosmosDBSinkConnectorServiceInfo | AzureCosmosDBSourceConnectorServiceInfo | AzureSynapseAnalyticsSinkConnectorServiceInfo
Connector Service type info base properties.
partnerConnectorInfo KafkaAzureBlobStorageSinkConnectorInfo | KafkaAzureBlobStorageSourceConnectorInfo | KafkaAzureCosmosDBSinkConnectorInfo | KafkaAzureCosmosDBSourceConnectorInfo | KafkaAzureSynapseAnalyticsSinkConnectorInfo
The connection information consumed by applications.
cluster_id
This property is required.
Changes to this property will trigger replacement.
str
Confluent kafka or schema registry cluster id
environment_id
This property is required.
Changes to this property will trigger replacement.
str
Confluent environment id
organization_name
This property is required.
Changes to this property will trigger replacement.
str
Organization resource name
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.
connector_basic_info ConnectorInfoBaseArgs
Connector Info Base
connector_name Changes to this property will trigger replacement. str
Confluent connector name
connector_service_type_info AzureBlobStorageSinkConnectorServiceInfoArgs | AzureBlobStorageSourceConnectorServiceInfoArgs | AzureCosmosDBSinkConnectorServiceInfoArgs | AzureCosmosDBSourceConnectorServiceInfoArgs | AzureSynapseAnalyticsSinkConnectorServiceInfoArgs
Connector Service type info base properties.
partner_connector_info KafkaAzureBlobStorageSinkConnectorInfoArgs | KafkaAzureBlobStorageSourceConnectorInfoArgs | KafkaAzureCosmosDBSinkConnectorInfoArgs | KafkaAzureCosmosDBSourceConnectorInfoArgs | KafkaAzureSynapseAnalyticsSinkConnectorInfoArgs
The connection information consumed by applications.
clusterId
This property is required.
Changes to this property will trigger replacement.
String
Confluent kafka or schema registry cluster id
environmentId
This property is required.
Changes to this property will trigger replacement.
String
Confluent environment id
organizationName
This property is required.
Changes to this property will trigger replacement.
String
Organization resource name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
connectorBasicInfo Property Map
Connector Info Base
connectorName Changes to this property will trigger replacement. String
Confluent connector name
connectorServiceTypeInfo Property Map | Property Map | Property Map | Property Map | Property Map
Connector Service type info base properties.
partnerConnectorInfo Property Map | Property Map | Property Map | Property Map | Property Map
The connection information consumed by applications.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData Pulumi.AzureNative.Confluent.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
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
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
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
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
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

AuthType
, AuthTypeArgs

SERVICE_ACCOUNT
SERVICE_ACCOUNT
KAFKA_API_KEY
KAFKA_API_KEY
AuthType_SERVICE_ACCOUNT
SERVICE_ACCOUNT
AuthType_KAFKA_API_KEY
KAFKA_API_KEY
SERVICE_ACCOUNT
SERVICE_ACCOUNT
KAFKA_API_KEY
KAFKA_API_KEY
SERVICE_ACCOUNT
SERVICE_ACCOUNT
KAFKA_API_KEY
KAFKA_API_KEY
SERVIC_E_ACCOUNT
SERVICE_ACCOUNT
KAFK_A_AP_I_KEY
KAFKA_API_KEY
"SERVICE_ACCOUNT"
SERVICE_ACCOUNT
"KAFKA_API_KEY"
KAFKA_API_KEY

AzureBlobStorageSinkConnectorServiceInfo
, AzureBlobStorageSinkConnectorServiceInfoArgs

StorageAccountKey string
Azure Blob Storage Account Key
StorageAccountName string
Azure Blob Storage Account Name
StorageContainerName string
Azure Blob Storage Account Container Name
StorageAccountKey string
Azure Blob Storage Account Key
StorageAccountName string
Azure Blob Storage Account Name
StorageContainerName string
Azure Blob Storage Account Container Name
storageAccountKey String
Azure Blob Storage Account Key
storageAccountName String
Azure Blob Storage Account Name
storageContainerName String
Azure Blob Storage Account Container Name
storageAccountKey string
Azure Blob Storage Account Key
storageAccountName string
Azure Blob Storage Account Name
storageContainerName string
Azure Blob Storage Account Container Name
storage_account_key str
Azure Blob Storage Account Key
storage_account_name str
Azure Blob Storage Account Name
storage_container_name str
Azure Blob Storage Account Container Name
storageAccountKey String
Azure Blob Storage Account Key
storageAccountName String
Azure Blob Storage Account Name
storageContainerName String
Azure Blob Storage Account Container Name

AzureBlobStorageSinkConnectorServiceInfoResponse
, AzureBlobStorageSinkConnectorServiceInfoResponseArgs

StorageAccountKey string
Azure Blob Storage Account Key
StorageAccountName string
Azure Blob Storage Account Name
StorageContainerName string
Azure Blob Storage Account Container Name
StorageAccountKey string
Azure Blob Storage Account Key
StorageAccountName string
Azure Blob Storage Account Name
StorageContainerName string
Azure Blob Storage Account Container Name
storageAccountKey String
Azure Blob Storage Account Key
storageAccountName String
Azure Blob Storage Account Name
storageContainerName String
Azure Blob Storage Account Container Name
storageAccountKey string
Azure Blob Storage Account Key
storageAccountName string
Azure Blob Storage Account Name
storageContainerName string
Azure Blob Storage Account Container Name
storage_account_key str
Azure Blob Storage Account Key
storage_account_name str
Azure Blob Storage Account Name
storage_container_name str
Azure Blob Storage Account Container Name
storageAccountKey String
Azure Blob Storage Account Key
storageAccountName String
Azure Blob Storage Account Name
storageContainerName String
Azure Blob Storage Account Container Name

AzureBlobStorageSourceConnectorServiceInfo
, AzureBlobStorageSourceConnectorServiceInfoArgs

StorageAccountKey string
Azure Blob Storage Account Key
StorageAccountName string
Azure Blob Storage Account Name
StorageContainerName string
Azure Blob Storage Account Container Name
StorageAccountKey string
Azure Blob Storage Account Key
StorageAccountName string
Azure Blob Storage Account Name
StorageContainerName string
Azure Blob Storage Account Container Name
storageAccountKey String
Azure Blob Storage Account Key
storageAccountName String
Azure Blob Storage Account Name
storageContainerName String
Azure Blob Storage Account Container Name
storageAccountKey string
Azure Blob Storage Account Key
storageAccountName string
Azure Blob Storage Account Name
storageContainerName string
Azure Blob Storage Account Container Name
storage_account_key str
Azure Blob Storage Account Key
storage_account_name str
Azure Blob Storage Account Name
storage_container_name str
Azure Blob Storage Account Container Name
storageAccountKey String
Azure Blob Storage Account Key
storageAccountName String
Azure Blob Storage Account Name
storageContainerName String
Azure Blob Storage Account Container Name

AzureBlobStorageSourceConnectorServiceInfoResponse
, AzureBlobStorageSourceConnectorServiceInfoResponseArgs

StorageAccountKey string
Azure Blob Storage Account Key
StorageAccountName string
Azure Blob Storage Account Name
StorageContainerName string
Azure Blob Storage Account Container Name
StorageAccountKey string
Azure Blob Storage Account Key
StorageAccountName string
Azure Blob Storage Account Name
StorageContainerName string
Azure Blob Storage Account Container Name
storageAccountKey String
Azure Blob Storage Account Key
storageAccountName String
Azure Blob Storage Account Name
storageContainerName String
Azure Blob Storage Account Container Name
storageAccountKey string
Azure Blob Storage Account Key
storageAccountName string
Azure Blob Storage Account Name
storageContainerName string
Azure Blob Storage Account Container Name
storage_account_key str
Azure Blob Storage Account Key
storage_account_name str
Azure Blob Storage Account Name
storage_container_name str
Azure Blob Storage Account Container Name
storageAccountKey String
Azure Blob Storage Account Key
storageAccountName String
Azure Blob Storage Account Name
storageContainerName String
Azure Blob Storage Account Container Name

AzureCosmosDBSinkConnectorServiceInfo
, AzureCosmosDBSinkConnectorServiceInfoArgs

CosmosConnectionEndpoint string
Azure Cosmos Database Connection Endpoint
CosmosContainersTopicMapping string
Azure Cosmos Database Containers Topic Mapping
CosmosDatabaseName string
Azure Cosmos Database Name
CosmosIdStrategy string
Azure Cosmos Database Id Strategy
CosmosMasterKey string
Azure Cosmos Database Master Key
CosmosConnectionEndpoint string
Azure Cosmos Database Connection Endpoint
CosmosContainersTopicMapping string
Azure Cosmos Database Containers Topic Mapping
CosmosDatabaseName string
Azure Cosmos Database Name
CosmosIdStrategy string
Azure Cosmos Database Id Strategy
CosmosMasterKey string
Azure Cosmos Database Master Key
cosmosConnectionEndpoint String
Azure Cosmos Database Connection Endpoint
cosmosContainersTopicMapping String
Azure Cosmos Database Containers Topic Mapping
cosmosDatabaseName String
Azure Cosmos Database Name
cosmosIdStrategy String
Azure Cosmos Database Id Strategy
cosmosMasterKey String
Azure Cosmos Database Master Key
cosmosConnectionEndpoint string
Azure Cosmos Database Connection Endpoint
cosmosContainersTopicMapping string
Azure Cosmos Database Containers Topic Mapping
cosmosDatabaseName string
Azure Cosmos Database Name
cosmosIdStrategy string
Azure Cosmos Database Id Strategy
cosmosMasterKey string
Azure Cosmos Database Master Key
cosmos_connection_endpoint str
Azure Cosmos Database Connection Endpoint
cosmos_containers_topic_mapping str
Azure Cosmos Database Containers Topic Mapping
cosmos_database_name str
Azure Cosmos Database Name
cosmos_id_strategy str
Azure Cosmos Database Id Strategy
cosmos_master_key str
Azure Cosmos Database Master Key
cosmosConnectionEndpoint String
Azure Cosmos Database Connection Endpoint
cosmosContainersTopicMapping String
Azure Cosmos Database Containers Topic Mapping
cosmosDatabaseName String
Azure Cosmos Database Name
cosmosIdStrategy String
Azure Cosmos Database Id Strategy
cosmosMasterKey String
Azure Cosmos Database Master Key

AzureCosmosDBSinkConnectorServiceInfoResponse
, AzureCosmosDBSinkConnectorServiceInfoResponseArgs

CosmosConnectionEndpoint string
Azure Cosmos Database Connection Endpoint
CosmosContainersTopicMapping string
Azure Cosmos Database Containers Topic Mapping
CosmosDatabaseName string
Azure Cosmos Database Name
CosmosIdStrategy string
Azure Cosmos Database Id Strategy
CosmosMasterKey string
Azure Cosmos Database Master Key
CosmosConnectionEndpoint string
Azure Cosmos Database Connection Endpoint
CosmosContainersTopicMapping string
Azure Cosmos Database Containers Topic Mapping
CosmosDatabaseName string
Azure Cosmos Database Name
CosmosIdStrategy string
Azure Cosmos Database Id Strategy
CosmosMasterKey string
Azure Cosmos Database Master Key
cosmosConnectionEndpoint String
Azure Cosmos Database Connection Endpoint
cosmosContainersTopicMapping String
Azure Cosmos Database Containers Topic Mapping
cosmosDatabaseName String
Azure Cosmos Database Name
cosmosIdStrategy String
Azure Cosmos Database Id Strategy
cosmosMasterKey String
Azure Cosmos Database Master Key
cosmosConnectionEndpoint string
Azure Cosmos Database Connection Endpoint
cosmosContainersTopicMapping string
Azure Cosmos Database Containers Topic Mapping
cosmosDatabaseName string
Azure Cosmos Database Name
cosmosIdStrategy string
Azure Cosmos Database Id Strategy
cosmosMasterKey string
Azure Cosmos Database Master Key
cosmos_connection_endpoint str
Azure Cosmos Database Connection Endpoint
cosmos_containers_topic_mapping str
Azure Cosmos Database Containers Topic Mapping
cosmos_database_name str
Azure Cosmos Database Name
cosmos_id_strategy str
Azure Cosmos Database Id Strategy
cosmos_master_key str
Azure Cosmos Database Master Key
cosmosConnectionEndpoint String
Azure Cosmos Database Connection Endpoint
cosmosContainersTopicMapping String
Azure Cosmos Database Containers Topic Mapping
cosmosDatabaseName String
Azure Cosmos Database Name
cosmosIdStrategy String
Azure Cosmos Database Id Strategy
cosmosMasterKey String
Azure Cosmos Database Master Key

AzureCosmosDBSourceConnectorServiceInfo
, AzureCosmosDBSourceConnectorServiceInfoArgs

CosmosConnectionEndpoint string
Azure Cosmos Database Connection Endpoint
CosmosContainersTopicMapping string
Azure Cosmos Database Containers Topic Mapping
CosmosDatabaseName string
Azure Cosmos Database Name
CosmosMasterKey string
Azure Cosmos Database Master Key
CosmosMessageKeyEnabled bool
Azure Cosmos Database Message Key Enabled
CosmosMessageKeyField string
Azure Cosmos Database Message Key Field
CosmosConnectionEndpoint string
Azure Cosmos Database Connection Endpoint
CosmosContainersTopicMapping string
Azure Cosmos Database Containers Topic Mapping
CosmosDatabaseName string
Azure Cosmos Database Name
CosmosMasterKey string
Azure Cosmos Database Master Key
CosmosMessageKeyEnabled bool
Azure Cosmos Database Message Key Enabled
CosmosMessageKeyField string
Azure Cosmos Database Message Key Field
cosmosConnectionEndpoint String
Azure Cosmos Database Connection Endpoint
cosmosContainersTopicMapping String
Azure Cosmos Database Containers Topic Mapping
cosmosDatabaseName String
Azure Cosmos Database Name
cosmosMasterKey String
Azure Cosmos Database Master Key
cosmosMessageKeyEnabled Boolean
Azure Cosmos Database Message Key Enabled
cosmosMessageKeyField String
Azure Cosmos Database Message Key Field
cosmosConnectionEndpoint string
Azure Cosmos Database Connection Endpoint
cosmosContainersTopicMapping string
Azure Cosmos Database Containers Topic Mapping
cosmosDatabaseName string
Azure Cosmos Database Name
cosmosMasterKey string
Azure Cosmos Database Master Key
cosmosMessageKeyEnabled boolean
Azure Cosmos Database Message Key Enabled
cosmosMessageKeyField string
Azure Cosmos Database Message Key Field
cosmos_connection_endpoint str
Azure Cosmos Database Connection Endpoint
cosmos_containers_topic_mapping str
Azure Cosmos Database Containers Topic Mapping
cosmos_database_name str
Azure Cosmos Database Name
cosmos_master_key str
Azure Cosmos Database Master Key
cosmos_message_key_enabled bool
Azure Cosmos Database Message Key Enabled
cosmos_message_key_field str
Azure Cosmos Database Message Key Field
cosmosConnectionEndpoint String
Azure Cosmos Database Connection Endpoint
cosmosContainersTopicMapping String
Azure Cosmos Database Containers Topic Mapping
cosmosDatabaseName String
Azure Cosmos Database Name
cosmosMasterKey String
Azure Cosmos Database Master Key
cosmosMessageKeyEnabled Boolean
Azure Cosmos Database Message Key Enabled
cosmosMessageKeyField String
Azure Cosmos Database Message Key Field

AzureCosmosDBSourceConnectorServiceInfoResponse
, AzureCosmosDBSourceConnectorServiceInfoResponseArgs

CosmosConnectionEndpoint string
Azure Cosmos Database Connection Endpoint
CosmosContainersTopicMapping string
Azure Cosmos Database Containers Topic Mapping
CosmosDatabaseName string
Azure Cosmos Database Name
CosmosMasterKey string
Azure Cosmos Database Master Key
CosmosMessageKeyEnabled bool
Azure Cosmos Database Message Key Enabled
CosmosMessageKeyField string
Azure Cosmos Database Message Key Field
CosmosConnectionEndpoint string
Azure Cosmos Database Connection Endpoint
CosmosContainersTopicMapping string
Azure Cosmos Database Containers Topic Mapping
CosmosDatabaseName string
Azure Cosmos Database Name
CosmosMasterKey string
Azure Cosmos Database Master Key
CosmosMessageKeyEnabled bool
Azure Cosmos Database Message Key Enabled
CosmosMessageKeyField string
Azure Cosmos Database Message Key Field
cosmosConnectionEndpoint String
Azure Cosmos Database Connection Endpoint
cosmosContainersTopicMapping String
Azure Cosmos Database Containers Topic Mapping
cosmosDatabaseName String
Azure Cosmos Database Name
cosmosMasterKey String
Azure Cosmos Database Master Key
cosmosMessageKeyEnabled Boolean
Azure Cosmos Database Message Key Enabled
cosmosMessageKeyField String
Azure Cosmos Database Message Key Field
cosmosConnectionEndpoint string
Azure Cosmos Database Connection Endpoint
cosmosContainersTopicMapping string
Azure Cosmos Database Containers Topic Mapping
cosmosDatabaseName string
Azure Cosmos Database Name
cosmosMasterKey string
Azure Cosmos Database Master Key
cosmosMessageKeyEnabled boolean
Azure Cosmos Database Message Key Enabled
cosmosMessageKeyField string
Azure Cosmos Database Message Key Field
cosmos_connection_endpoint str
Azure Cosmos Database Connection Endpoint
cosmos_containers_topic_mapping str
Azure Cosmos Database Containers Topic Mapping
cosmos_database_name str
Azure Cosmos Database Name
cosmos_master_key str
Azure Cosmos Database Master Key
cosmos_message_key_enabled bool
Azure Cosmos Database Message Key Enabled
cosmos_message_key_field str
Azure Cosmos Database Message Key Field
cosmosConnectionEndpoint String
Azure Cosmos Database Connection Endpoint
cosmosContainersTopicMapping String
Azure Cosmos Database Containers Topic Mapping
cosmosDatabaseName String
Azure Cosmos Database Name
cosmosMasterKey String
Azure Cosmos Database Master Key
cosmosMessageKeyEnabled Boolean
Azure Cosmos Database Message Key Enabled
cosmosMessageKeyField String
Azure Cosmos Database Message Key Field

AzureSynapseAnalyticsSinkConnectorServiceInfo
, AzureSynapseAnalyticsSinkConnectorServiceInfoArgs

SynapseSqlDatabaseName string
Azure Synapse Dedicated SQL Pool Database Name
SynapseSqlPassword string
Azure Synapse SQL login details
SynapseSqlServerName string
Azure Synapse Analytics SQL Server Name
SynapseSqlUser string
Azure Synapse SQL login details
SynapseSqlDatabaseName string
Azure Synapse Dedicated SQL Pool Database Name
SynapseSqlPassword string
Azure Synapse SQL login details
SynapseSqlServerName string
Azure Synapse Analytics SQL Server Name
SynapseSqlUser string
Azure Synapse SQL login details
synapseSqlDatabaseName String
Azure Synapse Dedicated SQL Pool Database Name
synapseSqlPassword String
Azure Synapse SQL login details
synapseSqlServerName String
Azure Synapse Analytics SQL Server Name
synapseSqlUser String
Azure Synapse SQL login details
synapseSqlDatabaseName string
Azure Synapse Dedicated SQL Pool Database Name
synapseSqlPassword string
Azure Synapse SQL login details
synapseSqlServerName string
Azure Synapse Analytics SQL Server Name
synapseSqlUser string
Azure Synapse SQL login details
synapse_sql_database_name str
Azure Synapse Dedicated SQL Pool Database Name
synapse_sql_password str
Azure Synapse SQL login details
synapse_sql_server_name str
Azure Synapse Analytics SQL Server Name
synapse_sql_user str
Azure Synapse SQL login details
synapseSqlDatabaseName String
Azure Synapse Dedicated SQL Pool Database Name
synapseSqlPassword String
Azure Synapse SQL login details
synapseSqlServerName String
Azure Synapse Analytics SQL Server Name
synapseSqlUser String
Azure Synapse SQL login details

AzureSynapseAnalyticsSinkConnectorServiceInfoResponse
, AzureSynapseAnalyticsSinkConnectorServiceInfoResponseArgs

SynapseSqlDatabaseName string
Azure Synapse Dedicated SQL Pool Database Name
SynapseSqlPassword string
Azure Synapse SQL login details
SynapseSqlServerName string
Azure Synapse Analytics SQL Server Name
SynapseSqlUser string
Azure Synapse SQL login details
SynapseSqlDatabaseName string
Azure Synapse Dedicated SQL Pool Database Name
SynapseSqlPassword string
Azure Synapse SQL login details
SynapseSqlServerName string
Azure Synapse Analytics SQL Server Name
SynapseSqlUser string
Azure Synapse SQL login details
synapseSqlDatabaseName String
Azure Synapse Dedicated SQL Pool Database Name
synapseSqlPassword String
Azure Synapse SQL login details
synapseSqlServerName String
Azure Synapse Analytics SQL Server Name
synapseSqlUser String
Azure Synapse SQL login details
synapseSqlDatabaseName string
Azure Synapse Dedicated SQL Pool Database Name
synapseSqlPassword string
Azure Synapse SQL login details
synapseSqlServerName string
Azure Synapse Analytics SQL Server Name
synapseSqlUser string
Azure Synapse SQL login details
synapse_sql_database_name str
Azure Synapse Dedicated SQL Pool Database Name
synapse_sql_password str
Azure Synapse SQL login details
synapse_sql_server_name str
Azure Synapse Analytics SQL Server Name
synapse_sql_user str
Azure Synapse SQL login details
synapseSqlDatabaseName String
Azure Synapse Dedicated SQL Pool Database Name
synapseSqlPassword String
Azure Synapse SQL login details
synapseSqlServerName String
Azure Synapse Analytics SQL Server Name
synapseSqlUser String
Azure Synapse SQL login details

ConnectorClass
, ConnectorClassArgs

AZUREBLOBSOURCE
AZUREBLOBSOURCE
AZUREBLOBSINK
AZUREBLOBSINK
ConnectorClassAZUREBLOBSOURCE
AZUREBLOBSOURCE
ConnectorClassAZUREBLOBSINK
AZUREBLOBSINK
AZUREBLOBSOURCE
AZUREBLOBSOURCE
AZUREBLOBSINK
AZUREBLOBSINK
AZUREBLOBSOURCE
AZUREBLOBSOURCE
AZUREBLOBSINK
AZUREBLOBSINK
AZUREBLOBSOURCE
AZUREBLOBSOURCE
AZUREBLOBSINK
AZUREBLOBSINK
"AZUREBLOBSOURCE"
AZUREBLOBSOURCE
"AZUREBLOBSINK"
AZUREBLOBSINK

ConnectorInfoBase
, ConnectorInfoBaseArgs

ConnectorClass string | ConnectorClass
Connector Class
ConnectorId string
Connector Id
ConnectorName string
Connector Name
ConnectorState string | ConnectorStatus
Connector Status
ConnectorType string | ConnectorType
Connector Type
connectorClass String | ConnectorClass
Connector Class
connectorId String
Connector Id
connectorName String
Connector Name
connectorState String | ConnectorStatus
Connector Status
connectorType String | ConnectorType
Connector Type
connectorClass string | ConnectorClass
Connector Class
connectorId string
Connector Id
connectorName string
Connector Name
connectorState string | ConnectorStatus
Connector Status
connectorType string | ConnectorType
Connector Type
connector_class str | ConnectorClass
Connector Class
connector_id str
Connector Id
connector_name str
Connector Name
connector_state str | ConnectorStatus
Connector Status
connector_type str | ConnectorType
Connector Type
connectorClass String | "AZUREBLOBSOURCE" | "AZUREBLOBSINK"
Connector Class
connectorId String
Connector Id
connectorName String
Connector Name
connectorState String | "PROVISIONING" | "RUNNING" | "PAUSED" | "FAILED"
Connector Status
connectorType String | "SINK" | "SOURCE"
Connector Type

ConnectorInfoBaseResponse
, ConnectorInfoBaseResponseArgs

ConnectorClass string
Connector Class
ConnectorId string
Connector Id
ConnectorName string
Connector Name
ConnectorState string
Connector Status
ConnectorType string
Connector Type
ConnectorClass string
Connector Class
ConnectorId string
Connector Id
ConnectorName string
Connector Name
ConnectorState string
Connector Status
ConnectorType string
Connector Type
connectorClass String
Connector Class
connectorId String
Connector Id
connectorName String
Connector Name
connectorState String
Connector Status
connectorType String
Connector Type
connectorClass string
Connector Class
connectorId string
Connector Id
connectorName string
Connector Name
connectorState string
Connector Status
connectorType string
Connector Type
connector_class str
Connector Class
connector_id str
Connector Id
connector_name str
Connector Name
connector_state str
Connector Status
connector_type str
Connector Type
connectorClass String
Connector Class
connectorId String
Connector Id
connectorName String
Connector Name
connectorState String
Connector Status
connectorType String
Connector Type

ConnectorStatus
, ConnectorStatusArgs

PROVISIONING
PROVISIONING
RUNNING
RUNNING
PAUSED
PAUSED
FAILED
FAILED
ConnectorStatusPROVISIONING
PROVISIONING
ConnectorStatusRUNNING
RUNNING
ConnectorStatusPAUSED
PAUSED
ConnectorStatusFAILED
FAILED
PROVISIONING
PROVISIONING
RUNNING
RUNNING
PAUSED
PAUSED
FAILED
FAILED
PROVISIONING
PROVISIONING
RUNNING
RUNNING
PAUSED
PAUSED
FAILED
FAILED
PROVISIONING
PROVISIONING
RUNNING
RUNNING
PAUSED
PAUSED
FAILED
FAILED
"PROVISIONING"
PROVISIONING
"RUNNING"
RUNNING
"PAUSED"
PAUSED
"FAILED"
FAILED

ConnectorType
, ConnectorTypeArgs

SINK
SINK
SOURCE
SOURCE
ConnectorTypeSINK
SINK
ConnectorTypeSOURCE
SOURCE
SINK
SINK
SOURCE
SOURCE
SINK
SINK
SOURCE
SOURCE
SINK
SINK
SOURCE
SOURCE
"SINK"
SINK
"SOURCE"
SOURCE

DataFormatType
, DataFormatTypeArgs

AVRO
AVRO
JSON
JSON
STRING
STRING
BYTES
BYTES
PROTOBUF
PROTOBUF
DataFormatTypeAVRO
AVRO
DataFormatTypeJSON
JSON
DataFormatTypeSTRING
STRING
DataFormatTypeBYTES
BYTES
DataFormatTypePROTOBUF
PROTOBUF
AVRO
AVRO
JSON
JSON
STRING
STRING
BYTES
BYTES
PROTOBUF
PROTOBUF
AVRO
AVRO
JSON
JSON
STRING
STRING
BYTES
BYTES
PROTOBUF
PROTOBUF
AVRO
AVRO
JSON
JSON
STRING
STRING
BYTES
BYTES
PROTOBUF
PROTOBUF
"AVRO"
AVRO
"JSON"
JSON
"STRING"
STRING
"BYTES"
BYTES
"PROTOBUF"
PROTOBUF

KafkaAzureBlobStorageSinkConnectorInfo
, KafkaAzureBlobStorageSinkConnectorInfoArgs

ApiKey string
Kafka API Key
ApiSecret string
Kafka API Key Secret
AuthType string | Pulumi.AzureNative.Confluent.AuthType
Kafka Auth Type
FlushSize string
Flush size
InputFormat string | Pulumi.AzureNative.Confluent.DataFormatType
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string | Pulumi.AzureNative.Confluent.DataFormatType
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TimeInterval string
Time Interval
Topics List<string>
Kafka topics list
TopicsDir string
Kafka topics directory
ApiKey string
Kafka API Key
ApiSecret string
Kafka API Key Secret
AuthType string | AuthType
Kafka Auth Type
FlushSize string
Flush size
InputFormat string | DataFormatType
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string | DataFormatType
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TimeInterval string
Time Interval
Topics []string
Kafka topics list
TopicsDir string
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Key Secret
authType String | AuthType
Kafka Auth Type
flushSize String
Flush size
inputFormat String | DataFormatType
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String | DataFormatType
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
timeInterval String
Time Interval
topics List<String>
Kafka topics list
topicsDir String
Kafka topics directory
apiKey string
Kafka API Key
apiSecret string
Kafka API Key Secret
authType string | AuthType
Kafka Auth Type
flushSize string
Flush size
inputFormat string | DataFormatType
Kafka Input Data Format Type
maxTasks string
Maximum Tasks
outputFormat string | DataFormatType
Kafka Output Data Format Type
serviceAccountId string
Kafka Service Account Id
timeInterval string
Time Interval
topics string[]
Kafka topics list
topicsDir string
Kafka topics directory
api_key str
Kafka API Key
api_secret str
Kafka API Key Secret
auth_type str | AuthType
Kafka Auth Type
flush_size str
Flush size
input_format str | DataFormatType
Kafka Input Data Format Type
max_tasks str
Maximum Tasks
output_format str | DataFormatType
Kafka Output Data Format Type
service_account_id str
Kafka Service Account Id
time_interval str
Time Interval
topics Sequence[str]
Kafka topics list
topics_dir str
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Key Secret
authType String | "SERVICE_ACCOUNT" | "KAFKA_API_KEY"
Kafka Auth Type
flushSize String
Flush size
inputFormat String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF"
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF"
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
timeInterval String
Time Interval
topics List<String>
Kafka topics list
topicsDir String
Kafka topics directory

KafkaAzureBlobStorageSinkConnectorInfoResponse
, KafkaAzureBlobStorageSinkConnectorInfoResponseArgs

ApiKey string
Kafka API Key
ApiSecret string
Kafka API Key Secret
AuthType string
Kafka Auth Type
FlushSize string
Flush size
InputFormat string
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TimeInterval string
Time Interval
Topics List<string>
Kafka topics list
TopicsDir string
Kafka topics directory
ApiKey string
Kafka API Key
ApiSecret string
Kafka API Key Secret
AuthType string
Kafka Auth Type
FlushSize string
Flush size
InputFormat string
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TimeInterval string
Time Interval
Topics []string
Kafka topics list
TopicsDir string
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Key Secret
authType String
Kafka Auth Type
flushSize String
Flush size
inputFormat String
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
timeInterval String
Time Interval
topics List<String>
Kafka topics list
topicsDir String
Kafka topics directory
apiKey string
Kafka API Key
apiSecret string
Kafka API Key Secret
authType string
Kafka Auth Type
flushSize string
Flush size
inputFormat string
Kafka Input Data Format Type
maxTasks string
Maximum Tasks
outputFormat string
Kafka Output Data Format Type
serviceAccountId string
Kafka Service Account Id
timeInterval string
Time Interval
topics string[]
Kafka topics list
topicsDir string
Kafka topics directory
api_key str
Kafka API Key
api_secret str
Kafka API Key Secret
auth_type str
Kafka Auth Type
flush_size str
Flush size
input_format str
Kafka Input Data Format Type
max_tasks str
Maximum Tasks
output_format str
Kafka Output Data Format Type
service_account_id str
Kafka Service Account Id
time_interval str
Time Interval
topics Sequence[str]
Kafka topics list
topics_dir str
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Key Secret
authType String
Kafka Auth Type
flushSize String
Flush size
inputFormat String
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
timeInterval String
Time Interval
topics List<String>
Kafka topics list
topicsDir String
Kafka topics directory

KafkaAzureBlobStorageSourceConnectorInfo
, KafkaAzureBlobStorageSourceConnectorInfoArgs

ApiKey string
Kafka API Key
ApiSecret string
Kafka API Secret
AuthType string | Pulumi.AzureNative.Confluent.AuthType
Kafka Auth Type
InputFormat string | Pulumi.AzureNative.Confluent.DataFormatType
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string | Pulumi.AzureNative.Confluent.DataFormatType
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TopicRegex string
Kafka topics Regex pattern
TopicsDir string
Kafka topics directory
ApiKey string
Kafka API Key
ApiSecret string
Kafka API Secret
AuthType string | AuthType
Kafka Auth Type
InputFormat string | DataFormatType
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string | DataFormatType
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TopicRegex string
Kafka topics Regex pattern
TopicsDir string
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Secret
authType String | AuthType
Kafka Auth Type
inputFormat String | DataFormatType
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String | DataFormatType
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
topicRegex String
Kafka topics Regex pattern
topicsDir String
Kafka topics directory
apiKey string
Kafka API Key
apiSecret string
Kafka API Secret
authType string | AuthType
Kafka Auth Type
inputFormat string | DataFormatType
Kafka Input Data Format Type
maxTasks string
Maximum Tasks
outputFormat string | DataFormatType
Kafka Output Data Format Type
serviceAccountId string
Kafka Service Account Id
topicRegex string
Kafka topics Regex pattern
topicsDir string
Kafka topics directory
api_key str
Kafka API Key
api_secret str
Kafka API Secret
auth_type str | AuthType
Kafka Auth Type
input_format str | DataFormatType
Kafka Input Data Format Type
max_tasks str
Maximum Tasks
output_format str | DataFormatType
Kafka Output Data Format Type
service_account_id str
Kafka Service Account Id
topic_regex str
Kafka topics Regex pattern
topics_dir str
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Secret
authType String | "SERVICE_ACCOUNT" | "KAFKA_API_KEY"
Kafka Auth Type
inputFormat String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF"
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF"
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
topicRegex String
Kafka topics Regex pattern
topicsDir String
Kafka topics directory

KafkaAzureBlobStorageSourceConnectorInfoResponse
, KafkaAzureBlobStorageSourceConnectorInfoResponseArgs

ApiKey string
Kafka API Key
ApiSecret string
Kafka API Secret
AuthType string
Kafka Auth Type
InputFormat string
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TopicRegex string
Kafka topics Regex pattern
TopicsDir string
Kafka topics directory
ApiKey string
Kafka API Key
ApiSecret string
Kafka API Secret
AuthType string
Kafka Auth Type
InputFormat string
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TopicRegex string
Kafka topics Regex pattern
TopicsDir string
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Secret
authType String
Kafka Auth Type
inputFormat String
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
topicRegex String
Kafka topics Regex pattern
topicsDir String
Kafka topics directory
apiKey string
Kafka API Key
apiSecret string
Kafka API Secret
authType string
Kafka Auth Type
inputFormat string
Kafka Input Data Format Type
maxTasks string
Maximum Tasks
outputFormat string
Kafka Output Data Format Type
serviceAccountId string
Kafka Service Account Id
topicRegex string
Kafka topics Regex pattern
topicsDir string
Kafka topics directory
api_key str
Kafka API Key
api_secret str
Kafka API Secret
auth_type str
Kafka Auth Type
input_format str
Kafka Input Data Format Type
max_tasks str
Maximum Tasks
output_format str
Kafka Output Data Format Type
service_account_id str
Kafka Service Account Id
topic_regex str
Kafka topics Regex pattern
topics_dir str
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Secret
authType String
Kafka Auth Type
inputFormat String
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
topicRegex String
Kafka topics Regex pattern
topicsDir String
Kafka topics directory

KafkaAzureCosmosDBSinkConnectorInfo
, KafkaAzureCosmosDBSinkConnectorInfoArgs

ApiKey string
Kafka API Key
ApiSecret string
Kafka API Key Secret
AuthType string | Pulumi.AzureNative.Confluent.AuthType
Kafka Auth Type
FlushSize string
Flush size
InputFormat string | Pulumi.AzureNative.Confluent.DataFormatType
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string | Pulumi.AzureNative.Confluent.DataFormatType
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TimeInterval string
Time Interval
Topics List<string>
Kafka topics list
TopicsDir string
Kafka topics directory
ApiKey string
Kafka API Key
ApiSecret string
Kafka API Key Secret
AuthType string | AuthType
Kafka Auth Type
FlushSize string
Flush size
InputFormat string | DataFormatType
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string | DataFormatType
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TimeInterval string
Time Interval
Topics []string
Kafka topics list
TopicsDir string
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Key Secret
authType String | AuthType
Kafka Auth Type
flushSize String
Flush size
inputFormat String | DataFormatType
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String | DataFormatType
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
timeInterval String
Time Interval
topics List<String>
Kafka topics list
topicsDir String
Kafka topics directory
apiKey string
Kafka API Key
apiSecret string
Kafka API Key Secret
authType string | AuthType
Kafka Auth Type
flushSize string
Flush size
inputFormat string | DataFormatType
Kafka Input Data Format Type
maxTasks string
Maximum Tasks
outputFormat string | DataFormatType
Kafka Output Data Format Type
serviceAccountId string
Kafka Service Account Id
timeInterval string
Time Interval
topics string[]
Kafka topics list
topicsDir string
Kafka topics directory
api_key str
Kafka API Key
api_secret str
Kafka API Key Secret
auth_type str | AuthType
Kafka Auth Type
flush_size str
Flush size
input_format str | DataFormatType
Kafka Input Data Format Type
max_tasks str
Maximum Tasks
output_format str | DataFormatType
Kafka Output Data Format Type
service_account_id str
Kafka Service Account Id
time_interval str
Time Interval
topics Sequence[str]
Kafka topics list
topics_dir str
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Key Secret
authType String | "SERVICE_ACCOUNT" | "KAFKA_API_KEY"
Kafka Auth Type
flushSize String
Flush size
inputFormat String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF"
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF"
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
timeInterval String
Time Interval
topics List<String>
Kafka topics list
topicsDir String
Kafka topics directory

KafkaAzureCosmosDBSinkConnectorInfoResponse
, KafkaAzureCosmosDBSinkConnectorInfoResponseArgs

ApiKey string
Kafka API Key
ApiSecret string
Kafka API Key Secret
AuthType string
Kafka Auth Type
FlushSize string
Flush size
InputFormat string
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TimeInterval string
Time Interval
Topics List<string>
Kafka topics list
TopicsDir string
Kafka topics directory
ApiKey string
Kafka API Key
ApiSecret string
Kafka API Key Secret
AuthType string
Kafka Auth Type
FlushSize string
Flush size
InputFormat string
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TimeInterval string
Time Interval
Topics []string
Kafka topics list
TopicsDir string
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Key Secret
authType String
Kafka Auth Type
flushSize String
Flush size
inputFormat String
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
timeInterval String
Time Interval
topics List<String>
Kafka topics list
topicsDir String
Kafka topics directory
apiKey string
Kafka API Key
apiSecret string
Kafka API Key Secret
authType string
Kafka Auth Type
flushSize string
Flush size
inputFormat string
Kafka Input Data Format Type
maxTasks string
Maximum Tasks
outputFormat string
Kafka Output Data Format Type
serviceAccountId string
Kafka Service Account Id
timeInterval string
Time Interval
topics string[]
Kafka topics list
topicsDir string
Kafka topics directory
api_key str
Kafka API Key
api_secret str
Kafka API Key Secret
auth_type str
Kafka Auth Type
flush_size str
Flush size
input_format str
Kafka Input Data Format Type
max_tasks str
Maximum Tasks
output_format str
Kafka Output Data Format Type
service_account_id str
Kafka Service Account Id
time_interval str
Time Interval
topics Sequence[str]
Kafka topics list
topics_dir str
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Key Secret
authType String
Kafka Auth Type
flushSize String
Flush size
inputFormat String
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
timeInterval String
Time Interval
topics List<String>
Kafka topics list
topicsDir String
Kafka topics directory

KafkaAzureCosmosDBSourceConnectorInfo
, KafkaAzureCosmosDBSourceConnectorInfoArgs

ApiKey string
Kafka API Key
ApiSecret string
Kafka API Secret
AuthType string | Pulumi.AzureNative.Confluent.AuthType
Kafka Auth Type
InputFormat string | Pulumi.AzureNative.Confluent.DataFormatType
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string | Pulumi.AzureNative.Confluent.DataFormatType
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TopicRegex string
Kafka topics Regex pattern
TopicsDir string
Kafka topics directory
ApiKey string
Kafka API Key
ApiSecret string
Kafka API Secret
AuthType string | AuthType
Kafka Auth Type
InputFormat string | DataFormatType
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string | DataFormatType
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TopicRegex string
Kafka topics Regex pattern
TopicsDir string
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Secret
authType String | AuthType
Kafka Auth Type
inputFormat String | DataFormatType
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String | DataFormatType
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
topicRegex String
Kafka topics Regex pattern
topicsDir String
Kafka topics directory
apiKey string
Kafka API Key
apiSecret string
Kafka API Secret
authType string | AuthType
Kafka Auth Type
inputFormat string | DataFormatType
Kafka Input Data Format Type
maxTasks string
Maximum Tasks
outputFormat string | DataFormatType
Kafka Output Data Format Type
serviceAccountId string
Kafka Service Account Id
topicRegex string
Kafka topics Regex pattern
topicsDir string
Kafka topics directory
api_key str
Kafka API Key
api_secret str
Kafka API Secret
auth_type str | AuthType
Kafka Auth Type
input_format str | DataFormatType
Kafka Input Data Format Type
max_tasks str
Maximum Tasks
output_format str | DataFormatType
Kafka Output Data Format Type
service_account_id str
Kafka Service Account Id
topic_regex str
Kafka topics Regex pattern
topics_dir str
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Secret
authType String | "SERVICE_ACCOUNT" | "KAFKA_API_KEY"
Kafka Auth Type
inputFormat String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF"
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF"
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
topicRegex String
Kafka topics Regex pattern
topicsDir String
Kafka topics directory

KafkaAzureCosmosDBSourceConnectorInfoResponse
, KafkaAzureCosmosDBSourceConnectorInfoResponseArgs

ApiKey string
Kafka API Key
ApiSecret string
Kafka API Secret
AuthType string
Kafka Auth Type
InputFormat string
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TopicRegex string
Kafka topics Regex pattern
TopicsDir string
Kafka topics directory
ApiKey string
Kafka API Key
ApiSecret string
Kafka API Secret
AuthType string
Kafka Auth Type
InputFormat string
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TopicRegex string
Kafka topics Regex pattern
TopicsDir string
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Secret
authType String
Kafka Auth Type
inputFormat String
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
topicRegex String
Kafka topics Regex pattern
topicsDir String
Kafka topics directory
apiKey string
Kafka API Key
apiSecret string
Kafka API Secret
authType string
Kafka Auth Type
inputFormat string
Kafka Input Data Format Type
maxTasks string
Maximum Tasks
outputFormat string
Kafka Output Data Format Type
serviceAccountId string
Kafka Service Account Id
topicRegex string
Kafka topics Regex pattern
topicsDir string
Kafka topics directory
api_key str
Kafka API Key
api_secret str
Kafka API Secret
auth_type str
Kafka Auth Type
input_format str
Kafka Input Data Format Type
max_tasks str
Maximum Tasks
output_format str
Kafka Output Data Format Type
service_account_id str
Kafka Service Account Id
topic_regex str
Kafka topics Regex pattern
topics_dir str
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Secret
authType String
Kafka Auth Type
inputFormat String
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
topicRegex String
Kafka topics Regex pattern
topicsDir String
Kafka topics directory

KafkaAzureSynapseAnalyticsSinkConnectorInfo
, KafkaAzureSynapseAnalyticsSinkConnectorInfoArgs

ApiKey string
Kafka API Key
ApiSecret string
Kafka API Key Secret
AuthType string | Pulumi.AzureNative.Confluent.AuthType
Kafka Auth Type
FlushSize string
Flush size
InputFormat string | Pulumi.AzureNative.Confluent.DataFormatType
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string | Pulumi.AzureNative.Confluent.DataFormatType
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TimeInterval string
Time Interval
Topics List<string>
Kafka topics list
TopicsDir string
Kafka topics directory
ApiKey string
Kafka API Key
ApiSecret string
Kafka API Key Secret
AuthType string | AuthType
Kafka Auth Type
FlushSize string
Flush size
InputFormat string | DataFormatType
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string | DataFormatType
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TimeInterval string
Time Interval
Topics []string
Kafka topics list
TopicsDir string
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Key Secret
authType String | AuthType
Kafka Auth Type
flushSize String
Flush size
inputFormat String | DataFormatType
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String | DataFormatType
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
timeInterval String
Time Interval
topics List<String>
Kafka topics list
topicsDir String
Kafka topics directory
apiKey string
Kafka API Key
apiSecret string
Kafka API Key Secret
authType string | AuthType
Kafka Auth Type
flushSize string
Flush size
inputFormat string | DataFormatType
Kafka Input Data Format Type
maxTasks string
Maximum Tasks
outputFormat string | DataFormatType
Kafka Output Data Format Type
serviceAccountId string
Kafka Service Account Id
timeInterval string
Time Interval
topics string[]
Kafka topics list
topicsDir string
Kafka topics directory
api_key str
Kafka API Key
api_secret str
Kafka API Key Secret
auth_type str | AuthType
Kafka Auth Type
flush_size str
Flush size
input_format str | DataFormatType
Kafka Input Data Format Type
max_tasks str
Maximum Tasks
output_format str | DataFormatType
Kafka Output Data Format Type
service_account_id str
Kafka Service Account Id
time_interval str
Time Interval
topics Sequence[str]
Kafka topics list
topics_dir str
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Key Secret
authType String | "SERVICE_ACCOUNT" | "KAFKA_API_KEY"
Kafka Auth Type
flushSize String
Flush size
inputFormat String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF"
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF"
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
timeInterval String
Time Interval
topics List<String>
Kafka topics list
topicsDir String
Kafka topics directory

KafkaAzureSynapseAnalyticsSinkConnectorInfoResponse
, KafkaAzureSynapseAnalyticsSinkConnectorInfoResponseArgs

ApiKey string
Kafka API Key
ApiSecret string
Kafka API Key Secret
AuthType string
Kafka Auth Type
FlushSize string
Flush size
InputFormat string
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TimeInterval string
Time Interval
Topics List<string>
Kafka topics list
TopicsDir string
Kafka topics directory
ApiKey string
Kafka API Key
ApiSecret string
Kafka API Key Secret
AuthType string
Kafka Auth Type
FlushSize string
Flush size
InputFormat string
Kafka Input Data Format Type
MaxTasks string
Maximum Tasks
OutputFormat string
Kafka Output Data Format Type
ServiceAccountId string
Kafka Service Account Id
TimeInterval string
Time Interval
Topics []string
Kafka topics list
TopicsDir string
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Key Secret
authType String
Kafka Auth Type
flushSize String
Flush size
inputFormat String
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
timeInterval String
Time Interval
topics List<String>
Kafka topics list
topicsDir String
Kafka topics directory
apiKey string
Kafka API Key
apiSecret string
Kafka API Key Secret
authType string
Kafka Auth Type
flushSize string
Flush size
inputFormat string
Kafka Input Data Format Type
maxTasks string
Maximum Tasks
outputFormat string
Kafka Output Data Format Type
serviceAccountId string
Kafka Service Account Id
timeInterval string
Time Interval
topics string[]
Kafka topics list
topicsDir string
Kafka topics directory
api_key str
Kafka API Key
api_secret str
Kafka API Key Secret
auth_type str
Kafka Auth Type
flush_size str
Flush size
input_format str
Kafka Input Data Format Type
max_tasks str
Maximum Tasks
output_format str
Kafka Output Data Format Type
service_account_id str
Kafka Service Account Id
time_interval str
Time Interval
topics Sequence[str]
Kafka topics list
topics_dir str
Kafka topics directory
apiKey String
Kafka API Key
apiSecret String
Kafka API Key Secret
authType String
Kafka Auth Type
flushSize String
Flush size
inputFormat String
Kafka Input Data Format Type
maxTasks String
Maximum Tasks
outputFormat String
Kafka Output Data Format Type
serviceAccountId String
Kafka Service Account Id
timeInterval String
Time Interval
topics List<String>
Kafka topics list
topicsDir String
Kafka topics directory

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:confluent:Connector connector-1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Confluent/organizations/{organizationName}/environments/{environmentId}/clusters/{clusterId}/connectors/{connectorName} 
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
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