azure-native.confluent.Connector
Explore with Pulumi AI
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",
    });
});
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
	})
}
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());
    }
}
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",
});
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")
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
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 string
- The unique name of the resource.
- args ConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args ConnectorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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 = new AzureNative.Confluent.Inputs.ConnectorInfoBaseArgs
    {
        ConnectorClass = "string",
        ConnectorId = "string",
        ConnectorName = "string",
        ConnectorState = "string",
        ConnectorType = "string",
    },
    ConnectorName = "string",
    ConnectorServiceTypeInfo = new AzureNative.Confluent.Inputs.AzureBlobStorageSinkConnectorServiceInfoArgs
    {
        ConnectorServiceType = "AzureBlobStorageSinkConnector",
        StorageAccountKey = "string",
        StorageAccountName = "string",
        StorageContainerName = "string",
    },
    PartnerConnectorInfo = new AzureNative.Confluent.Inputs.KafkaAzureBlobStorageSinkConnectorInfoArgs
    {
        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",
    },
});
example, err := confluent.NewConnector(ctx, "connectorResource", &confluent.ConnectorArgs{
	ClusterId:         pulumi.String("string"),
	EnvironmentId:     pulumi.String("string"),
	OrganizationName:  pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	ConnectorBasicInfo: &confluent.ConnectorInfoBaseArgs{
		ConnectorClass: pulumi.String("string"),
		ConnectorId:    pulumi.String("string"),
		ConnectorName:  pulumi.String("string"),
		ConnectorState: pulumi.String("string"),
		ConnectorType:  pulumi.String("string"),
	},
	ConnectorName: pulumi.String("string"),
	ConnectorServiceTypeInfo: &confluent.AzureBlobStorageSinkConnectorServiceInfoArgs{
		ConnectorServiceType: pulumi.String("AzureBlobStorageSinkConnector"),
		StorageAccountKey:    pulumi.String("string"),
		StorageAccountName:   pulumi.String("string"),
		StorageContainerName: pulumi.String("string"),
	},
	PartnerConnectorInfo: &confluent.KafkaAzureBlobStorageSinkConnectorInfoArgs{
		PartnerConnectorType: pulumi.String("KafkaAzureBlobStorageSink"),
		ApiKey:               pulumi.String("string"),
		ApiSecret:            pulumi.String("string"),
		AuthType:             pulumi.String("string"),
		FlushSize:            pulumi.String("string"),
		InputFormat:          pulumi.String("string"),
		MaxTasks:             pulumi.String("string"),
		OutputFormat:         pulumi.String("string"),
		ServiceAccountId:     pulumi.String("string"),
		TimeInterval:         pulumi.String("string"),
		Topics: pulumi.StringArray{
			pulumi.String("string"),
		},
		TopicsDir: pulumi.String("string"),
	},
})
var connectorResource = new Connector("connectorResource", ConnectorArgs.builder()
    .clusterId("string")
    .environmentId("string")
    .organizationName("string")
    .resourceGroupName("string")
    .connectorBasicInfo(ConnectorInfoBaseArgs.builder()
        .connectorClass("string")
        .connectorId("string")
        .connectorName("string")
        .connectorState("string")
        .connectorType("string")
        .build())
    .connectorName("string")
    .connectorServiceTypeInfo(AzureBlobStorageSinkConnectorServiceInfoArgs.builder()
        .connectorServiceType("AzureBlobStorageSinkConnector")
        .storageAccountKey("string")
        .storageAccountName("string")
        .storageContainerName("string")
        .build())
    .partnerConnectorInfo(KafkaAzureBlobStorageSinkConnectorInfoArgs.builder()
        .partnerConnectorType("KafkaAzureBlobStorageSink")
        .apiKey("string")
        .apiSecret("string")
        .authType("string")
        .flushSize("string")
        .inputFormat("string")
        .maxTasks("string")
        .outputFormat("string")
        .serviceAccountId("string")
        .timeInterval("string")
        .topics("string")
        .topicsDir("string")
        .build())
    .build());
