azure-native.customerinsights.ConnectorMapping
Explore with Pulumi AI
The connector mapping resource format. Azure REST API version: 2017-04-26. Prior API version in Azure Native 1.x: 2017-04-26.
Example Usage
ConnectorMappings_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var connectorMapping = new AzureNative.CustomerInsights.ConnectorMapping("connectorMapping", new()
    {
        ConnectorName = "testConnector8858",
        Description = "Test mapping",
        DisplayName = "testMapping12491",
        EntityType = AzureNative.CustomerInsights.EntityTypes.Interaction,
        EntityTypeName = "TestInteractionType2967",
        HubName = "sdkTestHub",
        MappingName = "testMapping12491",
        MappingProperties = new AzureNative.CustomerInsights.Inputs.ConnectorMappingPropertiesArgs
        {
            Availability = new AzureNative.CustomerInsights.Inputs.ConnectorMappingAvailabilityArgs
            {
                Frequency = AzureNative.CustomerInsights.FrequencyTypes.Hour,
                Interval = 5,
            },
            CompleteOperation = new AzureNative.CustomerInsights.Inputs.ConnectorMappingCompleteOperationArgs
            {
                CompletionOperationType = AzureNative.CustomerInsights.CompletionOperationTypes.DeleteFile,
                DestinationFolder = "fakePath",
            },
            ErrorManagement = new AzureNative.CustomerInsights.Inputs.ConnectorMappingErrorManagementArgs
            {
                ErrorLimit = 10,
                ErrorManagementType = AzureNative.CustomerInsights.ErrorManagementTypes.StopImport,
            },
            FileFilter = "unknown",
            FolderPath = "http://sample.dne/file",
            Format = new AzureNative.CustomerInsights.Inputs.ConnectorMappingFormatArgs
            {
                ColumnDelimiter = "|",
                FormatType = AzureNative.CustomerInsights.FormatTypes.TextFormat,
            },
            HasHeader = false,
            Structure = new[]
            {
                new AzureNative.CustomerInsights.Inputs.ConnectorMappingStructureArgs
                {
                    ColumnName = "unknown1",
                    IsEncrypted = false,
                    PropertyName = "unknwon1",
                },
                new AzureNative.CustomerInsights.Inputs.ConnectorMappingStructureArgs
                {
                    ColumnName = "unknown2",
                    IsEncrypted = true,
                    PropertyName = "unknwon2",
                },
            },
        },
        ResourceGroupName = "TestHubRG",
    });
});
package main
import (
	customerinsights "github.com/pulumi/pulumi-azure-native-sdk/customerinsights/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := customerinsights.NewConnectorMapping(ctx, "connectorMapping", &customerinsights.ConnectorMappingArgs{
			ConnectorName:  pulumi.String("testConnector8858"),
			Description:    pulumi.String("Test mapping"),
			DisplayName:    pulumi.String("testMapping12491"),
			EntityType:     customerinsights.EntityTypesInteraction,
			EntityTypeName: pulumi.String("TestInteractionType2967"),
			HubName:        pulumi.String("sdkTestHub"),
			MappingName:    pulumi.String("testMapping12491"),
			MappingProperties: &customerinsights.ConnectorMappingPropertiesArgs{
				Availability: &customerinsights.ConnectorMappingAvailabilityArgs{
					Frequency: customerinsights.FrequencyTypesHour,
					Interval:  pulumi.Int(5),
				},
				CompleteOperation: &customerinsights.ConnectorMappingCompleteOperationArgs{
					CompletionOperationType: customerinsights.CompletionOperationTypesDeleteFile,
					DestinationFolder:       pulumi.String("fakePath"),
				},
				ErrorManagement: &customerinsights.ConnectorMappingErrorManagementArgs{
					ErrorLimit:          pulumi.Int(10),
					ErrorManagementType: customerinsights.ErrorManagementTypesStopImport,
				},
				FileFilter: pulumi.String("unknown"),
				FolderPath: pulumi.String("http://sample.dne/file"),
				Format: &customerinsights.ConnectorMappingFormatArgs{
					ColumnDelimiter: pulumi.String("|"),
					FormatType:      customerinsights.FormatTypesTextFormat,
				},
				HasHeader: pulumi.Bool(false),
				Structure: customerinsights.ConnectorMappingStructureArray{
					&customerinsights.ConnectorMappingStructureArgs{
						ColumnName:   pulumi.String("unknown1"),
						IsEncrypted:  pulumi.Bool(false),
						PropertyName: pulumi.String("unknwon1"),
					},
					&customerinsights.ConnectorMappingStructureArgs{
						ColumnName:   pulumi.String("unknown2"),
						IsEncrypted:  pulumi.Bool(true),
						PropertyName: pulumi.String("unknwon2"),
					},
				},
			},
			ResourceGroupName: pulumi.String("TestHubRG"),
		})
		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.customerinsights.ConnectorMapping;
