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 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")
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",
});
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:
- Cluster
Id string - Confluent kafka or schema registry cluster id
- Environment
Id string - Confluent environment id
- Organization
Name string - Organization resource name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Connector
Basic Pulumi.Info Azure Native. Confluent. Inputs. Connector Info Base - Connector Info Base
- Connector
Name string - Confluent connector name
- Connector
Service 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.
- Partner
Connector 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.
- Cluster
Id string - Confluent kafka or schema registry cluster id
- Environment
Id string - Confluent environment id
- Organization
Name string - Organization resource name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Connector
Basic ConnectorInfo Info Base Args - Connector Info Base
- Connector
Name string - 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.
- cluster
Id String - Confluent kafka or schema registry cluster id
- environment
Id String - Confluent environment id
- organization
Name String - Organization resource name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- connector
Basic ConnectorInfo Info Base - Connector Info Base
- connector
Name String - Confluent connector name
- connector
Service 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.
- partner
Connector 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 string - Confluent kafka or schema registry cluster id
- environment
Id string - Confluent environment id
- organization
Name string - Organization resource name
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- connector
Basic ConnectorInfo Info Base - Connector Info Base
- connector
Name string - Confluent connector name
- connector
Service 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.
- partner
Connector 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.
- cluster
Id String - Confluent kafka or schema registry cluster id
- environment
Id String - Confluent environment id
- organization
Name String - Organization resource name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- connector
Basic Property MapInfo - Connector Info Base
- connector
Name String - Confluent connector name
- connector
Service Property Map | Property Map | Property Map | Property Map | Property MapType Info - Connector Service type info base properties.
- partner
Connector 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
- System
Data 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
- System
Data 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
- system
Data 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
- system
Data 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
- system
Data 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
- Auth
Type_SERVICE_ACCOUNT - SERVICE_ACCOUNT
- Auth
Type_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
- Storage
Account stringKey - Azure Blob Storage Account Key
- Storage
Account stringName - Azure Blob Storage Account Name
- Storage
Container stringName - Azure Blob Storage Account Container Name
- Storage
Account stringKey - Azure Blob Storage Account Key
- Storage
Account stringName - Azure Blob Storage Account Name
- Storage
Container stringName - Azure Blob Storage Account Container Name
- storage
Account StringKey - Azure Blob Storage Account Key
- storage
Account StringName - Azure Blob Storage Account Name
- storage
Container StringName - Azure Blob Storage Account Container Name
- storage
Account stringKey - Azure Blob Storage Account Key
- storage
Account stringName - Azure Blob Storage Account Name
- storage
Container 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
- storage
Account StringKey - Azure Blob Storage Account Key
- storage
Account StringName - Azure Blob Storage Account Name
- storage
Container StringName - Azure Blob Storage Account Container Name
AzureBlobStorageSinkConnectorServiceInfoResponse, AzureBlobStorageSinkConnectorServiceInfoResponseArgs
- Storage
Account stringKey - Azure Blob Storage Account Key
- Storage
Account stringName - Azure Blob Storage Account Name
- Storage
Container stringName - Azure Blob Storage Account Container Name
- Storage
Account stringKey - Azure Blob Storage Account Key
- Storage
Account stringName - Azure Blob Storage Account Name
- Storage
Container stringName - Azure Blob Storage Account Container Name
- storage
Account StringKey - Azure Blob Storage Account Key
- storage
Account StringName - Azure Blob Storage Account Name
- storage
Container StringName - Azure Blob Storage Account Container Name
- storage
Account stringKey - Azure Blob Storage Account Key
- storage
Account stringName - Azure Blob Storage Account Name
- storage
Container 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
- storage
Account StringKey - Azure Blob Storage Account Key
- storage
Account StringName - Azure Blob Storage Account Name
- storage
Container StringName - Azure Blob Storage Account Container Name
AzureBlobStorageSourceConnectorServiceInfo, AzureBlobStorageSourceConnectorServiceInfoArgs
- Storage
Account stringKey - Azure Blob Storage Account Key
- Storage
Account stringName - Azure Blob Storage Account Name
- Storage
Container stringName - Azure Blob Storage Account Container Name
- Storage
Account stringKey - Azure Blob Storage Account Key
- Storage
Account stringName - Azure Blob Storage Account Name
- Storage
Container stringName - Azure Blob Storage Account Container Name
- storage
Account StringKey - Azure Blob Storage Account Key
- storage
Account StringName - Azure Blob Storage Account Name
- storage
Container StringName - Azure Blob Storage Account Container Name
- storage
Account stringKey - Azure Blob Storage Account Key
- storage
Account stringName - Azure Blob Storage Account Name
- storage
Container 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
- storage
Account StringKey - Azure Blob Storage Account Key
- storage
Account StringName - Azure Blob Storage Account Name
- storage
Container StringName - Azure Blob Storage Account Container Name
AzureBlobStorageSourceConnectorServiceInfoResponse, AzureBlobStorageSourceConnectorServiceInfoResponseArgs
- Storage
Account stringKey - Azure Blob Storage Account Key
- Storage
Account stringName - Azure Blob Storage Account Name
- Storage
Container stringName - Azure Blob Storage Account Container Name
- Storage
Account stringKey - Azure Blob Storage Account Key
- Storage
Account stringName - Azure Blob Storage Account Name
- Storage
Container stringName - Azure Blob Storage Account Container Name
- storage
Account StringKey - Azure Blob Storage Account Key
- storage
Account StringName - Azure Blob Storage Account Name
- storage
Container StringName - Azure Blob Storage Account Container Name
- storage
Account stringKey - Azure Blob Storage Account Key
- storage
Account stringName - Azure Blob Storage Account Name
- storage
Container 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
- storage
Account StringKey - Azure Blob Storage Account Key
- storage
Account StringName - Azure Blob Storage Account Name
- storage
Container StringName - Azure Blob Storage Account Container Name
AzureCosmosDBSinkConnectorServiceInfo, AzureCosmosDBSinkConnectorServiceInfoArgs
- Cosmos
Connection stringEndpoint - Azure Cosmos Database Connection Endpoint
- Cosmos
Containers stringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- Cosmos
Database stringName - Azure Cosmos Database Name
- Cosmos
Id stringStrategy - Azure Cosmos Database Id Strategy
- Cosmos
Master stringKey - Azure Cosmos Database Master Key
- Cosmos
Connection stringEndpoint - Azure Cosmos Database Connection Endpoint
- Cosmos
Containers stringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- Cosmos
Database stringName - Azure Cosmos Database Name
- Cosmos
Id stringStrategy - Azure Cosmos Database Id Strategy
- Cosmos
Master stringKey - Azure Cosmos Database Master Key
- cosmos
Connection StringEndpoint - Azure Cosmos Database Connection Endpoint
- cosmos
Containers StringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- cosmos
Database StringName - Azure Cosmos Database Name
- cosmos
Id StringStrategy - Azure Cosmos Database Id Strategy
- cosmos
Master StringKey - Azure Cosmos Database Master Key
- cosmos
Connection stringEndpoint - Azure Cosmos Database Connection Endpoint
- cosmos
Containers stringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- cosmos
Database stringName - Azure Cosmos Database Name
- cosmos
Id stringStrategy - Azure Cosmos Database Id Strategy
- cosmos
Master 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
- cosmos
Connection StringEndpoint - Azure Cosmos Database Connection Endpoint
- cosmos
Containers StringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- cosmos
Database StringName - Azure Cosmos Database Name
- cosmos
Id StringStrategy - Azure Cosmos Database Id Strategy
- cosmos
Master StringKey - Azure Cosmos Database Master Key
AzureCosmosDBSinkConnectorServiceInfoResponse, AzureCosmosDBSinkConnectorServiceInfoResponseArgs
- Cosmos
Connection stringEndpoint - Azure Cosmos Database Connection Endpoint
- Cosmos
Containers stringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- Cosmos
Database stringName - Azure Cosmos Database Name
- Cosmos
Id stringStrategy - Azure Cosmos Database Id Strategy
- Cosmos
Master stringKey - Azure Cosmos Database Master Key
- Cosmos
Connection stringEndpoint - Azure Cosmos Database Connection Endpoint
- Cosmos
Containers stringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- Cosmos
Database stringName - Azure Cosmos Database Name
- Cosmos
Id stringStrategy - Azure Cosmos Database Id Strategy
- Cosmos
Master stringKey - Azure Cosmos Database Master Key
- cosmos
Connection StringEndpoint - Azure Cosmos Database Connection Endpoint
- cosmos
Containers StringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- cosmos
Database StringName - Azure Cosmos Database Name
- cosmos
Id StringStrategy - Azure Cosmos Database Id Strategy
- cosmos
Master StringKey - Azure Cosmos Database Master Key
- cosmos
Connection stringEndpoint - Azure Cosmos Database Connection Endpoint
- cosmos
Containers stringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- cosmos
Database stringName - Azure Cosmos Database Name
- cosmos
Id stringStrategy - Azure Cosmos Database Id Strategy
- cosmos
Master 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
- cosmos
Connection StringEndpoint - Azure Cosmos Database Connection Endpoint
- cosmos
Containers StringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- cosmos
Database StringName - Azure Cosmos Database Name
- cosmos
Id StringStrategy - Azure Cosmos Database Id Strategy
- cosmos
Master StringKey - Azure Cosmos Database Master Key
AzureCosmosDBSourceConnectorServiceInfo, AzureCosmosDBSourceConnectorServiceInfoArgs
- Cosmos
Connection stringEndpoint - Azure Cosmos Database Connection Endpoint
- Cosmos
Containers stringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- Cosmos
Database stringName - Azure Cosmos Database Name
- Cosmos
Master stringKey - Azure Cosmos Database Master Key
- Cosmos
Message boolKey Enabled - Azure Cosmos Database Message Key Enabled
- Cosmos
Message stringKey Field - Azure Cosmos Database Message Key Field
- Cosmos
Connection stringEndpoint - Azure Cosmos Database Connection Endpoint
- Cosmos
Containers stringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- Cosmos
Database stringName - Azure Cosmos Database Name
- Cosmos
Master stringKey - Azure Cosmos Database Master Key
- Cosmos
Message boolKey Enabled - Azure Cosmos Database Message Key Enabled
- Cosmos
Message stringKey Field - Azure Cosmos Database Message Key Field
- cosmos
Connection StringEndpoint - Azure Cosmos Database Connection Endpoint
- cosmos
Containers StringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- cosmos
Database StringName - Azure Cosmos Database Name
- cosmos
Master StringKey - Azure Cosmos Database Master Key
- cosmos
Message BooleanKey Enabled - Azure Cosmos Database Message Key Enabled
- cosmos
Message StringKey Field - Azure Cosmos Database Message Key Field
- cosmos
Connection stringEndpoint - Azure Cosmos Database Connection Endpoint
- cosmos
Containers stringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- cosmos
Database stringName - Azure Cosmos Database Name
- cosmos
Master stringKey - Azure Cosmos Database Master Key
- cosmos
Message booleanKey Enabled - Azure Cosmos Database Message Key Enabled
- cosmos
Message 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
- cosmos
Connection StringEndpoint - Azure Cosmos Database Connection Endpoint
- cosmos
Containers StringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- cosmos
Database StringName - Azure Cosmos Database Name
- cosmos
Master StringKey - Azure Cosmos Database Master Key
- cosmos
Message BooleanKey Enabled - Azure Cosmos Database Message Key Enabled
- cosmos
Message StringKey Field - Azure Cosmos Database Message Key Field
AzureCosmosDBSourceConnectorServiceInfoResponse, AzureCosmosDBSourceConnectorServiceInfoResponseArgs
- Cosmos
Connection stringEndpoint - Azure Cosmos Database Connection Endpoint
- Cosmos
Containers stringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- Cosmos
Database stringName - Azure Cosmos Database Name
- Cosmos
Master stringKey - Azure Cosmos Database Master Key
- Cosmos
Message boolKey Enabled - Azure Cosmos Database Message Key Enabled
- Cosmos
Message stringKey Field - Azure Cosmos Database Message Key Field
- Cosmos
Connection stringEndpoint - Azure Cosmos Database Connection Endpoint
- Cosmos
Containers stringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- Cosmos
Database stringName - Azure Cosmos Database Name
- Cosmos
Master stringKey - Azure Cosmos Database Master Key
- Cosmos
Message boolKey Enabled - Azure Cosmos Database Message Key Enabled
- Cosmos
Message stringKey Field - Azure Cosmos Database Message Key Field
- cosmos
Connection StringEndpoint - Azure Cosmos Database Connection Endpoint
- cosmos
Containers StringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- cosmos
Database StringName - Azure Cosmos Database Name
- cosmos
Master StringKey - Azure Cosmos Database Master Key
- cosmos
Message BooleanKey Enabled - Azure Cosmos Database Message Key Enabled
- cosmos
Message StringKey Field - Azure Cosmos Database Message Key Field
- cosmos
Connection stringEndpoint - Azure Cosmos Database Connection Endpoint
- cosmos
Containers stringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- cosmos
Database stringName - Azure Cosmos Database Name
- cosmos
Master stringKey - Azure Cosmos Database Master Key
- cosmos
Message booleanKey Enabled - Azure Cosmos Database Message Key Enabled
- cosmos
Message 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
- cosmos
Connection StringEndpoint - Azure Cosmos Database Connection Endpoint
- cosmos
Containers StringTopic Mapping - Azure Cosmos Database Containers Topic Mapping
- cosmos
Database StringName - Azure Cosmos Database Name
- cosmos
Master StringKey - Azure Cosmos Database Master Key
- cosmos
Message BooleanKey Enabled - Azure Cosmos Database Message Key Enabled
- cosmos
Message StringKey Field - Azure Cosmos Database Message Key Field
AzureSynapseAnalyticsSinkConnectorServiceInfo, AzureSynapseAnalyticsSinkConnectorServiceInfoArgs
- Synapse
Sql stringDatabase Name - Azure Synapse Dedicated SQL Pool Database Name
- Synapse
Sql stringPassword - Azure Synapse SQL login details
- Synapse
Sql stringServer Name - Azure Synapse Analytics SQL Server Name
- Synapse
Sql stringUser - Azure Synapse SQL login details
- Synapse
Sql stringDatabase Name - Azure Synapse Dedicated SQL Pool Database Name
- Synapse
Sql stringPassword - Azure Synapse SQL login details
- Synapse
Sql stringServer Name - Azure Synapse Analytics SQL Server Name
- Synapse
Sql stringUser - Azure Synapse SQL login details
- synapse
Sql StringDatabase Name - Azure Synapse Dedicated SQL Pool Database Name
- synapse
Sql StringPassword - Azure Synapse SQL login details
- synapse
Sql StringServer Name - Azure Synapse Analytics SQL Server Name
- synapse
Sql StringUser - Azure Synapse SQL login details
- synapse
Sql stringDatabase Name - Azure Synapse Dedicated SQL Pool Database Name
- synapse
Sql stringPassword - Azure Synapse SQL login details
- synapse
Sql stringServer Name - Azure Synapse Analytics SQL Server Name
- synapse
Sql 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
- synapse
Sql StringDatabase Name - Azure Synapse Dedicated SQL Pool Database Name
- synapse
Sql StringPassword - Azure Synapse SQL login details
- synapse
Sql StringServer Name - Azure Synapse Analytics SQL Server Name
- synapse
Sql StringUser - Azure Synapse SQL login details
AzureSynapseAnalyticsSinkConnectorServiceInfoResponse, AzureSynapseAnalyticsSinkConnectorServiceInfoResponseArgs
- Synapse
Sql stringDatabase Name - Azure Synapse Dedicated SQL Pool Database Name
- Synapse
Sql stringPassword - Azure Synapse SQL login details
- Synapse
Sql stringServer Name - Azure Synapse Analytics SQL Server Name
- Synapse
Sql stringUser - Azure Synapse SQL login details
- Synapse
Sql stringDatabase Name - Azure Synapse Dedicated SQL Pool Database Name
- Synapse
Sql stringPassword - Azure Synapse SQL login details
- Synapse
Sql stringServer Name - Azure Synapse Analytics SQL Server Name
- Synapse
Sql stringUser - Azure Synapse SQL login details
- synapse
Sql StringDatabase Name - Azure Synapse Dedicated SQL Pool Database Name
- synapse
Sql StringPassword - Azure Synapse SQL login details
- synapse
Sql StringServer Name - Azure Synapse Analytics SQL Server Name
- synapse
Sql StringUser - Azure Synapse SQL login details
- synapse
Sql stringDatabase Name - Azure Synapse Dedicated SQL Pool Database Name
- synapse
Sql stringPassword - Azure Synapse SQL login details
- synapse
Sql stringServer Name - Azure Synapse Analytics SQL Server Name
- synapse
Sql 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
- synapse
Sql StringDatabase Name - Azure Synapse Dedicated SQL Pool Database Name
- synapse
Sql StringPassword - Azure Synapse SQL login details
- synapse
Sql StringServer Name - Azure Synapse Analytics SQL Server Name
- synapse
Sql StringUser - Azure Synapse SQL login details
ConnectorClass, ConnectorClassArgs
- AZUREBLOBSOURCE
- AZUREBLOBSOURCE
- AZUREBLOBSINK
- AZUREBLOBSINK
- Connector
Class AZUREBLOBSOURCE - AZUREBLOBSOURCE
- Connector
Class AZUREBLOBSINK - AZUREBLOBSINK
- AZUREBLOBSOURCE
- AZUREBLOBSOURCE
- AZUREBLOBSINK
- AZUREBLOBSINK
- AZUREBLOBSOURCE
- AZUREBLOBSOURCE
- AZUREBLOBSINK
- AZUREBLOBSINK
- AZUREBLOBSOURCE
- AZUREBLOBSOURCE
- AZUREBLOBSINK
- AZUREBLOBSINK
- "AZUREBLOBSOURCE"
- AZUREBLOBSOURCE
- "AZUREBLOBSINK"
- AZUREBLOBSINK
ConnectorInfoBase, ConnectorInfoBaseArgs
- Connector
Class string | Pulumi.Azure Native. Confluent. Connector Class - Connector Class
- Connector
Id string - Connector Id
- Connector
Name string - Connector Name
- Connector
State string | Pulumi.Azure Native. Confluent. Connector Status - Connector Status
- Connector
Type string | Pulumi.Azure Native. Confluent. Connector Type - Connector Type
- Connector
Class string | ConnectorClass - Connector Class
- Connector
Id string - Connector Id
- Connector
Name string - Connector Name
- Connector
State string | ConnectorStatus - Connector Status
- Connector
Type string | ConnectorType - Connector Type
- connector
Class String | ConnectorClass - Connector Class
- connector
Id String - Connector Id
- connector
Name String - Connector Name
- connector
State String | ConnectorStatus - Connector Status
- connector
Type String | ConnectorType - Connector Type
- connector
Class string | ConnectorClass - Connector Class
- connector
Id string - Connector Id
- connector
Name string - Connector Name
- connector
State string | ConnectorStatus - Connector Status
- connector
Type 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
- connector
Class String | "AZUREBLOBSOURCE" | "AZUREBLOBSINK" - Connector Class
- connector
Id String - Connector Id
- connector
Name String - Connector Name
- connector
State String | "PROVISIONING" | "RUNNING" | "PAUSED" | "FAILED" - Connector Status
- connector
Type String | "SINK" | "SOURCE" - Connector Type
ConnectorInfoBaseResponse, ConnectorInfoBaseResponseArgs
- Connector
Class string - Connector Class
- Connector
Id string - Connector Id
- Connector
Name string - Connector Name
- Connector
State string - Connector Status
- Connector
Type string - Connector Type
- Connector
Class string - Connector Class
- Connector
Id string - Connector Id
- Connector
Name string - Connector Name
- Connector
State string - Connector Status
- Connector
Type string - Connector Type
- connector
Class String - Connector Class
- connector
Id String - Connector Id
- connector
Name String - Connector Name
- connector
State String - Connector Status
- connector
Type String - Connector Type
- connector
Class string - Connector Class
- connector
Id string - Connector Id
- connector
Name string - Connector Name
- connector
State string - Connector Status
- connector
Type 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
- connector
Class String - Connector Class
- connector
Id String - Connector Id
- connector
Name String - Connector Name
- connector
State String - Connector Status
- connector
Type String - Connector Type
ConnectorStatus, ConnectorStatusArgs
- PROVISIONING
- PROVISIONING
- RUNNING
- RUNNING
- PAUSED
- PAUSED
- FAILED
- FAILED
- Connector
Status PROVISIONING - PROVISIONING
- Connector
Status RUNNING - RUNNING
- Connector
Status PAUSED - PAUSED
- Connector
Status 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
- Connector
Type SINK - SINK
- Connector
Type 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
- Data
Format Type AVRO - AVRO
- Data
Format Type JSON - JSON
- Data
Format Type STRING - STRING
- Data
Format Type BYTES - BYTES
- Data
Format 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
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Key Secret
- Auth
Type string | Pulumi.Azure Native. Confluent. Auth Type - Kafka Auth Type
- Flush
Size string - Flush size
- Input
Format string | Pulumi.Azure Native. Confluent. Data Format Type - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string | Pulumi.Azure Native. Confluent. Data Format Type - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Time
Interval string - Time Interval
- Topics List<string>
- Kafka topics list
- Topics
Dir string - Kafka topics directory
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Key Secret
- Auth
Type string | AuthType - Kafka Auth Type
- Flush
Size string - Flush size
- Input
Format string | DataFormat Type - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string | DataFormat Type - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Time
Interval string - Time Interval
- Topics []string
- Kafka topics list
- Topics
Dir string - Kafka topics directory
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Key Secret
- auth
Type String | AuthType - Kafka Auth Type
- flush
Size String - Flush size
- input
Format String | DataFormat Type - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String | DataFormat Type - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- time
Interval String - Time Interval
- topics List<String>
- Kafka topics list
- topics
Dir String - Kafka topics directory
- api
Key string - Kafka API Key
- api
Secret string - Kafka API Key Secret
- auth
Type string | AuthType - Kafka Auth Type
- flush
Size string - Flush size
- input
Format string | DataFormat Type - Kafka Input Data Format Type
- max
Tasks string - Maximum Tasks
- output
Format string | DataFormat Type - Kafka Output Data Format Type
- service
Account stringId - Kafka Service Account Id
- time
Interval string - Time Interval
- topics string[]
- Kafka topics list
- topics
Dir 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
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Key Secret
- auth
Type String | "SERVICE_ACCOUNT" | "KAFKA_API_KEY" - Kafka Auth Type
- flush
Size String - Flush size
- input
Format String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF" - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF" - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- time
Interval String - Time Interval
- topics List<String>
- Kafka topics list
- topics
Dir String - Kafka topics directory
KafkaAzureBlobStorageSinkConnectorInfoResponse, KafkaAzureBlobStorageSinkConnectorInfoResponseArgs
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Key Secret
- Auth
Type string - Kafka Auth Type
- Flush
Size string - Flush size
- Input
Format string - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Time
Interval string - Time Interval
- Topics List<string>
- Kafka topics list
- Topics
Dir string - Kafka topics directory
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Key Secret
- Auth
Type string - Kafka Auth Type
- Flush
Size string - Flush size
- Input
Format string - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Time
Interval string - Time Interval
- Topics []string
- Kafka topics list
- Topics
Dir string - Kafka topics directory
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Key Secret
- auth
Type String - Kafka Auth Type
- flush
Size String - Flush size
- input
Format String - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- time
Interval String - Time Interval
- topics List<String>
- Kafka topics list
- topics
Dir String - Kafka topics directory
- api
Key string - Kafka API Key
- api
Secret string - Kafka API Key Secret
- auth
Type string - Kafka Auth Type
- flush
Size string - Flush size
- input
Format string - Kafka Input Data Format Type
- max
Tasks string - Maximum Tasks
- output
Format string - Kafka Output Data Format Type
- service
Account stringId - Kafka Service Account Id
- time
Interval string - Time Interval
- topics string[]
- Kafka topics list
- topics
Dir 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
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Key Secret
- auth
Type String - Kafka Auth Type
- flush
Size String - Flush size
- input
Format String - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- time
Interval String - Time Interval
- topics List<String>
- Kafka topics list
- topics
Dir String - Kafka topics directory
KafkaAzureBlobStorageSourceConnectorInfo, KafkaAzureBlobStorageSourceConnectorInfoArgs
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Secret
- Auth
Type string | Pulumi.Azure Native. Confluent. Auth Type - Kafka Auth Type
- Input
Format string | Pulumi.Azure Native. Confluent. Data Format Type - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string | Pulumi.Azure Native. Confluent. Data Format Type - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Topic
Regex string - Kafka topics Regex pattern
- Topics
Dir string - Kafka topics directory
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Secret
- Auth
Type string | AuthType - Kafka Auth Type
- Input
Format string | DataFormat Type - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string | DataFormat Type - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Topic
Regex string - Kafka topics Regex pattern
- Topics
Dir string - Kafka topics directory
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Secret
- auth
Type String | AuthType - Kafka Auth Type
- input
Format String | DataFormat Type - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String | DataFormat Type - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- topic
Regex String - Kafka topics Regex pattern
- topics
Dir String - Kafka topics directory
- api
Key string - Kafka API Key
- api
Secret string - Kafka API Secret
- auth
Type string | AuthType - Kafka Auth Type
- input
Format string | DataFormat Type - Kafka Input Data Format Type
- max
Tasks string - Maximum Tasks
- output
Format string | DataFormat Type - Kafka Output Data Format Type
- service
Account stringId - Kafka Service Account Id
- topic
Regex string - Kafka topics Regex pattern
- topics
Dir 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
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Secret
- auth
Type String | "SERVICE_ACCOUNT" | "KAFKA_API_KEY" - Kafka Auth Type
- input
Format String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF" - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF" - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- topic
Regex String - Kafka topics Regex pattern
- topics
Dir String - Kafka topics directory
KafkaAzureBlobStorageSourceConnectorInfoResponse, KafkaAzureBlobStorageSourceConnectorInfoResponseArgs
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Secret
- Auth
Type string - Kafka Auth Type
- Input
Format string - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Topic
Regex string - Kafka topics Regex pattern
- Topics
Dir string - Kafka topics directory
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Secret
- Auth
Type string - Kafka Auth Type
- Input
Format string - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Topic
Regex string - Kafka topics Regex pattern
- Topics
Dir string - Kafka topics directory
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Secret
- auth
Type String - Kafka Auth Type
- input
Format String - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- topic
Regex String - Kafka topics Regex pattern
- topics
Dir String - Kafka topics directory
- api
Key string - Kafka API Key
- api
Secret string - Kafka API Secret
- auth
Type string - Kafka Auth Type
- input
Format string - Kafka Input Data Format Type
- max
Tasks string - Maximum Tasks
- output
Format string - Kafka Output Data Format Type
- service
Account stringId - Kafka Service Account Id
- topic
Regex string - Kafka topics Regex pattern
- topics
Dir 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
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Secret
- auth
Type String - Kafka Auth Type
- input
Format String - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- topic
Regex String - Kafka topics Regex pattern
- topics
Dir String - Kafka topics directory
KafkaAzureCosmosDBSinkConnectorInfo, KafkaAzureCosmosDBSinkConnectorInfoArgs
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Key Secret
- Auth
Type string | Pulumi.Azure Native. Confluent. Auth Type - Kafka Auth Type
- Flush
Size string - Flush size
- Input
Format string | Pulumi.Azure Native. Confluent. Data Format Type - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string | Pulumi.Azure Native. Confluent. Data Format Type - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Time
Interval string - Time Interval
- Topics List<string>
- Kafka topics list
- Topics
Dir string - Kafka topics directory
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Key Secret
- Auth
Type string | AuthType - Kafka Auth Type
- Flush
Size string - Flush size
- Input
Format string | DataFormat Type - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string | DataFormat Type - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Time
Interval string - Time Interval
- Topics []string
- Kafka topics list
- Topics
Dir string - Kafka topics directory
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Key Secret
- auth
Type String | AuthType - Kafka Auth Type
- flush
Size String - Flush size
- input
Format String | DataFormat Type - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String | DataFormat Type - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- time
Interval String - Time Interval
- topics List<String>
- Kafka topics list
- topics
Dir String - Kafka topics directory
- api
Key string - Kafka API Key
- api
Secret string - Kafka API Key Secret
- auth
Type string | AuthType - Kafka Auth Type
- flush
Size string - Flush size
- input
Format string | DataFormat Type - Kafka Input Data Format Type
- max
Tasks string - Maximum Tasks
- output
Format string | DataFormat Type - Kafka Output Data Format Type
- service
Account stringId - Kafka Service Account Id
- time
Interval string - Time Interval
- topics string[]
- Kafka topics list
- topics
Dir 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
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Key Secret
- auth
Type String | "SERVICE_ACCOUNT" | "KAFKA_API_KEY" - Kafka Auth Type
- flush
Size String - Flush size
- input
Format String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF" - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF" - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- time
Interval String - Time Interval
- topics List<String>
- Kafka topics list
- topics
Dir String - Kafka topics directory
KafkaAzureCosmosDBSinkConnectorInfoResponse, KafkaAzureCosmosDBSinkConnectorInfoResponseArgs
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Key Secret
- Auth
Type string - Kafka Auth Type
- Flush
Size string - Flush size
- Input
Format string - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Time
Interval string - Time Interval
- Topics List<string>
- Kafka topics list
- Topics
Dir string - Kafka topics directory
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Key Secret
- Auth
Type string - Kafka Auth Type
- Flush
Size string - Flush size
- Input
Format string - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Time
Interval string - Time Interval
- Topics []string
- Kafka topics list
- Topics
Dir string - Kafka topics directory
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Key Secret
- auth
Type String - Kafka Auth Type
- flush
Size String - Flush size
- input
Format String - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- time
Interval String - Time Interval
- topics List<String>
- Kafka topics list
- topics
Dir String - Kafka topics directory
- api
Key string - Kafka API Key
- api
Secret string - Kafka API Key Secret
- auth
Type string - Kafka Auth Type
- flush
Size string - Flush size
- input
Format string - Kafka Input Data Format Type
- max
Tasks string - Maximum Tasks
- output
Format string - Kafka Output Data Format Type
- service
Account stringId - Kafka Service Account Id
- time
Interval string - Time Interval
- topics string[]
- Kafka topics list
- topics
Dir 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
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Key Secret
- auth
Type String - Kafka Auth Type
- flush
Size String - Flush size
- input
Format String - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- time
Interval String - Time Interval
- topics List<String>
- Kafka topics list
- topics
Dir String - Kafka topics directory
KafkaAzureCosmosDBSourceConnectorInfo, KafkaAzureCosmosDBSourceConnectorInfoArgs
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Secret
- Auth
Type string | Pulumi.Azure Native. Confluent. Auth Type - Kafka Auth Type
- Input
Format string | Pulumi.Azure Native. Confluent. Data Format Type - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string | Pulumi.Azure Native. Confluent. Data Format Type - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Topic
Regex string - Kafka topics Regex pattern
- Topics
Dir string - Kafka topics directory
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Secret
- Auth
Type string | AuthType - Kafka Auth Type
- Input
Format string | DataFormat Type - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string | DataFormat Type - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Topic
Regex string - Kafka topics Regex pattern
- Topics
Dir string - Kafka topics directory
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Secret
- auth
Type String | AuthType - Kafka Auth Type
- input
Format String | DataFormat Type - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String | DataFormat Type - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- topic
Regex String - Kafka topics Regex pattern
- topics
Dir String - Kafka topics directory
- api
Key string - Kafka API Key
- api
Secret string - Kafka API Secret
- auth
Type string | AuthType - Kafka Auth Type
- input
Format string | DataFormat Type - Kafka Input Data Format Type
- max
Tasks string - Maximum Tasks
- output
Format string | DataFormat Type - Kafka Output Data Format Type
- service
Account stringId - Kafka Service Account Id
- topic
Regex string - Kafka topics Regex pattern
- topics
Dir 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
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Secret
- auth
Type String | "SERVICE_ACCOUNT" | "KAFKA_API_KEY" - Kafka Auth Type
- input
Format String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF" - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF" - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- topic
Regex String - Kafka topics Regex pattern
- topics
Dir String - Kafka topics directory
KafkaAzureCosmosDBSourceConnectorInfoResponse, KafkaAzureCosmosDBSourceConnectorInfoResponseArgs
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Secret
- Auth
Type string - Kafka Auth Type
- Input
Format string - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Topic
Regex string - Kafka topics Regex pattern
- Topics
Dir string - Kafka topics directory
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Secret
- Auth
Type string - Kafka Auth Type
- Input
Format string - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Topic
Regex string - Kafka topics Regex pattern
- Topics
Dir string - Kafka topics directory
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Secret
- auth
Type String - Kafka Auth Type
- input
Format String - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- topic
Regex String - Kafka topics Regex pattern
- topics
Dir String - Kafka topics directory
- api
Key string - Kafka API Key
- api
Secret string - Kafka API Secret
- auth
Type string - Kafka Auth Type
- input
Format string - Kafka Input Data Format Type
- max
Tasks string - Maximum Tasks
- output
Format string - Kafka Output Data Format Type
- service
Account stringId - Kafka Service Account Id
- topic
Regex string - Kafka topics Regex pattern
- topics
Dir 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
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Secret
- auth
Type String - Kafka Auth Type
- input
Format String - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- topic
Regex String - Kafka topics Regex pattern
- topics
Dir String - Kafka topics directory
KafkaAzureSynapseAnalyticsSinkConnectorInfo, KafkaAzureSynapseAnalyticsSinkConnectorInfoArgs
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Key Secret
- Auth
Type string | Pulumi.Azure Native. Confluent. Auth Type - Kafka Auth Type
- Flush
Size string - Flush size
- Input
Format string | Pulumi.Azure Native. Confluent. Data Format Type - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string | Pulumi.Azure Native. Confluent. Data Format Type - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Time
Interval string - Time Interval
- Topics List<string>
- Kafka topics list
- Topics
Dir string - Kafka topics directory
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Key Secret
- Auth
Type string | AuthType - Kafka Auth Type
- Flush
Size string - Flush size
- Input
Format string | DataFormat Type - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string | DataFormat Type - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Time
Interval string - Time Interval
- Topics []string
- Kafka topics list
- Topics
Dir string - Kafka topics directory
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Key Secret
- auth
Type String | AuthType - Kafka Auth Type
- flush
Size String - Flush size
- input
Format String | DataFormat Type - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String | DataFormat Type - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- time
Interval String - Time Interval
- topics List<String>
- Kafka topics list
- topics
Dir String - Kafka topics directory
- api
Key string - Kafka API Key
- api
Secret string - Kafka API Key Secret
- auth
Type string | AuthType - Kafka Auth Type
- flush
Size string - Flush size
- input
Format string | DataFormat Type - Kafka Input Data Format Type
- max
Tasks string - Maximum Tasks
- output
Format string | DataFormat Type - Kafka Output Data Format Type
- service
Account stringId - Kafka Service Account Id
- time
Interval string - Time Interval
- topics string[]
- Kafka topics list
- topics
Dir 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
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Key Secret
- auth
Type String | "SERVICE_ACCOUNT" | "KAFKA_API_KEY" - Kafka Auth Type
- flush
Size String - Flush size
- input
Format String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF" - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String | "AVRO" | "JSON" | "STRING" | "BYTES" | "PROTOBUF" - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- time
Interval String - Time Interval
- topics List<String>
- Kafka topics list
- topics
Dir String - Kafka topics directory
KafkaAzureSynapseAnalyticsSinkConnectorInfoResponse, KafkaAzureSynapseAnalyticsSinkConnectorInfoResponseArgs
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Key Secret
- Auth
Type string - Kafka Auth Type
- Flush
Size string - Flush size
- Input
Format string - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Time
Interval string - Time Interval
- Topics List<string>
- Kafka topics list
- Topics
Dir string - Kafka topics directory
- Api
Key string - Kafka API Key
- Api
Secret string - Kafka API Key Secret
- Auth
Type string - Kafka Auth Type
- Flush
Size string - Flush size
- Input
Format string - Kafka Input Data Format Type
- Max
Tasks string - Maximum Tasks
- Output
Format string - Kafka Output Data Format Type
- Service
Account stringId - Kafka Service Account Id
- Time
Interval string - Time Interval
- Topics []string
- Kafka topics list
- Topics
Dir string - Kafka topics directory
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Key Secret
- auth
Type String - Kafka Auth Type
- flush
Size String - Flush size
- input
Format String - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- time
Interval String - Time Interval
- topics List<String>
- Kafka topics list
- topics
Dir String - Kafka topics directory
- api
Key string - Kafka API Key
- api
Secret string - Kafka API Key Secret
- auth
Type string - Kafka Auth Type
- flush
Size string - Flush size
- input
Format string - Kafka Input Data Format Type
- max
Tasks string - Maximum Tasks
- output
Format string - Kafka Output Data Format Type
- service
Account stringId - Kafka Service Account Id
- time
Interval string - Time Interval
- topics string[]
- Kafka topics list
- topics
Dir 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
- api
Key String - Kafka API Key
- api
Secret String - Kafka API Key Secret
- auth
Type String - Kafka Auth Type
- flush
Size String - Flush size
- input
Format String - Kafka Input Data Format Type
- max
Tasks String - Maximum Tasks
- output
Format String - Kafka Output Data Format Type
- service
Account StringId - Kafka Service Account Id
- time
Interval String - Time Interval
- topics List<String>
- Kafka topics list
- topics
Dir String - Kafka topics directory
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified 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