connector_resource = azure_native.confluent.Connector("connectorResource",
    cluster_id="string",
    environment_id="string",
    organization_name="string",
    resource_group_name="string",
    connector_basic_info={
        "connector_class": "string",
        "connector_id": "string",
        "connector_name": "string",
        "connector_state": "string",
        "connector_type": "string",
    },
    connector_name="string",
    connector_service_type_info={
        "connector_service_type": "AzureBlobStorageSinkConnector",
        "storage_account_key": "string",
        "storage_account_name": "string",
        "storage_container_name": "string",
    },
    partner_connector_info={
        "partner_connector_type": "KafkaAzureBlobStorageSink",
        "api_key": "string",
        "api_secret": "string",
        "auth_type": "string",
        "flush_size": "string",
        "input_format": "string",
        "max_tasks": "string",
        "output_format": "string",
        "service_account_id": "string",
        "time_interval": "string",
        "topics": ["string"],
        "topics_dir": "string",
    })
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",
    },
});
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
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 string
- Confluent kafka or schema registry cluster id
- EnvironmentId string
- Confluent environment id
- OrganizationName string
- Organization resource name
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ConnectorBasic Pulumi.Info Azure Native. Confluent. Inputs. Connector Info Base 
- Connector Info Base
- ConnectorName string
- Confluent connector name
- ConnectorService Pulumi.Type Info Azure | Pulumi.Native. Confluent. Inputs. Azure Blob Storage Sink Connector Service Info Azure | Pulumi.Native. Confluent. Inputs. Azure Blob Storage Source Connector Service Info Azure | Pulumi.Native. Confluent. Inputs. Azure Cosmos DBSink Connector Service Info Azure | Pulumi.Native. Confluent. Inputs. Azure Cosmos DBSource Connector Service Info Azure Native. Confluent. Inputs. Azure Synapse Analytics Sink Connector Service Info 
- Connector Service type info base properties.
- PartnerConnector Pulumi.Info Azure | Pulumi.Native. Confluent. Inputs. Kafka Azure Blob Storage Sink Connector Info Azure | Pulumi.Native. Confluent. Inputs. Kafka Azure Blob Storage Source Connector Info Azure | Pulumi.Native. Confluent. Inputs. Kafka Azure Cosmos DBSink Connector Info Azure | Pulumi.Native. Confluent. Inputs. Kafka Azure Cosmos DBSource Connector Info Azure Native. Confluent. Inputs. Kafka Azure Synapse Analytics Sink Connector Info 
- The connection information consumed by applications.
- ClusterId string
- Confluent kafka or schema registry cluster id
- EnvironmentId string
- Confluent environment id
- OrganizationName string
- Organization resource name
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ConnectorBasic ConnectorInfo Info Base Args 
- Connector Info Base
- ConnectorName string
- Confluent connector name
- ConnectorService AzureType Info Blob | AzureStorage Sink Connector Service Info Args Blob | AzureStorage Source Connector Service Info Args Cosmos | AzureDBSink Connector Service Info Args Cosmos | AzureDBSource Connector Service Info Args Synapse Analytics Sink Connector Service Info Args 
- Connector Service type info base properties.
- PartnerConnector KafkaInfo Azure | KafkaBlob Storage Sink Connector Info Args Azure | KafkaBlob Storage Source Connector Info Args Azure | KafkaCosmos DBSink Connector Info Args Azure | KafkaCosmos DBSource Connector Info Args Azure Synapse Analytics Sink Connector Info Args 
- The connection information consumed by applications.
- clusterId String
- Confluent kafka or schema registry cluster id
- environmentId String
- Confluent environment id
- organizationName String
- Organization resource name
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- connectorBasic ConnectorInfo Info Base 
- Connector Info Base
- connectorName String
- Confluent connector name
- connectorService AzureType Info Blob | AzureStorage Sink Connector Service Info Blob | AzureStorage Source Connector Service Info Cosmos | AzureDBSink Connector Service Info Cosmos | AzureDBSource Connector Service Info Synapse Analytics Sink Connector Service Info 
- Connector Service type info base properties.
- partnerConnector KafkaInfo Azure | KafkaBlob Storage Sink Connector Info Azure | KafkaBlob Storage Source Connector Info Azure | KafkaCosmos DBSink Connector Info Azure | KafkaCosmos DBSource Connector Info Azure Synapse Analytics Sink Connector Info 
- The connection information consumed by applications.
- clusterId string
- Confluent kafka or schema registry cluster id
- environmentId string
- Confluent environment id
- organizationName string
- Organization resource name
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- connectorBasic ConnectorInfo Info Base 
- Connector Info Base
- connectorName string
- Confluent connector name
- connectorService AzureType Info Blob | AzureStorage Sink Connector Service Info Blob | AzureStorage Source Connector Service Info Cosmos | AzureDBSink Connector Service Info Cosmos | AzureDBSource Connector Service Info Synapse Analytics Sink Connector Service Info 
- Connector Service type info base properties.
- partnerConnector KafkaInfo Azure | KafkaBlob Storage Sink Connector Info Azure | KafkaBlob Storage Source Connector Info Azure | KafkaCosmos DBSink Connector Info Azure | KafkaCosmos DBSource Connector Info Azure Synapse Analytics Sink Connector Info 
- The connection information consumed by applications.
- cluster_id str
- Confluent kafka or schema registry cluster id
- environment_id str
- Confluent environment id
- organization_name str
- Organization resource name
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- connector_basic_ Connectorinfo Info Base Args 
- Connector Info Base
- connector_name str
- Confluent connector name
- connector_service_ Azuretype_ info Blob | AzureStorage Sink Connector Service Info Args Blob | AzureStorage Source Connector Service Info Args Cosmos | AzureDBSink Connector Service Info Args Cosmos | AzureDBSource Connector Service Info Args Synapse Analytics Sink Connector Service Info Args 
- Connector Service type info base properties.
- partner_connector_ Kafkainfo Azure | KafkaBlob Storage Sink Connector Info Args Azure | KafkaBlob Storage Source Connector Info Args Azure | KafkaCosmos DBSink Connector Info Args Azure | KafkaCosmos DBSource Connector Info Args Azure Synapse Analytics Sink Connector Info Args 
- The connection information consumed by applications.
- clusterId String
- Confluent kafka or schema registry cluster id
- environmentId String
- Confluent environment id
- organizationName String
- Organization resource name
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- connectorBasic Property MapInfo 
- Connector Info Base
- connectorName String
- Confluent connector name
- connectorService Property Map | Property Map | Property Map | Property Map | Property MapType Info 
- Connector Service type info base properties.
- partnerConnector Property Map | Property Map | Property Map | Property Map | Property MapInfo 
- 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.Azure Native. Confluent. Outputs. System Data Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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              
- StorageAccount stringKey 
- Azure Blob Storage Account Key
- StorageAccount stringName 
- Azure Blob Storage Account Name
- StorageContainer stringName 
- Azure Blob Storage Account Container Name
- StorageAccount stringKey 
- Azure Blob Storage Account Key
- StorageAccount stringName 
- Azure Blob Storage Account Name
- StorageContainer stringName 
- Azure Blob Storage Account Container Name
- storageAccount StringKey 
- Azure Blob Storage Account Key
- storageAccount StringName 
- Azure Blob Storage Account Name
- storageContainer StringName 
- Azure Blob Storage Account Container Name
- storageAccount stringKey 
- Azure Blob Storage Account Key
- storageAccount stringName 
- Azure Blob Storage Account Name
- storageContainer stringName 
- Azure Blob Storage Account Container Name
- storage_account_ strkey 
- Azure Blob Storage Account Key
- storage_account_ strname 
- Azure Blob Storage Account Name
- storage_container_ strname 
- Azure Blob Storage Account Container Name
- storageAccount StringKey 
- Azure Blob Storage Account Key
- storageAccount StringName 
- Azure Blob Storage Account Name
- storageContainer StringName 
- Azure Blob Storage Account Container Name
AzureBlobStorageSinkConnectorServiceInfoResponse, AzureBlobStorageSinkConnectorServiceInfoResponseArgs                
- StorageAccount stringKey 
- Azure Blob Storage Account Key
- StorageAccount stringName 
- Azure Blob Storage Account Name
- StorageContainer stringName 
- Azure Blob Storage Account Container Name
- StorageAccount stringKey 
- Azure Blob Storage Account Key
- StorageAccount stringName 
- Azure Blob Storage Account Name
- StorageContainer stringName 
- Azure Blob Storage Account Container Name
- storageAccount StringKey 
- Azure Blob Storage Account Key
- storageAccount StringName 
- Azure Blob Storage Account Name
- storageContainer StringName 
- Azure Blob Storage Account Container Name
- storageAccount stringKey 
- Azure Blob Storage Account Key
- storageAccount stringName 
- Azure Blob Storage Account Name
- storageContainer stringName 
- Azure Blob Storage Account Container Name
- storage_account_ strkey 
- Azure Blob Storage Account Key
- storage_account_ strname 
- Azure Blob Storage Account Name
- storage_container_ strname 
- Azure Blob Storage Account Container Name
- storageAccount StringKey 
- Azure Blob Storage Account Key
- storageAccount StringName 
- Azure Blob Storage Account Name
- storageContainer StringName 
- Azure Blob Storage Account Container Name
AzureBlobStorageSourceConnectorServiceInfo, AzureBlobStorageSourceConnectorServiceInfoArgs              
- StorageAccount stringKey 
- Azure Blob Storage Account Key
- StorageAccount stringName 
- Azure Blob Storage Account Name
- StorageContainer stringName 
- Azure Blob Storage Account Container Name
- StorageAccount stringKey 
- Azure Blob Storage Account Key
- StorageAccount stringName 
- Azure Blob Storage Account Name
- StorageContainer stringName 
- Azure Blob Storage Account Container Name
- storageAccount StringKey 
- Azure Blob Storage Account Key
- storageAccount StringName 
- Azure Blob Storage Account Name
- storageContainer StringName 
- Azure Blob Storage Account Container Name
- storageAccount stringKey 
- Azure Blob Storage Account Key
- storageAccount stringName 
- Azure Blob Storage Account Name
- storageContainer stringName 
- Azure Blob Storage Account Container Name
- storage_account_ strkey 
- Azure Blob Storage Account Key
- storage_account_ strname 
- Azure Blob Storage Account Name
- storage_container_ strname 
- Azure Blob Storage Account Container Name
- storageAccount StringKey 
- Azure Blob Storage Account Key
- storageAccount StringName 
- Azure Blob Storage Account Name
- storageContainer StringName 
- Azure Blob Storage Account Container Name
AzureBlobStorageSourceConnectorServiceInfoResponse, AzureBlobStorageSourceConnectorServiceInfoResponseArgs                
- StorageAccount stringKey 
- Azure Blob Storage Account Key
- StorageAccount stringName 
- Azure Blob Storage Account Name
- StorageContainer stringName 
- Azure Blob Storage Account Container Name
- StorageAccount stringKey 
- Azure Blob Storage Account Key
- StorageAccount stringName 
- Azure Blob Storage Account Name
- StorageContainer stringName 
- Azure Blob Storage Account Container Name
- storageAccount StringKey 
- Azure Blob Storage Account Key
- storageAccount StringName 
- Azure Blob Storage Account Name
- storageContainer StringName 
- Azure Blob Storage Account Container Name
- storageAccount stringKey 
- Azure Blob Storage Account Key
- storageAccount stringName 
- Azure Blob Storage Account Name
- storageContainer stringName 
- Azure Blob Storage Account Container Name
- storage_account_ strkey 
- Azure Blob Storage Account Key
- storage_account_ strname 
- Azure Blob Storage Account Name
- storage_container_ strname 
- Azure Blob Storage Account Container Name
- storageAccount StringKey 
- Azure Blob Storage Account Key
- storageAccount StringName 
- Azure Blob Storage Account Name
- storageContainer StringName 
- Azure Blob Storage Account Container Name
AzureCosmosDBSinkConnectorServiceInfo, AzureCosmosDBSinkConnectorServiceInfoArgs            
- CosmosConnection stringEndpoint 
- Azure Cosmos Database Connection Endpoint
- CosmosContainers stringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- CosmosDatabase stringName 
- Azure Cosmos Database Name
- CosmosId stringStrategy 
- Azure Cosmos Database Id Strategy
- CosmosMaster stringKey 
- Azure Cosmos Database Master Key
- CosmosConnection stringEndpoint 
- Azure Cosmos Database Connection Endpoint
- CosmosContainers stringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- CosmosDatabase stringName 
- Azure Cosmos Database Name
- CosmosId stringStrategy 
- Azure Cosmos Database Id Strategy
- CosmosMaster stringKey 
- Azure Cosmos Database Master Key
- cosmosConnection StringEndpoint 
- Azure Cosmos Database Connection Endpoint
- cosmosContainers StringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmosDatabase StringName 
- Azure Cosmos Database Name
- cosmosId StringStrategy 
- Azure Cosmos Database Id Strategy
- cosmosMaster StringKey 
- Azure Cosmos Database Master Key
- cosmosConnection stringEndpoint 
- Azure Cosmos Database Connection Endpoint
- cosmosContainers stringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmosDatabase stringName 
- Azure Cosmos Database Name
- cosmosId stringStrategy 
- Azure Cosmos Database Id Strategy
- cosmosMaster stringKey 
- Azure Cosmos Database Master Key
- cosmos_connection_ strendpoint 
- Azure Cosmos Database Connection Endpoint
- cosmos_containers_ strtopic_ mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmos_database_ strname 
- Azure Cosmos Database Name
- cosmos_id_ strstrategy 
- Azure Cosmos Database Id Strategy
- cosmos_master_ strkey 
- Azure Cosmos Database Master Key
- cosmosConnection StringEndpoint 
- Azure Cosmos Database Connection Endpoint
- cosmosContainers StringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmosDatabase StringName 
- Azure Cosmos Database Name
- cosmosId StringStrategy 
- Azure Cosmos Database Id Strategy
- cosmosMaster StringKey 
- Azure Cosmos Database Master Key
AzureCosmosDBSinkConnectorServiceInfoResponse, AzureCosmosDBSinkConnectorServiceInfoResponseArgs              
- CosmosConnection stringEndpoint 
- Azure Cosmos Database Connection Endpoint
- CosmosContainers stringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- CosmosDatabase stringName 
- Azure Cosmos Database Name
- CosmosId stringStrategy 
- Azure Cosmos Database Id Strategy
- CosmosMaster stringKey 
- Azure Cosmos Database Master Key
- CosmosConnection stringEndpoint 
- Azure Cosmos Database Connection Endpoint
- CosmosContainers stringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- CosmosDatabase stringName 
- Azure Cosmos Database Name
- CosmosId stringStrategy 
- Azure Cosmos Database Id Strategy
- CosmosMaster stringKey 
- Azure Cosmos Database Master Key
- cosmosConnection StringEndpoint 
- Azure Cosmos Database Connection Endpoint
- cosmosContainers StringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmosDatabase StringName 
- Azure Cosmos Database Name
- cosmosId StringStrategy 
- Azure Cosmos Database Id Strategy
- cosmosMaster StringKey 
- Azure Cosmos Database Master Key
- cosmosConnection stringEndpoint 
- Azure Cosmos Database Connection Endpoint
- cosmosContainers stringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmosDatabase stringName 
- Azure Cosmos Database Name
- cosmosId stringStrategy 
- Azure Cosmos Database Id Strategy
- cosmosMaster stringKey 
- Azure Cosmos Database Master Key
- cosmos_connection_ strendpoint 
- Azure Cosmos Database Connection Endpoint
- cosmos_containers_ strtopic_ mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmos_database_ strname 
- Azure Cosmos Database Name
- cosmos_id_ strstrategy 
- Azure Cosmos Database Id Strategy
- cosmos_master_ strkey 
- Azure Cosmos Database Master Key
- cosmosConnection StringEndpoint 
- Azure Cosmos Database Connection Endpoint
- cosmosContainers StringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmosDatabase StringName 
- Azure Cosmos Database Name
- cosmosId StringStrategy 
- Azure Cosmos Database Id Strategy
- cosmosMaster StringKey 
- Azure Cosmos Database Master Key
AzureCosmosDBSourceConnectorServiceInfo, AzureCosmosDBSourceConnectorServiceInfoArgs            
- CosmosConnection stringEndpoint 
- Azure Cosmos Database Connection Endpoint
- CosmosContainers stringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- CosmosDatabase stringName 
- Azure Cosmos Database Name
- CosmosMaster stringKey 
- Azure Cosmos Database Master Key
- CosmosMessage boolKey Enabled 
- Azure Cosmos Database Message Key Enabled
- CosmosMessage stringKey Field 
- Azure Cosmos Database Message Key Field
- CosmosConnection stringEndpoint 
- Azure Cosmos Database Connection Endpoint
- CosmosContainers stringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- CosmosDatabase stringName 
- Azure Cosmos Database Name
- CosmosMaster stringKey 
- Azure Cosmos Database Master Key
- CosmosMessage boolKey Enabled 
- Azure Cosmos Database Message Key Enabled
- CosmosMessage stringKey Field 
- Azure Cosmos Database Message Key Field
- cosmosConnection StringEndpoint 
- Azure Cosmos Database Connection Endpoint
- cosmosContainers StringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmosDatabase StringName 
- Azure Cosmos Database Name
- cosmosMaster StringKey 
- Azure Cosmos Database Master Key
- cosmosMessage BooleanKey Enabled 
- Azure Cosmos Database Message Key Enabled
- cosmosMessage StringKey Field 
- Azure Cosmos Database Message Key Field
- cosmosConnection stringEndpoint 
- Azure Cosmos Database Connection Endpoint
- cosmosContainers stringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmosDatabase stringName 
- Azure Cosmos Database Name
- cosmosMaster stringKey 
- Azure Cosmos Database Master Key
- cosmosMessage booleanKey Enabled 
- Azure Cosmos Database Message Key Enabled
- cosmosMessage stringKey Field 
- Azure Cosmos Database Message Key Field
- cosmos_connection_ strendpoint 
- Azure Cosmos Database Connection Endpoint
- cosmos_containers_ strtopic_ mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmos_database_ strname 
- Azure Cosmos Database Name
- cosmos_master_ strkey 
- Azure Cosmos Database Master Key
- cosmos_message_ boolkey_ enabled 
- Azure Cosmos Database Message Key Enabled
- cosmos_message_ strkey_ field 
- Azure Cosmos Database Message Key Field
- cosmosConnection StringEndpoint 
- Azure Cosmos Database Connection Endpoint
- cosmosContainers StringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmosDatabase StringName 
- Azure Cosmos Database Name
- cosmosMaster StringKey 
- Azure Cosmos Database Master Key
- cosmosMessage BooleanKey Enabled 
- Azure Cosmos Database Message Key Enabled
- cosmosMessage StringKey Field 
- Azure Cosmos Database Message Key Field
AzureCosmosDBSourceConnectorServiceInfoResponse, AzureCosmosDBSourceConnectorServiceInfoResponseArgs              
- CosmosConnection stringEndpoint 
- Azure Cosmos Database Connection Endpoint
- CosmosContainers stringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- CosmosDatabase stringName 
- Azure Cosmos Database Name
- CosmosMaster stringKey 
- Azure Cosmos Database Master Key
- CosmosMessage boolKey Enabled 
- Azure Cosmos Database Message Key Enabled
- CosmosMessage stringKey Field 
- Azure Cosmos Database Message Key Field
- CosmosConnection stringEndpoint 
- Azure Cosmos Database Connection Endpoint
- CosmosContainers stringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- CosmosDatabase stringName 
- Azure Cosmos Database Name
- CosmosMaster stringKey 
- Azure Cosmos Database Master Key
- CosmosMessage boolKey Enabled 
- Azure Cosmos Database Message Key Enabled
- CosmosMessage stringKey Field 
- Azure Cosmos Database Message Key Field
- cosmosConnection StringEndpoint 
- Azure Cosmos Database Connection Endpoint
- cosmosContainers StringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmosDatabase StringName 
- Azure Cosmos Database Name
- cosmosMaster StringKey 
- Azure Cosmos Database Master Key
- cosmosMessage BooleanKey Enabled 
- Azure Cosmos Database Message Key Enabled
- cosmosMessage StringKey Field 
- Azure Cosmos Database Message Key Field
- cosmosConnection stringEndpoint 
- Azure Cosmos Database Connection Endpoint
- cosmosContainers stringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmosDatabase stringName 
- Azure Cosmos Database Name
- cosmosMaster stringKey 
- Azure Cosmos Database Master Key
- cosmosMessage booleanKey Enabled 
- Azure Cosmos Database Message Key Enabled
- cosmosMessage stringKey Field 
- Azure Cosmos Database Message Key Field
- cosmos_connection_ strendpoint 
- Azure Cosmos Database Connection Endpoint
- cosmos_containers_ strtopic_ mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmos_database_ strname 
- Azure Cosmos Database Name
- cosmos_master_ strkey 
- Azure Cosmos Database Master Key
- cosmos_message_ boolkey_ enabled 
- Azure Cosmos Database Message Key Enabled
- cosmos_message_ strkey_ field 
- Azure Cosmos Database Message Key Field
- cosmosConnection StringEndpoint 
- Azure Cosmos Database Connection Endpoint
- cosmosContainers StringTopic Mapping 
- Azure Cosmos Database Containers Topic Mapping
- cosmosDatabase StringName 
- Azure Cosmos Database Name
- cosmosMaster StringKey 
- Azure Cosmos Database Master Key
- cosmosMessage BooleanKey Enabled 
- Azure Cosmos Database Message Key Enabled
- cosmosMessage StringKey Field 
- Azure Cosmos Database Message Key Field
AzureSynapseAnalyticsSinkConnectorServiceInfo, AzureSynapseAnalyticsSinkConnectorServiceInfoArgs              
- SynapseSql stringDatabase Name 
- Azure Synapse Dedicated SQL Pool Database Name
- SynapseSql stringPassword 
- Azure Synapse SQL login details
- SynapseSql stringServer Name 
- Azure Synapse Analytics SQL Server Name
- SynapseSql stringUser 
- Azure Synapse SQL login details
- SynapseSql stringDatabase Name 
- Azure Synapse Dedicated SQL Pool Database Name
- SynapseSql stringPassword 
- Azure Synapse SQL login details
- SynapseSql stringServer Name 
- Azure Synapse Analytics SQL Server Name
- SynapseSql stringUser 
- Azure Synapse SQL login details
- synapseSql StringDatabase Name 
- Azure Synapse Dedicated SQL Pool Database Name
- synapseSql StringPassword 
- Azure Synapse SQL login details
- synapseSql StringServer Name 
- Azure Synapse Analytics SQL Server Name
- synapseSql StringUser 
- Azure Synapse SQL login details
- synapseSql stringDatabase Name 
- Azure Synapse Dedicated SQL Pool Database Name
- synapseSql stringPassword 
- Azure Synapse SQL login details
- synapseSql stringServer Name 
- Azure Synapse Analytics SQL Server Name
- synapseSql stringUser 
- Azure Synapse SQL login details
- synapse_sql_ strdatabase_ name 
- Azure Synapse Dedicated SQL Pool Database Name
- synapse_sql_ strpassword 
- Azure Synapse SQL login details
- synapse_sql_ strserver_ name 
- Azure Synapse Analytics SQL Server Name
- synapse_sql_ struser 
- Azure Synapse SQL login details
- synapseSql StringDatabase Name 
- Azure Synapse Dedicated SQL Pool Database Name
- synapseSql StringPassword 
- Azure Synapse SQL login details
- synapseSql StringServer Name 
- Azure Synapse Analytics SQL Server Name
- synapseSql StringUser 
- Azure Synapse SQL login details
AzureSynapseAnalyticsSinkConnectorServiceInfoResponse, AzureSynapseAnalyticsSinkConnectorServiceInfoResponseArgs                
- SynapseSql stringDatabase Name 
- Azure Synapse Dedicated SQL Pool Database Name
- SynapseSql stringPassword 
- Azure Synapse SQL login details
- SynapseSql stringServer Name 
- Azure Synapse Analytics SQL Server Name
- SynapseSql stringUser 
- Azure Synapse SQL login details
- SynapseSql stringDatabase Name 
- Azure Synapse Dedicated SQL Pool Database Name
- SynapseSql stringPassword 
- Azure Synapse SQL login details
- SynapseSql stringServer Name 
- Azure Synapse Analytics SQL Server Name
- SynapseSql stringUser 
- Azure Synapse SQL login details
- synapseSql StringDatabase Name 
- Azure Synapse Dedicated SQL Pool Database Name
- synapseSql StringPassword 
- Azure Synapse SQL login details
- synapseSql StringServer Name 
- Azure Synapse Analytics SQL Server Name
- synapseSql StringUser 
- Azure Synapse SQL login details
- synapseSql stringDatabase Name 
- Azure Synapse Dedicated SQL Pool Database Name
- synapseSql stringPassword 
- Azure Synapse SQL login details
- synapseSql stringServer Name 
- Azure Synapse Analytics SQL Server Name
- synapseSql stringUser 
- Azure Synapse SQL login details
- synapse_sql_ strdatabase_ name 
- Azure Synapse Dedicated SQL Pool Database Name
- synapse_sql_ strpassword 
- Azure Synapse SQL login details
- synapse_sql_ strserver_ name 
- Azure Synapse Analytics SQL Server Name
- synapse_sql_ struser 
- Azure Synapse SQL login details
- synapseSql StringDatabase Name 
- Azure Synapse Dedicated SQL Pool Database Name
- synapseSql StringPassword 
- Azure Synapse SQL login details
- synapseSql StringServer Name 
- Azure Synapse Analytics SQL Server Name
- synapseSql StringUser 
- Azure Synapse SQL login details
ConnectorClass, ConnectorClassArgs    
- AZUREBLOBSOURCE
- AZUREBLOBSOURCE
- AZUREBLOBSINK
- AZUREBLOBSINK
- ConnectorClass AZUREBLOBSOURCE 
- AZUREBLOBSOURCE
- ConnectorClass AZUREBLOBSINK 
- AZUREBLOBSINK
- AZUREBLOBSOURCE
- AZUREBLOBSOURCE
- AZUREBLOBSINK
- AZUREBLOBSINK
- AZUREBLOBSOURCE
- AZUREBLOBSOURCE
- AZUREBLOBSINK
- AZUREBLOBSINK
- AZUREBLOBSOURCE
- AZUREBLOBSOURCE
- AZUREBLOBSINK
- AZUREBLOBSINK
- "AZUREBLOBSOURCE"
- AZUREBLOBSOURCE
- "AZUREBLOBSINK"
- AZUREBLOBSINK
ConnectorInfoBase, ConnectorInfoBaseArgs      
- ConnectorClass string | Pulumi.Azure Native. Confluent. Connector Class 
- Connector Class
- ConnectorId string
- Connector Id
- ConnectorName string
- Connector Name
- ConnectorState string | Pulumi.Azure Native. Confluent. Connector Status 
- Connector Status
- ConnectorType string | Pulumi.Azure Native. Confluent. Connector Type 
- 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
- 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
- ConnectorStatus PROVISIONING 
- PROVISIONING
- ConnectorStatus RUNNING 
- RUNNING
- ConnectorStatus PAUSED 
- PAUSED
- ConnectorStatus 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
- "PROVISIONING"
- PROVISIONING
- "RUNNING"
- RUNNING
- "PAUSED"
- PAUSED
- "FAILED"
- FAILED
ConnectorType, ConnectorTypeArgs    
- SINK
- SINK
- SOURCE
- SOURCE
- ConnectorType SINK 
- SINK
- ConnectorType SOURCE 
- 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
- DataFormat Type AVRO 
- AVRO
- DataFormat Type JSON 
- JSON
- DataFormat Type STRING 
- STRING
- DataFormat Type BYTES 
- BYTES
- DataFormat Type 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
- "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.Azure Native. Confluent. Auth Type 
- Kafka Auth Type
- FlushSize string
- Flush size
- InputFormat string | Pulumi.Azure Native. Confluent. Data Format Type 
- Kafka Input Data Format Type
- MaxTasks string
- Maximum Tasks
- OutputFormat string | Pulumi.Azure Native. Confluent. Data Format Type 
- Kafka Output Data Format Type
- ServiceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- MaxTasks string
- Maximum Tasks
- OutputFormat string | DataFormat Type 
- Kafka Output Data Format Type
- ServiceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- maxTasks String
- Maximum Tasks
- outputFormat String | DataFormat Type 
- Kafka Output Data Format Type
- serviceAccount StringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- maxTasks string
- Maximum Tasks
- outputFormat string | DataFormat Type 
- Kafka Output Data Format Type
- serviceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- max_tasks str
- Maximum Tasks
- output_format str | DataFormat Type 
- Kafka Output Data Format Type
- service_account_ strid 
- 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
- serviceAccount StringId 
- 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
- ServiceAccount stringId 
- 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
- ServiceAccount stringId 
- 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
- serviceAccount StringId 
- 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
- serviceAccount stringId 
- 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_ strid 
- 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
- serviceAccount StringId 
- 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.Azure Native. Confluent. Auth Type 
- Kafka Auth Type
- InputFormat string | Pulumi.Azure Native. Confluent. Data Format Type 
- Kafka Input Data Format Type
- MaxTasks string
- Maximum Tasks
- OutputFormat string | Pulumi.Azure Native. Confluent. Data Format Type 
- Kafka Output Data Format Type
- ServiceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- MaxTasks string
- Maximum Tasks
- OutputFormat string | DataFormat Type 
- Kafka Output Data Format Type
- ServiceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- maxTasks String
- Maximum Tasks
- outputFormat String | DataFormat Type 
- Kafka Output Data Format Type
- serviceAccount StringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- maxTasks string
- Maximum Tasks
- outputFormat string | DataFormat Type 
- Kafka Output Data Format Type
- serviceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- max_tasks str
- Maximum Tasks
- output_format str | DataFormat Type 
- Kafka Output Data Format Type
- service_account_ strid 
- 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
- serviceAccount StringId 
- 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
- ServiceAccount stringId 
- 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
- ServiceAccount stringId 
- 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
- serviceAccount StringId 
- 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
- serviceAccount stringId 
- 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_ strid 
- 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
- serviceAccount StringId 
- 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.Azure Native. Confluent. Auth Type 
- Kafka Auth Type
- FlushSize string
- Flush size
- InputFormat string | Pulumi.Azure Native. Confluent. Data Format Type 
- Kafka Input Data Format Type
- MaxTasks string
- Maximum Tasks
- OutputFormat string | Pulumi.Azure Native. Confluent. Data Format Type 
- Kafka Output Data Format Type
- ServiceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- MaxTasks string
- Maximum Tasks
- OutputFormat string | DataFormat Type 
- Kafka Output Data Format Type
- ServiceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- maxTasks String
- Maximum Tasks
- outputFormat String | DataFormat Type 
- Kafka Output Data Format Type
- serviceAccount StringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- maxTasks string
- Maximum Tasks
- outputFormat string | DataFormat Type 
- Kafka Output Data Format Type
- serviceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- max_tasks str
- Maximum Tasks
- output_format str | DataFormat Type 
- Kafka Output Data Format Type
- service_account_ strid 
- 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
- serviceAccount StringId 
- 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
- ServiceAccount stringId 
- 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
- ServiceAccount stringId 
- 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
- serviceAccount StringId 
- 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
- serviceAccount stringId 
- 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_ strid 
- 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
- serviceAccount StringId 
- 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.Azure Native. Confluent. Auth Type 
- Kafka Auth Type
- InputFormat string | Pulumi.Azure Native. Confluent. Data Format Type 
- Kafka Input Data Format Type
- MaxTasks string
- Maximum Tasks
- OutputFormat string | Pulumi.Azure Native. Confluent. Data Format Type 
- Kafka Output Data Format Type
- ServiceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- MaxTasks string
- Maximum Tasks
- OutputFormat string | DataFormat Type 
- Kafka Output Data Format Type
- ServiceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- maxTasks String
- Maximum Tasks
- outputFormat String | DataFormat Type 
- Kafka Output Data Format Type
- serviceAccount StringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- maxTasks string
- Maximum Tasks
- outputFormat string | DataFormat Type 
- Kafka Output Data Format Type
- serviceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- max_tasks str
- Maximum Tasks
- output_format str | DataFormat Type 
- Kafka Output Data Format Type
- service_account_ strid 
- 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
- serviceAccount StringId 
- 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
- ServiceAccount stringId 
- 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
- ServiceAccount stringId 
- 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
- serviceAccount StringId 
- 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
- serviceAccount stringId 
- 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_ strid 
- 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
- serviceAccount StringId 
- 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.Azure Native. Confluent. Auth Type 
- Kafka Auth Type
- FlushSize string
- Flush size
- InputFormat string | Pulumi.Azure Native. Confluent. Data Format Type 
- Kafka Input Data Format Type
- MaxTasks string
- Maximum Tasks
- OutputFormat string | Pulumi.Azure Native. Confluent. Data Format Type 
- Kafka Output Data Format Type
- ServiceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- MaxTasks string
- Maximum Tasks
- OutputFormat string | DataFormat Type 
- Kafka Output Data Format Type
- ServiceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- maxTasks String
- Maximum Tasks
- outputFormat String | DataFormat Type 
- Kafka Output Data Format Type
- serviceAccount StringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- maxTasks string
- Maximum Tasks
- outputFormat string | DataFormat Type 
- Kafka Output Data Format Type
- serviceAccount stringId 
- 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 | DataFormat Type 
- Kafka Input Data Format Type
- max_tasks str
- Maximum Tasks
- output_format str | DataFormat Type 
- Kafka Output Data Format Type
- service_account_ strid 
- 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
- serviceAccount StringId 
- 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
- ServiceAccount stringId 
- 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
- ServiceAccount stringId 
- 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
- serviceAccount StringId 
- 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
- serviceAccount stringId 
- 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_ strid 
- 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
- serviceAccount StringId 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0