import com.pulumi.azurenative.customerinsights.ConnectorMappingArgs;
import com.pulumi.azurenative.customerinsights.inputs.ConnectorMappingPropertiesArgs;
import com.pulumi.azurenative.customerinsights.inputs.ConnectorMappingAvailabilityArgs;
import com.pulumi.azurenative.customerinsights.inputs.ConnectorMappingCompleteOperationArgs;
import com.pulumi.azurenative.customerinsights.inputs.ConnectorMappingErrorManagementArgs;
import com.pulumi.azurenative.customerinsights.inputs.ConnectorMappingFormatArgs;
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 connectorMapping = new ConnectorMapping("connectorMapping", ConnectorMappingArgs.builder()
            .connectorName("testConnector8858")
            .description("Test mapping")
            .displayName("testMapping12491")
            .entityType("Interaction")
            .entityTypeName("TestInteractionType2967")
            .hubName("sdkTestHub")
            .mappingName("testMapping12491")
            .mappingProperties(ConnectorMappingPropertiesArgs.builder()
                .availability(ConnectorMappingAvailabilityArgs.builder()
                    .frequency("Hour")
                    .interval(5)
                    .build())
                .completeOperation(ConnectorMappingCompleteOperationArgs.builder()
                    .completionOperationType("DeleteFile")
                    .destinationFolder("fakePath")
                    .build())
                .errorManagement(ConnectorMappingErrorManagementArgs.builder()
                    .errorLimit(10)
                    .errorManagementType("StopImport")
                    .build())
                .fileFilter("unknown")
                .folderPath("http://sample.dne/file")
                .format(ConnectorMappingFormatArgs.builder()
                    .columnDelimiter("|")
                    .formatType("TextFormat")
                    .build())
                .hasHeader(false)
                .structure(                
                    ConnectorMappingStructureArgs.builder()
                        .columnName("unknown1")
                        .isEncrypted(false)
                        .propertyName("unknwon1")
                        .build(),
                    ConnectorMappingStructureArgs.builder()
                        .columnName("unknown2")
                        .isEncrypted(true)
                        .propertyName("unknwon2")
                        .build())
                .build())
            .resourceGroupName("TestHubRG")
            .build());
    }
}
import pulumi
import pulumi_azure_native as azure_native
connector_mapping = azure_native.customerinsights.ConnectorMapping("connectorMapping",
    connector_name="testConnector8858",
    description="Test mapping",
    display_name="testMapping12491",
    entity_type=azure_native.customerinsights.EntityTypes.INTERACTION,
    entity_type_name="TestInteractionType2967",
    hub_name="sdkTestHub",
    mapping_name="testMapping12491",
    mapping_properties=azure_native.customerinsights.ConnectorMappingPropertiesArgs(
        availability=azure_native.customerinsights.ConnectorMappingAvailabilityArgs(
            frequency=azure_native.customerinsights.FrequencyTypes.HOUR,
            interval=5,
        ),
        complete_operation=azure_native.customerinsights.ConnectorMappingCompleteOperationArgs(
            completion_operation_type=azure_native.customerinsights.CompletionOperationTypes.DELETE_FILE,
            destination_folder="fakePath",
        ),
        error_management=azure_native.customerinsights.ConnectorMappingErrorManagementArgs(
            error_limit=10,
            error_management_type=azure_native.customerinsights.ErrorManagementTypes.STOP_IMPORT,
        ),
        file_filter="unknown",
        folder_path="http://sample.dne/file",
        format=azure_native.customerinsights.ConnectorMappingFormatArgs(
            column_delimiter="|",
            format_type=azure_native.customerinsights.FormatTypes.TEXT_FORMAT,
        ),
        has_header=False,
        structure=[
            azure_native.customerinsights.ConnectorMappingStructureArgs(
                column_name="unknown1",
                is_encrypted=False,
                property_name="unknwon1",
            ),
            azure_native.customerinsights.ConnectorMappingStructureArgs(
                column_name="unknown2",
                is_encrypted=True,
                property_name="unknwon2",
            ),
        ],
    ),
    resource_group_name="TestHubRG")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const connectorMapping = new azure_native.customerinsights.ConnectorMapping("connectorMapping", {
    connectorName: "testConnector8858",
    description: "Test mapping",
    displayName: "testMapping12491",
    entityType: azure_native.customerinsights.EntityTypes.Interaction,
    entityTypeName: "TestInteractionType2967",
    hubName: "sdkTestHub",
    mappingName: "testMapping12491",
    mappingProperties: {
        availability: {
            frequency: azure_native.customerinsights.FrequencyTypes.Hour,
            interval: 5,
        },
        completeOperation: {
            completionOperationType: azure_native.customerinsights.CompletionOperationTypes.DeleteFile,
            destinationFolder: "fakePath",
        },
        errorManagement: {
            errorLimit: 10,
            errorManagementType: azure_native.customerinsights.ErrorManagementTypes.StopImport,
        },
        fileFilter: "unknown",
        folderPath: "http://sample.dne/file",
        format: {
            columnDelimiter: "|",
            formatType: azure_native.customerinsights.FormatTypes.TextFormat,
        },
        hasHeader: false,
        structure: [
            {
                columnName: "unknown1",
                isEncrypted: false,
                propertyName: "unknwon1",
            },
            {
                columnName: "unknown2",
                isEncrypted: true,
                propertyName: "unknwon2",
            },
        ],
    },
    resourceGroupName: "TestHubRG",
});
resources:
  connectorMapping:
    type: azure-native:customerinsights:ConnectorMapping
    properties:
      connectorName: testConnector8858
      description: Test mapping
      displayName: testMapping12491
      entityType: Interaction
      entityTypeName: TestInteractionType2967
      hubName: sdkTestHub
      mappingName: testMapping12491
      mappingProperties:
        availability:
          frequency: Hour
          interval: 5
        completeOperation:
          completionOperationType: DeleteFile
          destinationFolder: fakePath
        errorManagement:
          errorLimit: 10
          errorManagementType: StopImport
        fileFilter: unknown
        folderPath: http://sample.dne/file
        format:
          columnDelimiter: '|'
          formatType: TextFormat
        hasHeader: false
        structure:
          - columnName: unknown1
            isEncrypted: false
            propertyName: unknwon1
          - columnName: unknown2
            isEncrypted: true
            propertyName: unknwon2
      resourceGroupName: TestHubRG
Create ConnectorMapping Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ConnectorMapping(name: string, args: ConnectorMappingArgs, opts?: CustomResourceOptions);@overload
def ConnectorMapping(resource_name: str,
                     args: ConnectorMappingArgs,
                     opts: Optional[ResourceOptions] = None)
@overload
def ConnectorMapping(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     connector_name: Optional[str] = None,
                     entity_type: Optional[EntityTypes] = None,
                     entity_type_name: Optional[str] = None,
                     hub_name: Optional[str] = None,
                     mapping_properties: Optional[ConnectorMappingPropertiesArgs] = None,
                     resource_group_name: Optional[str] = None,
                     connector_type: Optional[Union[str, ConnectorTypes]] = None,
                     description: Optional[str] = None,
                     display_name: Optional[str] = None,
                     mapping_name: Optional[str] = None)func NewConnectorMapping(ctx *Context, name string, args ConnectorMappingArgs, opts ...ResourceOption) (*ConnectorMapping, error)public ConnectorMapping(string name, ConnectorMappingArgs args, CustomResourceOptions? opts = null)
public ConnectorMapping(String name, ConnectorMappingArgs args)
public ConnectorMapping(String name, ConnectorMappingArgs args, CustomResourceOptions options)
type: azure-native:customerinsights:ConnectorMapping
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 ConnectorMappingArgs
- 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 ConnectorMappingArgs
- 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 ConnectorMappingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectorMappingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConnectorMappingArgs
- 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 connectorMappingResource = new AzureNative.CustomerInsights.ConnectorMapping("connectorMappingResource", new()
{
    ConnectorName = "string",
    EntityType = AzureNative.CustomerInsights.EntityTypes.None,
    EntityTypeName = "string",
    HubName = "string",
    MappingProperties = new AzureNative.CustomerInsights.Inputs.ConnectorMappingPropertiesArgs
    {
        Availability = new AzureNative.CustomerInsights.Inputs.ConnectorMappingAvailabilityArgs
        {
            Interval = 0,
            Frequency = AzureNative.CustomerInsights.FrequencyTypes.Minute,
        },
        CompleteOperation = new AzureNative.CustomerInsights.Inputs.ConnectorMappingCompleteOperationArgs
        {
            CompletionOperationType = AzureNative.CustomerInsights.CompletionOperationTypes.DoNothing,
            DestinationFolder = "string",
        },
        ErrorManagement = new AzureNative.CustomerInsights.Inputs.ConnectorMappingErrorManagementArgs
        {
            ErrorManagementType = AzureNative.CustomerInsights.ErrorManagementTypes.RejectAndContinue,
            ErrorLimit = 0,
        },
        Format = new AzureNative.CustomerInsights.Inputs.ConnectorMappingFormatArgs
        {
            FormatType = AzureNative.CustomerInsights.FormatTypes.TextFormat,
            AcceptLanguage = "string",
            ArraySeparator = "string",
            ColumnDelimiter = "string",
            QuoteCharacter = "string",
            QuoteEscapeCharacter = "string",
        },
        Structure = new[]
        {
            new AzureNative.CustomerInsights.Inputs.ConnectorMappingStructureArgs
            {
                ColumnName = "string",
                PropertyName = "string",
                CustomFormatSpecifier = "string",
                IsEncrypted = false,
            },
        },
        FileFilter = "string",
        FolderPath = "string",
        HasHeader = false,
    },
    ResourceGroupName = "string",
    ConnectorType = "string",
    Description = "string",
    DisplayName = "string",
    MappingName = "string",
});
example, err := customerinsights.NewConnectorMapping(ctx, "connectorMappingResource", &customerinsights.ConnectorMappingArgs{
ConnectorName: pulumi.String("string"),
EntityType: customerinsights.EntityTypesNone,
EntityTypeName: pulumi.String("string"),
HubName: pulumi.String("string"),
MappingProperties: &customerinsights.ConnectorMappingPropertiesArgs{
Availability: &customerinsights.ConnectorMappingAvailabilityArgs{
Interval: pulumi.Int(0),
Frequency: customerinsights.FrequencyTypesMinute,
},
CompleteOperation: &customerinsights.ConnectorMappingCompleteOperationArgs{
CompletionOperationType: customerinsights.CompletionOperationTypesDoNothing,
DestinationFolder: pulumi.String("string"),
},
ErrorManagement: &customerinsights.ConnectorMappingErrorManagementArgs{
ErrorManagementType: customerinsights.ErrorManagementTypesRejectAndContinue,
ErrorLimit: pulumi.Int(0),
},
Format: &customerinsights.ConnectorMappingFormatArgs{
FormatType: customerinsights.FormatTypesTextFormat,
AcceptLanguage: pulumi.String("string"),
ArraySeparator: pulumi.String("string"),
ColumnDelimiter: pulumi.String("string"),
QuoteCharacter: pulumi.String("string"),
QuoteEscapeCharacter: pulumi.String("string"),
},
Structure: customerinsights.ConnectorMappingStructureArray{
&customerinsights.ConnectorMappingStructureArgs{
ColumnName: pulumi.String("string"),
PropertyName: pulumi.String("string"),
CustomFormatSpecifier: pulumi.String("string"),
IsEncrypted: pulumi.Bool(false),
},
},
FileFilter: pulumi.String("string"),
FolderPath: pulumi.String("string"),
HasHeader: pulumi.Bool(false),
},
ResourceGroupName: pulumi.String("string"),
ConnectorType: pulumi.String("string"),
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
MappingName: pulumi.String("string"),
})
var connectorMappingResource = new ConnectorMapping("connectorMappingResource", ConnectorMappingArgs.builder()
    .connectorName("string")
    .entityType("None")
    .entityTypeName("string")
    .hubName("string")
    .mappingProperties(ConnectorMappingPropertiesArgs.builder()
        .availability(ConnectorMappingAvailabilityArgs.builder()
            .interval(0)
            .frequency("Minute")
            .build())
        .completeOperation(ConnectorMappingCompleteOperationArgs.builder()
            .completionOperationType("DoNothing")
            .destinationFolder("string")
            .build())
        .errorManagement(ConnectorMappingErrorManagementArgs.builder()
            .errorManagementType("RejectAndContinue")
            .errorLimit(0)
            .build())
        .format(ConnectorMappingFormatArgs.builder()
            .formatType("TextFormat")
            .acceptLanguage("string")
            .arraySeparator("string")
            .columnDelimiter("string")
            .quoteCharacter("string")
            .quoteEscapeCharacter("string")
            .build())
        .structure(ConnectorMappingStructureArgs.builder()
            .columnName("string")
            .propertyName("string")
            .customFormatSpecifier("string")
            .isEncrypted(false)
            .build())
        .fileFilter("string")
        .folderPath("string")
        .hasHeader(false)
        .build())
    .resourceGroupName("string")
    .connectorType("string")
    .description("string")
    .displayName("string")
    .mappingName("string")
    .build());
connector_mapping_resource = azure_native.customerinsights.ConnectorMapping("connectorMappingResource",
    connector_name="string",
    entity_type=azure_native.customerinsights.EntityTypes.NONE,
    entity_type_name="string",
    hub_name="string",
    mapping_properties=azure_native.customerinsights.ConnectorMappingPropertiesArgs(
        availability=azure_native.customerinsights.ConnectorMappingAvailabilityArgs(
            interval=0,
            frequency=azure_native.customerinsights.FrequencyTypes.MINUTE,
        ),
        complete_operation=azure_native.customerinsights.ConnectorMappingCompleteOperationArgs(
            completion_operation_type=azure_native.customerinsights.CompletionOperationTypes.DO_NOTHING,
            destination_folder="string",
        ),
        error_management=azure_native.customerinsights.ConnectorMappingErrorManagementArgs(
            error_management_type=azure_native.customerinsights.ErrorManagementTypes.REJECT_AND_CONTINUE,
            error_limit=0,
        ),
        format=azure_native.customerinsights.ConnectorMappingFormatArgs(
            format_type=azure_native.customerinsights.FormatTypes.TEXT_FORMAT,
            accept_language="string",
            array_separator="string",
            column_delimiter="string",
            quote_character="string",
            quote_escape_character="string",
        ),
        structure=[azure_native.customerinsights.ConnectorMappingStructureArgs(
            column_name="string",
            property_name="string",
            custom_format_specifier="string",
            is_encrypted=False,
        )],
        file_filter="string",
        folder_path="string",
        has_header=False,
    ),
    resource_group_name="string",
    connector_type="string",
    description="string",
    display_name="string",
    mapping_name="string")
const connectorMappingResource = new azure_native.customerinsights.ConnectorMapping("connectorMappingResource", {
    connectorName: "string",
    entityType: azure_native.customerinsights.EntityTypes.None,
    entityTypeName: "string",
    hubName: "string",
    mappingProperties: {
        availability: {
            interval: 0,
            frequency: azure_native.customerinsights.FrequencyTypes.Minute,
        },
        completeOperation: {
            completionOperationType: azure_native.customerinsights.CompletionOperationTypes.DoNothing,
            destinationFolder: "string",
        },
        errorManagement: {
            errorManagementType: azure_native.customerinsights.ErrorManagementTypes.RejectAndContinue,
            errorLimit: 0,
        },
        format: {
            formatType: azure_native.customerinsights.FormatTypes.TextFormat,
            acceptLanguage: "string",
            arraySeparator: "string",
            columnDelimiter: "string",
            quoteCharacter: "string",
            quoteEscapeCharacter: "string",
        },
        structure: [{
            columnName: "string",
            propertyName: "string",
            customFormatSpecifier: "string",
            isEncrypted: false,
        }],
        fileFilter: "string",
        folderPath: "string",
        hasHeader: false,
    },
    resourceGroupName: "string",
    connectorType: "string",
    description: "string",
    displayName: "string",
    mappingName: "string",
});
type: azure-native:customerinsights:ConnectorMapping
properties:
    connectorName: string
    connectorType: string
    description: string
    displayName: string
    entityType: None
    entityTypeName: string
    hubName: string
    mappingName: string
    mappingProperties:
        availability:
            frequency: Minute
            interval: 0
        completeOperation:
            completionOperationType: DoNothing
            destinationFolder: string
        errorManagement:
            errorLimit: 0
            errorManagementType: RejectAndContinue
        fileFilter: string
        folderPath: string
        format:
            acceptLanguage: string
            arraySeparator: string
            columnDelimiter: string
            formatType: TextFormat
            quoteCharacter: string
            quoteEscapeCharacter: string
        hasHeader: false
        structure:
            - columnName: string
              customFormatSpecifier: string
              isEncrypted: false
              propertyName: string
    resourceGroupName: string
ConnectorMapping Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ConnectorMapping resource accepts the following input properties:
- ConnectorName string
- The name of the connector.
- EntityType Pulumi.Azure Native. Customer Insights. Entity Types 
- Defines which entity type the file should map to.
- EntityType stringName 
- The mapping entity name.
- HubName string
- The name of the hub.
- MappingProperties Pulumi.Azure Native. Customer Insights. Inputs. Connector Mapping Properties 
- The properties of the mapping.
- ResourceGroup stringName 
- The name of the resource group.
- ConnectorType string | Pulumi.Azure Native. Customer Insights. Connector Types 
- Type of connector.
- Description string
- The description of the connector mapping.
- DisplayName string
- Display name for the connector mapping.
- MappingName string
- The name of the connector mapping.
- ConnectorName string
- The name of the connector.
- EntityType EntityTypes 
- Defines which entity type the file should map to.
- EntityType stringName 
- The mapping entity name.
- HubName string
- The name of the hub.
- MappingProperties ConnectorMapping Properties Args 
- The properties of the mapping.
- ResourceGroup stringName 
- The name of the resource group.
- ConnectorType string | ConnectorTypes 
- Type of connector.
- Description string
- The description of the connector mapping.
- DisplayName string
- Display name for the connector mapping.
- MappingName string
- The name of the connector mapping.
- connectorName String
- The name of the connector.
- entityType EntityTypes 
- Defines which entity type the file should map to.
- entityType StringName 
- The mapping entity name.
- hubName String
- The name of the hub.
- mappingProperties ConnectorMapping Properties 
- The properties of the mapping.
- resourceGroup StringName 
- The name of the resource group.
- connectorType String | ConnectorTypes 
- Type of connector.
- description String
- The description of the connector mapping.
- displayName String
- Display name for the connector mapping.
- mappingName String
- The name of the connector mapping.
- connectorName string
- The name of the connector.
- entityType EntityTypes 
- Defines which entity type the file should map to.
- entityType stringName 
- The mapping entity name.
- hubName string
- The name of the hub.
- mappingProperties ConnectorMapping Properties 
- The properties of the mapping.
- resourceGroup stringName 
- The name of the resource group.
- connectorType string | ConnectorTypes 
- Type of connector.
- description string
- The description of the connector mapping.
- displayName string
- Display name for the connector mapping.
- mappingName string
- The name of the connector mapping.
- connector_name str
- The name of the connector.
- entity_type EntityTypes 
- Defines which entity type the file should map to.
- entity_type_ strname 
- The mapping entity name.
- hub_name str
- The name of the hub.
- mapping_properties ConnectorMapping Properties Args 
- The properties of the mapping.
- resource_group_ strname 
- The name of the resource group.
- connector_type str | ConnectorTypes 
- Type of connector.
- description str
- The description of the connector mapping.
- display_name str
- Display name for the connector mapping.
- mapping_name str
- The name of the connector mapping.
- connectorName String
- The name of the connector.
- entityType "None" | "Profile" | "Interaction" | "Relationship"
- Defines which entity type the file should map to.
- entityType StringName 
- The mapping entity name.
- hubName String
- The name of the hub.
- mappingProperties Property Map
- The properties of the mapping.
- resourceGroup StringName 
- The name of the resource group.
- connectorType String | "None" | "CRM" | "AzureBlob" | "Salesforce" | "Exchange Online" | "Outbound" 
- Type of connector.
- description String
- The description of the connector mapping.
- displayName String
- Display name for the connector mapping.
- mappingName String
- The name of the connector mapping.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConnectorMapping resource produces the following output properties:
- ConnectorMapping stringName 
- The connector mapping name
- Created string
- The created time.
- DataFormat stringId 
- The DataFormat ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastModified string
- The last modified time.
- Name string
- Resource name.
- NextRun stringTime 
- The next run time based on customer's settings.
- RunId string
- The RunId.
- State string
- State of connector mapping.
- TenantId string
- The hub name.
- Type string
- Resource type.
- ConnectorMapping stringName 
- The connector mapping name
- Created string
- The created time.
- DataFormat stringId 
- The DataFormat ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastModified string
- The last modified time.
- Name string
- Resource name.
- NextRun stringTime 
- The next run time based on customer's settings.
- RunId string
- The RunId.
- State string
- State of connector mapping.
- TenantId string
- The hub name.
- Type string
- Resource type.
- connectorMapping StringName 
- The connector mapping name
- created String
- The created time.
- dataFormat StringId 
- The DataFormat ID.
- id String
- The provider-assigned unique ID for this managed resource.
- lastModified String
- The last modified time.
- name String
- Resource name.
- nextRun StringTime 
- The next run time based on customer's settings.
- runId String
- The RunId.
- state String
- State of connector mapping.
- tenantId String
- The hub name.
- type String
- Resource type.
- connectorMapping stringName 
- The connector mapping name
- created string
- The created time.
- dataFormat stringId 
- The DataFormat ID.
- id string
- The provider-assigned unique ID for this managed resource.
- lastModified string
- The last modified time.
- name string
- Resource name.
- nextRun stringTime 
- The next run time based on customer's settings.
- runId string
- The RunId.
- state string
- State of connector mapping.
- tenantId string
- The hub name.
- type string
- Resource type.
- connector_mapping_ strname 
- The connector mapping name
- created str
- The created time.
- data_format_ strid 
- The DataFormat ID.
- id str
- The provider-assigned unique ID for this managed resource.
- last_modified str
- The last modified time.
- name str
- Resource name.
- next_run_ strtime 
- The next run time based on customer's settings.
- run_id str
- The RunId.
- state str
- State of connector mapping.
- tenant_id str
- The hub name.
- type str
- Resource type.
- connectorMapping StringName 
- The connector mapping name
- created String
- The created time.
- dataFormat StringId 
- The DataFormat ID.
- id String
- The provider-assigned unique ID for this managed resource.
- lastModified String
- The last modified time.
- name String
- Resource name.
- nextRun StringTime 
- The next run time based on customer's settings.
- runId String
- The RunId.
- state String
- State of connector mapping.
- tenantId String
- The hub name.
- type String
- Resource type.
Supporting Types
CompletionOperationTypes, CompletionOperationTypesArgs      
- DoNothing 
- DoNothing
- DeleteFile 
- DeleteFile
- MoveFile 
- MoveFile
- CompletionOperation Types Do Nothing 
- DoNothing
- CompletionOperation Types Delete File 
- DeleteFile
- CompletionOperation Types Move File 
- MoveFile
- DoNothing 
- DoNothing
- DeleteFile 
- DeleteFile
- MoveFile 
- MoveFile
- DoNothing 
- DoNothing
- DeleteFile 
- DeleteFile
- MoveFile 
- MoveFile
- DO_NOTHING
- DoNothing
- DELETE_FILE
- DeleteFile
- MOVE_FILE
- MoveFile
- "DoNothing" 
- DoNothing
- "DeleteFile" 
- DeleteFile
- "MoveFile" 
- MoveFile
ConnectorMappingAvailability, ConnectorMappingAvailabilityArgs      
- Interval int
- The interval of the given frequency to use.
- Frequency
Pulumi.Azure Native. Customer Insights. Frequency Types 
- The frequency to update.
- Interval int
- The interval of the given frequency to use.
- Frequency
FrequencyTypes 
- The frequency to update.
- interval Integer
- The interval of the given frequency to use.
- frequency
FrequencyTypes 
- The frequency to update.
- interval number
- The interval of the given frequency to use.
- frequency
FrequencyTypes 
- The frequency to update.
- interval int
- The interval of the given frequency to use.
- frequency
FrequencyTypes 
- The frequency to update.
- interval Number
- The interval of the given frequency to use.
- frequency "Minute" | "Hour" | "Day" | "Week" | "Month"
- The frequency to update.
ConnectorMappingAvailabilityResponse, ConnectorMappingAvailabilityResponseArgs        
ConnectorMappingCompleteOperation, ConnectorMappingCompleteOperationArgs        
- CompletionOperation Pulumi.Type Azure Native. Customer Insights. Completion Operation Types 
- The type of completion operation.
- DestinationFolder string
- The destination folder where files will be moved to once the import is done.
- CompletionOperation CompletionType Operation Types 
- The type of completion operation.
- DestinationFolder string
- The destination folder where files will be moved to once the import is done.
- completionOperation CompletionType Operation Types 
- The type of completion operation.
- destinationFolder String
- The destination folder where files will be moved to once the import is done.
- completionOperation CompletionType Operation Types 
- The type of completion operation.
- destinationFolder string
- The destination folder where files will be moved to once the import is done.
- completion_operation_ Completiontype Operation Types 
- The type of completion operation.
- destination_folder str
- The destination folder where files will be moved to once the import is done.
- completionOperation "DoType Nothing" | "Delete File" | "Move File" 
- The type of completion operation.
- destinationFolder String
- The destination folder where files will be moved to once the import is done.
ConnectorMappingCompleteOperationResponse, ConnectorMappingCompleteOperationResponseArgs          
- CompletionOperation stringType 
- The type of completion operation.
- DestinationFolder string
- The destination folder where files will be moved to once the import is done.
- CompletionOperation stringType 
- The type of completion operation.
- DestinationFolder string
- The destination folder where files will be moved to once the import is done.
- completionOperation StringType 
- The type of completion operation.
- destinationFolder String
- The destination folder where files will be moved to once the import is done.
- completionOperation stringType 
- The type of completion operation.
- destinationFolder string
- The destination folder where files will be moved to once the import is done.
- completion_operation_ strtype 
- The type of completion operation.
- destination_folder str
- The destination folder where files will be moved to once the import is done.
- completionOperation StringType 
- The type of completion operation.
- destinationFolder String
- The destination folder where files will be moved to once the import is done.
ConnectorMappingErrorManagement, ConnectorMappingErrorManagementArgs        
- ErrorManagement Pulumi.Type Azure Native. Customer Insights. Error Management Types 
- The type of error management to use for the mapping.
- ErrorLimit int
- The error limit allowed while importing data.
- ErrorManagement ErrorType Management Types 
- The type of error management to use for the mapping.
- ErrorLimit int
- The error limit allowed while importing data.
- errorManagement ErrorType Management Types 
- The type of error management to use for the mapping.
- errorLimit Integer
- The error limit allowed while importing data.
- errorManagement ErrorType Management Types 
- The type of error management to use for the mapping.
- errorLimit number
- The error limit allowed while importing data.
- error_management_ Errortype Management Types 
- The type of error management to use for the mapping.
- error_limit int
- The error limit allowed while importing data.
- errorManagement "RejectType And Continue" | "Stop Import" | "Reject Until Limit" 
- The type of error management to use for the mapping.
- errorLimit Number
- The error limit allowed while importing data.
ConnectorMappingErrorManagementResponse, ConnectorMappingErrorManagementResponseArgs          
- ErrorManagement stringType 
- The type of error management to use for the mapping.
- ErrorLimit int
- The error limit allowed while importing data.
- ErrorManagement stringType 
- The type of error management to use for the mapping.
- ErrorLimit int
- The error limit allowed while importing data.
- errorManagement StringType 
- The type of error management to use for the mapping.
- errorLimit Integer
- The error limit allowed while importing data.
- errorManagement stringType 
- The type of error management to use for the mapping.
- errorLimit number
- The error limit allowed while importing data.
- error_management_ strtype 
- The type of error management to use for the mapping.
- error_limit int
- The error limit allowed while importing data.
- errorManagement StringType 
- The type of error management to use for the mapping.
- errorLimit Number
- The error limit allowed while importing data.
ConnectorMappingFormat, ConnectorMappingFormatArgs      
- FormatType Pulumi.Azure Native. Customer Insights. Format Types 
- The type mapping format.
- AcceptLanguage string
- The oData language.
- ArraySeparator string
- Character separating array elements.
- ColumnDelimiter string
- The character that signifies a break between columns.
- QuoteCharacter string
- Quote character, used to indicate enquoted fields.
- QuoteEscape stringCharacter 
- Escape character for quotes, can be the same as the quoteCharacter.
- FormatType FormatTypes 
- The type mapping format.
- AcceptLanguage string
- The oData language.
- ArraySeparator string
- Character separating array elements.
- ColumnDelimiter string
- The character that signifies a break between columns.
- QuoteCharacter string
- Quote character, used to indicate enquoted fields.
- QuoteEscape stringCharacter 
- Escape character for quotes, can be the same as the quoteCharacter.
- formatType FormatTypes 
- The type mapping format.
- acceptLanguage String
- The oData language.
- arraySeparator String
- Character separating array elements.
- columnDelimiter String
- The character that signifies a break between columns.
- quoteCharacter String
- Quote character, used to indicate enquoted fields.
- quoteEscape StringCharacter 
- Escape character for quotes, can be the same as the quoteCharacter.
- formatType FormatTypes 
- The type mapping format.
- acceptLanguage string
- The oData language.
- arraySeparator string
- Character separating array elements.
- columnDelimiter string
- The character that signifies a break between columns.
- quoteCharacter string
- Quote character, used to indicate enquoted fields.
- quoteEscape stringCharacter 
- Escape character for quotes, can be the same as the quoteCharacter.
- format_type FormatTypes 
- The type mapping format.
- accept_language str
- The oData language.
- array_separator str
- Character separating array elements.
- column_delimiter str
- The character that signifies a break between columns.
- quote_character str
- Quote character, used to indicate enquoted fields.
- quote_escape_ strcharacter 
- Escape character for quotes, can be the same as the quoteCharacter.
- formatType "TextFormat" 
- The type mapping format.
- acceptLanguage String
- The oData language.
- arraySeparator String
- Character separating array elements.
- columnDelimiter String
- The character that signifies a break between columns.
- quoteCharacter String
- Quote character, used to indicate enquoted fields.
- quoteEscape StringCharacter 
- Escape character for quotes, can be the same as the quoteCharacter.
ConnectorMappingFormatResponse, ConnectorMappingFormatResponseArgs        
- FormatType string
- The type mapping format.
- AcceptLanguage string
- The oData language.
- ArraySeparator string
- Character separating array elements.
- ColumnDelimiter string
- The character that signifies a break between columns.
- QuoteCharacter string
- Quote character, used to indicate enquoted fields.
- QuoteEscape stringCharacter 
- Escape character for quotes, can be the same as the quoteCharacter.
- FormatType string
- The type mapping format.
- AcceptLanguage string
- The oData language.
- ArraySeparator string
- Character separating array elements.
- ColumnDelimiter string
- The character that signifies a break between columns.
- QuoteCharacter string
- Quote character, used to indicate enquoted fields.
- QuoteEscape stringCharacter 
- Escape character for quotes, can be the same as the quoteCharacter.
- formatType String
- The type mapping format.
- acceptLanguage String
- The oData language.
- arraySeparator String
- Character separating array elements.
- columnDelimiter String
- The character that signifies a break between columns.
- quoteCharacter String
- Quote character, used to indicate enquoted fields.
- quoteEscape StringCharacter 
- Escape character for quotes, can be the same as the quoteCharacter.
- formatType string
- The type mapping format.
- acceptLanguage string
- The oData language.
- arraySeparator string
- Character separating array elements.
- columnDelimiter string
- The character that signifies a break between columns.
- quoteCharacter string
- Quote character, used to indicate enquoted fields.
- quoteEscape stringCharacter 
- Escape character for quotes, can be the same as the quoteCharacter.
- format_type str
- The type mapping format.
- accept_language str
- The oData language.
- array_separator str
- Character separating array elements.
- column_delimiter str
- The character that signifies a break between columns.
- quote_character str
- Quote character, used to indicate enquoted fields.
- quote_escape_ strcharacter 
- Escape character for quotes, can be the same as the quoteCharacter.
- formatType String
- The type mapping format.
- acceptLanguage String
- The oData language.
- arraySeparator String
- Character separating array elements.
- columnDelimiter String
- The character that signifies a break between columns.
- quoteCharacter String
- Quote character, used to indicate enquoted fields.
- quoteEscape StringCharacter 
- Escape character for quotes, can be the same as the quoteCharacter.
ConnectorMappingProperties, ConnectorMappingPropertiesArgs      
- Availability
Pulumi.Azure Native. Customer Insights. Inputs. Connector Mapping Availability 
- The availability of mapping property.
- CompleteOperation Pulumi.Azure Native. Customer Insights. Inputs. Connector Mapping Complete Operation 
- The operation after import is done.
- ErrorManagement Pulumi.Azure Native. Customer Insights. Inputs. Connector Mapping Error Management 
- The error management setting for the mapping.
- Format
Pulumi.Azure Native. Customer Insights. Inputs. Connector Mapping Format 
- The format of mapping property.
- Structure
List<Pulumi.Azure Native. Customer Insights. Inputs. Connector Mapping Structure> 
- Ingestion mapping information at property level.
- FileFilter string
- The file filter for the mapping.
- FolderPath string
- The folder path for the mapping.
- HasHeader bool
- If the file contains a header or not.
- Availability
ConnectorMapping Availability 
- The availability of mapping property.
- CompleteOperation ConnectorMapping Complete Operation 
- The operation after import is done.
- ErrorManagement ConnectorMapping Error Management 
- The error management setting for the mapping.
- Format
ConnectorMapping Format 
- The format of mapping property.
- Structure
[]ConnectorMapping Structure 
- Ingestion mapping information at property level.
- FileFilter string
- The file filter for the mapping.
- FolderPath string
- The folder path for the mapping.
- HasHeader bool
- If the file contains a header or not.
- availability
ConnectorMapping Availability 
- The availability of mapping property.
- completeOperation ConnectorMapping Complete Operation 
- The operation after import is done.
- errorManagement ConnectorMapping Error Management 
- The error management setting for the mapping.
- format
ConnectorMapping Format 
- The format of mapping property.
- structure
List<ConnectorMapping Structure> 
- Ingestion mapping information at property level.
- fileFilter String
- The file filter for the mapping.
- folderPath String
- The folder path for the mapping.
- hasHeader Boolean
- If the file contains a header or not.
- availability
ConnectorMapping Availability 
- The availability of mapping property.
- completeOperation ConnectorMapping Complete Operation 
- The operation after import is done.
- errorManagement ConnectorMapping Error Management 
- The error management setting for the mapping.
- format
ConnectorMapping Format 
- The format of mapping property.
- structure
ConnectorMapping Structure[] 
- Ingestion mapping information at property level.
- fileFilter string
- The file filter for the mapping.
- folderPath string
- The folder path for the mapping.
- hasHeader boolean
- If the file contains a header or not.
- availability
ConnectorMapping Availability 
- The availability of mapping property.
- complete_operation ConnectorMapping Complete Operation 
- The operation after import is done.
- error_management ConnectorMapping Error Management 
- The error management setting for the mapping.
- format
ConnectorMapping Format 
- The format of mapping property.
- structure
Sequence[ConnectorMapping Structure] 
- Ingestion mapping information at property level.
- file_filter str
- The file filter for the mapping.
- folder_path str
- The folder path for the mapping.
- has_header bool
- If the file contains a header or not.
- availability Property Map
- The availability of mapping property.
- completeOperation Property Map
- The operation after import is done.
- errorManagement Property Map
- The error management setting for the mapping.
- format Property Map
- The format of mapping property.
- structure List<Property Map>
- Ingestion mapping information at property level.
- fileFilter String
- The file filter for the mapping.
- folderPath String
- The folder path for the mapping.
- hasHeader Boolean
- If the file contains a header or not.
ConnectorMappingPropertiesResponse, ConnectorMappingPropertiesResponseArgs        
- Availability
Pulumi.Azure Native. Customer Insights. Inputs. Connector Mapping Availability Response 
- The availability of mapping property.
- CompleteOperation Pulumi.Azure Native. Customer Insights. Inputs. Connector Mapping Complete Operation Response 
- The operation after import is done.
- ErrorManagement Pulumi.Azure Native. Customer Insights. Inputs. Connector Mapping Error Management Response 
- The error management setting for the mapping.
- Format
Pulumi.Azure Native. Customer Insights. Inputs. Connector Mapping Format Response 
- The format of mapping property.
- Structure
List<Pulumi.Azure Native. Customer Insights. Inputs. Connector Mapping Structure Response> 
- Ingestion mapping information at property level.
- FileFilter string
- The file filter for the mapping.
- FolderPath string
- The folder path for the mapping.
- HasHeader bool
- If the file contains a header or not.
- Availability
ConnectorMapping Availability Response 
- The availability of mapping property.
- CompleteOperation ConnectorMapping Complete Operation Response 
- The operation after import is done.
- ErrorManagement ConnectorMapping Error Management Response 
- The error management setting for the mapping.
- Format
ConnectorMapping Format Response 
- The format of mapping property.
- Structure
[]ConnectorMapping Structure Response 
- Ingestion mapping information at property level.
- FileFilter string
- The file filter for the mapping.
- FolderPath string
- The folder path for the mapping.
- HasHeader bool
- If the file contains a header or not.
- availability
ConnectorMapping Availability Response 
- The availability of mapping property.
- completeOperation ConnectorMapping Complete Operation Response 
- The operation after import is done.
- errorManagement ConnectorMapping Error Management Response 
- The error management setting for the mapping.
- format
ConnectorMapping Format Response 
- The format of mapping property.
- structure
List<ConnectorMapping Structure Response> 
- Ingestion mapping information at property level.
- fileFilter String
- The file filter for the mapping.
- folderPath String
- The folder path for the mapping.
- hasHeader Boolean
- If the file contains a header or not.
- availability
ConnectorMapping Availability Response 
- The availability of mapping property.
- completeOperation ConnectorMapping Complete Operation Response 
- The operation after import is done.
- errorManagement ConnectorMapping Error Management Response 
- The error management setting for the mapping.
- format
ConnectorMapping Format Response 
- The format of mapping property.
- structure
ConnectorMapping Structure Response[] 
- Ingestion mapping information at property level.
- fileFilter string
- The file filter for the mapping.
- folderPath string
- The folder path for the mapping.
- hasHeader boolean
- If the file contains a header or not.
- availability
ConnectorMapping Availability Response 
- The availability of mapping property.
- complete_operation ConnectorMapping Complete Operation Response 
- The operation after import is done.
- error_management ConnectorMapping Error Management Response 
- The error management setting for the mapping.
- format
ConnectorMapping Format Response 
- The format of mapping property.
- structure
Sequence[ConnectorMapping Structure Response] 
- Ingestion mapping information at property level.
- file_filter str
- The file filter for the mapping.
- folder_path str
- The folder path for the mapping.
- has_header bool
- If the file contains a header or not.
- availability Property Map
- The availability of mapping property.
- completeOperation Property Map
- The operation after import is done.
- errorManagement Property Map
- The error management setting for the mapping.
- format Property Map
- The format of mapping property.
- structure List<Property Map>
- Ingestion mapping information at property level.
- fileFilter String
- The file filter for the mapping.
- folderPath String
- The folder path for the mapping.
- hasHeader Boolean
- If the file contains a header or not.
ConnectorMappingStructure, ConnectorMappingStructureArgs      
- ColumnName string
- The column name of the import file.
- PropertyName string
- The property name of the mapping entity.
- CustomFormat stringSpecifier 
- Custom format specifier for input parsing.
- IsEncrypted bool
- Indicates if the column is encrypted.
- ColumnName string
- The column name of the import file.
- PropertyName string
- The property name of the mapping entity.
- CustomFormat stringSpecifier 
- Custom format specifier for input parsing.
- IsEncrypted bool
- Indicates if the column is encrypted.
- columnName String
- The column name of the import file.
- propertyName String
- The property name of the mapping entity.
- customFormat StringSpecifier 
- Custom format specifier for input parsing.
- isEncrypted Boolean
- Indicates if the column is encrypted.
- columnName string
- The column name of the import file.
- propertyName string
- The property name of the mapping entity.
- customFormat stringSpecifier 
- Custom format specifier for input parsing.
- isEncrypted boolean
- Indicates if the column is encrypted.
- column_name str
- The column name of the import file.
- property_name str
- The property name of the mapping entity.
- custom_format_ strspecifier 
- Custom format specifier for input parsing.
- is_encrypted bool
- Indicates if the column is encrypted.
- columnName String
- The column name of the import file.
- propertyName String
- The property name of the mapping entity.
- customFormat StringSpecifier 
- Custom format specifier for input parsing.
- isEncrypted Boolean
- Indicates if the column is encrypted.
ConnectorMappingStructureResponse, ConnectorMappingStructureResponseArgs        
- ColumnName string
- The column name of the import file.
- PropertyName string
- The property name of the mapping entity.
- CustomFormat stringSpecifier 
- Custom format specifier for input parsing.
- IsEncrypted bool
- Indicates if the column is encrypted.
- ColumnName string
- The column name of the import file.
- PropertyName string
- The property name of the mapping entity.
- CustomFormat stringSpecifier 
- Custom format specifier for input parsing.
- IsEncrypted bool
- Indicates if the column is encrypted.
- columnName String
- The column name of the import file.
- propertyName String
- The property name of the mapping entity.
- customFormat StringSpecifier 
- Custom format specifier for input parsing.
- isEncrypted Boolean
- Indicates if the column is encrypted.
- columnName string
- The column name of the import file.
- propertyName string
- The property name of the mapping entity.
- customFormat stringSpecifier 
- Custom format specifier for input parsing.
- isEncrypted boolean
- Indicates if the column is encrypted.
- column_name str
- The column name of the import file.
- property_name str
- The property name of the mapping entity.
- custom_format_ strspecifier 
- Custom format specifier for input parsing.
- is_encrypted bool
- Indicates if the column is encrypted.
- columnName String
- The column name of the import file.
- propertyName String
- The property name of the mapping entity.
- customFormat StringSpecifier 
- Custom format specifier for input parsing.
- isEncrypted Boolean
- Indicates if the column is encrypted.
ConnectorTypes, ConnectorTypesArgs    
- None
- None
- CRM
- CRM
- AzureBlob 
- AzureBlob
- Salesforce
- Salesforce
- ExchangeOnline 
- ExchangeOnline
- Outbound
- Outbound
- ConnectorTypes None 
- None
- ConnectorTypes CRM 
- CRM
- ConnectorTypes Azure Blob 
- AzureBlob
- ConnectorTypes Salesforce 
- Salesforce
- ConnectorTypes Exchange Online 
- ExchangeOnline
- ConnectorTypes Outbound 
- Outbound
- None
- None
- CRM
- CRM
- AzureBlob 
- AzureBlob
- Salesforce
- Salesforce
- ExchangeOnline 
- ExchangeOnline
- Outbound
- Outbound
- None
- None
- CRM
- CRM
- AzureBlob 
- AzureBlob
- Salesforce
- Salesforce
- ExchangeOnline 
- ExchangeOnline
- Outbound
- Outbound
- NONE
- None
- CRM
- CRM
- AZURE_BLOB
- AzureBlob
- SALESFORCE
- Salesforce
- EXCHANGE_ONLINE
- ExchangeOnline
- OUTBOUND
- Outbound
- "None"
- None
- "CRM"
- CRM
- "AzureBlob" 
- AzureBlob
- "Salesforce"
- Salesforce
- "ExchangeOnline" 
- ExchangeOnline
- "Outbound"
- Outbound
EntityTypes, EntityTypesArgs    
- None
- None
- Profile
- Profile
- Interaction
- Interaction
- Relationship
- Relationship
- EntityTypes None 
- None
- EntityTypes Profile 
- Profile
- EntityTypes Interaction 
- Interaction
- EntityTypes Relationship 
- Relationship
- None
- None
- Profile
- Profile
- Interaction
- Interaction
- Relationship
- Relationship
- None
- None
- Profile
- Profile
- Interaction
- Interaction
- Relationship
- Relationship
- NONE
- None
- PROFILE
- Profile
- INTERACTION
- Interaction
- RELATIONSHIP
- Relationship
- "None"
- None
- "Profile"
- Profile
- "Interaction"
- Interaction
- "Relationship"
- Relationship
ErrorManagementTypes, ErrorManagementTypesArgs      
- RejectAnd Continue 
- RejectAndContinue
- StopImport 
- StopImport
- RejectUntil Limit 
- RejectUntilLimit
- ErrorManagement Types Reject And Continue 
- RejectAndContinue
- ErrorManagement Types Stop Import 
- StopImport
- ErrorManagement Types Reject Until Limit 
- RejectUntilLimit
- RejectAnd Continue 
- RejectAndContinue
- StopImport 
- StopImport
- RejectUntil Limit 
- RejectUntilLimit
- RejectAnd Continue 
- RejectAndContinue
- StopImport 
- StopImport
- RejectUntil Limit 
- RejectUntilLimit
- REJECT_AND_CONTINUE
- RejectAndContinue
- STOP_IMPORT
- StopImport
- REJECT_UNTIL_LIMIT
- RejectUntilLimit
- "RejectAnd Continue" 
- RejectAndContinue
- "StopImport" 
- StopImport
- "RejectUntil Limit" 
- RejectUntilLimit
FormatTypes, FormatTypesArgs    
- TextFormat 
- TextFormat
- FormatTypes Text Format 
- TextFormat
- TextFormat 
- TextFormat
- TextFormat 
- TextFormat
- TEXT_FORMAT
- TextFormat
- "TextFormat" 
- TextFormat
FrequencyTypes, FrequencyTypesArgs    
- Minute
- Minute
- Hour
- Hour
- Day
- Day
- Week
- Week
- Month
- Month
- FrequencyTypes Minute 
- Minute
- FrequencyTypes Hour 
- Hour
- FrequencyTypes Day 
- Day
- FrequencyTypes Week 
- Week
- FrequencyTypes Month 
- Month
- Minute
- Minute
- Hour
- Hour
- Day
- Day
- Week
- Week
- Month
- Month
- Minute
- Minute
- Hour
- Hour
- Day
- Day
- Week
- Week
- Month
- Month
- MINUTE
- Minute
- HOUR
- Hour
- DAY
- Day
- WEEK
- Week
- MONTH
- Month
- "Minute"
- Minute
- "Hour"
- Hour
- "Day"
- Day
- "Week"
- Week
- "Month"
- Month
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:customerinsights:ConnectorMapping sdkTestHub/testConnector8858/testMapping12491 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CustomerInsights/hubs/{hubName}/connectors/{connectorName}/mappings/{mappingName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0